*{
            margin:0;
            padding:0;
            box-sizing:border-box;
        }

        body{
            font-family:'Poppins',sans-serif;
            overflow-x:hidden;
            background:#f8fafc;
        }

        a{
            text-decoration:none;
        }

/* ===================================================
   HEADER VARIABLES
=================================================== */

:root{

    --header-dark:#07162d;

    --primary:#1677ff;

    --success:#22c55e;

    --text:#0f172a;

    --muted:#64748b;

    --white:#ffffff;

    --border:#e2e8f0;
}



/* ===================================================
   TOP HEADER
=================================================== */

.top-header{

    background:linear-gradient(
        90deg,
        #07162d,
        #0b2447
    );

    padding:10px 0;

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1040;

    transition:all .35s ease;
}



/* HIDE TOPBAR ON SCROLL */

.top-header.hide-top{

    transform:translateY(-100%);
}



/* ===================================================
   CONTACT
=================================================== */

.top-contact{

    display:flex;

    gap:22px;

    flex-wrap:wrap;
}



.top-contact a,
.top-contact span{

    color:rgba(255,255,255,.78);

    font-size:13px;

    text-decoration:none;

    display:flex;

    align-items:center;

    gap:7px;

    transition:.3s;
}



.top-contact a:hover{

    color:#fff;
}



.top-contact i{

    color:var(--success);

    font-size:13px;
}



/* ===================================================
   SOCIAL
=================================================== */

.top-social{

    display:flex;

    justify-content:flex-end;

    gap:10px;
}



.top-social a{

    width:34px;
    height:34px;

    border-radius:12px;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;

    text-decoration:none;

    font-size:14px;

    border:1px solid rgba(255,255,255,.05);
}



.top-social a:hover{

    background:var(--success);

    transform:translateY(-2px);
}



/* ===================================================
   NAVBAR
=================================================== */

.custom-navbar{

    position:fixed;

    top:52px;
    left:0;

    width:100%;

    z-index:1035;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(14px);

    -webkit-backdrop-filter:blur(14px);

    padding:18px 0;

    transition:
        background .35s ease,
        padding .35s ease,
        top .35s ease,
        box-shadow .35s ease;

    border-bottom:
    1px solid rgba(255,255,255,.15);
}



/* SCROLLED */

.custom-navbar.scrolled{

    top:0;

    padding:10px 0;

    background:rgba(255,255,255,.97);

    box-shadow:
    0 10px 40px rgba(15,23,42,.08);
}



/* ===================================================
   LOGO
=================================================== */

.navbar-brand{

    padding:0;

    margin:0;
}



.navbar-brand img{

    height:62px;

    width:auto;

    object-fit:contain;

    transition:.35s;
}



/* SHRINK LOGO */

.custom-navbar.scrolled .navbar-brand img{

    height:50px;
}



/* ===================================================
   NAVIGATION
=================================================== */

.navbar-nav{

    gap:6px;
}



/* LINKS */

.nav-link{

    color:var(--text) !important;

    font-weight:700;

    font-size:14px;

    position:relative;

    transition:.3s;

    padding:12px 16px !important;

    border-radius:14px;
}



/* HOVER */

.nav-link:hover{

    color:var(--primary) !important;

    background:rgba(22,119,255,.05);
}



/* ACTIVE */

.nav-link.active{

    color:var(--primary) !important;

    background:rgba(22,119,255,.07);
}



/* ACTIVE LINE */

.nav-link::after{

    content:'';

    position:absolute;

    left:16px;
    bottom:8px;

    width:0;
    height:3px;

    background:linear-gradient(
        90deg,
        var(--success),
        #4ade80
    );

    border-radius:50px;

    transition:.35s;
}



.nav-link:hover::after,
.nav-link.active::after{

    width:24px;
}



/* ===================================================
   DROPDOWN
=================================================== */

.dropdown-menu{

    border:none;

    border-radius:20px;

    padding:14px;

    margin-top:14px;

    box-shadow:
    0 25px 60px rgba(15,23,42,.12);

    backdrop-filter:blur(16px);

    min-width:260px;
}



/* ITEMS */

.dropdown-item{

    padding:14px 16px;

    border-radius:14px;

    font-weight:600;

    font-size:14px;

    transition:.3s;

    color:var(--text);
}



.dropdown-item:hover{

    background:#f4f8fc;

    color:var(--primary);

    transform:translateX(4px);
}



/* ===================================================
   BUTTON
=================================================== */

.quote-btn{

    background:linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );

    color:#fff;

    padding:14px 24px;

    border-radius:16px;

    font-weight:700;

    font-size:14px;

    text-decoration:none;

    display:flex;

    align-items:center;

    gap:10px;

    transition:.35s;

    box-shadow:
    0 12px 30px rgba(34,197,94,.22);
}



.quote-btn:hover{

    transform:translateY(-2px);

    color:#fff;

    box-shadow:
    0 18px 40px rgba(34,197,94,.30);
}



/* ===================================================
   TOGGLER
=================================================== */

.navbar-toggler{

    border:none;

    font-size:30px;

    color:var(--text);

    box-shadow:none !important;

    padding:0;
}



/* ===================================================
   SPACER
=================================================== */

.header-spacer{

    height:130px;
}



/* ===================================================
   MOBILE
=================================================== */

@media(max-width:991px){

    .top-header{

        display:none;
    }



    .custom-navbar{

        top:0;

        padding:14px 0;
    }



    .header-spacer{

        height:92px;
    }



    .navbar-brand img{

        height:50px;
    }



    .navbar-collapse{

        background:#fff;

        padding:22px;

        margin-top:18px;

        border-radius:24px;

        box-shadow:
        0 20px 50px rgba(15,23,42,.10);
    }



    .navbar-nav{

        gap:10px;
    }



    .nav-link{

        padding:14px 16px !important;
    }



    .quote-btn{

        width:100%;

        justify-content:center;

        margin-top:18px;
    }

}

/* ===================================================
    NAVBAR
=================================================== */

.custom-navbar{
    background:rgba(255,255,255,0.97);
    backdrop-filter:blur(12px);
    padding:10px 0;
    transition:.3s;
    box-shadow:0 3px 20px rgba(0,0,0,0.04);
    top:46px;
}

.navbar-brand{
    padding:0;
    margin:0;
}

.navbar-brand img{
    height:60px;
    width:auto;
    object-fit:contain;
}

.navbar-nav{
    gap:5px;
}

.nav-link{
    color:#07162d !important;
    font-weight:700;
    font-size:14px;
    position:relative;
    transition:.3s;
    padding:10px 14px !important;
}

.nav-link:hover,
.nav-link.active{
    color:#1677ff !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:14px;
    bottom:5px;
    width:0;
    height:2px;
    background:#22c55e;
    border-radius:50px;
    transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:24px;
}

/* ===================================================
   DROPDOWN
=================================================== */

.dropdown-menu{

    border:none;

    border-radius:20px;

    padding:14px;

    margin-top:16px;

    min-width:280px;

    background:#ffffff;

    box-shadow:
    0 25px 60px rgba(15,23,42,.12);

    animation:dropdownFade .25s ease;
}



/* ITEMS */

.dropdown-item{

    padding:14px 16px;

    border-radius:14px;

    font-weight:600;

    font-size:14px;

    color:#0f172a;

    transition:.25s;
}



.dropdown-item:hover{

    background:#f1f5f9;

    color:#1677ff;

    transform:translateX(4px);
}



/* ANIMATION */

@keyframes dropdownFade{

    from{

        opacity:0;

        transform:
        translateY(10px);
    }

    to{

        opacity:1;

        transform:
        translateY(0);
    }
}

.dropdown{

    position:relative;
}



.dropdown-menu{

    position:absolute;
}

.quote-btn{
    background:#22c55e;
    color:#fff;
    padding:12px 22px;
    border-radius:12px;
    font-weight:700;
    font-size:14px;
    text-decoration:none;
    display:flex;
    align-items:center;
    gap:8px;
    transition:.3s;
}

.quote-btn:hover{
    background:#16a34a;
    color:#fff;
}

.navbar-toggler{
    border:none;
    font-size:28px;
    color:#07162d;
    box-shadow:none !important;
    padding:0;
}

.header-spacer{
    height:50px;
}

/* ===================================================
    MOBILE
=================================================== */

@media(max-width:991px){

    .top-header{
        display:none;
    }

    .custom-navbar{
        top:0;
        padding:12px 0;
    }

    .header-spacer{
        height:75px;
    }

    .navbar-brand img{
        height:45px;
    }

    .navbar-collapse{
        background:#fff;
        padding:20px;
        margin-top:15px;
        border-radius:18px;
        box-shadow:0 10px 30px rgba(0,0,0,0.08);
    }

    .quote-btn{
        width:100%;
        justify-content:center;
        margin-top:15px;
    }

}


.hero-section{

    background-image:
        linear-gradient(to right,
        rgba(7,22,45,0.92) 20%,
        rgba(7,22,45,0.75) 45%,
        rgba(7,22,45,0.35) 70%,
        rgba(7,22,45,0.10) 100%),

        url('{{ asset("assets/images/hero.png") }}');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 100vh;
    position: relative;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.15);
}

.hero-content-wrapper{
    padding:120px 0;
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;
    padding:12px 25px;
    border:2px solid rgba(255,255,255,0.3);
    border-radius:50px;
    color:#22c55e;
    font-size:14px;
    font-weight:700;
    margin-bottom:30px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
}

.hero-title{
    font-size:64px;
    font-weight:900;
    line-height:1.02;
    color:#ffffff;
    margin-bottom:25px;
    letter-spacing:-2px;
}

.hero-title span{
    color:#3b82f6;
}

.hero-line{
    width:90px;
    height:4px;
    background:#22c55e;
    margin-bottom:35px;
    border-radius:50px;
}

