html{
    scroll-behavior:smooth;
}
/* Navigation Bar */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#F7F6F3;
}

/* Header */

header{
    background:#F8F1E4;
    padding:20px 0;
    position:sticky;
    top:0;
    z-index:100;
}

.container{
    width:90%;
    margin:auto;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    width:100px;
    height:auto;
    display:block;
}

nav ul{
    list-style:none;
    display:flex;
    gap:40px;
}

nav ul li a{
    text-decoration:none;
    color:#1F335C;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover{
    color:#D8B06A;
}

.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#D8B06A;
    color:#1F335C;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.enquiry-btn{
    background:#D8B06A;
    color:#1F335C;
    text-decoration:none;
    padding:14px 28px;
    border-radius:40px;
    font-weight:600;
}
/* Navigation Bar Close */


/* Hero video Section */

.hero{
    position:relative;
    height:100vh;
    overflow:visible;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-video{
    position:absolute;
    top:50%;
    left:50%;
    width:100%;
    height:100%;
    object-fit:cover;
    transform:translate(-50%, -50%);
    z-index:-2;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
    z-index:-1;
}

/* ====================================
   HERO CONTENT STARTS
==================================== */
.hero-content{
    position:relative;
    z-index:2;
    color:#F7F6F3;
    max-width:900px;
    margin:auto;
    padding:20px;
    text-align:center;
}

.hero-content h1{
    font-size:68px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:25px;
}

.divider{
    width:80px;
    height:4px;
    background:#f1f5f2;
    margin:0 auto 25px;
    border-radius:10px;
}

.tagline{
    font-size:26px;
    color:#D8B06A;
    margin-bottom:20px;
    font-weight:500;
}

.description{
    max-width:720px;
    margin:0 auto 35px;
    font-size:20px;
    line-height:1.9;
    color:rgba(255,255,255,0.92);
}

.find-btn{
    display:inline-block;
    background:#1F335C;
    color:#F1F6F3;
    text-decoration:none;
    padding:16px 40px;
    border-radius:40px;
    font-weight:600;

    animation:jumpingButton 2s infinite;
}

@keyframes jumpingButton{
    0%, 100%{
        transform:translateY(0);
    }

    10%{
        transform:translateY(-8px);
    }

    20%{
        transform:translateY(0);
    }

    30%{
        transform:translateY(-5px);
    }

    40%{
        transform:translateY(0);
    }
}

/* Bottom CTA */
.bottom-cta{
    position:absolute;
    bottom:-40px;
    left:50%;
    transform:translateX(-50%);
    width:350px;
    max-width:20%;
    background:#D8B06A;
    padding:25px 35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-radius:8px;
    z-index:5;
    text-decoration:none;
    cursor:pointer;

    transition:all .35s ease;
}

.bottom-cta span{
    font-size:24px;
    font-weight:600;
    color:#1F335C;
    transition:color .35s ease;
}

.bottom-cta i{
    font-size:34px;
    color:#1F335C;
    transition:transform .35s ease, color .35s ease;
}

.bottom-cta:hover{
    transform:translateX(-50%) translateY(-6px);
    background:#e0bb76;
    box-shadow:0 15px 35px rgba(216,176,106,0.35);
}

.bottom-cta:hover span,
.bottom-cta:hover i{
    color:#1F335C;
}

.bottom-cta:hover i{
    transform:translateX(8px);
}

/* ====================================
   PREMIUM HERO SECTION Starts
==================================== */

.premium-hero{
    position:relative;
    overflow:hidden;

    background:#F1F5F2;

    padding:100px 0;
}

/* Decorative Shape */

.hero-blob{
    position:absolute;

    width:550px;
    height:550px;

    background:#D8B06A;

    opacity:.08;

    border-radius:50%;

    top:-220px;
    right:-180px;
}

/* Container */

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* Layout */

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;

    align-items:center;
}

/* ====================================
   LEFT CONTENT
==================================== */

.hero-pill{
    display:inline-block;

    padding:12px 22px;

    background:#C98A97;
    border-radius:50px;

    color:#1F335C;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:28px;
}

.hero-left h2{
    font-size:clamp(2.8rem,4vw,4.8rem);
    
    line-height:1.1;

    color:#1F335C;

    margin-bottom:28px;
}

.hero-left p{
    font-size:19px;

    line-height:1.9;

    color:#555555;

    max-width:620px;

    margin-bottom:40px;
}

