/* =========================
   THEME SYSTEM
========================= */

:root{
    --primary:#18C6B8;
    --primary-rgb:24,198,184;

    --primary-dark:#0F6F69;
    --primary-dark-rgb:15,111,105;

    --secondary:#7FE3D9;
    --secondary-rgb:127,227,217;
    --secondary-rgba:37,99,235,.20;

    --secondary-dark:#5FD7CB;

    --accent:#FFC857;

    --text:#1F2937;
    --text-light:#64748B;

    --bg-light:#F7FFFD;
    --bg-section:#EEFDFB;

    --white:#FFFFFF;
}

/* BLUE THEME (ACTIVE) 
:root{
    --primary:#4A90E2;
    --primary-dark:#357ABD;

    --secondary:#7EC8E3;
    --secondary-dark:#5BB6D6;

    --accent:#FBBF24;

    --text:#1F2937;
    --text-light:#64748B;

    --bg-light:#F8FAFF;
    --bg-section:#F2F8FF;

    --white:#FFFFFF;
}
*/
/*
PURPLE THEME

:root{
    --primary:#7C3AED;
    --primary-dark:#6D28D9;

    --secondary:#A78BFA;
    --secondary-dark:#8B5CF6;

    --accent:#FBBF24;

    --text:#1F2937;
    --text-light:#64748B;

    --bg-light:#FAF5FF;
    --bg-section:#F3E8FF;

    --white:#FFFFFF;
}
*/

/*
GREEN THEME

:root{
    --primary:#059669;
    --primary-dark:#047857;

    --secondary:#34D399;
    --secondary-dark:#10B981;

    --accent:#FBBF24;

    --text:#1F2937;
    --text-light:#64748B;

    --bg-light:#ECFDF5;
    --bg-section:#D1FAE5;

    --white:#FFFFFF;
}
*/


*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Outfit',sans-serif;
    color:var(--text);
    background:var(--bg-light);
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    max-width:1200px;
}

section{
    padding:50px 0;
}

section h2{
    font-size:56px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:20px;
}

section p{
    font-size:18px;
    line-height:1.8;
}

.section-title{
    font-size:56px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:20px;
}


.text-center.mb-5{
    margin-bottom:30px !important;
}

.bg-primary{
    background-color:var(--primary) !important;
}

.text-primary{
    color:var(--primary) !important;
}

.border-primary{
    border-color:var(--primary) !important;
}
/* =========================
   HEADER
========================= */

.main-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:var(--white);
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    display:flex;
    padding: 8px 0;
}

.navbar{
    width: 100%;
    display: flex;
    min-height:auto;
    padding:0;
}

.navbar-brand {
    margin-right: 20px;
}

.navbar-brand img{
    height:90px;
    width:auto;
}

.navbar-nav{
    gap: 8px;
}

.btn-primary{
    margin:0;
}

.nav-link{
    color:var(--text-light) !important;
    font-size:18px;
    font-weight:600;
    letter-spacing: .2px;
    padding:0 18px !important;
    transition:.3s;
}

.nav-link:hover{
    color:var(--primary) !important;
}

.btn-primary:hover{
    background:var(--primary-dark);
}

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

.navbar-toggler i{
    font-size:24px;
    color:var(--text);
}

@media(max-width:991px){

    .navbar{
        min-height:90px;
    }

    .navbar-brand img{
        height:65px;
    }

    .navbar-collapse{
        display: flex;
        justify-content: space-between;
        align-items: center;
        background:var(--white);
        padding:20px;
        margin-top:10px;
        border-radius:12px;
        box-shadow:0 10px 30px rgba(0,0,0,.1);
    }

    .btn-primary{
        margin-top:15px !important;
        display:inline-block;
    }
}

/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-main{
    background:var(--primary);
    color:#fff;
    font-size:20px;
    border:none;
    border-radius:50px;
    padding:14px 32px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 25px var(--secondary);
    display:inline-block;
}

.btn-primary:hover,
.btn-main:hover{
    background:var(--primary-dark);
    color:#fff;
    transform:translateY(-3px);
}

/* =========================
   HERO
========================= */

.hero{
    padding:0;
    margin-top:120px;
}

.heroSwiper,
.swiper-slide{
    position:relative;
}

.swiper-pagination-bullet{
    background:var(--primary) !important;
    opacity:.5;
}

.swiper-pagination-bullet-active{
    background:var(--primary) !important;
    opacity:1;
}

.hero-image{
    width:100%;
    height:85vh;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to right,
        rgba(var(--primary-rgb), .75),
        rgba(var(--primary-rgb), .35)
    );
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    z-index:10;
    color:#fff;
    max-width:700px;
}

.hero-content h1{
    font-size:72px;
    line-height:1;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    line-height:1.7;
    margin-bottom:30px;
    max-width:550px;
}

.hero-content .btn-main{
    margin-top:10px;
}