.hero-text{
    font-size:20px;
    line-height:1.9;
    color:rgba(255,255,255,0.82);
    max-width:700px;
    margin-bottom:45px;
}

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:50px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
    background:rgba(255,255,255,0.08);
    padding:14px 18px;
    border-radius:18px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.08);
}

.feature-icon{
    width:60px;
    height:60px;
    border-radius:15px;
    background:#22c55e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.feature-item h6{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:#fff;
}

.feature-item span{
    color:rgba(255,255,255,0.75);
    font-size:14px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn-primary{
    padding:18px 35px;
    border-radius:14px;
    font-weight:700;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:10px;
    background:#22c55e;
    border:none;
}

.hero-btn-outline{
    padding:18px 35px;
    border-radius:14px;
    font-weight:700;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:10px;
    border:2px solid rgba(255,255,255,0.3);
    color:#fff;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    transition:.3s;
}

.hero-btn-outline:hover{
    background:#fff;
    color:#111827;
}

/* ===================================================
    PAGE HERO SECTION
=================================================== */



.page-hero-content{
    position:relative;
    z-index:2;
}

.page-badge{
    display:inline-block;
    padding:12px 24px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:50px;
    color:#22c55e;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:30px;
    backdrop-filter:blur(10px);
}

.page-hero-content h1{
    font-size:68px;
    line-height:1.1;
    font-weight:900;
    color:#fff;
    margin-bottom:30px;
    letter-spacing:-2px;
}

.page-hero-content p{
    font-size:20px;
    line-height:1.9;
    color:rgba(255,255,255,0.78);
    max-width:760px;
    margin:auto;
}



/* ===================================================
    ABOUT MAIN SECTION
=================================================== */

.about-main-section{
    padding:120px 0;
    background:#fff;
}

.about-image-wrapper{
    position:relative;
}

.about-main-image{
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.experience-box{
    position:absolute;
    bottom:-30px;
    right:-20px;
    background:#22c55e;
    color:#fff;
    padding:35px 40px;
    border-radius:24px;
    box-shadow:0 20px 40px rgba(34,197,94,0.25);
    max-width:230px;
}

.experience-box h2{
    font-size:50px;
    font-weight:900;
    margin-bottom:5px;
}

.experience-box span{
    font-size:15px;
    line-height:1.6;
    display:block;
}



/* ===================================================
    SECTION HEADING
=================================================== */

.section-heading{
    margin-bottom:35px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#ecfdf5;
    color:#16a34a;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:50px;
    line-height:1.2;
    font-weight:800;
    color:#07162d;
    max-width:650px;
}

.about-text{
    color:#5b6475;
    font-size:17px;
    line-height:1.9;
    margin-bottom:25px;
}



/* ===================================================
    ABOUT FEATURES
=================================================== */

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:35px;
}

.about-feature-item{
    display:flex;
    align-items:center;
    gap:12px;
    background:#f8fafc;
    border-radius:16px;
    padding:18px 20px;
    transition:.3s;
}

.about-feature-item:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.about-feature-item i{
    color:#22c55e;
    font-size:22px;
}

.about-feature-item span{
    font-size:15px;
    font-weight:600;
    color:#07162d;
}



/* ===================================================
    BUTTON
=================================================== */

.about-btn{
    background:#22c55e;
    color:#fff;
    padding:16px 34px;
    border-radius:14px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:.3s;
    border:none;
}

.about-btn:hover{
    background:#16a34a;
    color:#fff;
    transform:translateY(-3px);
}



/* ===================================================
    MISSION SECTION
=================================================== */

.mission-section{
    padding:110px 0;
    background:#f4f8fc;
}

.mission-card{
    background:#fff;
    border-radius:28px;
    padding:50px;
    height:100%;
    transition:.3s;
    box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.mission-card:hover{
    transform:translateY(-8px);
}

.mission-icon{
    width:85px;
    height:85px;
    border-radius:22px;
    background:#ecfdf5;
    color:#22c55e;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:30px;
}

.mission-card h3{
    font-size:32px;
    font-weight:800;
    color:#07162d;
    margin-bottom:20px;
}

.mission-card p{
    font-size:16px;
    line-height:1.9;
    color:#5b6475;
}



/* ===================================================
    WHY SECTION
=================================================== */

.why-about-section{
    padding:120px 0;
    background:#fff;
}

.why-card{
    background:#fff;
    border-radius:28px;
    padding:45px 35px;
    text-align:center;
    border:1px solid #eef2f7;
    transition:.3s;
    height:100%;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.06);
}

.why-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:24px;
    background:#ecfdf5;
    color:#22c55e;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin-bottom:30px;
}

.why-card h4{
    font-size:24px;
    font-weight:800;
    margin-bottom:18px;
    color:#07162d;
}

.why-card p{
    color:#5b6475;
    line-height:1.9;
}



/* ===================================================
    CTA SECTION
=================================================== */

.about-cta-section{
    padding:0 0 120px;
    background:#fff;
}

.about-cta-box{
    background:linear-gradient(135deg,#07162d,#0b2447);
    border-radius:36px;
    padding:80px 60px;
    text-align:center;
    position:relative;
    overflow:hidden;
}

.about-cta-box::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,0.04);
    border-radius:50%;
    top:-120px;
    right:-100px;
}