/* Buttons */

.hero-buttons{
    display:flex;
    gap:18px;

    flex-wrap:wrap;

    margin-bottom:40px;
}

.primary-btn{
    background:#D8B06A;

    color:#1F335C;

    text-decoration:none;

    padding:18px 34px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;
}

.primary-btn:hover{
    transform:translateY(-4px);
}

.secondary-btn{
    border:2px solid #1F335C;

    color:#1F335C;

    text-decoration:none;

    padding:18px 34px;

    border-radius:14px;

    font-weight:600;

    transition:.3s;
}

.secondary-btn:hover{
    background:#1F335C;
    color:#fff;
}

/* Features */

.hero-features{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.hero-features div{
    display:flex;
    align-items:center;
    gap:12px;

    color:#555555;

    font-weight:500;
}

.hero-features i{
    color:#D8B06A;
}

/* ====================================
   RIGHT IMAGE
==================================== */

.hero-right{
    position:relative;
}

.hero-right img{
    width:100%;

    height:680px;

    object-fit:cover;

    border-radius:
        180px
        180px
        30px
        30px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.12);
}

/* Trust Panel */

.hero-trust-panel{
    position:absolute;

    bottom:35px;
    left:-35px;

    background:#1F335C;

    border-radius:24px;

    padding:24px;

    min-width:260px;

    box-shadow:
        0 20px 40px rgba(0,0,0,.08);
}

.trust-item{
    display:flex;
    align-items:center;
    gap:12px;

    padding:10px 0;

    color:#fff;

    font-size:15px;
    font-weight:600;
}

.trust-item i{
    color:#D8B06A;
    font-size:18px;
}
/* ====================================
   HERO SECTION ENDS
==================================== */


/* ====================================
   FOUNDER SECTION STARTS
==================================== */

.founder-section{
    padding:120px 0;
    background:#F1F5F2;
}

.founder-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:520px 1fr;
    gap:90px;

    align-items:center;
}

/* ==========================
   IMAGE
========================== */

.founder-image-wrapper{
    position:relative;
}

.founder-shape{
    position:absolute;

    width:320px;
    height:320px;

    background:#D8B06A;

    opacity:.15;

    border-radius:50%;

    top:-40px;
    right:-40px;
}

.founder-image{
    width:100%;
    height:650px;

    object-fit:cover;

    border-radius:220px 220px 35px 35px;

    position:relative;
    z-index:2;

    box-shadow:
    0 25px 60px rgba(0,0,0,.12);
}

/* ==========================
   CONTENT
========================== */
.founder-section .founder-tag{
    display:block;
    width:max-content;
    margin:0 auto 40px;
}
.founder-tag{
    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#C98A97;

    color:#1F335C;

    font-size:13px;
    font-weight:600;

    letter-spacing:2px;

    margin-bottom:25px;
}

.founder-content h2{
    font-size:clamp(2.8rem,4vw,4.8rem);

    line-height:1.1;

    color:#1F335C;

    margin-bottom:30px;
}

.founder-content p{
    font-size:18px;

    line-height:1.9;

    color: #555555;

    margin-bottom:20px;

    max-width:750px;
}


.founder-stats{
    display:flex;
    gap:30px;
    margin:40px 0;

    padding:30px;

    background:#ffffff;

    border-radius:20px;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.stat-item{
    flex:1;
    text-align:center;
}

.stat-item h3{
    font-size:2.2rem;
    color:#6c836c;
    margin-bottom:8px;
    line-height:1;
}

.stat-item p{
    margin:0;
    color:#555555;
    font-size:15px;
    font-weight:500;
}
/* ==========================
   BUTTON
========================== */

.founder-btn{
    display:inline-block;

    margin-top:35px;

    background:#D8B06A;

    color:#1F335C;

    text-decoration:none;

    padding:18px 34px;

    border-radius:14px;

    font-weight:600;

    transition:.3s;
}

.founder-btn:hover{
    transform:translateY(-4px);
}
/* ====================================
   FOUNDER SECTION ENDS
==================================== */


/* ====================================
   SERVICES SECTION STARTS
==================================== */

.services-section{
    padding:120px 0;
    background: #F1F5F2;
}

.services-header{
    width:85%;
    max-width:1200px;
    margin:0 auto 70px;
    text-align:center;
}

.services-tag{
    display: inline-block;
    padding: 12px 22px;

    border-radius: 50px;

    background: #C98A97;

    color: #1F335C;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;

    margin-bottom: 25px;
}

.services-header h2{
    font-size:64px;
    line-height:1.1;
    color:#1F335C;
    margin-bottom:25px;
}

.services-header p{
    max-width:850px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#555555;
}

/* Services Grid */

.services-grid{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Service Card */

.service-card{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    height:420px;
    cursor:pointer;
}

.service-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

.service-card:hover img{
    transform:scale(1.1);
}

.service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.10)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:35px;
}