@media(max-width:991px){

    .hero{
        margin-top:90px;
    }

    .hero-image{
        height:75vh;
    }

    .hero-content{
        left:5%;
        right:5%;
        max-width:100%;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-content p{
        font-size:18px;
    }
}

@media(max-width:768px){

    .hero-image{
        height:65vh;
    }

    .hero-content h1{
        font-size:34px;
        line-height:1.1;
    }

    .hero-content p{
        font-size:16px;
    }
}

.about-section{
    padding:120px 0;
    background:#fff;
}

.about-content{
    padding-left:30px;
}


.about-content h2{
    max-width: 550px;
    font-weight:800;
    line-height:1.1;
    color:#1f2937;
    margin-bottom:25px;
}

.about-content p{
    max-width: 90%;
    font-size:20px;
    line-height:1.4;
    color:#64748b;
    margin-bottom:20px;
}

.about-image-wrapper{
    position:relative;
}

.about-image-wrapper::before{
    content:'';
    width:140px;
    height:140px;
    background:var(--primary);
    border-radius:30px;
    position:absolute;
    top:-25px;
    left:-25px;
    z-index:-1;
}

.about-img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.experience-badge{
    position:absolute;
    right:-20px;
    bottom:40px;
    background:#fff;
    padding:20px 25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.experience-badge span{
    display:block;
    font-size:36px;
    font-weight:800;
    color:var(--primary);
    line-height:1;
}

.about-features{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-bottom:35px;
}

.feature-card{
    display:flex;
    align-items:center;
    gap:12px;
    background:#FFFFFF;
    padding:18px 20px;
    border-radius:14px;
    border-left:1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    font-weight:600;
    transition:.3s;
}

.feature-card i{
    color:var(--primary);
    font-size:18px;
}

.feature-card:hover{
    transform:translateX(10px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.about-btn{
    display:inline-flex;
    align-items:center;
    font-size: 18px;
    gap:10px;
    padding:14px 28px;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.about-btn:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 12px 30px rgba(var(--primary-rgb), .3);
}
/* =========================
   WHY CHOOSE US
========================= */

.why-choose-us h3{
    font-size:24px;
    margin-bottom:15px;
    color:var(--primary);
    font-weight:700;
}

.why-choose-us ul{
    list-style:none;
    padding:0;
    margin:0;
}

.why-section{
    padding:50px 0;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    position:relative;
    overflow:hidden;
}

.why-header{
    max-width:850px;
    margin:0 auto 35px;
}

.why-header .section-tag{
    color:#000000;
}

.why-header h2{
    color:#fff;
    margin:15px 0;
    font-weight:700;
}

.why-header p{
    color:rgba(255,255,255,.85);
    font-size:18px;
}

.why-stats{
    margin-bottom:40px;
}

.stat-box{
    text-align:center;
    padding:10px;
}

.stat-box h3{
    font-size:52px;
    font-weight:700;
    color:#fff;
    margin-bottom:5px;
}

.stat-box span{
    color:rgba(255,255,255,.8);
    font-size:15px;
}

.why-card{
    background:var(--white);
    border-radius:24px;
    padding:30px 25px;
    height:100%;
    transition:.35s;
    position:relative;
}

.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.18);
}

.card-number{
    font-size:60px;
    font-weight:800;
    line-height:1;
    color:rgba(var(--primary-rgb), .12);    
    margin-bottom:15px;
    text-align:center;
}

.why-card h4{
    color:var(--primary-dark);
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:var(--text-light);
    margin:0;
    line-height:1.8;
}

@media(max-width:991px){

    .why-section{
        padding:80px 0;
    }

    .about-section{
        padding:70px 0;
    }

.experience-badge{
    bottom:80px;
    right:-20px;
}
    .experience-badge span{
        font-size:24px;
    }

    .why-choose-us{
        margin:25px 0;
    }
}
/* =========================
   SERVICES
========================= */

.services-section{
    margin-top: 20px;
    background:var(--bg-section);
}

.service-card{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    height:420px;
    cursor:pointer;
}

.service-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.service-overlay{
    position:absolute;
    inset:0;
 background:linear-gradient(
        to top,
        rgba(var(--primary-rgb), .75) 0%,
        rgba(var(--primary-rgb), .45) 35%,
        rgba(var(--primary-rgb), .15) 65%,
        transparent 100%
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:30px;
}

.service-overlay a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    margin-top:10px;
    transition:.3s;
}

.service-overlay a:hover{
    transform:translateX(5px);
}

.service-overlay h3{
    font-size:34px;
    line-height:1.2;
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
}

.service-text{
    color:rgba(255,255,255,.9);
    font-size:15px;
    line-height:1.6;
    margin-bottom:15px;
    opacity:.95;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.service-overlay span{
    color:var(--accent);
    font-weight:600;
}

.service-card:hover .service-image{
    transform:scale(1.08);
}

.services-section h2{
    font-weight:800;
}

.services-section p{
    font-size:18px;
}

.service-link{
    width:100%;
    display:flex;
    justify-content:flex-end;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-section{
    background:var(--white);
}

.testimonial-card{
    position:relative;
    background:var(--white);
    border-radius:24px;
    margin-top:20px;
    padding:30px 25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    min-height:320px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.testimonialSwiper .swiper-wrapper{
    align-items:stretch;
}

.testimonialSwiper .swiper-slide{
    height:auto;
    display:flex;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.stars{
    color:var(--accent);
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-text{
    font-size:17px;
    line-height:1.8;
    display:-webkit-box;
    -webkit-line-clamp:5;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.testimonial-section h2{
    font-weight:800;
}

.testimonial-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom: 5px;
}

.role{
    color:var(--primary);
    font-weight:600;
}

.testimonial-image{
    width:80px;
    height:80px;
    min-width:80px;
    min-height:80px;
    border-radius:50%;
    object-fit:cover;
    object-position:center;
    display:block;
    margin:0 auto 20px;
    border:4px solid var(--secondary);
}

.testimonial-card::before{
    content:'❝';
    position:absolute;
    top:10px;
    left:20px;
    font-size:60px;
    color:var(--primary);
    opacity:.15;
}

.testimonial-card h4{
    margin-bottom:10px;
}

.testimonial-card p{
    color:var(--text-light);
}

/* =========================
   OFFER
========================= */

.offer-section{
    padding:50px 0;
}

.offer-box{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:#fff;
    border-radius:30px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
   box-shadow:0 20px 50px rgba(var(--primary-rgb), .25);
}

.offer-box h2{
    color:#fff;
    margin-bottom:10px;
}

.offer-image-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    width:100%;
}

.offer-image{
    width:100%;
    display:block;
}

.offer-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    top:45%;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:25px 30px;
    background:linear-gradient(
        to top,
        rgba(var(--primary-rgb), .85) 0%,
        rgba(var(--primary-rgb), .60) 40%,
        rgba(var(--primary-rgb), .25) 70%,
        transparent 100%
    );
}

.offer-overlay h3,
.offer-overlay p,
.offer-overlay a{
    text-shadow:0 2px 8px rgba(0,0,0,.35);
}

.offer-overlay h3{
    color:#fff;
    font-size:2.2rem;
    line-height:1;
    margin-bottom:12px;
}

.offer-overlay p{
    color:#fff;
    margin-bottom:12px;
}

.offer-overlay a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
}

/* =========================
   CTA
========================= */

.cta-section{
    position:relative;
    padding:100px 0;
    background-size:cover;
    background-position:center;
    text-align:center;
}

.cta-section::before{
    content:'';
    position:absolute;
    inset:0;
 background:linear-gradient(
        rgba(var(--primary-rgb), .45),
        rgba(var(--primary-rgb), .45)
    );
}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-section h2{
    color:#fff;
    font-size:50px;
}

.cta-section p{
    color:#fff;
    margin-bottom:30px;
}

/* =========================
   PREMIUM FOOTER
========================= */

.footer{
    background:linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    );
    color:#fff;
    padding:60px 0 20px;
    position:relative;
}

.footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
    background:rgba(255,255,255,.15);
}

.footer-logo{
    max-width:220px;
    margin-bottom:25px;
}

.footer-desc{
    color:rgba(255,255,255,.80);
    line-height:1.9;
    margin-bottom:25px;
    max-width:400px;
}

.footer h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
    color:#fff;
}

.footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:rgba(255,255,255,.80);
    transition:.3s;
}

