/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins', sans-serif;
}

body{
background:#F8FAFC;
color:#0F172A;
}


/* HEADER */

header{
width:100%;
background:white;
box-shadow:0 4px 15px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:1000;
}


/* NAVBAR */

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 8%;
}


/* LOGO */

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:20px;
font-weight:600;
color:#1E4DB7;
}

.logo img{
height:40px;
}


/* NAV LINKS */

.nav-links{
display:flex;
align-items:center;
gap:30px;
list-style:none;
}

.nav-links a{
text-decoration:none;
color:#0F172A;
font-size:15px;
font-weight:500;
transition:0.3s;
position:relative;
}


/* HOVER EFFECT */

.nav-links a:hover{
color:#1E4DB7;
}

.nav-links a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#F4B400;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}


/* BOOK APPOINTMENT BUTTON */

.appointment-btn{
background:linear-gradient(135deg,#1E4DB7,#3B82F6);
color:white !important;
padding:10px 20px;
border-radius:30px;
font-size:14px;
font-weight:500;
transition:0.3s;
}

.appointment-btn:hover{
background:linear-gradient(135deg,#F4B400,#FDB813);
transform:translateY(-2px);
}


/* MOBILE TOGGLE */

.menu-toggle{
display:none;
font-size:28px;
cursor:pointer;
color:#1E4DB7;
}



/* HERO SECTION */

.hero{
min-height:80vh;
display:flex;
align-items:center;
padding:80px 8%;
background:linear-gradient(to right,#F8FAFC,#EEF6FF);
}


.hero-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}


/* HERO TEXT */

.hero-text{
flex:1;
}

.hero-text h1{
font-size:48px;
line-height:1.2;
margin-bottom:20px;
}

.hero-text p{
font-size:16px;
color:#475569;
max-width:480px;
line-height:1.6;
}


/* HERO BUTTONS */

.hero-buttons{
margin-top:25px;
display:flex;
gap:18px;
flex-wrap:wrap;
}

.btn-primary{
background:linear-gradient(135deg,#1E4DB7,#3B82F6);
color:white;
padding:12px 24px;
border-radius:30px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.btn-primary:hover{
background:linear-gradient(135deg,#F4B400,#FDB813);
transform:translateY(-2px);
}

.btn-secondary{
border:2px solid #1E4DB7;
color:#1E4DB7;
padding:10px 22px;
border-radius:30px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.btn-secondary:hover{
background:#F4B400;
color:white;
}


/* HERO IMAGE */

.hero-image{
flex:1;
text-align:center;
}

.hero-image img{
max-width:520px;
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
}


/* MOBILE DESIGN */

@media (max-width:768px){

.navbar{
padding:16px 6%;
}

/* MOBILE MENU */

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:#F8FAFC;
flex-direction:column;
align-items:center;
gap:20px;
padding:25px 0;
transform:translateY(-120%);
transition:0.4s;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.nav-links.active{
transform:translateY(0);
}

.nav-links li{
width:100%;
text-align:center;
}

.nav-links a{
display:block;
padding:10px 0;
}


/* BUTTON MOBILE */

.appointment-btn{
width:80%;
text-align:center;
margin-top:10px;
padding:12px;
border-radius:8px;
}


/* TOGGLE ICON */

.menu-toggle{
display:block;
}


/* HERO MOBILE */

.hero{
padding:60px 6%;
text-align:center;
}

.hero-container{
flex-direction:column;
}

.hero-text h1{
font-size:34px;
}

.hero-text p{
margin:auto;
}

.hero-buttons{
justify-content:center;
}

.hero-image img{
max-width:100%;
margin-top:30px;
}

}

/* SERVICES SECTION */

.services{
padding:90px 8%;
background:#F8FAFC;
}

.section-title{
text-align:center;
font-size:36px;
margin-bottom:60px;
color:#0F172A;
}

/* GRID */

.services-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

/* CARD */

.service-card{
background:white;
padding:35px;
border-radius:14px;
text-align:center;
box-shadow:0 8px 25px rgba(0,0,0,0.05);
transition:0.35s;
position:relative;
overflow:hidden;
}

/* ICON */

.service-icon{
font-size:40px;
color:#1E4DB7;
margin-bottom:20px;
transition:0.3s;
}

/* TITLE */

.service-card h3{
margin-bottom:12px;
font-size:20px;
}

/* TEXT */

.service-card p{
font-size:14px;
color:#64748B;
line-height:1.6;
}

/* HOVER EFFECT */

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 18px 40px rgba(0,0,0,0.1);
}

.service-card:hover .service-icon{
color:#F4B400;
transform:scale(1.2);
}

.services-cta{
    
text-align:center;
margin-top:20px;
}

.btn-services{
display:inline-block;
background:linear-gradient(135deg,#1E4DB7,#3B82F6);
color:white;
padding:14px 30px;
border-radius:30px;
text-decoration:none;
font-weight:500;
font-size:16px;
transition:0.3s;
}

.btn-services:hover{
background:linear-gradient(135deg,#F4B400,#FDB813);
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}
/* ===============================
   DOCTOR SECTION
================================*/

.doctor-section{
padding:80px 8%;
background:linear-gradient(135deg,#EEF6FF,#F8FAFC);
position:relative;
overflow:hidden;
}

/* Background Decorative Shapes */

.doctor-section::before{
content:"";
position:absolute;
width:260px;
height:260px;
background:#3B82F6;
opacity:0.07;
border-radius:50%;
top:-90px;
left:-90px;
}

.doctor-section::after{
content:"";
position:absolute;
width:220px;
height:220px;
background:#FDB813;
opacity:0.08;
border-radius:50%;
bottom:-80px;
right:-80px;
}

/* Container */

.doctor-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
flex-wrap:wrap;

/* hidden initially */
opacity:0;
transform:translateY(50px);
transition:all 1s ease;
}

/* show when user scrolls */

.doctor-section.show .doctor-container{
opacity:1;
transform:translateY(0);
}

/* Doctor Image */

.doctor-image{
flex:1;
text-align:center;
}

.doctor-image img{
width:100%;
max-width:420px;
border-radius:20px;
box-shadow:0 20px 40px rgba(0,0,0,0.15);
transition:0.4s;
}

.doctor-image img:hover{
transform:scale(1.05);
}

/* Floating effect only after scroll */

.doctor-section.show .doctor-image{
animation:floatDoctor 4s ease-in-out infinite;
}

@keyframes floatDoctor{
0%{transform:translateY(0);}
50%{transform:translateY(-12px);}
100%{transform:translateY(0);}
}

/* Doctor Info */

.doctor-info{
flex:1;
}

/* Section Title */

.doctor-info h2{
font-size:36px;
margin-bottom:10px;
color:#0F172A;
}

/* Doctor Name */

.doctor-name{
font-size:26px;
color:#1E4DB7;
margin-bottom:5px;
}

/* Zoom effect only after scroll */

.doctor-section.show .doctor-name{
animation:zoomIn 1s ease;
}

/* Name underline */

.doctor-name::after{
content:"";
display:block;
width:70px;
height:3px;
background:#FDB813;
margin-top:6px;
}

/* underline animation after scroll */

.doctor-section.show .doctor-name::after{
animation:lineGrow 1s ease;
}

/* Doctor Role */

.doctor-role{
font-size:14px;
color:#64748B;
margin-bottom:20px;
}

/* Description */

.doctor-info p{
line-height:1.7;
margin-bottom:25px;
color:#475569;
font-size:15px;
}

/* Highlights Grid */

.doctor-highlights{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
margin-bottom:30px;
}

.doctor-highlights li{
background:white;
padding:12px 16px;
border-radius:8px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
font-size:14px;
transition:0.3s;
}

.doctor-highlights li:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* Button */

.btn-primary{
display:inline-block;
padding:14px 28px;
background:linear-gradient(135deg,#1E4DB7,#3B82F6);
color:white;
border-radius:30px;
text-decoration:none;
font-weight:500;
transition:0.3s;
}

.btn-primary:hover{
background:linear-gradient(135deg,#F4B400,#FDB813);
transform:translateY(-2px);
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* Animations */

@keyframes zoomIn{
0%{
opacity:0;
transform:scale(0.6);
}
60%{
transform:scale(1.1);
}
100%{
opacity:1;
transform:scale(1);
}
}

@keyframes lineGrow{
from{
width:0;
}
to{
width:70px;
}
}

/* Responsive */

@media(max-width:768px){

.doctor-container{
flex-direction:column;
text-align:center;
}

.doctor-highlights{
grid-template-columns:1fr;
}

.doctor-info{
margin-top:20px;
}

}

/* ===============================
   WHY CHOOSE SECTION
================================*/

.why-section{
padding:80px 8%;
background:white;
text-align:center;
}

.section-title{
font-size:36px;
margin-bottom:60px;
color:#0F172A;
position:relative;
}

/* underline */

.section-title::after{
content:"";
width:80px;
height:4px;
background:#FDB813;
display:block;
margin:10px auto 0;
border-radius:2px;
}

/* container */

.why-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

/* card */

.why-card{
background:#F8FAFC;
padding:35px 25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:0.4s;
position:relative;
overflow:hidden;
}

/* hover effect */

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* icon */

.why-icon{
font-size:40px;
color:#1E4DB7;
margin-bottom:18px;
transition:0.3s;
}

.why-card:hover .why-icon{
transform:scale(1.2);
color:#FDB813;
}

/* heading */

.why-card h3{
font-size:20px;
margin-bottom:10px;
color:#0F172A;
}

/* text */

.why-card p{
font-size:14px;
color:#475569;
line-height:1.6;
}

/* responsive */

@media(max-width:768px){

.section-title{
font-size:28px;
}

}


.why-card{
opacity:0;
transform:translateY(40px);
transition:0.8s;
}

.why-card.show{
opacity:1;
transform:translateY(0);
}


/* TESTIMONIAL SECTION */

.testimonial-section{
padding:10px 40px 8%;
background:#F8FAFC;
text-align:center;
}

.section-title{
font-size:32px;
margin-bottom:50px;
color:#0F172A;
}

/* container */

.testimonial-container{
position:relative;
display:flex;
align-items:center;
}

/* viewport */

.testimonial-viewport{
overflow:hidden;
width:100%;
}

/* track */

.testimonial-track{
display:flex;
gap:25px;
transition:transform 0.5s ease;
}

/* card */

.testimonial-card{
min-width:calc(50% - 12px);
background:white;
padding:35px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
text-align:left;
}

.testimonial-card:hover{
transform:translateY(-6px);
box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* quote */

.quote-icon{
font-size:30px;
color:#1E4DB7;
margin-bottom:15px;
}

/* review */

.review{
font-size:15px;
line-height:1.7;
color:#475569;
margin-bottom:20px;
}

/* patient */

.patient{
display:flex;
align-items:center;
gap:12px;
}

.avatar{
width:45px;
height:45px;
border-radius:50%;
background:#E2E8F0;
display:flex;
align-items:center;
justify-content:center;
color:#1E4DB7;
}

/* stars */

.stars{
color:#FDB813;
font-size:14px;
}

/* arrows */

.slider-btn{
position:absolute;
top:50%;
transform:translateY(-50%);
width:45px;
height:45px;
border:none;
border-radius:50%;
background:#1E4DB7;
color:white;
font-size:18px;
cursor:pointer;
z-index:10;
}

.slider-btn:hover{
background:#FDB813;
}

.prev{ left:-20px; }
.next{ right:-20px; }

/* mobile */

@media(max-width:768px){

.testimonial-card{
min-width:100%;
}

}

/* FOOTER */

.footer{
background:#0F172A;
color:#CBD5E1;
padding:60px 8% 30px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
margin-bottom:40px;
}

/* Logo */

.footer-logo{
color:white;
margin-bottom:15px;
font-size:22px;
}

/* headings */

.footer-col h4{
color:white;
margin-bottom:15px;
font-size:16px;
}

/* text */

.footer-col p{
font-size:14px;
line-height:1.6;
margin-bottom:10px;
}

/* list */

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:8px;
font-size:14px;
}

.footer-col ul li a{
text-decoration:none;
color:#CBD5E1;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#FDB813;
}

/* icons */

.footer-col i{
margin-right:8px;
color:#FDB813;
}

/* links */

.footer-col a{
color:#CBD5E1;
text-decoration:none;
}

.footer-col a:hover{
color:#FDB813;
}

/* bottom */

.footer-bottom{
border-top:1px solid #334155;
padding-top:20px;
display:flex;
justify-content:space-between;
flex-wrap:wrap;
font-size:14px;
}

.footer-bottom a{
color:#FDB813;
text-decoration:none;
}

/* mobile */

@media(max-width:900px){

.footer-container{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.footer-container{
grid-template-columns:1fr;
}

.footer-bottom{
flex-direction:column;
gap:10px;
text-align:center;
}

}



/* CONTACT HERO */

.contact-hero{
height:320px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
background:linear-gradient(135deg,#1E4DB7,#3B82F6);
}

.contact-hero h1{
font-size:40px;
margin-bottom:10px;
}

.contact-hero p{
opacity:0.9;
}

.contact-hero-btn{
display:inline-block;
margin-top:20px;
padding:12px 28px;
background:#FDB813;
color:#0F172A;
border-radius:30px;
text-decoration:none;
font-weight:600;
}


/* CONTACT INFO */

.contact-info-section{
padding:80px 8%;
background:#F8FAFC;
}

.contact-info-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.contact-info-card{
background:white;
padding:30px;
text-align:center;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:0.3s;
}

.contact-info-card:hover{
transform:translateY(-8px);
}

.contact-info-card i{
font-size:28px;
color:#1E4DB7;
margin-bottom:10px;
}


/* FORM */

.contact-form-section{
padding:80px 8%;
}

.contact-form-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.contact-form-left h2{
font-size:34px;
margin-bottom:10px;
}

.contact-form-right{
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 20px 60px rgba(0,0,0,0.1);
}

.contact-form-right input,
.contact-form-right textarea{
width:100%;
padding:14px;
margin-bottom:12px;
border-radius:8px;
border:1px solid #E2E8F0;
}

.contact-form-right button{
width:100%;
padding:14px;
background:#1E4DB7;
color:white;
border:none;
border-radius:8px;
cursor:pointer;
}


/* MAP */

.contact-map-section{
padding:80px 8%;
background:#F1F5F9;
text-align:center;
}

.contact-map-title{
font-size:32px;
margin-bottom:40px;
}

.contact-map-wrapper iframe{
width:100%;
height:420px;
border-radius:12px;
border:0;
}


/* FAQ */

.contact-faq-section{
padding:80px 8%;
}

.contact-faq-title{
text-align:center;
font-size:32px;
margin-bottom:40px;
}

.faq-item{
margin-bottom:10px;
border-radius:8px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.faq-question{
width:100%;
text-align:left;
padding:15px;
background:white;
border:none;
cursor:pointer;
font-size:15px;
}

.faq-answer{
display:none;
padding:15px;
background:#F8FAFC;
}


/* RESPONSIVE */

@media(max-width:768px){

.contact-info-grid{
grid-template-columns:1fr;
}

.contact-form-wrapper{
grid-template-columns:1fr;
}

}



/* HERO SECTION */

.contact-hero{
position:relative;
background:linear-gradient(135deg,#1E4DB7,#3B82F6);
color:white;
text-align:center;
padding:80px 20px 120px;
overflow:hidden;
margin:0;
}


/* FLOATING SHAPES */

.contact-hero-bg{
position:absolute;
border-radius:50%;
opacity:0.15;
animation:floatMove 8s ease-in-out infinite;
}

.shape1{
width:260px;
height:260px;
background:white;
top:-120px;
left:-120px;
}

.shape2{
width:200px;
height:200px;
background:#FDB813;
bottom:-80px;
right:-80px;
animation-delay:2s;
}


/* ANIMATION */

@keyframes floatMove{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(20px);
}

100%{
transform:translateY(0px);
}

}


/* CONTENT */

.contact-hero-content{
max-width:650px;
margin:auto;
position:relative;
z-index:2;
}

.contact-hero h1{
font-size:40px;
margin-bottom:10px;
font-weight:700;
}

.contact-hero p{
font-size:16px;
opacity:0.95;
line-height:1.6;
}


/* BUTTON */

.contact-hero-btn{
display:inline-flex;
align-items:center;
justify-content:center;
margin-top:24px;
padding:14px 30px;
background:#FDB813;
color:#0F172A;
border-radius:40px;
text-decoration:none;
font-weight:600;
font-size:16px;
min-width:220px;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
transition:all 0.3s ease;
}

.contact-hero-btn:hover{
transform:translateY(-3px);
box-shadow:0 12px 25px rgba(0,0,0,0.25);
}

.contact-hero-btn i{
margin-right:8px;
}


/* WAVE */

.contact-hero-wave{
position:absolute;
bottom:-1px;
left:0;
width:100%;
line-height:0;
}

.contact-hero-wave svg{
display:block;
width:100%;
height:80px;
}


/* SMOOTH SCROLL */

html{
scroll-behavior:smooth;
}


/* SCROLL OFFSET */

#contact-form-section{
scroll-margin-top:90px;
}


/* MOBILE */

@media(max-width:768px){

.contact-hero{
padding:70px 20px 100px;
}

.contact-hero h1{
font-size:28px;
}

.contact-hero p{
font-size:15px;
}

.contact-hero-btn{
width:80%;
max-width:240px;
margin-top:22px;
}

.contact-hero-wave svg{
height:60px;
}

}

@media(max-width:768px){

.menu-toggle{
display:block;
}

}

/* MOBILE NAV MENU */

@media (max-width:768px){

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:#F8FAFC;
flex-direction:column;
align-items:center;
gap:18px;
padding:0;
list-style:none;

max-height:0;
overflow:hidden;

transition:max-height 0.4s ease;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.nav-links li{
width:100%;
text-align:center;
}

.nav-links a{
display:block;
padding:14px 0;
}

/* WHEN MENU OPENS */

.nav-links.active{
max-height:400px;
padding:20px 0;
}

}

/* ================= HERO ================= */

.about-hero{
background:linear-gradient(135deg,#1e40af,#2563eb,#3b82f6);
color:white;
text-align:center;
padding:90px 8%;
}

.about-hero-inner{
max-width:700px;
margin:auto;
}

.about-hero h1{
font-size:40px;
margin-bottom:10px;
}

.about-hero h2{
font-size:22px;
margin-bottom:15px;
opacity:.9;
}

.about-hero p{
font-size:16px;
line-height:1.7;
opacity:.9;
}



/* ================= INTRO ================= */

.about-intro{
padding:70px 10%;
background:#f8fafc;
}

.about-intro-container{
max-width:850px;
margin:auto;
text-align:center;
}

.about-intro p{
font-size:17px;
line-height:1.8;
margin-bottom:25px;
color:#475569;
}



/* ================= DOCTOR ================= */

.about-doctor{
padding:80px 8%;
}

.about-doctor-container{
display:flex;
gap:60px;
align-items:center;
flex-wrap:wrap;
}

.about-doctor-img img{
width:100%;
max-width:320px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.about-doctor-content{
flex:1;
display:grid;
gap:20px;
}

.about-card{
background:#eef6ff;
padding:25px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
transition:.3s;
}

.about-card:hover{
transform:translateY(-5px);
}

.about-card h3{
color:#1e40af;
margin-bottom:8px;
}



/* ================= COUNTER ================= */

.about-counter{
background:#1e40af;
padding:80px 8%;
color:white;
}

.about-counter-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:30px;
}

.counter-box{
background:rgba(255,255,255,.1);
padding:30px;
border-radius:12px;
text-align:center;
transition:.3s;
}

.counter-box:hover{
transform:translateY(-5px);
}

.counter-box h2{
font-size:40px;
margin-bottom:8px;
}

.counter-box p{
font-size:15px;
opacity:.9;
}



/* ================= MOBILE ================= */

@media(max-width:768px){

.about-hero h1{
font-size:30px;
}

.about-hero h2{
font-size:18px;
}

.about-intro{
padding:50px 7%;
}

.about-doctor-container{
flex-direction:column;
text-align:center;
}

.about-doctor-img img{
max-width:240px;
}

}

/* ===== COUNTER SECTION ===== */

.clinic-counter-section{
padding:80px 8%;
background:linear-gradient(135deg,#2563eb,#1e40af);
color:white;
}

.clinic-counter-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;
}

.clinic-counter-box{
background:rgba(255,255,255,0.1);
padding:35px 20px;
border-radius:14px;
backdrop-filter:blur(6px);
transition:all .3s ease;
}

.clinic-counter-box:hover{
transform:translateY(-8px);
background:rgba(255,255,255,0.2);
}

.clinic-counter-box i{
font-size:38px;
margin-bottom:15px;
color:#facc15;
}

.clinic-counter-box h2{
font-size:40px;
margin-bottom:8px;
font-weight:600;
}

.clinic-counter-box p{
font-size:15px;
opacity:.9;
}


/* ===== MOBILE ===== */

@media(max-width:768px){

.clinic-counter-container{
grid-template-columns:repeat(2,1fr);
gap:20px;
}

.clinic-counter-box h2{
font-size:32px;
}

.clinic-counter-box i{
font-size:30px;
}

}

/* HERO */

.services-hero{
background:linear-gradient(135deg,#2563eb,#1e40af);
color:white;
padding:70px 8%;
text-align:center;
}

.services-hero h1{
font-size:42px;
margin-bottom:15px;
}

.services-hero p{
max-width:650px;
margin:auto;
line-height:1.7;
margin-bottom:25px;
}

.services-hero-btn{
background:white;
color:#1e40af;
padding:12px 25px;
border-radius:30px;
text-decoration:none;
font-weight:500;
display:inline-block;
transition:.3s;
}

.services-hero-btn:hover{
transform:translateY(-3px);
}



/* SERVICES */

.services-section{
padding:80px 8%;
}

.service-row{
display:flex;
align-items:center;
gap:60px;
margin-bottom:80px;
flex-wrap:wrap;
}

.service-row.reverse{
flex-direction:row-reverse;
}

.service-img img{
width:100%;
max-width:420px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.service-content{
flex:1;
}

.service-content h2{
color:#1e40af;
margin-bottom:15px;
}

.service-content p{
line-height:1.7;
margin-bottom:15px;
color:#444;
}

.service-btn{
background:#2563eb;
color:white;
padding:10px 22px;
border-radius:25px;
text-decoration:none;
display:inline-block;
transition:.3s;
}

.service-btn:hover{
background:#1e40af;
transform:translateY(-2px);
}



/* MOBILE */

@media(max-width:768px){

.service-row{
flex-direction:column;
text-align:center;
}

.service-row.reverse{
flex-direction:column;
}

.service-img img{
max-width:100%;
}

.services-hero h1{
font-size:32px;
}

}