.about-cta-box h2{
    font-size:50px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.about-cta-box p{
    font-size:18px;
    color:rgba(255,255,255,0.75);
    line-height:1.9;
    max-width:750px;
    margin:auto auto 40px;
    position:relative;
    z-index:2;
}

.cta-btn{
    background:#22c55e;
    color:#fff;
    padding:18px 40px;
    border-radius:16px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:12px;
    border:none;
    position:relative;
    z-index:2;
    transition:.3s;
}

.cta-btn:hover{
    background:#16a34a;
    color:#fff;
    transform:translateY(-4px);
}



/* ===================================================
    RESPONSIVE
=================================================== */

@media(max-width:1200px){

    .page-hero-content h1{
        font-size:56px;
    }

    .section-heading h2{
        font-size:42px;
    }

    .about-cta-box h2{
        font-size:42px;
    }

}

@media(max-width:991px){

    .page-hero-section{
        padding:140px 0 100px;
    }

    .page-hero-content h1{
        font-size:46px;
    }

    .page-hero-content p{
        font-size:18px;
    }

    .section-heading h2{
        font-size:36px;
    }

    .experience-box{
        position:relative;
        bottom:auto;
        right:auto;
        margin-top:25px;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .about-cta-box{
        padding:60px 30px;
    }

    .about-cta-box h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .page-hero-content h1{
        font-size:38px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .mission-card,
    .why-card{
        padding:35px 25px;
    }

    .about-cta-box h2{
        font-size:28px;
    }

}

/* ===================================================
    RESPONSIVE
=================================================== */

@media(max-width:1400px){

    .hero-title{
        font-size:68px;
    }

}

@media(max-width:1200px){

    .hero-title{
        font-size:58px;
    }

}

@media(max-width:991px){

    .hero-section{
        background-position:center;
    }

    .hero-content-wrapper{
        padding:100px 0;
    }

    .hero-title{
        font-size:46px;
    }

    .hero-text{
        font-size:18px;
    }

}

@media(max-width:576px){

    .hero-title{
        font-size:38px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-btn-primary,
    .hero-btn-outline{
        width:100%;
        justify-content:center;
    }

}


        /* ===================================================
            STATS
        =================================================== */

        .stats-section{
            margin-top:-70px;
            position:relative;
            z-index:10;
        }

        .stat-card{
            background:#081c36;
            color:#fff;
            padding:35px;
            border-radius:25px;
            text-align:center;
            height:100%;
        }

        .stat-card h2{
            font-size:45px;
            font-weight:700;
            color:#22c55e;
        }

        /* ===================================================
            SECTION TITLE
        =================================================== */

        .section-title{
            text-align:center;
            margin-bottom:60px;
        }

        .section-title span{
            background:rgba(13,110,253,0.1);
            color:#0d6efd;
            padding:10px 25px;
            border-radius:50px;
            font-weight:600;
        }

        .section-title h2{
            margin-top:20px;
            font-size:50px;
            font-weight:800;
            color:#081c36;
        }

        .section-title p{
            color:#6b7280;
            font-size:18px;
        }

        /* ===================================================
            SERVICES
        =================================================== */

        .services-section{
            padding:120px 0;
        }

        .service-card{
            background:#fff;
            padding:40px 30px;
            border-radius:25px;
            transition:.3s;
            height:100%;
            box-shadow:0 5px 25px rgba(0,0,0,0.05);
        }

        .service-card:hover{
            transform:translateY(-10px);
        }

        .service-icon{
            width:85px;
            height:85px;
            background:#0d6efd;
            color:#fff;
            border-radius:20px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:35px;
            margin-bottom:25px;
        }

        .service-card h4{
            font-weight:700;
            margin-bottom:15px;
        }

        .service-card p{
            color:#6b7280;
        }

        .service-link{
            font-weight:600;
            color:#0d6efd;
        }

        /* ===================================================
            PROJECTS
        =================================================== */

        .projects-section{
            padding:120px 0;
            background:#081c36;
        }

        .projects-section .section-title h2,
        .projects-section .section-title p{
            color:#fff;
        }

        .project-card{
            overflow:hidden;
            border-radius:25px;
            position:relative;
        }

        .project-card img{
            width:100%;
            height:350px;
            object-fit:cover;
            transition:.4s;
        }

        .project-card:hover img{
            transform:scale(1.1);
        }

        .project-overlay{
            position:absolute;
            bottom:0;
            width:100%;
            padding:30px;
            background:linear-gradient(to top,rgba(0,0,0,0.9),transparent);
            color:#fff;
        }

        /* ===================================================
            WHY CHOOSE US
        =================================================== */

        .why-section{
            padding:120px 0;
        }

        .why-box{
            padding:30px;
            border-radius:20px;
            background:#fff;
            box-shadow:0 5px 25px rgba(0,0,0,0.05);
            margin-bottom:25px;
        }

        .why-box i{
            font-size:40px;
            color:#22c55e;
        }

        /* ===================================================
            CLIENTS
        =================================================== */

        .clients-section{
            padding:100px 0;
            background:#fff;
        }

        .client-logo{
            text-align:center;
            padding:30px;
            background:#fff;
            border:1px solid #eef2f7;
            transition:.4s;
            box-shadow:
            0 10px 30px rgba(0,0,0,0.04);
            border-radius:20px;
            font-size:30px;
            font-weight:700;
            color:#9ca3af;
        }

        .client-logo:hover{

            transform:translateY(-6px);

            box-shadow:
            0 20px 50px rgba(0,0,0,0.08);
        }

        /* ===================================================
            CTA
        =================================================== */

        .cta-section{
            background:#22c55e;
            color:#fff;
            padding:80px 0;
        }

        .cta-section h2{
            font-size:50px;
            font-weight:800;
        }

        .cta-section::before{

            content:'';

            position:absolute;

            width:500px;
            height:500px;

            border-radius:50%;

            background:
            rgba(34,197,94,0.10);

            top:-180px;
            right:-100px;

            filter:blur(20px);
        }

        /* ===================================================
            FOOTER
        =================================================== */

        footer{
            background:#081c36;
            color:#fff;
            padding:100px 0 30px;
        }

        .footer-title{
            font-weight:700;
            margin-bottom:25px;
        }

        .footer-links a{
            display:block;
            color:#cbd5e1;
            margin-bottom:12px;
            transition:.3s;
        }

        .footer-links a:hover{
            color:#22c55e;
        }

        .social-links a{
            width:45px;
            height:45px;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            border-radius:50%;
            background:#0d6efd;
            color:#fff;
            margin-right:10px;
        }

        .copyright{
            border-top:1px solid rgba(255,255,255,0.1);
            margin-top:60px;
            padding-top:30px;
            text-align:center;
            color:#cbd5e1;
        }

        /* ===================================================
            RESPONSIVE
        =================================================== */

        @media(max-width:991px){

            .hero-title{
                font-size:45px;
            }

            .section-title h2{
                font-size:38px;
            }

            .cta-section h2{
                font-size:35px;
            }

        }


        /* ===================================================
    CONTACT PAGE SECTION
=================================================== */

.contact-section{
    padding:120px 0;
    background:
    linear-gradient(
        to bottom,
        #f8fbff 0%,
        #ffffff 100%
    );

    position:relative;
    overflow:hidden;
}

.contact-section::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:450px;
    height:450px;
    background:rgba(34,197,94,0.06);
    border-radius:50%;
}

.contact-section::after{
    content:'';
    position:absolute;
    bottom:-180px;
    left:-180px;
    width:500px;
    height:500px;
    background:rgba(14,165,233,0.05);
    border-radius:50%;
}



/* ===================================================
    LEFT SIDE
=================================================== */

.contact-info-wrapper{
    position:relative;
    z-index:2;
    padding-right:40px;
}

.contact-title{
    font-size:58px;
    line-height:1.12;
    font-weight:900;
    color:#07162d;
    margin:24px 0;
    letter-spacing:-2px;
}

.contact-description{
    font-size:17px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:45px;
}



/* ===================================================
    CONTACT CARDS
=================================================== */

.contact-info-item{
    display:flex;
    align-items:flex-start;
    gap:20px;

    background:#fff;

    padding:28px;

    border-radius:26px;

    margin-bottom:22px;

    transition:.4s;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 10px 30px rgba(0,0,0,0.04);
}

.contact-info-item:hover{

    transform:translateY(-6px);

    box-shadow:
    0 20px 45px rgba(0,0,0,0.08);

}

.contact-info-icon{

    width:70px;
    height:70px;
    min-width:70px;

    border-radius:22px;

    background:
    linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:26px;

    box-shadow:
    0 15px 30px rgba(34,197,94,0.28);

}

.contact-info-item span{

    display:block;

    font-size:12px;

    font-weight:800;

    letter-spacing:1px;

    color:#94a3b8;

    margin-bottom:8px;

    text-transform:uppercase;
}

.contact-info-item a,
.contact-info-item p{

    font-size:18px;

    line-height:1.7;

    color:#07162d;

    font-weight:700;

    margin:0;

    text-decoration:none;
}



/* ===================================================
    SOCIAL LINKS
=================================================== */

.contact-social{

    display:flex;

    gap:16px;

    margin-top:35px;
}

.contact-social a{

    width:54px;
    height:54px;

    border-radius:18px;

    background:#fff;

    color:#07162d;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:22px;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.contact-social a:hover{

    background:#22c55e;

    color:#fff;

    transform:translateY(-6px);
}



/* ===================================================
    FORM SIDE
=================================================== */

.contact-form-wrapper{

    background:#fff;

    padding:55px;

    border-radius:36px;

    position:relative;

    z-index:3;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 30px 70px rgba(0,0,0,0.08);
}



/* ===================================================
    FORM HEADER
=================================================== */

.form-header{

    margin-bottom:35px;
}

.form-header h3{

    font-size:40px;

    font-weight:900;

    color:#07162d;

    margin-bottom:10px;
}

.form-header p{

    color:#64748b;

    line-height:1.8;

    font-size:16px;
}



/* ===================================================
    FORM GROUP
=================================================== */

.form-group{

    margin-bottom:24px;
}

.form-group label{

    display:block;

    margin-bottom:10px;

    font-size:14px;

    font-weight:700;

    color:#07162d;
}

.form-control{

    height:62px;

    border-radius:18px;

    border:1px solid #e2e8f0;

    background:#f8fafc;

    padding:0 22px;

    font-size:15px;

    transition:.3s;

    box-shadow:none !important;
}

textarea.form-control{

    height:auto;

    padding-top:18px;

    resize:none;
}

.form-control:focus{

    border-color:#22c55e;

    background:#fff;

    box-shadow:
    0 0 0 4px rgba(34,197,94,0.10) !important;
}



/* ===================================================
    BUTTON
=================================================== */

.contact-btn{

    width:100%;

    height:64px;

    border:none;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );

    color:#fff;

    font-size:15px;

    font-weight:800;

    letter-spacing:.5px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    transition:.4s;

    box-shadow:
    0 20px 40px rgba(34,197,94,0.28);
}

.contact-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 25px 50px rgba(34,197,94,0.35);
}



/* ===================================================
    SUCCESS ALERT
=================================================== */

.alert-success{

    border:none;

    border-radius:18px;

    background:#ecfdf5;

    color:#15803d;

    padding:18px 24px;

    font-weight:700;

    margin-bottom:30px;
}



/* ===================================================
    MAP SECTION
=================================================== */

.map-section{

    position:relative;
}

.map-section iframe{

    width:100%;

    height:550px;

    border:none;

    filter:grayscale(10%);
}



/* ===================================================
    RESPONSIVE
=================================================== */

@media(max-width:1200px){

    .contact-title{
        font-size:48px;
    }

}

@media(max-width:991px){

    .contact-section{
        padding:90px 0;
    }

    .contact-info-wrapper{
        padding-right:0;
    }

    .contact-title{
        font-size:40px;
    }

    .contact-form-wrapper{
        padding:40px 30px;
    }

}

@media(max-width:576px){

    .contact-title{
        font-size:34px;
    }

    .form-header h3{
        font-size:30px;
    }

    .contact-form-wrapper{
        padding:35px 24px;
        border-radius:26px;
    }

    .contact-info-item{
        padding:22px;
    }

    /* ===================================================
        CONTACT ROW SAME HEIGHT
    =================================================== */

    .contact-section .row{
        align-items:stretch;
    }

    .contact-section .col-lg-5,
    .contact-section .col-lg-7{
        display:flex;
    }



    /* ===================================================
        LEFT CARD
    =================================================== */

    .contact-info-wrapper{
        width:100%;
        height:100%;
    }



    /* ===================================================
        RIGHT CARD
    =================================================== */

    .contact-form-wrapper{
        width:100%;
        height:100%;
        display:flex;
        flex-direction:column;
        justify-content:center;
    }

    

}

/* ===================================================
    PROJECTS PAGE SECTION
=================================================== */

.projects-page-section{
    position:relative;
    padding:120px 0;
    background:
    linear-gradient(
        to bottom,
        #f8fbff 0%,
        #ffffff 100%
    );

    overflow:hidden;
}



/* ===================================================
    BACKGROUND SHAPES
=================================================== */

.projects-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(20px);
}

.shape-1{
    width:420px;
    height:420px;
    background:rgba(34,197,94,0.06);
    top:-140px;
    right:-120px;
}

.shape-2{
    width:500px;
    height:500px;
    background:rgba(59,130,246,0.05);
    bottom:-200px;
    left:-180px;
}



/* ===================================================
    SECTION HEADING
=================================================== */

.section-heading{
    position:relative;
    z-index:2;
    margin-bottom:60px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#ecfdf5;
    color:#16a34a;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:24px;
}

.section-heading h2{
    font-size:56px;
    font-weight:900;
    line-height:1.15;
    color:#07162d;
    margin-bottom:20px;
    letter-spacing:-2px;
}

.section-description{
    max-width:760px;
    margin:auto;
    color:#64748b;
    font-size:18px;
    line-height:1.9;
}



/* ===================================================
    PROJECT FILTERS
=================================================== */

.project-filters{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.project-filters button{
    border:none;
    background:#fff;
    padding:14px 26px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    color:#07162d;
    transition:.3s;

    box-shadow:
    0 8px 25px rgba(0,0,0,0.05);
}

.project-filters button:hover,
.project-filters button.active{
    background:#22c55e;
    color:#fff;
    transform:translateY(-3px);
}



/* ===================================================
    PROJECT CARD
=================================================== */

.project-card{
    position:relative;
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    transition:.4s;
    height:100%;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);
}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.12);
}



/* ===================================================
    PROJECT IMAGE
=================================================== */

