/*
Theme Name: AdsMani Custom Theme
Version: 1.0
*/

/* GLOBAL */

body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
background:#f8fafc;
color:#1f2937;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* HEADER */

.site-header{
background:#fff;
border-bottom:1px solid #e5e7eb;
}

.header-grid{
display:grid;
grid-template-columns:auto 1fr auto;
align-items:center;
padding:18px 0;
}

.logo img{
height:80px;
}

/* NAVIGATION */

.main-nav{
display:flex;
justify-content:center;
align-items:center;
gap:30px;
}

.main-nav a{
text-decoration:none;
color:#1f2937;
font-weight:500;
}

.main-nav a:hover{
color:#6C4CFF;
}

/* CTA */

.btn-primary{
background:linear-gradient(135deg,#6C4CFF,#3AA6FF);
color:white;
padding:12px 24px;
border-radius:8px;
text-decoration:none;
font-weight:600;
}
.btn-secondary{
border:2px solid #6C4CFF;
color:#6C4CFF;
padding:14px 28px;
border-radius:8px;
text-decoration:none;
font-weight:600;
background:#ffffff;
transition:all .2s ease;
}

.btn-secondary:hover{
background:#6C4CFF;
color:#ffffff;
}

/* ===== DROPDOWN ===== */

.nav-dropdown{
position:relative;
display:flex;
align-items:center;
height:100%;
}

.dropdown-menu{
position:absolute;
top:100%;
left:0;
background:#ffffff;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
padding:30px;
display:none;
gap:60px;
min-width:650px;
margin-top:10px;
z-index:999;
}

.nav-dropdown:hover .dropdown-menu{
display:flex;
}

.dropdown-col{
display:flex;
flex-direction:column;
gap:12px;
min-width:200px;
}

.dropdown-col strong{
font-size:13px;
letter-spacing:.5px;
color:#6C4CFF;
margin-bottom:6px;
text-transform:uppercase;
}

.dropdown-menu a{
text-decoration:none;
font-size:14px;
color:#1f2937;
line-height:1.6;
}

.dropdown-menu a:hover{
color:#6C4CFF;
}

/* prevent hover gap */

.nav-dropdown::after{
content:"";
position:absolute;
top:100%;
left:0;
width:100%;
height:15px;
}

/* HERO */

.hero{
background:#ffffff;
padding:140px 20px 120px;
text-align:center;
}

.hero h1{
font-size:clamp(38px,4vw,60px);
margin-bottom:24px;
line-height:1.2;
}

.hero p{
max-width:760px;
margin:auto;
font-size:18px;
color:#6b7280;
margin-bottom:42px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:18px;
margin-top:30px;
flex-wrap:wrap;
}


@media(max-width:900px){

.main-nav{
flex-wrap:wrap;
justify-content:center;
gap:20px;
}

.dropdown-menu{
position:static;
flex-direction:column;
min-width:auto;
box-shadow:none;
padding:15px 0;
gap:20px;
}

}

/* ===== SERVICES SECTION ===== */

.services-section{
padding:100px 20px;
background:#ffffff;
}

.section-title{
text-align:center;
font-size:36px;
margin-bottom:16px;
}

.section-subtitle{
text-align:center;
max-width:700px;
margin:auto;
color:#6b7280;
margin-bottom:60px;
font-size:18px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.service-card{
background:#ffffff;
border-radius:12px;
padding:35px;
text-decoration:none;
color:#1f2937;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:all .25s ease;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.service-card h3{
margin-bottom:12px;
font-size:20px;
}

.service-card p{
color:#6b7280;
font-size:15px;
}

/* responsive */

@media(max-width:900px){

.services-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.services-grid{
grid-template-columns:1fr;
}

}

/* HERO */

.hero{
background:url('https://images.unsplash.com/photo-1557838923-2985c318be48') center/cover no-repeat;
position:relative;
padding:180px 20px;
text-align:center;
color:white;
display:flex;
align-items:center;
justify-content:center;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
rgba(0,0,0,0.65),
rgba(0,0,0,0.55)
);
}

.hero-inner{
position:relative;
z-index:2;
max-width:900px;
margin:auto;
}

.hero h1{
font-size:clamp(40px,5vw,64px);
font-weight:700;
line-height:1.15;
margin-bottom:25px;
text-shadow:0 6px 20px rgba(0,0,0,0.35);
}

.hero p{
font-size:18px;
line-height:1.7;
margin-bottom:40px;
opacity:.95;
}

.hero-buttons{
display:flex;
gap:18px;
justify-content:center;
flex-wrap:wrap;
}



/* SERVICES */

.services-section{
padding:120px 20px;
background:#ffffff;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.service-card{
background:#fff;
padding:35px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
text-decoration:none;
color:#1f2937;
transition:all .25s;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.service-icon{
width:40px;
margin-bottom:15px;
}



/* INDUSTRIES */

.industries-section{
padding:120px 20px;
background:#f7f9fc;
}

.industries-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
margin-top:50px;
}

.industry-card{
background:white;
padding:30px;
text-align:center;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.industry-card img{
width:40px;
margin-bottom:10px;
}



/* SECTION TITLES */

.section-title{
text-align:center;
font-size:36px;
margin-bottom:10px;
}

.section-subtitle{
text-align:center;
color:#6b7280;
max-width:700px;
margin:auto;
}

/* WHY SECTION */

.why-section{
padding:120px 20px;
background:#f7f9fc;
}

.why-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:60px;
}

.why-card{
background:white;
padding:35px;
border-radius:12px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:.25s;
}

.why-card:hover{
transform:translateY(-6px);
box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.why-card img{
width:40px;
margin-bottom:15px;
}

.why-card h3{
margin-bottom:10px;
font-size:18px;
}

.why-card p{
color:#6b7280;
font-size:15px;
}

/* INDUSTRIES SECTION */

.industries-section{
padding:120px 20px;
background:#f7f9fc;
}

.industries-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
margin-top:50px;
}

.industry-card{
background:white;
padding:30px;
border-radius:12px;
text-align:center;
text-decoration:none;
color:#1f2937;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:all .25s ease;
}

.industry-card:hover{
transform:translateY(-6px);
box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.industry-card img{
width:45px;
margin-bottom:12px;
}

/* CASE STUDIES */

.case-section{
padding:120px 20px;
background:#ffffff;
}

.case-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:50px;
}

.case-card{
background:white;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:all .25s ease;
}

.case-card:hover{
transform:translateY(-6px);
box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

.case-card img{
width:100%;
height:200px;
object-fit:cover;
}

.case-content{
padding:25px;
}

.case-content h3{
margin-bottom:10px;
}

.case-content p{
color:#6b7280;
font-size:15px;
}

/* FINAL CTA */

.cta-section{
padding:120px 20px;
background:linear-gradient(135deg,#6C4CFF,#3AA6FF);
color:white;
text-align:center;
}

.cta-inner{
max-width:800px;
margin:auto;
}

.cta-section h2{
font-size:38px;
margin-bottom:15px;
}

.cta-section p{
font-size:18px;
margin-bottom:35px;
opacity:.9;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:18px;
flex-wrap:wrap;
}

.cta-section .btn-secondary{
border:2px solid white;
color:white;
background:transparent;
}

.cta-section .btn-secondary:hover{
background:white;
color:#1f2937;
}

/* SERVICES PAGE */

.services-hero{
background:url('https://images.unsplash.com/photo-1557838923-2985c318be48') center/cover no-repeat;
color:white;
padding:160px 20px;
text-align:center;
}

.services-hero h1{
font-size:48px;
margin-bottom:15px;
}

.services-hero p{
max-width:700px;
margin:auto;
font-size:18px;
}


/* PROCESS */

.process-section{
padding:120px 20px;
background:#f7f9fc;
}

.process-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:50px;
}

.process-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.process-card h3{
margin-bottom:10px;
}

/* SERVICES PAGE */

.page-banner{
padding:120px 20px 80px;
background:#f8fafc;
text-align:center;
}

.page-banner h1{
font-size:48px;
margin-bottom:16px;
}

.page-banner p{
max-width:760px;
margin:auto;
font-size:18px;
color:#6b7280;
}

.services-section{
padding:100px 20px;
background:#ffffff;
}

.section-title{
text-align:center;
font-size:38px;
margin-bottom:20px;
}

.section-subtitle{
text-align:center;
max-width:720px;
margin:auto;
color:#6b7280;
margin-bottom:60px;
font-size:18px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
max-width:1200px;
margin:auto;
}

.service-card{
background:#ffffff;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
padding:40px 30px;
text-align:center;
transition:all .3s ease;
}

.service-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.service-card img{
width:70px;
margin-bottom:20px;
}

.service-card h3{
margin-bottom:10px;
font-size:22px;
}

.service-card p{
color:#6b7280;
font-size:16px;
}

/* MOBILE */

@media(max-width:900px){

.services-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.services-grid{
grid-template-columns:1fr;
}

.page-banner{
padding:80px 20px 60px;
}

.page-banner h1{
font-size:34px;
}

}