.service-overlay h3{
    color:#F7F6F3;
    font-size:28px;
    margin-bottom:12px;
}

.service-overlay p{
    color:rgba(255,255,255,0.9);
    font-size:15px;
    line-height:1.7;
}

/* Hover Effect */

.service-card:hover .service-overlay{
    background:linear-gradient(
        to top,
        rgba(31, 32, 32, 0.92),
        rgba(135, 133, 133, 0.25)
    );
}

/* ====================================
   SERVICES SECTION ENDS
==================================== */


/* ==========================
   REVIEWS SECTION STARTS
========================== */

.testimonial-section {
    background: #F1F5F2;
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}

.testimonial-tag{
    display: inline-block;
    padding: 12px 22px;

    border-radius: 50px;

    background: #c98a97;

    color: #1F335C;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;

    margin-bottom: 25px;

    
}

.sub-heading {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #555555;
}

.testimonial-section h2 {
    font-size:64px;
    line-height:1.1;    
    font-weight: 700;
    color: #1F335C;
    margin-bottom: 25px;
}

.testimonial-slide {
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.testimonial-slide.active {
    display: flex;
    animation: fadeIn .6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content {
    width: 100%;
}

.stars {
    color: #f4cd0a;
    font-size: 28px;
    letter-spacing: 8px;
    margin-bottom: 35px;
}

.review-text {
    max-width:850px;
    margin:auto;
    font-size:25px;
    line-height:1.8;
    color:#555555;    
    font-weight: 400;
}

.reviewer {
    margin-top: 70px;
}

.reviewer h4 {
    margin: 0 0 12px;
    color: #6c836c;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.reviewer span {
    color: #555555;
    font-size: 1rem;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid rgba(47,13,34,.15);
    background: #1f335c;
    backdrop-filter: blur(8px);
    color: #F7F6F3;
    font-size: 22px;
    cursor: pointer;
    transition: all .3s ease;
}

.nav-arrow:hover {
    background: #D8B06A;
    color: #f7f6f3;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

/* ====================================
   REVIEWS SECTION ENDS
==================================== */

/* ==========================
   CARE CONTACT SECTION STARTS
========================== */

.care-contact-section {
    padding: 120px 0;
    background: #F1F5F2;
    position: relative;
}

.container {
    width: min(1200px, 92%);
    margin: auto;
}

/* Header */

.contact-header {
    text-align: center;
    max-width: 850px;
    margin: auto auto 70px;
}

.contact-tag{
    display: inline-block;
    padding: 12px 22px;

    border-radius: 50px;

    background: #C98A97;

    color: #1F335C;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.contact-header h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    color: #1F335C;
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555555;
}

/* Contact Cards */

.contact-options {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-bottom: 70px;
}

.option-card {
    background: #1F335C;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid #e8e8e8;
    transition: .3s;
}

.option-card:hover {
    transform: translateY(-6px);
}

.icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.option-card h3 {
    color: #D8B06A;
    margin-bottom: 12px;
}

.option-card p {
    color: #F7F6F3;
    line-height: 1.7;
    margin-bottom: 15px;
}

.option-card a,
.option-card span {
    color: #FBF8F4;
    font-weight: 600;
    text-decoration: none;
}

.area-link{
    text-decoration:none;
    display:block;
    cursor:pointer;
}

.area-link:hover{
    transform:translateY(-6px);
}

/* Form */

.consultation-form {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0,0,0,.05);
}

.form-heading {
    text-align: center;
    margin-bottom: 40px;
}

.form-heading h3 {
    color: #1F335C;
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-heading p {
    color: #555555;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 24px;
}

.field {
    display: flex;
    flex-direction: column;
}

.field label {
    margin-bottom: 10px;
    font-weight: 600;
    color: #222;
}

.field input,
.field select,
.field textarea {
    padding: 18px 20px;
    border: 1px solid #ddd;
    border-radius: 16px;
    background: #fafafa;
    font-size: 1rem;
    outline: none;
    transition: .3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #36545e;
    background: #fff;
}

.full-width {
    margin-top: 24px;
}

.submit-btn {
    margin-top: 30px;
    padding: 18px 40px;
    border: none;
    border-radius: 60px;
    background: #1F335C;
    color: #F7F6F3;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* ====================================
   CARE CONTACT SECTION ENDS
==================================== */

/* ==========================
   FOOTER
========================== */

.footer{
    background:#1F335C;
    color:#F7F6F3;
    padding:80px 0 0;
}

.footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:60px;
}

/* Footer Logo */

.footer-logo{
    margin-bottom:20px;
}

.footer-logo img{
    width:90px;
    height:90px;

    object-fit:cover;

    border-radius:18px;

    background:#fff;

    padding:8px;

    display:block;
}


/* ==========================
   FOOTER BRAND
========================== */

.footer-logo-wrap{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:20px;
}

.footer-main-logo{
    width:80px;
    height:80px;
    object-fit:contain;
    flex-shrink:0;
}

.footer-brand-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.footer-brand-text h3{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#F7F6F3;
    line-height:1.2;
}

.footer-brand-text span{
    margin-top:6px;
    color:#D8B06A;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.footer-brand p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    max-width:350px;
}
.footer-column h4{
    font-size:20px;
    margin-bottom:25px;
    color:#fff;
}

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:15px;
}

.footer-column ul li a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:all .3s ease;
    display:inline-block;
}

.footer-column ul li a:hover{
    color:#D8B06A;
    transform:translateX(5px);
}

/* Contact Info */

.contact-info li{
    display:flex;
    align-items:center;
    gap:12px;

    color:rgba(255,255,255,.75);
    margin-bottom:15px;
}

.contact-info li i{
    color:#D8B06A;
    width:20px;
    font-size:16px;
}

.contact-info li a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:all .3s ease;
    display:inline-block;
}