.project-image{
    position:relative;
    overflow:hidden;
    height:280px;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.project-card:hover .project-image img{
    transform:scale(1.08);
}



/* ===================================================
    CATEGORY BADGE
=================================================== */

.project-category-badge{
    position:absolute;
    top:20px;
    left:20px;

    background:rgba(255,255,255,0.92);

    backdrop-filter:blur(10px);

    padding:10px 18px;

    border-radius:50px;

    color:#07162d;

    font-size:12px;

    font-weight:800;

    letter-spacing:.5px;

    z-index:3;
}



/* ===================================================
    OVERLAY
=================================================== */

.project-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(7,22,45,0.82),
        rgba(7,22,45,0.18)
    );

    display:flex;
    align-items:flex-end;
    justify-content:flex-end;

    padding:25px;

    opacity:0;

    transition:.4s;
}

.project-card:hover .project-overlay{
    opacity:1;
}

.project-overlay-content{
    transform:translateY(20px);
    transition:.4s;
}

.project-card:hover .project-overlay-content{
    transform:translateY(0);
}



/* ===================================================
    VIEW BUTTON
=================================================== */

.project-view-btn{
    width:62px;
    height:62px;

    border-radius:20px;

    background:#22c55e;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:24px;

    transition:.3s;

    box-shadow:
    0 15px 35px rgba(34,197,94,0.30);
}

.project-view-btn:hover{
    background:#16a34a;
    color:#fff;
    transform:rotate(45deg);
}



/* ===================================================
    PROJECT CONTENT
=================================================== */

.project-content{
    padding:32px;
}

.project-content h3{
    margin-bottom:16px;
}

.project-content h3 a{
    font-size:30px;
    line-height:1.3;
    font-weight:800;
    color:#07162d;
    text-decoration:none;
    transition:.3s;
}

.project-content h3 a:hover{
    color:#22c55e;
}

.project-content p{
    color:#64748b;
    line-height:1.9;
    font-size:15px;
    margin-bottom:28px;
}



/* ===================================================
    PROJECT META
=================================================== */

.project-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    flex-wrap:wrap;

    padding-top:22px;
    border-top:1px solid #eef2f7;
}

.project-meta-item{
    display:flex;
    align-items:center;
    gap:10px;
}

.project-meta-item i{
    color:#22c55e;
    font-size:16px;
}

.project-meta-item span{
    font-size:14px;
    color:#475569;
    font-weight:600;
}



/* ===================================================
    PROJECT FOOTER
=================================================== */

.project-footer{
    margin-top:28px;
}

.project-read-more{
    display:inline-flex;
    align-items:center;
    gap:10px;

    color:#22c55e;

    font-weight:800;

    text-decoration:none;

    transition:.3s;
}

.project-read-more i{
    transition:.3s;
}

.project-read-more:hover{
    color:#16a34a;
}

.project-read-more:hover i{
    transform:translateX(5px);
}



/* ===================================================
    EMPTY STATE
=================================================== */

.empty-projects{
    background:#fff;
    border-radius:32px;
    padding:80px 40px;
    text-align:center;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);
}

.empty-icon{
    width:110px;
    height:110px;

    border-radius:30px;

    background:#f1f5f9;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 30px;
}

.empty-icon i{
    font-size:52px;
    color:#94a3b8;
}

.empty-projects h4{
    font-size:32px;
    font-weight:900;
    color:#07162d;
    margin-bottom:14px;
}

.empty-projects p{
    color:#64748b;
    font-size:16px;
}



/* ===================================================
    PAGINATION
=================================================== */

.custom-pagination{
    margin-top:70px;
    display:flex;
    justify-content:center;
}

.custom-pagination .pagination{
    gap:12px;
}

.custom-pagination .page-link{
    width:52px;
    height:52px;

    border:none;

    border-radius:16px !important;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#07162d;

    font-weight:700;

    box-shadow:
    0 8px 20px rgba(0,0,0,0.05);
}

.custom-pagination .active .page-link{
    background:#22c55e;
    color:#fff;
}



/* ===================================================
    CTA SECTION
=================================================== */

.projects-cta-section{
    padding:0 0 120px;
    background:#fff;
}

.projects-cta-box{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        135deg,
        #07162d,
        #0b2447
    );

    border-radius:40px;

    padding:75px 65px;
}



/* ===================================================
    CTA SHAPES
=================================================== */

.cta-shape{
    position:absolute;
    border-radius:50%;
}

.cta-shape-1{
    width:320px;
    height:320px;
    background:rgba(255,255,255,0.05);
    top:-100px;
    right:-60px;
}

.cta-shape-2{
    width:220px;
    height:220px;
    background:rgba(34,197,94,0.10);
    bottom:-80px;
    left:-60px;
}



/* ===================================================
    CTA CONTENT
=================================================== */

.cta-mini-title{
    display:inline-block;
    color:#22c55e;
    font-size:14px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:18px;
}

.projects-cta-box h2{
    font-size:52px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
    margin-bottom:20px;
}

.projects-cta-box p{
    color:rgba(255,255,255,0.75);
    font-size:17px;
    line-height:1.9;
    max-width:720px;
}



/* ===================================================
    CTA BUTTON
=================================================== */

.projects-cta-btn{
    background:#22c55e;
    color:#fff;

    border:none;

    padding:18px 38px;

    border-radius:18px;

    font-weight:800;

    display:inline-flex;
    align-items:center;
    gap:12px;

    transition:.4s;

    box-shadow:
    0 18px 40px rgba(34,197,94,0.30);
}

.projects-cta-btn:hover{
    background:#16a34a;
    color:#fff;
    transform:translateY(-5px);
}



/* ===================================================
    RESPONSIVE
=================================================== */

@media(max-width:1200px){

    .section-heading h2{
        font-size:46px;
    }

    .projects-cta-box h2{
        font-size:42px;
    }

}

@media(max-width:991px){

    .projects-page-section{
        padding:90px 0;
    }

    .projects-cta-section{
        padding-bottom:90px;
    }

    .projects-cta-box{
        padding:55px 35px;
        text-align:center;
    }

    .projects-cta-box h2{
        font-size:36px;
    }

}

@media(max-width:576px){

    .section-heading h2{
        font-size:34px;
    }

    .project-content{
        padding:25px;
    }

    .project-content h3 a{
        font-size:24px;
    }

    .projects-cta-box h2{
        font-size:28px;
    }

    .projects-cta-box{
        padding:45px 25px;
    }

}

/* ===================================================
    PROJECT DETAILS SECTION
=================================================== */

.project-details-section{
    padding:120px 0;
    background:
    linear-gradient(
        to bottom,
        #f8fbff 0%,
        #ffffff 100%
    );

    position:relative;
    overflow:hidden;
}

.project-details-section::before{
    content:'';
    position:absolute;

    top:-120px;
    right:-120px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:rgba(34,197,94,0.05);
}

.project-details-section::after{
    content:'';
    position:absolute;

    bottom:-180px;
    left:-150px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(59,130,246,0.05);
}



/* ===================================================
    MAIN IMAGE
=================================================== */

.project-main-image{
    position:relative;
    overflow:hidden;
    border-radius:36px;

    margin-bottom:45px;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.10);
}

.project-main-image img{
    width:100%;
    transition:.6s;
}

.project-main-image:hover img{
    transform:scale(1.05);
}



/* ===================================================
    DETAILS CONTENT
=================================================== */

.project-details-content{
    position:relative;
    z-index:2;
}

.project-description{
    color:#475569;
    font-size:17px;
    line-height:2;
}



/* ===================================================
    GALLERY
=================================================== */

.project-gallery{
    margin-top:60px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:28px;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.06);
}

.gallery-item img{
    width:100%;
    transition:.6s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}



/* ===================================================
    SIDEBAR
=================================================== */

.project-sidebar{
    position:sticky;
    top:120px;
}



/* ===================================================
    INFO CARD
=================================================== */

.project-info-card{
    background:#fff;

    border-radius:32px;

    padding:38px;

    margin-bottom:30px;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 15px 40px rgba(0,0,0,0.06);
}

.project-info-card h4{
    font-size:30px;
    font-weight:900;
    color:#07162d;
    margin-bottom:30px;
}



/* ===================================================
    INFO ITEM
=================================================== */

.project-info-item{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    padding:18px 0;

    border-bottom:1px solid #eef2f7;
}

.project-info-item:last-child{
    border-bottom:none;
}

.project-info-item span{
    color:#64748b;
    font-size:14px;
    font-weight:600;
}

.project-info-item strong{
    color:#07162d;
    font-size:15px;
    font-weight:800;
}



/* ===================================================
    CONTACT CARD
=================================================== */

.project-contact-card{
    background:
    linear-gradient(
        135deg,
        #07162d,
        #0b2447
    );

    border-radius:32px;

    padding:40px;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 20px 50px rgba(0,0,0,0.12);
}

.project-contact-card::before{
    content:'';
    position:absolute;

    width:240px;
    height:240px;

    border-radius:50%;

    background:rgba(255,255,255,0.05);

    top:-80px;
    right:-80px;
}

.project-contact-card h4{
    font-size:32px;
    line-height:1.3;
    font-weight:900;
    color:#fff;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.project-contact-card p{
    color:rgba(255,255,255,0.75);
    line-height:1.9;
    margin-bottom:30px;
    position:relative;
    z-index:2;
}



/* ===================================================
    CONTACT BUTTON
=================================================== */

.project-contact-btn{
    width:100%;

    height:62px;

    border:none;

    border-radius:18px;

    background:#22c55e;

    color:#fff;

    font-weight:800;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    transition:.4s;

    position:relative;
    z-index:2;

    box-shadow:
    0 15px 35px rgba(34,197,94,0.25);
}

.project-contact-btn:hover{
    background:#16a34a;
    color:#fff;
    transform:translateY(-5px);
}



/* ===================================================
    RELATED PROJECTS
=================================================== */

.related-projects-section{
    padding:0 0 120px;
    background:#fff;
}



/* ===================================================
    RELATED PROJECT CARD
=================================================== */