.footer-links a:hover{
    color:var(--accent);
    padding-left:6px;
}

.footer-contact p{
    color:rgba(255,255,255,.80);
    margin-bottom:15px;
}

.footer-contact i{
    width:24px;
    color:var(--accent);
}

.footer-social{
    display:flex;
    gap:12px;
}

.footer-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.10);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
}

.footer-social a:hover{
    background:var(--accent);
    color:var(--primary);
    transform:translateY(-4px);
}

.footer-trust{
    margin-top:35px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.10);
    display:flex;
    justify-content:center;
    gap:50px;
    flex-wrap:wrap;
    color:rgba(255,255,255,.85);
    font-weight:600;
}

.footer-trust i{
    color:var(--accent);
    margin-right:8px;
}

.footer-bottom{
    margin-top:35px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.10);
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.65);
    font-size:15px;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .footer{
        text-align:center;
    }

    .footer-desc{
        margin-left:auto;
        margin-right:auto;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-trust{
        gap:20px;
        flex-direction:column;
    }
}

@media(max-width:991px){

    .hero-content{
        left:5%;
        right:5%;
    }

    .hero-content h1{
        font-size:42px;
    }

    .offer-box{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }
}

@media(max-width:768px){

    section{
        padding:50px 0;
    }

    .hero-image{
        height:90vh;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
    }

    section h2{
        font-size:32px;
    }

    .about-section,
    .services-section,
    .testimonial-section,
    .offer-section,
    .cta-section{
        text-align:center;
    }

    .offer-box{
        padding:35px 25px;
    }

    .cta-section{
        padding:70px 0;
    }
}

.btn-primary,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:hover{
    background:var(--primary) !important;
    border-color:var(--primary) !important;
}

.btn-primary:hover{
    background:var(--primary-dark) !important;
    border-color:var(--primary-dark) !important;
}