.contact-info li a:hover{
    color:#D8B06A;
    transform:translateX(5px);
}

/* Social Icons */

.footer-social{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.footer-social a{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background:rgba(255,255,255,.08);

    color:#fff;
    font-size:18px;

    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#D8B06A;
    color:#2e4b42;
    transform:translateY(-3px);
}

/* Footer Bottom */

.footer-bottom{
    width:100%;
    margin-top:70px;

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;
    padding:25px 20px;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.7);
    font-size:15px;
    line-height:1.8;
}

.footer-bottom a{
    color:rgba(255,255,255,.7);
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.footer-bottom a:hover{
    color:#D8B06A;
    text-decoration:underline;
}
.footer-brand-top{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:0px;
}

.footer-brand-top h3{
    margin:0;
    color:#fff;
}


/* ====================================
   MOBILE ALIGNMENT STARTS HERE
==================================== */

html,
body{
    overflow-x:hidden;
    width:100%;
}

/*Mobile Header */
@media(max-width:768px){

    header{
        padding:15px 0;
    }
    .logo img{
        width:70px;
    }
    nav ul li a{
        font-size:14px;
    }
    .enquiry-btn{
        padding:12px 22px;
        font-size:14px;
    }
}
/* ====================================
   HAMBURGER MENU
==================================== */

.menu-toggle{
    display:none;
    font-size:28px;
    color:#1F335C;
    cursor:pointer;
}

/* MOBILE HEADER */

@media (max-width:768px){

    .navbar{
        display:flex;
        justify-content:space-between;
        align-items:center;
        flex-direction:row;
        position:relative;
        gap:10px;
    }

    .logo{
        display:flex;
        align-items:center;
    }

    .logo img{
        width:65px;
    }

    .header-right{
        display:flex;
        align-items:center;
        gap:8px;
    }

    /* Small Social Icons */

    .social-icons{
        display:flex;
        gap:6px;
    }

    .social-icons a{
        width:32px;
        height:32px;
        font-size:14px;
    }

    /* Small Enquiry Button */

    .enquiry-btn{
        padding:8px 14px;
        font-size:12px;
        border-radius:20px;
        white-space:nowrap;
    }

}
@media (max-width:768px){

    /* Hide navigation initially */
    nav{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#F8F1E4;
        padding:20px 0;
        z-index:999;
    }

    nav.active{
        display:block;
    }

    nav ul{
        flex-direction:column;
        gap:20px;
        text-align:center;
    }

    .menu-toggle{
        display:block;
    }
}

/* ====================================
   HERO VIDEO SECTION - MOBILE
==================================== */

@media (max-width:768px){

    .hero{
        min-height:100vh;
        padding:0 20px;
    }

    .hero-content{
        max-width:100%;
        padding:0;
    }

    /* Zee Caring Companions */

    .hero-content h1{
    font-size:24px;
    line-height:1.1;
    margin-bottom:18px;
    white-space:nowrap;
    text-align:center;
    width:100%;
}
    /* The Care You Need... */

    .tagline{
        font-size:17px;
        line-height:1.4;
        margin-bottom:18px;
    }
    
    /* Description */

    .description{
        font-size:16px;
        line-height:1.8;
        max-width:100%;
        margin-bottom:30px;
    }

    /* Learn More Button */

    .find-btn{
        padding:14px 32px;
        font-size:16px;
    }

    /* Get In Touch Box */

    .bottom-cta{
        width:220px;
        max-width:none;
        padding:18px 24px;
        border-radius:16px;

        bottom:-35px;

        box-shadow:
        0 12px 30px rgba(0,0,0,.15);
    }

    .bottom-cta span{
        font-size:18px;
        font-weight:700;
    }

    .bottom-cta i{
        font-size:26px;
    }
}

/* ====================================
   PREMIUM HERO SECTION - MOBILE
==================================== */

@media (max-width:768px){

    .premium-hero{
        padding:80px 0;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    /* Content */

    .hero-left{
        text-align:center;
    }

    .hero-pill{
        font-size:11px;
        padding:10px 18px;
        letter-spacing:1px;
    }

    .hero-left h2{
        font-size:34px;
        line-height:1.2;
        margin-bottom:20px;
    }

    .hero-left p{
        font-size:16px;
        line-height:1.8;
        max-width:100%;
        margin-bottom:30px;
    }

    /* Buttons */

    .hero-buttons{
        flex-direction:column;
        gap:15px;
        margin-bottom:30px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
        padding:16px;
    }

    /* Features */

    .hero-features{
        gap:14px;
        align-items:flex-start;
    }

    .hero-features div{
        font-size:15px;
        line-height:1.6;
    }

    /* Image */

    .hero-right img{
        height:420px;
        border-radius:100px 100px 25px 25px;
    }

    /* Trust Panel */

    .hero-trust-panel{
        position:relative;
        left:0;
        bottom:0;
        width:100%;
        margin-top:20px;
        min-width:auto;
        border-radius:18px;
    }

    .trust-item{
        font-size:14px;
    }
}

/* ====================================
   FOUNDER SECTION - MOBILE
==================================== */

@media (max-width:768px){

    .founder-section{
        padding:80px 0;
    }

    /* Center Tag */
    .founder-section .founder-tag{
        display:block;
        width:max-content;
        margin:0 auto 25px;
    }
    
    .founder-section .founder-tag{
    margin:0 auto 35px;
    }

    .founder-shape{
    width:260px;
    height:260px;
    top:80px;
    right:-60px;
    opacity:0.15;
}
    /* Stack Image and Content */
    .founder-container{
        grid-template-columns:1fr;
        gap:40px;
    }

    /* Image */
    .founder-image{
        height:500px;
        border-radius:120px 120px 25px 25px;
    }

    .founder-shape{
        width:220px;
        height:220px;
    }

   .founder-content{
        text-align:center;
    }

    .founder-content h2{
        font-size:28px;
        line-height:1.2;
        margin-bottom:20px;
    }

    .founder-content p{
        font-size:16px;
        line-height:1.8;
    }

    /* Stats */
    .founder-stats{
        flex-direction:column;
        gap:20px;
        padding:25px;
    }

    .stat-item{
        padding-bottom:15px;
        border-bottom:1px solid #eee;
    }

    .stat-item:last-child{
        border-bottom:none;
        padding-bottom:0;
    }

    /* Button */
    .founder-btn{
        width:80%;
        text-align:center;
        margin-top:25px;
    }
}

/* ====================================
   SERVICES SECTION - MOBILE
==================================== */

@media (max-width:768px){

    .services-section{
        padding:70px 0;
    }

    .services-header{
        width:92%;
        margin:0 auto 40px;
    }

    .services-tag{
        font-size:12px;
        padding:10px 20px;
        margin-bottom:20px;
    }

    .services-header h2{
        font-size:34px;
        line-height:1.2;
        margin-bottom:20px;
    }

    .services-header p{
        font-size:16px;
        line-height:1.8;
    }

    /* One card per row */

    .services-grid{
        width:92%;
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-card{
        height:350px;
        border-radius:22px;
    }

    .service-overlay{
        padding:25px;
    }

    .service-overlay h3{
        font-size:30px;
        margin-bottom:10px;
    }

    .service-overlay p{
        font-size:15px;
        line-height:1.7;
    }
}

/* ====================================
   TESTIMONIAL SECTION - MOBILE
==================================== */

@media (max-width:768px){

    .testimonial-section{
        padding:70px 0;
    }

    .testimonial-tag{
        font-size:12px;
        padding:10px 20px;
        margin-bottom:20px;
    }

    .testimonial-section h2{
        font-size:34px;
        line-height:1.2;
        margin-bottom:20px;
    }

    .testimonial-slide{
        position:relative;
        min-height:400px;
        padding:0 55px;
    }


    .stars{
        font-size:20px;
        letter-spacing:4px;
        margin-bottom:20px;
    }

    .review-text{
        font-size:18px;
        line-height:1.6;
        max-width:100%;
    }

    .reviewer{
        margin-top:35px;
    }

    .reviewer h4{
        font-size:14px;
        letter-spacing:2px;
    }

    .reviewer span{
        font-size:14px;
    }

    /* Navigation Arrows */

     .nav-arrow{
        width:45px;
        height:45px;
        font-size:16px;

        top:50%;
        transform:translateY(-50%);
    }


    .prev{
        left:0;
    }

    .next{
        right:0;
    }

}

/* ====================================
   CONTACT SECTION - MOBILE
==================================== */

@media (max-width:768px){

    .care-contact-section{
        padding:70px 0;
    }

    /* Header */

    .contact-header{
        margin-bottom:40px;
    }

    .contact-tag{
        font-size:12px;
        padding:10px 20px;
        margin-bottom:20px;
    }

    .contact-header h2{
        font-size:30px;
        line-height:1.2;
        margin-bottom:20px;
    }

    .contact-header p{
        font-size:16px;
        line-height:1.8;
    }

    /* Contact Cards */

    .contact-options{
        grid-template-columns:1fr;
        gap:20px;
        margin-bottom:40px;
    }

    .option-card{
        padding:25px;
        border-radius:20px;
        text-align:center;
    }

    .icon{
        font-size:28px;
        margin-bottom:15px;
    }

    /* Form */

    .consultation-form{
        padding:25px;
        border-radius:24px;
    }

    .form-heading h3{
        font-size:20px;
    }

    .form-heading p{
        font-size:15px;
    }

    .form-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .field input,
    .field select,
    .field textarea{
        padding:16px;
        font-size:15px;
    }

    .full-width{
        margin-top:18px;
    }

    .submit-btn{
        width:100%;
        padding:16px;
        font-size:16px;
    }

}

/* ====================================
   FOOTER SECTION - MOBILE
==================================== */

@media (max-width:768px){

    .footer{
        padding:60px 0 0;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:40px;
        text-align:center;
    }

    /* Brand Section */

    .footer-brand-top{
        flex-direction:column;
        gap:15px;
    }

    .footer-logo-wrap{
        flex-direction:column;
        gap:15px;
    }

    .footer-main-logo{
        width:70px;
        height:70px;
    }

    .footer-brand-text h3{
        font-size:24px;
    }

    .footer-brand p{
        max-width:100%;
        margin:auto;
    }

    /* Footer Columns */

    .footer-column h4{
        margin-bottom:15px;
    }

    .footer-column ul li{
        margin-bottom:12px;
    }

    /* Contact Info */

    .contact-info li{
        justify-content:center;
        text-align:center;
    }

    /* Social Icons */

    .footer-social{
        justify-content:center;
        margin-top:20px;
    }

    .footer-social a{
        width:42px;
        height:42px;
        font-size:16px;
    }

    /* Bottom Copyright */

    .footer-bottom{
        margin-top:40px;
        padding:20px 15px;
    }

    .footer-bottom p{
        font-size:14px;
        line-height:1.7;
    }

}