.related-projects-section .project-card{
    background:#fff;

    border-radius:30px;

    overflow:hidden;

    height:100%;

    transition:.4s;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);
}

.related-projects-section .project-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.10);
}



/* ===================================================
    RELATED IMAGE
=================================================== */

.related-projects-section .project-image{
    position:relative;
    overflow:hidden;
    height:260px;
}

.related-projects-section .project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.related-projects-section .project-card:hover img{
    transform:scale(1.08);
}



/* ===================================================
    OVERLAY
=================================================== */

.related-projects-section .project-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(7,22,45,0.80),
        rgba(7,22,45,0.15)
    );

    display:flex;
    align-items:flex-end;
    justify-content:flex-end;

    padding:24px;

    opacity:0;

    transition:.4s;
}

.related-projects-section .project-card:hover .project-overlay{
    opacity:1;
}



/* ===================================================
    VIEW BUTTON
=================================================== */

.related-projects-section .project-view-btn{
    width:58px;
    height:58px;

    border-radius:18px;

    background:#22c55e;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    text-decoration:none;

    transition:.3s;
}

.related-projects-section .project-view-btn:hover{
    background:#16a34a;
    color:#fff;
    transform:rotate(45deg);
}



/* ===================================================
    RELATED CONTENT
=================================================== */

.related-projects-section .project-content{
    padding:30px;
}

.related-projects-section .project-category{
    display:inline-block;

    padding:8px 16px;

    border-radius:50px;

    background:#ecfdf5;

    color:#16a34a;

    font-size:12px;

    font-weight:800;

    margin-bottom:18px;

    text-transform:uppercase;
}

.related-projects-section .project-content h3{
    font-size:28px;
    line-height:1.3;
    font-weight:900;
    color:#07162d;
    margin-bottom:16px;
}

.related-projects-section .project-content p{
    color:#64748b;
    line-height:1.9;
    font-size:15px;
}



/* ===================================================
    RESPONSIVE
=================================================== */

@media(max-width:1200px){

    .project-contact-card h4{
        font-size:28px;
    }

}

@media(max-width:991px){

    .project-details-section{
        padding:90px 0;
    }

    .related-projects-section{
        padding-bottom:90px;
    }

    .project-sidebar{
        position:relative;
        top:auto;
    }

}

@media(max-width:576px){

    .project-info-card,
    .project-contact-card{
        padding:30px 24px;
    }

    .project-contact-card h4{
        font-size:26px;
    }

    .related-projects-section .project-content{
        padding:24px;
    }

    .related-projects-section .project-content h3{
        font-size:24px;
    }

}

/* ===================================================
    CLIENTS PAGE SECTION
=================================================== */

.clients-page-section{
    position:relative;
    padding:120px 0;
    background:
    linear-gradient(
        to bottom,
        #f8fbff 0%,
        #ffffff 100%
    );

    overflow:hidden;
}



/* ===================================================
    BACKGROUND SHAPES
=================================================== */

.clients-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(20px);
}

.clients-page-section .shape-1{
    width:420px;
    height:420px;
    background:rgba(34,197,94,0.06);
    top:-140px;
    right:-120px;
}

.clients-page-section .shape-2{
    width:500px;
    height:500px;
    background:rgba(59,130,246,0.05);
    bottom:-180px;
    left:-160px;
}



/* ===================================================
    SECTION HEADING
=================================================== */

.section-heading{
    position:relative;
    z-index:2;
    margin-bottom:30px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#ecfdf5;
    color:#16a34a;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:24px;
}

.section-heading h2{
    font-size:56px;
    line-height:1.15;
    font-weight:900;
    color:#07162d;
    margin-bottom:20px;
    letter-spacing:-2px;
}

.section-description{
    max-width:760px;
    margin:auto;
    color:#64748b;
    font-size:18px;
    line-height:1.9;
}



/* ===================================================
    CLIENT CARD
=================================================== */

.client-card{
    background:#fff;

    border-radius:32px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:.4s;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);
}

.client-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.10);
}

.client-card::before{
    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
        to right,
        #22c55e,
        #3b82f6
    );

    transform:scaleX(0);

    transition:.4s;
}

.client-card:hover::before{
    transform:scaleX(1);
}



/* ===================================================
    CLIENT LOGO
=================================================== */

.client-logo{
    height:120px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.client-logo img{
    max-width:170px;
    max-height:90px;

    object-fit:contain;

    transition:.4s;

    filter:grayscale(100%);
    opacity:.85;
}

.client-card:hover .client-logo img{
    transform:scale(1.08);
    filter:grayscale(0%);
    opacity:1;
}



/* ===================================================
    CLIENT CONTENT
=================================================== */

.client-content h4{
    font-size:24px;
    font-weight:800;
    color:#07162d;
    margin-bottom:10px;
}

.client-content span{
    display:inline-block;

    color:#64748b;

    font-size:14px;

    font-weight:600;
}



/* ===================================================
    EMPTY STATE
=================================================== */

.empty-clients{
    background:#fff;

    border-radius:36px;

    padding:90px 40px;

    text-align:center;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);
}

.empty-icon{
    width:120px;
    height:120px;

    border-radius:35px;

    background:#f1f5f9;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 30px;
}

.empty-icon i{
    font-size:58px;
    color:#94a3b8;
}

.empty-clients h4{
    font-size:34px;
    font-weight:900;
    color:#07162d;
    margin-bottom:16px;
}

.empty-clients p{
    color:#64748b;
    font-size:17px;
}



/* ===================================================
    CLIENT STATS SECTION
=================================================== */

.client-stats-section{
    padding:0 0 120px;
    background:#fff;
}



/* ===================================================
    STAT CARD
=================================================== */

.client-stat-card{
    background:#fff;

    border-radius:32px;

    padding:45px 35px;

    text-align:center;

    height:100%;

    transition:.4s;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);
}

.client-stat-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.10);
}



/* ===================================================
    STAT ICON
=================================================== */

.stat-icon{
    width:90px;
    height:90px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:38px;

    margin:auto auto 30px;

    box-shadow:
    0 20px 40px rgba(34,197,94,0.25);
}



/* ===================================================
    STAT TEXT
=================================================== */

.client-stat-card h2{
    font-size:54px;
    font-weight:900;
    color:#07162d;
    margin-bottom:12px;
}

.client-stat-card p{
    color:#64748b;
    font-size:16px;
    font-weight:600;
    margin:0;
}



/* ===================================================
    CTA SECTION
=================================================== */

.clients-cta-section{
    padding:0 0 120px;
    background:#fff;
}

.clients-cta-box{
    position:relative;

    overflow:hidden;

    border-radius:40px;

    padding:75px 65px;

    background:
    linear-gradient(
        135deg,
        #07162d,
        #0b2447
    );
}



/* ===================================================
    CTA SHAPES
=================================================== */

.cta-shape{
    position:absolute;
    border-radius:50%;
}

.cta-shape-1{
    width:320px;
    height:320px;

    background:rgba(255,255,255,0.05);

    top:-100px;
    right:-60px;
}

.cta-shape-2{
    width:220px;
    height:220px;

    background:rgba(34,197,94,0.10);

    bottom:-80px;
    left:-60px;
}



/* ===================================================
    CTA CONTENT
=================================================== */

.cta-mini-title{
    display:inline-block;

    color:#22c55e;

    font-size:14px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:18px;
}

.clients-cta-box h2{
    font-size:52px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
    margin-bottom:20px;
}

.clients-cta-box p{
    color:rgba(255,255,255,0.75);

    font-size:17px;

    line-height:1.9;

    max-width:720px;
}



/* ===================================================
    CTA BUTTON
=================================================== */

.clients-cta-btn{
    background:#22c55e;

    color:#fff;

    border:none;

    padding:18px 38px;

    border-radius:18px;

    font-weight:800;

    display:inline-flex;
    align-items:center;
    gap:12px;

    transition:.4s;

    box-shadow:
    0 18px 40px rgba(34,197,94,0.30);
}

.clients-cta-btn:hover{
    background:#16a34a;
    color:#fff;
    transform:translateY(-5px);
}



/* ===================================================
    RESPONSIVE
=================================================== */

@media(max-width:1200px){

    .section-heading h2{
        font-size:46px;
    }

    .clients-cta-box h2{
        font-size:42px;
    }

}

@media(max-width:991px){

    .clients-page-section{
        padding:90px 0;
    }

    .client-stats-section,
    .clients-cta-section{
        padding-bottom:90px;
    }

    .clients-cta-box{
        padding:55px 35px;
        text-align:center;
    }

    .clients-cta-box h2{
        font-size:36px;
    }

}

@media(max-width:576px){

    .section-heading h2{
        font-size:34px;
    }

    .client-card{
        padding:35px 25px;
    }

    .client-content h4{
        font-size:22px;
    }

    .client-stat-card{
        padding:35px 25px;
    }

    .client-stat-card h2{
        font-size:42px;
    }

    .clients-cta-box{
        padding:45px 25px;
    }

    .clients-cta-box h2{
        font-size:28px;
    }

}
/* ===================================================
    QUOTE SECTION
=================================================== */

.quote-section{
    position:relative;
    padding:120px 0;
    background:
    linear-gradient(
        to bottom,
        #f8fbff 0%,
        #ffffff 100%
    );

    overflow:hidden;
}



/* ===================================================
    BACKGROUND SHAPES
=================================================== */

.quote-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(20px);
}

.quote-shape-1{
    width:450px;
    height:450px;

    background:rgba(34,197,94,0.05);

    top:-160px;
    right:-140px;
}

.quote-shape-2{
    width:520px;
    height:520px;

    background:rgba(59,130,246,0.05);

    bottom:-220px;
    left:-180px;
}



/* ===================================================
    LEFT INFO CARD
=================================================== */

.quote-info-card{
    position:sticky;
    top:120px;

    background:
    linear-gradient(
        135deg,
        #07162d,
        #0b2447
    );

    border-radius:36px;

    padding:45px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.12);
}

.quote-info-card::before{
    content:'';

    position:absolute;

    width:320px;
    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,0.04);

    top:-100px;
    right:-100px;
}



/* ===================================================
    LEFT CONTENT
=================================================== */

.quote-info-card .section-badge{
    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(34,197,94,0.12);

    color:#22c55e;

    font-size:13px;

    font-weight:800;

    letter-spacing:.5px;

    margin-bottom:24px;

    position:relative;
    z-index:2;
}

.quote-info-card h2{
    font-size:42px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
    margin-bottom:22px;
    position:relative;
    z-index:2;
}

.quote-info-card p{
    color:rgba(255,255,255,0.72);
    line-height:1.9;
    font-size:16px;
    margin-bottom:40px;
    position:relative;
    z-index:2;
}



/* ===================================================
    FEATURE ITEMS
=================================================== */

.quote-feature-list{
    position:relative;
    z-index:2;
}

.quote-feature-item{
    display:flex;
    align-items:flex-start;
    gap:18px;

    margin-bottom:28px;
}

.quote-feature-icon{
    width:60px;
    height:60px;

    min-width:60px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:24px;

    box-shadow:
    0 15px 30px rgba(34,197,94,0.20);
}

.quote-feature-item h5{
    color:#fff;
    font-size:18px;
    font-weight:800;
    margin-bottom:6px;
}

.quote-feature-item span{
    color:rgba(255,255,255,0.70);
    font-size:14px;
    line-height:1.7;
}



/* ===================================================
    FORM WRAPPER
=================================================== */

.quote-form-wrapper{
    background:#fff;

    border-radius:40px;

    padding:55px;

    position:relative;

    overflow:hidden;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.08);
}

.quote-form-wrapper::before{
    content:'';

    position:absolute;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(34,197,94,0.03);

    top:-80px;
    right:-80px;
}



/* ===================================================
    FORM HEADER
=================================================== */

.quote-form-header{
    position:relative;
    z-index:2;

    margin-bottom:40px;
}

.quote-form-header .section-badge{
    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:#ecfdf5;

    color:#16a34a;

    font-size:13px;

    font-weight:800;

    margin-bottom:20px;
}

.quote-form-header h2{
    font-size:48px;
    line-height:1.2;
    font-weight:900;
    color:#07162d;
    margin-bottom:18px;
    letter-spacing:-1.5px;
}

.quote-form-header p{
    color:#64748b;
    font-size:17px;
    line-height:1.9;
}



/* ===================================================
    ALERT
=================================================== */

.alert-success{
    border:none;

    border-radius:18px;

    background:#ecfdf5;

    color:#15803d;

    padding:18px 24px;

    font-weight:700;

    margin-bottom:35px;

    display:flex;
    align-items:center;
    gap:12px;
}



/* ===================================================
    FORM GROUP
=================================================== */

.form-group{
    margin-bottom:24px;
    position:relative;
    z-index:2;
}

.form-group label{
    display:block;

    margin-bottom:10px;

    color:#07162d;

    font-size:14px;

    font-weight:700;
}



/* ===================================================
    INPUTS
=================================================== */

.form-control,
.form-select{
    height:62px;

    border-radius:18px;

    border:1px solid #e2e8f0;

    background:#f8fafc;

    padding:0 22px;

    font-size:15px;

    color:#07162d;

    transition:.3s;

    box-shadow:none !important;
}

textarea.form-control{
    height:auto;
    padding-top:18px;
    resize:none;
}

.form-control:focus,
.form-select:focus{
    border-color:#22c55e;

    background:#fff;

    box-shadow:
    0 0 0 4px rgba(34,197,94,0.10) !important;
}



/* ===================================================
    FILE INPUT
=================================================== */

input[type="file"].form-control{
    padding:16px 18px;
}



/* ===================================================
    SMALL TEXT
=================================================== */

.form-group small{
    display:block;
    margin-top:8px;
    color:#94a3b8;
    font-size:13px;
}



/* ===================================================
    CHECKBOX
=================================================== */

.custom-checkbox{
    background:#f8fafc;

    padding:18px 22px;

    border-radius:18px;

    border:1px solid #e2e8f0;
}

.custom-checkbox .form-check-input{
    width:20px;
    height:20px;

    margin-top:.15rem;

    border-color:#cbd5e1;

    box-shadow:none !important;
}

.custom-checkbox .form-check-input:checked{
    background-color:#22c55e;
    border-color:#22c55e;
}

.custom-checkbox .form-check-label{
    margin-left:10px;
    font-weight:600;
    color:#475569;
}



/* ===================================================
    SUBMIT BUTTON
=================================================== */

.quote-submit-btn{
    width:100%;

    height:68px;

    border:none;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );

    color:#fff;

    font-size:15px;

    font-weight:900;

    letter-spacing:.5px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;

    transition:.4s;

    box-shadow:
    0 20px 45px rgba(34,197,94,0.28);
}

.quote-submit-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 25px 55px rgba(34,197,94,0.35);
}

.quote-submit-btn i{
    transition:.3s;
}

.quote-submit-btn:hover i{
    transform:translateX(5px);
}



/* ===================================================
    RESPONSIVE
=================================================== */

@media(max-width:1200px){

    .quote-form-header h2{
        font-size:42px;
    }

    .quote-info-card h2{
        font-size:36px;
    }

}

@media(max-width:991px){

    .quote-section{
        padding:90px 0;
    }

    .quote-info-card{
        position:relative;
        top:auto;
    }

    .quote-form-wrapper{
        padding:40px 30px;
    }

    .quote-form-header h2{
        font-size:36px;
    }

}

@media(max-width:576px){

    .quote-info-card{
        padding:35px 28px;
    }

    .quote-form-wrapper{
        padding:35px 24px;
        border-radius:28px;
    }

    .quote-form-header h2{
        font-size:30px;
    }

    .quote-info-card h2{
        font-size:30px;
    }

    .quote-submit-btn{
        height:62px;
        font-size:14px;
    }

}

/* ===================================================
    SOLUTIONS PAGE SECTION
=================================================== */

.solutions-page-section{
    position:relative;
    padding:120px 0;
    background:
    linear-gradient(
        to bottom,
        #f8fbff 0%,
        #ffffff 100%
    );

    overflow:hidden;
}



/* ===================================================
    BACKGROUND SHAPES
=================================================== */

.solutions-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(20px);
}

.solutions-page-section .shape-1{
    width:450px;
    height:450px;

    background:rgba(34,197,94,0.05);

    top:-160px;
    right:-120px;
}

.solutions-page-section .shape-2{
    width:520px;
    height:520px;

    background:rgba(59,130,246,0.05);

    bottom:-220px;
    left:-180px;
}



/* ===================================================
    SECTION HEADING
=================================================== */

.section-heading{
    position:relative;
    z-index:2;
}

.section-badge{
    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#ecfdf5;

    color:#16a34a;

    font-size:14px;

    font-weight:800;

    letter-spacing:.5px;

    margin-bottom:24px;
}

.section-heading h2{
    font-size:56px;
    line-height:1.15;
    font-weight:900;
    color:#07162d;
    margin-bottom:20px;
    letter-spacing:-2px;
}

.section-description{
    max-width:760px;
    margin:auto;

    color:#64748b;

    font-size:18px;

    line-height:1.9;
}



/* ===================================================
    SOLUTION CARD
=================================================== */

.solution-card{
    position:relative;

    background:#fff;

    border-radius:34px;

    padding:38px;

    height:100%;

    overflow:hidden;

    transition:.4s;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);
}

.solution-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.10);
}

.solution-card::before{
    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
        to right,
        #22c55e,
        #3b82f6
    );

    transform:scaleX(0);

    transition:.4s;
}

.solution-card:hover::before{
    transform:scaleX(1);
}



/* ===================================================
    TOP AREA
=================================================== */

.solution-top{
    display:flex;
    align-items:center;
    justify-content:space-between;

    margin-bottom:30px;
}



/* ===================================================
    ICON
=================================================== */

.solution-icon{
    width:88px;
    height:88px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:40px;

    box-shadow:
    0 20px 40px rgba(34,197,94,0.25);
}

.solution-card:hover .solution-icon{
    transform:rotate(-5deg) scale(1.05);
}



/* ===================================================
    NUMBER
=================================================== */

.solution-number{
    font-size:42px;
    font-weight:900;
    color:#e2e8f0;
}



/* ===================================================
    CONTENT
=================================================== */

.solution-content{
    margin-bottom:30px;
}

.solution-content h3{
    font-size:30px;
    line-height:1.3;
    font-weight:900;
    color:#07162d;
    margin-bottom:18px;
}

.solution-content p{
    color:#64748b;
    font-size:16px;
    line-height:1.9;
}



/* ===================================================
    FEATURES
=================================================== */

.solution-features{
    margin-bottom:30px;
}

.solution-feature-item{
    display:flex;
    align-items:center;
    gap:12px;

    margin-bottom:14px;
}

.solution-feature-item i{
    color:#22c55e;
    font-size:18px;
}

.solution-feature-item span{
    color:#475569;
    font-size:15px;
    font-weight:600;
}



/* ===================================================
    FOOTER
=================================================== */

.solution-footer{
    margin-top:auto;
}



/* ===================================================
    BUTTON
=================================================== */

.solution-btn{
    width:100%;

    height:60px;

    border-radius:18px;

    background:#f8fafc;

    color:#07162d;

    font-weight:800;

    text-decoration:none;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    transition:.4s;

    border:1px solid #e2e8f0;
}

.solution-btn:hover{
    background:#22c55e;
    color:#fff;

    transform:translateY(-3px);

    border-color:#22c55e;
}



/* ===================================================
    PROCESS SECTION
=================================================== */

.solutions-process-section{
    padding:0 0 120px;
    background:#fff;
}



/* ===================================================
    PROCESS CARD
=================================================== */

.process-card{
    position:relative;

    background:#fff;

    border-radius:34px;

    padding:45px 35px;

    text-align:center;

    height:100%;

    overflow:hidden;

    transition:.4s;

    border:1px solid rgba(0,0,0,0.04);

    box-shadow:
    0 12px 35px rgba(0,0,0,0.05);
}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.10);
}



/* ===================================================
    PROCESS NUMBER
=================================================== */

.process-number{
    position:absolute;

    top:25px;
    right:25px;

    font-size:48px;
    font-weight:900;

    color:#e2e8f0;
}



/* ===================================================
    PROCESS ICON
=================================================== */

.process-icon{
    width:95px;
    height:95px;

    border-radius:30px;

    background:
    linear-gradient(
        135deg,
        #22c55e,
        #16a34a
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:42px;

    margin:auto auto 30px;

    box-shadow:
    0 20px 40px rgba(34,197,94,0.25);
}



/* ===================================================
    PROCESS CONTENT
=================================================== */

.process-card h4{
    font-size:28px;
    font-weight:900;
    color:#07162d;
    margin-bottom:18px;
}

.process-card p{
    color:#64748b;
    line-height:1.9;
    font-size:15px;
}



/* ===================================================
    CTA SECTION
=================================================== */

.solutions-cta-section{
    padding:0 0 120px;
    background:#fff;
}

.solutions-cta-box{
    position:relative;

    overflow:hidden;

    border-radius:42px;

    padding:75px 65px;

    background:
    linear-gradient(
        135deg,
        #07162d,
        #0b2447
    );
}



/* ===================================================
    CTA SHAPES
=================================================== */

.cta-shape{
    position:absolute;
    border-radius:50%;
}

.cta-shape-1{
    width:320px;
    height:320px;

    background:rgba(255,255,255,0.05);

    top:-100px;
    right:-60px;
}

.cta-shape-2{
    width:220px;
    height:220px;

    background:rgba(34,197,94,0.10);

    bottom:-80px;
    left:-60px;
}



/* ===================================================
    CTA CONTENT
=================================================== */

.cta-mini-title{
    display:inline-block;

    color:#22c55e;

    font-size:14px;

    font-weight:800;

    letter-spacing:1px;

    margin-bottom:18px;
}

.solutions-cta-box h2{
    font-size:54px;
    line-height:1.2;
    font-weight:900;
    color:#fff;
    margin-bottom:20px;
}

.solutions-cta-box p{
    color:rgba(255,255,255,0.75);

    font-size:17px;

    line-height:1.9;

    max-width:720px;
}



/* ===================================================
    CTA BUTTON
=================================================== */

.solutions-cta-btn{
    background:#22c55e;

    color:#fff;

    border:none;

    padding:18px 38px;

    border-radius:18px;

    font-weight:800;

    display:inline-flex;
    align-items:center;
    gap:12px;

    transition:.4s;

    box-shadow:
    0 18px 40px rgba(34,197,94,0.30);
}

.solutions-cta-btn:hover{
    background:#16a34a;
    color:#fff;

    transform:translateY(-5px);
}



/* ===================================================
    RESPONSIVE
=================================================== */

@media(max-width:1200px){

    .section-heading h2{
        font-size:46px;
    }

    .solutions-cta-box h2{
        font-size:42px;
    }

}

@media(max-width:991px){

    .solutions-page-section{
        padding:90px 0;
    }

    .solutions-process-section,
    .solutions-cta-section{
        padding-bottom:90px;
    }

    .solutions-cta-box{
        padding:55px 35px;
        text-align:center;
    }

    .solutions-cta-box h2{
        font-size:36px;
    }

}

@media(max-width:576px){

    .section-heading h2{
        font-size:34px;
    }

    .solution-card{
        padding:30px 24px;
    }

    .solution-content h3{
        font-size:24px;
    }

    .process-card{
        padding:35px 24px;
    }

    .process-card h4{
        font-size:24px;
    }

    .solutions-cta-box{
        padding:45px 25px;
    }

    .solutions-cta-box h2{
        font-size:30px;
    }

}

/* ===================================================
    FLOATING WHATSAPP
=================================================== */

.floating-whatsapp{

    position:fixed;

    right:25px;
    bottom:25px;

    width:70px;
    height:70px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #25d366,
        #1ebe5d
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:34px;

    text-decoration:none;

    z-index:99999;

    box-shadow:
    0 20px 45px rgba(37,211,102,0.35);

    animation:whatsappPulse 2s infinite;
}

.floating-whatsapp:hover{

    color:#fff;

    transform:scale(1.08);
}



/* ANIMATION */

@keyframes whatsappPulse{

    0%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,0.45);
    }

    70%{
        box-shadow:
        0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
        0 0 0 0 rgba(37,211,102,0);
    }

}

/* ===================================================
    INSTAGRAM SECTION
=================================================== */

.instagram-section{
    padding:120px 0;
    background:#fff;
}



/* ===================================================
    INSTAGRAM CARD
=================================================== */

.instagram-card{
    position:relative;

    display:block;

    overflow:hidden;

    border-radius:28px;

    box-shadow:
    0 15px 35px rgba(0,0,0,0.06);
}

.instagram-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;

    transition:.5s;
}

.instagram-card:hover img{
    transform:scale(1.08);
}



/* ===================================================
    OVERLAY
=================================================== */

.instagram-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(225,48,108,0.82),
        rgba(253,29,29,0.82),
        rgba(245,96,64,0.82)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;

    transition:.4s;
}

.instagram-card:hover .instagram-overlay{
    opacity:1;
}

.instagram-overlay i{
    color:#fff;
    font-size:40px;
}



/* ===================================================
    BUTTON
=================================================== */

.instagram-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:18px 36px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #e1306c,
        #fd1d1d,
        #f56040
    );

    color:#fff;

    font-weight:800;

    text-decoration:none;

    transition:.4s;

    box-shadow:
    0 18px 40px rgba(225,48,108,0.28);
}

.instagram-btn:hover{
    color:#fff;
    transform:translateY(-5px);
}

/* ===================================================
    GLOBAL IMAGE PLACEHOLDER
=================================================== */

img{
    position:relative;
}

img::before{
    content:'';
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        #07162d,
        #0b2447
    );

    border-radius:inherit;
}

.image-placeholder{
    background:
    linear-gradient(
        135deg,
        #07162d,
        #0b2447
    );

    position:relative;
    overflow:hidden;
}

.image-placeholder::before{
    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(255,255,255,0.03),
        rgba(255,255,255,0.10),
        rgba(255,255,255,0.03)
    );

    animation:placeholderMove 2s infinite;
}

.image-placeholder::after{

    content:'GT';

    position:absolute;
    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:42px;
    font-weight:900;

    color:rgba(255,255,255,0.12);

    letter-spacing:4px;
}

@keyframes placeholderMove{

    0%{
        transform:translateX(-100%);
    }

    100%{
        transform:translateX(100%);
    }

}

.hero-section{
    overflow:hidden;
}

.hero-section::before{

    content:'';

    position:absolute;

    top:-200px;
    right:-200px;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(34,197,94,0.18),
        transparent 70%
    );

    filter:blur(40px);

    z-index:1;
}

.hero-section::after{

    content:'';

    position:absolute;

    bottom:-250px;
    left:-200px;

    width:650px;
    height:650px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(59,130,246,0.15),
        transparent 70%
    );

    filter:blur(50px);

    z-index:1;
}

.service-card,
.project-card,
.client-card,
.why-box,
.stat-card{

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(14px);

    transition:
    transform .4s ease,
    box-shadow .4s ease;

    box-shadow:
    0 10px 40px rgba(2,6,23,0.06);
}

.service-card:hover,
.project-card:hover,
.client-card:hover,
.why-box:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 30px 70px rgba(2,6,23,0.14);
}

.projects-section{
    position:relative;
}

.projects-section::before{

    content:'';

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        circle at top right,
        rgba(34,197,94,0.08),
        transparent 35%
    );

    pointer-events:none;
}

.service-image{
    position:relative;
    overflow:hidden;
    border-radius:22px;
}

.service-image::after{

    content:'';

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(7,22,45,0.35),
        transparent
    );
}

section{
    position:relative;
}

.services-section,
.projects-section,
.clients-section,
.instagram-section{
    overflow:hidden;
}

.service-card,
.project-card,
.client-card,
.why-box{

    opacity:0;

    transform:translateY(40px);

    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.custom-navbar{

    background:rgba(255,255,255,0.88);

    backdrop-filter:blur(18px);

    border-bottom:
    1px solid rgba(255,255,255,0.4);

    box-shadow:
    0 10px 40px rgba(0,0,0,0.04);
}

.btn{

    transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.12);
}

html{
    scroll-behavior:smooth;
}

h1,h2,h3,h4,h5{
    letter-spacing:-1px;
}


/* ==========================================================
PRODUCTS SECTION
========================================================== */

.products-section{
    padding:100px 0;
    background:#ffffff;
}

.product-card{
    position:relative;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    height:100%;
    display:flex;
    flex-direction:column;
    border:1px solid #edf2f7;
    transition:all .35s ease;
    box-shadow:
        0 4px 15px rgba(15,23,42,.05);
}

.product-card:hover{
    transform:translateY(-12px);
    box-shadow:
        0 25px 60px rgba(15,23,42,.12);
}

/* ==========================================================
IMAGE CONTAINER
========================================================== */

.product-image{
    position:relative;
    height:320px;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8fafc
        );
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:25px;
}

.product-image::after{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at center,
            rgba(37,99,235,.04),
            transparent 70%
        );
}

/* ==========================================================
PRODUCT IMAGE
========================================================== */

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    transition:all .45s ease;
    z-index:2;
    position:relative;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

/* ==========================================================
FEATURED BADGE
========================================================== */

.featured-badge{
    position:absolute;
    top:16px;
    left:16px;
    z-index:5;

    background:linear-gradient(
        135deg,
        #f59e0b,
        #d97706
    );

    color:#fff;

    padding:8px 14px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

    letter-spacing:.5px;

    box-shadow:
        0 8px 20px rgba(245,158,11,.35);
}

/* ==========================================================
PRODUCT CONTENT
========================================================== */

.product-content{
    padding:25px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content small{
    color:#2563eb;
    font-weight:700;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.8px;
    margin-bottom:10px;
}

.product-content h4{
    font-size:20px;
    font-weight:800;
    line-height:1.4;
    color:#111827;
    min-height:58px;
    margin-bottom:15px;
}

.product-content p{
    color:#64748b;
    font-size:14px;
    line-height:1.7;
    min-height:72px;
    margin-bottom:20px;
}

/* ==========================================================
PRICE
========================================================== */

.product-price{
    font-size:30px;
    font-weight:900;
    color:#111827;
    margin-bottom:20px;
}

.product-price::before{
    content:'TZS ';
    font-size:15px;
    color:#64748b;
    font-weight:600;
}

/* ==========================================================
ACTIONS
========================================================== */

.product-actions{
    margin-top:auto;
    display:flex;
    gap:10px;
}

.product-actions .btn{
    flex:1;
    height:48px;
    border-radius:14px;
    font-weight:600;
}

.product-actions .btn-success{
    background:#25D366;
    border-color:#25D366;
}

/* ==========================================================
WHY BUY SECTION
========================================================== */

.why-products{
    padding:100px 0;
    background:#f8fafc;
}

.why-product-box{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    transition:.35s;
    border:1px solid #eef2f7;
    box-shadow:
        0 8px 25px rgba(0,0,0,.04);
}

.why-product-box:hover{
    transform:translateY(-8px);
    box-shadow:
        0 20px 45px rgba(0,0,0,.08);
}

.why-product-box i{
    font-size:58px;
    color:#2563eb;
}

.why-product-box h4{
    font-size:22px;
    font-weight:800;
    margin:20px 0 12px;
}

.why-product-box p{
    color:#64748b;
    line-height:1.8;
}

/* ==========================================================
CTA
========================================================== */

.cta-section{
    padding:100px 0;
}

.cta-card{
    position:relative;
    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #1d4ed8,
            #2563eb,
            #3b82f6
        );

    color:#fff;

    border-radius:30px;

    padding:80px 60px;

    text-align:center;

    box-shadow:
        0 30px 70px rgba(37,99,235,.25);
}

.cta-card::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-180px;
    right:-120px;
}

.cta-card h2{
    font-size:48px;
    font-weight:900;
    margin-bottom:20px;
}

.cta-card p{
    font-size:18px;
    max-width:650px;
    margin:auto auto 30px;
    opacity:.9;
}

.cta-card .btn{
    border-radius:50px;
    padding:16px 40px;
    font-weight:700;
    font-size:16px;
}

/* ==========================================================
PAGINATION
========================================================== */

.pagination{
    justify-content:center;
    gap:5px;
}

.page-link{
    border:none;
    border-radius:12px !important;
    min-width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#334155;
    box-shadow:
        0 3px 10px rgba(0,0,0,.04);
}

.page-item.active .page-link{
    background:#2563eb;
    color:#fff;
}

/* ==========================================================
RESPONSIVE
========================================================== */

@media(max-width:991px){

    .product-image{
        height:260px;
    }

    .product-content h4{
        min-height:auto;
    }

    .cta-card{
        padding:50px 30px;
    }

    .cta-card h2{
        font-size:34px;
    }

    .product-price{
        font-size:24px;
    }
}

@media(max-width:576px){

    .product-image{
        height:220px;
    }

    .product-actions{
        flex-direction:column;
    }

    .cta-card h2{
        font-size:28px;
    }
}



/* ==========================================
PAGINATION
========================================== */

.pagination{
    justify-content:center;
}

.page-link{
    border-radius:10px !important;
    margin:0 3px;
}



/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .products-hero h1{
        font-size:40px;
    }

    .section-title h2{
        font-size:32px;
    }

    .cta-card{
        padding:40px 25px;
    }

    .cta-card h2{
        font-size:30px;
    }
}




/* ==========================================
BREADCRUMB
========================================== */

.product-breadcrumb{
    background:#f8fafc;
    border-bottom:1px solid #e5e7eb;
}

.product-breadcrumb .breadcrumb{
    margin:0;
}

.product-breadcrumb .breadcrumb-item a{
    color:#2563eb;
    text-decoration:none;
}



/* ==========================================
PRODUCT DETAILS
========================================== */

.product-details{
    padding:90px 0;
}

.product-main-image{
    background:#fff;
    border-radius:25px;
    padding:30px;
    border:1px solid #e5e7eb;
    box-shadow:
        0 10px 30px rgba(0,0,0,.06);
}

.product-main-image img{
    width:100%;
    height:500px;
    object-fit:contain;
}

.product-details .badge{
    font-size:12px;
    padding:8px 15px;
    border-radius:50px;
    margin-right:8px;
}

.product-details h1{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin:20px 0;
}

.product-details p{
    color:#6b7280;
}

.product-price{
    font-size:42px;
    font-weight:800;
    color:#2563eb;
    margin-bottom:20px;
}

.product-details .btn-lg{
    height:58px;
    border-radius:14px;
    font-weight:700;
}



/* ==========================================
GALLERY
========================================== */

.product-gallery-thumb{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
    transition:.3s;
}

.product-gallery-thumb:hover{
    border-color:#2563eb;
    transform:translateY(-3px);
}

.product-gallery-thumb img{
    width:100%;
    height:90px;
    object-fit:cover;
}



/* ==========================================
DESCRIPTION
========================================== */

.product-description{
    padding:90px 0;
    background:#f8fafc;
}

.product-description h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:30px;
}

.product-description p{
    color:#4b5563;
    line-height:1.9;
}



/* ==========================================
SPECIFICATIONS
========================================== */

.specifications-section{
    padding:90px 0;
}

.specifications-section h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:35px;
}

.specifications-section table{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:
        0 8px 25px rgba(0,0,0,.05);
}

.specifications-section th{
    width:30%;
    background:#f8fafc;
    color:#111827;
    font-weight:700;
}

.specifications-section td{
    color:#4b5563;
}



/* ==========================================
VARIANTS
========================================== */

.variants-section{
    padding:90px 0;
    background:#f8fafc;
}

.variants-section h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:35px;
}

.variants-section .table{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:
        0 8px 25px rgba(0,0,0,.05);
}



/* ==========================================
DOCUMENTS
========================================== */

.documents-section{
    padding:90px 0;
}

.documents-section h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:35px;
}

.document-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    border:1px solid #e5e7eb;
    transition:.3s;
    height:100%;
}

.document-card:hover{
    transform:translateY(-5px);
    box-shadow:
        0 15px 35px rgba(0,0,0,.08);
}

.document-card i{
    font-size:42px;
    color:#dc2626;
}

.document-card h6{
    margin:15px 0;
    font-weight:700;
}



/* ==========================================
REVIEWS
========================================== */

.review-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    border:1px solid #e5e7eb;
    margin-bottom:20px;
}

.review-stars{
    color:#f59e0b;
    margin-bottom:10px;
}

.review-author{
    font-weight:700;
}



/* ==========================================
RELATED PRODUCTS
========================================== */

.related-products{
    padding:90px 0;
    background:#f8fafc;
}

.related-products h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:40px;
}

.related-products .card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
}

.related-products .card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 20px 40px rgba(0,0,0,.12);
}

.related-products .card-img-top{
    height:240px;
    object-fit:cover;
}

.related-products .card-body{
    padding:25px;
}

.related-products .card-footer{
    padding:20px;
}



/* ==========================================
QUOTE CTA
========================================== */

.product-cta{
    margin-top:40px;
    background:
        linear-gradient(
            135deg,
            #2563eb,
            #1d4ed8
        );
    border-radius:20px;
    padding:25px;
    color:#fff;
}

.product-cta h4{
    font-weight:700;
}

.product-cta .btn{
    border-radius:50px;
}



/* ==========================================
STOCK STATUS
========================================== */

.stock-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 15px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

.stock-in{
    background:#dcfce7;
    color:#15803d;
}

.stock-out{
    background:#fee2e2;
    color:#b91c1c;
}



/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .product-details h1{
        font-size:32px;
    }

    .product-price{
        font-size:30px;
    }

    .product-main-image img{
        height:300px;
    }

    .specifications-section h2,
    .documents-section h2,
    .variants-section h2,
    .related-products h2{
        font-size:28px;
    }
}

/* ==================================================
CLIENT CARDS
================================================== */

.client-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    height:100%;
    border:1px solid #eef2f7;
    transition:all .35s ease;
    box-shadow:
        0 10px 30px rgba(15,23,42,.05);
}

.client-card:hover{
    transform:translateY(-10px);
    box-shadow:
        0 25px 50px rgba(15,23,42,.12);
}

.client-logo-wrapper{
    height:180px;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f8fafc
        );
    border-bottom:1px solid #eef2f7;
}

.client-logo{
    max-width:100%;
    max-height:90px;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:.4s;
}

.client-card:hover .client-logo{
    transform:scale(1.08);
}

.client-placeholder{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

.client-content{
    padding:25px;
    text-align:center;
}

.client-content h4{
    font-size:20px;
    font-weight:800;
    color:#111827;
    margin-bottom:10px;
}

.client-industry{
    display:inline-block;
    background:#eff6ff;
    color:#2563eb;
    padding:6px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    margin-bottom:15px;
}

.client-website{
    margin-top:15px;
}

.client-website a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.client-website a:hover{
    color:#1d4ed8;
}

.client-website i{
    font-size:16px;
}

/* ==================================================
EMPTY STATE
================================================== */

.empty-clients{
    text-align:center;
    padding:80px 20px;
    background:#fff;
    border-radius:24px;
    border:1px dashed #dbeafe;
}

.empty-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    margin:auto;
    margin-bottom:20px;
}


