:root{
    --primary:#0D4DA1;
    --primary-dark:#083978;

    --secondary:#FF9F00;
    --secondary-dark:#E58A00;

    --accent:#FFE44D;

    --white:#ffffff;

    --dark:#102542;

    --light:#F6F9FC;

    --shadow:rgba(13,77,161,.12);
}
    * { -webkit-font-smoothing: antialiased; }

    body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:var(--dark);
}
    html{
      overflow-x: hidden;
    }

    h1,h2,h3,h4,h5,h6{
    font-family:'Montserrat',sans-serif;
    font-weight:700;
}

    /* ============ NAVBAR ============ */
    /* =========================
   NAVBAR
========================= */

.navbar-custom{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    transition:.4s ease;
    background:transparent;
}

.navbar-custom.scrolled{
    background:#fff;
    padding:12px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Logo */
.navbar-brand img{
    height:75px;
    transition:.3s ease;
}

.navbar-custom.scrolled .navbar-brand img{
    height:65px;
}

/* Menu */

.nav-link{
    font-family:'Montserrat',sans-serif;
    font-size:15px;
    font-weight:600;
    color:#fff;
    margin:0 15px;
    position:relative;
    letter-spacing:.3px;
}

.nav-link:hover{
    color:var(--accent);
}

.nav-link.active{
    color:var(--accent);
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: #fff;
}


/* underline */

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:var(--secondary);
    border-radius:20px;
    transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}
/* Scrolled */

.navbar-custom.scrolled .nav-link{
    color:var(--dark);
}

.navbar-custom.scrolled .nav-link:hover{
    color:var(--primary);
}

.navbar-custom.scrolled .nav-link.active{
    color:var(--primary);
}

/* CTA */

.btn-call{
    background:linear-gradient(
        135deg,
        var(--secondary),
        var(--secondary-dark)
    );

    color:#fff;
    text-decoration:none;
    padding:13px 28px;
    border-radius:50px;

    font-weight:700;

    display:flex;
    align-items:center;
    gap:8px;

    transition:.3s ease;
}
.pd{
    padding-bottom: 700px;
}
.btn-call:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(255,159,0,.35);
    color:#fff;
}

/* Hamburger */

.navbar-toggler{
    border:none;
    box-shadow:none!important;
}

.navbar-toggler span{
    display:block;
    width:28px;
    height:2px;
    background:#fff;
    margin:6px 0;
}

.navbar-custom.scrolled .navbar-toggler span{
    background:#222;
}


/* =================================
 HERO SECTION
================================= */

.hero-section{
    position:relative;
    min-height:100vh;

    display:flex;
    align-items:center;

    overflow:hidden;

    background:url('../images/banner.jpg');
    background-size:cover;
    background-position:center;
}

/* DARK OVERLAY */

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    90deg,
    rgba(13,77,161,.92) 0%,
    rgba(13,77,161,.82) 45%,
    rgba(13,77,161,.35) 100%
    );
}

/* CONTENT */

.hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:#fff;
        margin-top: 150px;
}

.hero-badge{
    display:inline-block;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.2);

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:20px;

    animation:fadeUp 1s ease;
}

.hero-content h1{
    font-size:50px;
    line-height:1.1;
    font-weight:800;

    margin-bottom:20px;

    animation:fadeUp 1.3s ease;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;

    margin-bottom:35px;

    animation:fadeUp 1.6s ease;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;

    animation:fadeUp 1.9s ease;
}

.btn-call{
    background:#ff9f00;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:underline;

    font-weight:700;

    transition:.3s;

}

.btn-call:hover{
    transform:translateY(-4px);
    color:#fff;
}

.btn-whatsapp{
    background:#25D366;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.btn-whatsapp:hover{
    transform:translateY(-4px);
    color:#fff;
}

/* STATS */

.hero-stats{
    display:flex;
    gap:20px;

    margin-top:60px;

    flex-wrap:wrap;
}

.stat-box{
    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    padding:20px 30px;

    border-radius:15px;

    min-width:150px;
}

.stat-box h3{
    color:#FFD84D;
    font-size:34px;
    margin-bottom:5px;
}

.stat-box span{
    color:#fff;
}

/* FLOATING BUBBLES */

.floating-shapes span{
    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    animation:floatBubble 12s infinite linear;
}

.floating-shapes span:nth-child(1){
    width:120px;
    height:120px;
    left:10%;
    top:20%;
}

.floating-shapes span:nth-child(2){
    width:80px;
    height:80px;
    right:10%;
    top:25%;
}

.floating-shapes span:nth-child(3){
    width:60px;
    height:60px;
    left:20%;
    bottom:20%;
}

.floating-shapes span:nth-child(4){
    width:150px;
    height:150px;
    right:20%;
    bottom:10%;
}

.floating-shapes span:nth-child(5){
    width:100px;
    height:100px;
    right:40%;
    top:10%;
}

/* ANIMATION */

@keyframes floatBubble{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-25px);
    }

    100%{
        transform:translateY(0px);
    }
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* SCROLL INDICATOR */

.scroll-down{
    position:absolute;
    left:50%;
    bottom:30px;

    transform:translateX(-50%);
    z-index:2;
}

.scroll-down span{
    display:block;

    width:28px;
    height:45px;

    border:2px solid #fff;

    border-radius:30px;

    position:relative;
}

.scroll-down span::before{
    content:'';

    position:absolute;

    width:6px;
    height:6px;

    background:#fff;

    border-radius:50%;

    left:50%;
    top:8px;

    transform:translateX(-50%);

    animation:scrollMove 2s infinite;
}

@keyframes scrollMove{

    0%{
        opacity:1;
        top:8px;
    }

    100%{
        opacity:0;
        top:25px;
    }
}
/* ==========================
WHO WE ARE
========================== */

.who-we-are-section{
    padding:100px 0;
    background:#fff;
}

.who-wrapper{

    background:#ecf1f7;

    border-radius:40px;

    padding:70px;

    position:relative;

    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(0,0,0,.05);
}

/* Green Bottom Accent Like Reference */



/* Tag */

.section-tag{

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    color:#0D4DA1;

    display:inline-block;

    margin-bottom:20px;

    position:relative;
}

.section-tag::after{

    content:'';

    width:40px;
    height:2px;

    background:#FF9F00;

    position:absolute;

    top:50%;
    left:27%;

    transform:translateY(-50%);
}

/* Title */

.who-title{

    font-size:36px;

    line-height:1.15;

    font-weight:800;

    color:#102542;

    margin-bottom:25px;
}

/* Text */

.who-text{

    font-size:17px;

    line-height:1.9;

    color:#6d7785;

    margin-bottom:30px;
}

/* Divider */

.who-divider{

    width:100%;
    height:1px;

    background:#d9dde5;

    margin:20px 0;
}

/* List */

.who-list{

    list-style:none;

    padding:0;

    margin:0 0 35px;
}

.who-list li{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:20px;

    font-size:17px;

    font-weight:600;

    color:#102542;
}

.who-list i{

    color:#0D4DA1;

    font-size:22px;
}

/* Button */

.who-btn{

    display:inline-block;

    background:linear-gradient(
    135deg,
    #FF9F00,
    #E88900
    );

    color:#fff;

    text-decoration:none;

    padding:14px 35px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;
}

.who-btn:hover{

    transform:translateY(-4px);

    color:#fff;

    box-shadow:
    0 15px 30px rgba(255,159,0,.30);
}

/* Image */

.who-image{

    position:relative;
}

.who-image img{

    width:100%;

    border-radius:30px;

    display:block;

    object-fit:cover;
}

/* Experience Box */

.experience-box{

    position:absolute;

    left:-20px;
    bottom:30px;

    background:#0D4DA1;

    color:#fff;

    width:140px;
    height:140px;

    border-radius:25px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    box-shadow:
    0 20px 40px rgba(13,77,161,.25);
}

.experience-box h3{

    font-size:42px;

    font-weight:800;

    margin-bottom:5px;
}

.experience-box span{

    font-size:14px;

    line-height:1.5;
}


.who-image{
    position:relative;
    padding-bottom:120px;
}

.floating-image{
    position:absolute;

   width: 288px;
    right: -20px;
    bottom: -10%;

    border-radius:20px;

    overflow:hidden;

    background:#fff;

    padding:8px;

    box-shadow:
    0 20px 40px rgba(0,0,0,.15);

    animation:floatImage 4s ease-in-out infinite;
}

.floating-image img{
    width:100%;
    display:block;
    border-radius:15px;
}

@keyframes floatImage{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0px);
    }
}

/* ==========================
SERVICES
========================== */

.services-section{

    padding:80px 0;
    background:#fff;
}

.section-heading{
    margin-bottom:60px;
}

.section-tag{

    color:#0D4DA1;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;

    display:block;

    margin-bottom:10px;
}

.section-heading h2{

    font-size:36px;
    font-weight:800;

    color:#102542;

    margin-bottom:15px;
}

.section-heading p{

    color:#6d7785;
    max-width:650px;
    margin:auto;
}

/* CARD */

.service-card{


    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #edf4ff 50%,
        #dbe9ff 100%
    );

    border-radius:35px;

    overflow:hidden;

    position:relative;

    height:100%;

    transition:.45s ease;

    border:2px solid transparent;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);
}

/* ORANGE TOP BORDER */

.service-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:linear-gradient(
    90deg,
    #FF9F00,
    #FFC940
    );
}

/* IMAGE */

.service-image{

    padding:14px;
}

.service-image img{

    width:100%;
    height:240px;

    object-fit:cover;

    border-radius:28px;

    transition:.5s ease;
}

/* CONTENT */

.service-content{

    padding:10px 25px 30px;
}

.service-content h3{

    font-size:22px;
    font-weight:700;

    color:#102542;

    margin-bottom:15px;
}

.service-content p{

    color:#6d7785;

    line-height:1.8;

    margin:0;
}

/* HOVER */

.service-card:hover{

    transform:
    translateY(-15px);

    border-color:#0D4DA1;

    box-shadow:
    0 25px 50px rgba(13,77,161,.15);
}

.service-card:hover img{

    transform:scale(1.08);
}

.service-card:hover::before{

    height:10px;
}

/* FLOATING ICON */

.service-card::after{

    content:'✦';

    position:absolute;

    top:20px;
    right:20px;

    width:50px;
    height:50px;

    border-radius:50%;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#FF9F00;

    font-size:22px;

    box-shadow:
    0 10px 20px rgba(0,0,0,.08);
}




/* ==================================
WHY CHOOSE US
================================== */

.why-choose-us{

    position:relative;

    padding:70px 0;

    background:
       #ecf1f7;



    overflow:hidden;
}

/* Decorative PNG Shapes */

.bg-shape{

    position:absolute;
    z-index:1;
    opacity:.08;
}

.shape-1{

       left: 80%;
    top: 0px;

}

.shape-2{

        right: 80%
;
    bottom: -20px;
}

.bg-shape img{

    width:250px;
}

/* Title */

.section-title{

    position:relative;
    z-index:2;

    margin-bottom:30px;
}

.section-title span{

    color:#FF9F00;

    font-weight:700;

    letter-spacing:2px;
}

.section-title h2{

    font-size:36px;

    font-weight:800;

    color:#0D4DA1;

    margin:15px 0;
}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#6d7785;
}

/* Card */

.why-card{

    position:relative;

    background:#fff;

    border-radius:30px;

    padding:45px 30px;

    text-align:center;

    overflow:hidden;

    height:100%;

    transition:.45s ease;

    box-shadow:
    0 15px 35px rgba(0,0,0,.06);

    z-index:2;
}

.why-card:hover{

    transform:
    translateY(-15px);

    box-shadow:
    0 30px 60px rgba(13,77,161,.15);
}

/* Number */

.card-number{

    position:absolute;

    top:25px;
    right:25px;

    width:52px;
    height:52px;

    background:#0D4DA1;

    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;

    transition:.45s ease;
}

/* Hover Effect */

.why-card:hover .card-number{

    width:80px;
    height:80px;

    border-radius:0 0 0 100%;

    top:0;
    right:0;

    padding-left:25px;
    padding-top:20px;

    justify-content:flex-start;
    align-items:flex-start;

    background:
    linear-gradient(
    135deg,
    #0D4DA1,
    #1562c4
    );
}

/* Icon */

.card-icon{

    margin-bottom:25px;
}

.card-icon img{

    width:90px;

    transition:.4s ease;
}

.why-card:hover .card-icon img{

    transform:
    scale(1.1)
    rotate(5deg);
}

/* Content */

.why-card h3{

    font-size:22px;

    font-weight:700;

    color:#102542;

    margin-bottom:18px;
}

.why-card p{

    color:#6d7785;

    line-height:1.9;

    margin:0;
}


/* ============================
PROJECTS
============================ */

.projects-section{

    padding:70px 0;

    background:#fff;

    position:relative;
}

.projects-slider{

    margin-top:60px;
}

/* CARD */

.project-card{

    position:relative;

    overflow:hidden;

   

    cursor:pointer;

    transition:.4s ease;
    padding-bottom: 50px;   
}

/* IMAGE */

.project-image{
 border-radius:20px;
    height:250px;

    overflow:hidden;
}

.project-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.8s ease;
}

/* BOTTOM PANEL */

.project-overlay{

    position:absolute;

    left:20px;
    right:20px;
    bottom:20px;

    background:#072B63;

    border-radius:30px;

    padding:30px;

    height:80px;

    overflow:hidden;

    transition:.5s ease;
}

/* CONTENT */

.project-content h4{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:10px;
}

.project-content p{

    color:#dce7ff;

    margin:0;

    opacity:0;

    transform:translateY(20px);

    transition:.4s ease;
}

/* ARROW */

.project-arrow{

    position:absolute;

    right:25px;
    top:50%;

    transform:translateY(-50%);

    width:55px;
    height:55px;

    background:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#0D4DA1;

    font-size:22px;

    transition:.4s ease;
}

/* HOVER EFFECT */

.project-card:hover{

    transform:translateY(-10px);
}

.project-card:hover img{

    transform:scale(1.1);
}

.project-card:hover .project-overlay{

    min-height:180px;

    background:
    linear-gradient(
        135deg,
        #072B63,
        #0D4DA1
    );
}

.project-card:hover .project-content p{

    opacity:1;

    transform:translateY(0);
}

.project-card:hover .project-arrow{

    background:#FF9F00;

    color:#fff;
}

/* =========================
HOW IT WORKS
========================= */

.process-section{

    padding:70px 0;

    background:
   #ecf1f7;

    position:relative;
}

.process-wrapper{
        z-index: 999;
    position:relative;

    margin-top:70px;
}

.process-line{
    position:absolute;
    top:50%;
    left:5%;
    right:5%;
    height:6px;
    background:linear-gradient(
        90deg,
        #FF9F00,
        #0D4DA1
    );
    border-radius:50px;
}



/* CARD */

.process-card{

    background:#fff;

    border-radius:30px;

    padding:35px 25px;

    text-align:center;

    position:relative;

    transition:.4s ease;

    box-shadow:
    0 15px 35px rgba(0,0,0,.06);
}

.process-up{
    margin-top:-60px;
}

.process-down{
    margin-top:60px;
}

.process-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 25px 50px rgba(13,77,161,.15);
}

/* NUMBER */

.process-number{

    position:absolute;

    top:15px;
    right:15px;

    width:45px;
    height:45px;

    border-radius:50%;

    background:#FF9F00;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
}

/* ICON */

.process-icon{

    width:50px;
    height:50px;

    margin:auto auto 20px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #0D4DA1,
        #1f65bf
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

.process-icon i{

    color:#fff;

    font-size:25px;
}

/* CONTENT */

.process-card h4{

    color:#102542;

    font-size:18px;

    font-weight:700;

    margin-bottom:12px;
}

.process-card p{

    color:#6d7785;

    margin:0;
}

.process-path{

    position:absolute;

    top:50%;

    left:0;
    width:100%;

    transform:translateY(-50%);

    z-index:99;

    pointer-events:none;
}

.process-path svg{

    width:100%;
    height:250px;
}

.process-path path{

    fill:none;

    stroke:url(#dummy);

    stroke:#0D4DA1;

    stroke-width:6;

    stroke-linecap:round;

    stroke-dasharray:12 10;

    opacity:.3;
}


/* ==========================
PRODUCTS SECTION
========================== */

.products-section{

    padding:70px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f6f9ff
    );
}

/* CARD */

.product-card{

    position:relative;

    background:#fff;

    border-radius:30px;

    padding:25px;

    text-align:center;

    overflow:hidden;

    height:100%;

    transition:.45s ease;

    border:1px solid #e8eef9;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

/* TOP ACCENT */

.product-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
        90deg,
        #FF9F00,
        #0D4DA1
    );
}

/* SHINE EFFECT */

.product-card::after{

    content:"";

    position:absolute;

    top:-120%;

    left:-50%;

    width:60px;
    height:250%;

    background:
    rgba(255,255,255,.35);

    transform:rotate(25deg);

    transition:.8s;
}

.product-card:hover::after{

    left:150%;
}

/* IMAGE */

.product-image{

    height:180px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;
}

.product-image img{

    max-width:100%;

    max-height:170px;

    object-fit:contain;

    transition:.5s ease;
}

/* TITLE */

.product-card h4{

    font-size:16px;

    font-weight:700;

    color:#102542;

    margin:0;
}

/* HOVER */

.product-card:hover{

    transform:
    translateY(-12px);

    border-color:#0D4DA1;

    box-shadow:
    0 25px 50px rgba(13,77,161,.15);
}

.product-card:hover img{

    transform:
    scale(1.1)
    rotate(2deg);
}


/* ==================================
TESTIMONIALS
================================== */

.testimonial-section{

    padding:70px 0;

    background:
    
        url('../images/testimonial-bg.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    overflow:hidden;
}

.testimonial-slider{

    margin-top:30px;
}

/* CARD */

.testimonial-card{

    position:relative;

    background:#fff;

    border-radius:35px;

    padding:40px 35px 40px;

    text-align:center;

    margin-top:60px;

    transition:.5s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

/* IMAGE */

.client-image{

    position:absolute;

    left:50%;
    top:-50px;

    transform:translateX(-50%);
}

.client-image img{

    width:100px;
    height:100px;

    object-fit:cover;

    border-radius:50%;

    border:5px solid #fff;

    box-shadow:
    0 15px 30px rgba(0,0,0,.10);
}

/* STARS */

.rating{

    color:#FF9F00;

    margin-bottom:20px;

    font-size:18px;
}

/* TEXT */

.review-text{

    font-size:17px;

    line-height:1.9;

    color:#5c6674;

    margin-bottom:25px;
}

.testimonial-card h4{

    color:#0D4DA1;

    font-size:22px;

    font-weight:700;

    margin-bottom:5px;
}

.testimonial-card span{

    color:#7c8591;
}

/* SIDE CARDS */

.testimonial-slider .owl-item{

    transition:.5s ease;
}

.testimonial-slider .owl-item:not(.center){

    transform:scale(.88);

    opacity:.45;
}

/* CENTER CARD */

.testimonial-slider .owl-item.center .testimonial-card{

    background:#fff;

    transform:translateY(-15px);

    border:2px solid #0D4DA1;

    box-shadow:
    0 35px 70px rgba(13,77,161,.18);
}

/* QUOTE ICON */

.testimonial-card::before{

    content:"❝";

    position:absolute;

    right:30px;
    top:25px;

    font-size:70px;

    color:rgba(13,77,161,.08);

    font-weight:700;
}


/* ===========================
COUNTER SECTION
=========================== */

.counter-section{

    position:relative;

    padding:70px 0;

    background:
    url('../images/counter-bg.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    background-attachment:fixed;

    overflow:hidden;
}

/* Dark Overlay */

.counter-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.75)
    );
}

/* Counter Box */

.counter-box{

    position:relative;

    z-index:2;

    text-align:center;

    padding:20px;

    transition:.4s;
}

.counter-box:hover{

    transform:translateY(-10px);
}

/* Icon Circle */

.counter-icon{

    width:90px;
    height:90px;

    margin:auto auto 25px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #FF9F00,
        #ffb733
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:40px;

    color:#fff;

    box-shadow:
    0 15px 35px rgba(255,159,0,.35);
}

/* Number */

.counter-box h2{

    font-size:30px;

    font-weight:800;

    color:#fff;

    margin-bottom:10px;
}

/* Label */

.counter-box h5{

    color:#fff;

    text-transform:uppercase;

    font-size:16px;

    font-weight:600;

    letter-spacing:1px;
}

/* ===========================
CTA STRIP
=========================== */

.cta-strip{

    background:
    linear-gradient(
        135deg,
        #0D4DA1,
        #1562c4
    );

    padding:25px 0;

    position:relative;

    overflow:hidden;
}

/* subtle pattern */

.cta-strip::before{

    content:"";

    position:absolute;

    inset:0;

    background:url('../images/sparkle-pattern.png');

    opacity:.05;
}

/* wrapper */

.cta-wrapper{

    position:relative;

    z-index:2;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

    flex-wrap:wrap;
}

/* text */

.cta-text h3{

    color:#fff;

    margin:0;

    font-size:26px;

    font-weight:700;
}

/* phone */

.cta-phone{

    display:flex;

    align-items:center;

    gap:15px;
}

.phone-icon{

    width:55px;
    height:55px;

    border-radius:50%;

    border:2px solid rgba(255,255,255,.3);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:22px;
}

.cta-phone a{

    color:#fff;

    text-decoration:none;

    font-size:26px;

    font-weight:700;
}

/* divider */

.cta-divider{

    color:#fff;

    font-size:22px;

    font-weight:700;
}

/* button */

.cta-btn a{

    background:#FF9F00;

    color:#fff;

    text-decoration:none;

    padding:16px 35px;

    border-radius:50px;

    font-weight:700;

    transition:.4s ease;
}

.cta-btn a:hover{

    background:#fff;

    color:#0D4DA1;

    transform:translateY(-3px);
}

/* ===========================
FOOTER
=========================== */

.main-footer{

    position:relative;

    background:
    linear-gradient(
        135deg,
        #082c66,
        #0D4DA1
    );

    color:#fff;

    padding-top:80px;

    overflow:hidden;
}

/* Pattern */



/* Logo */

.footer-logo{

    max-width:180px;

    margin-bottom:20px;
}

.footer-about{

    position:relative;
    z-index:2;
}

.footer-about p{

    color:rgba(255,255,255,.75);

    line-height:1.9;
}

/* Titles */

.footer-title{

    color:#fff;

    font-size:22px;

    font-weight:700;

    margin-bottom:25px;

    position:relative;
}

.footer-title::after{

    content:"";

    width:60px;
    height:4px;

    background:#FF9F00;

    position:absolute;

    left:0;
    bottom:-10px;

    border-radius:30px;
}

/* Links */

.footer-links{

    list-style:none;

    padding:0;
    margin:0;
}

.footer-links li{

    margin-bottom:14px;
}

.footer-links a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.3s;
}

.footer-links a:hover{

    color:#FF9F00;

    padding-left:8px;
}

/* Contact */

.footer-contact div{

    display:flex;

    gap:15px;

    margin-bottom:18px;
}

.footer-contact i{

    color:#FF9F00;

    font-size:18px;

    margin-top:4px;
}

/* Social */

.footer-social{

    display:flex;

    gap:12px;

    margin-top:25px;
}

.footer-social a{

    width:45px;
    height:45px;

    border-radius:50%;

    background:rgba(255,255,255,.1);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    text-decoration:none;

    transition:.4s;
}

.footer-social a:hover{

    background:#FF9F00;

    transform:translateY(-5px);
}

/* Bottom */

.footer-bottom{

    margin-top:60px;

    border-top:
    1px solid rgba(255,255,255,.1);

    text-align:center;

    padding:25px 0;
}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.7);
}

.footer-bottom p a{

    margin:0;

    color:rgba(255,255,255,.7);
}
.cta-text{
    width: 60%;
}

/* ==========================
CONTACT PAGE BANNER
========================== */

.page-banner{

    position:relative;

    min-height:450px;

    display:flex;
    align-items:center;

    background:url('../images/contact-banner.jpg');
    background-size:cover;
    background-position:center;

    overflow:hidden;
}

.banner-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,.65) 0%,
        rgba(13,77,161,.55) 50%,
        rgba(13,77,161,.75) 100%
    );
}

.banner-content{

    position:relative;
    z-index:2;

    max-width:650px;
}

.banner-content h1{

    color:#fff;

    font-size:50px;

    font-weight:800;

    margin-bottom:15px;

    line-height:1.1;
}

.banner-content p{

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.8;

    margin-bottom:25px;
}

.breadcrumb-custom{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-weight:600;
}

.breadcrumb-custom a{

    color:#FF9F00;

    text-decoration:none;
}

.breadcrumb-custom span{

    color:#fff;
}


/* ==========================
CONTACT INFO SECTION
========================== */

.contact-info-section{

    padding:100px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f5f9ff
    );
}

.contact-card{

    background:#fff;

    padding:40px 30px;

    border-radius:30px;

    text-align:center;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:.4s ease;

    border:1px solid #edf2f7;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(13,77,161,.12);
}

/* Top Accent */

.contact-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
        90deg,
        #FF9F00,
        #0D4DA1
    );
}

/* Icon */

.contact-icon{

    width:85px;
    height:85px;

    margin:auto auto 25px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #0D4DA1,
        #1d63bb
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:32px;

    box-shadow:
    0 15px 35px rgba(13,77,161,.20);
}

.contact-card h4{

    color:#102542;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;
}

.contact-card a,
.contact-card p{

    color:#6b7280;

    text-decoration:none;

    line-height:1.9;

    margin:0;

    font-size:16px;
}

.contact-card a:hover{

    color:#0D4DA1;
}

.photo-gallery{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;

    margin-top:60px;
}

.gallery-item{

    display:block;

    overflow:hidden;

    border-radius:30px;

    position:relative;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s ease;
}

.gallery-item:hover img{

    transform:scale(1.08);
}

.gallery-item::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(13,77,161,.35),
        transparent
    );

    opacity:0;

    transition:.4s;
}

.gallery-item:hover::after{

    opacity:1;
}

.video-gallery-section{

    padding:70px 0;

    background:
    linear-gradient(
        180deg,
        #f7faff,
        #ffffff
    );
}
.gallery-section{
    margin-top: 60px;
}
.video-card{

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);

    transition:.4s ease;
}

.video-card:hover{

    transform:translateY(-10px);
}

.video-card video{

    width:100%;

    height:500px;

    object-fit:cover;

    display:block;
}

/* ==========================
WHATSAPP BUTTON
========================== */

.whatsapp-btn{

    position:fixed;

    left:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:34px;

    z-index:9999;

    box-shadow:
    0 10px 30px rgba(37,211,102,.35);

    animation:
    whatsappPulse 2s infinite;

    transition:.3s ease;
}

.whatsapp-btn:hover{

    color:#fff;

    transform:translateY(-5px);
}

/* ==========================
SCROLL TO TOP
========================== */

#scrollTopBtn{

    position:fixed;

    right:25px;
    bottom:25px;

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #FF9F00,
        #ffb733
    );

    color:#fff;

    font-size:24px;

    cursor:pointer;

    z-index:9999;

    opacity:0;
    visibility:hidden;

    transition:.4s ease;

    box-shadow:
    0 10px 30px rgba(255,159,0,.35);
}

#scrollTopBtn.show{

    opacity:1;
    visibility:visible;
}

#scrollTopBtn:hover{

    transform:translateY(-5px);

    background:
    linear-gradient(
        135deg,
        #0D4DA1,
        #1562c4
    );
}

/* ==========================
ANIMATION
========================== */

@keyframes whatsappPulse{

    0%{

        box-shadow:
        0 0 0 0 rgba(37,211,102,.6);
    }

    70%{

        box-shadow:
        0 0 0 20px rgba(37,211,102,0);
    }

    100%{

        box-shadow:
        0 0 0 0 rgba(37,211,102,0);
    }
}
 /* mobile dropdown panel */
    @media (max-width: 991px) {
      .navbar-custom{
        padding:12px 0;
    }

    /* Smaller logo */
    .navbar-brand img{
        height:60px;
    }

    .navbar-custom.scrolled .navbar-brand img{
        height:52px;
    }

    /* Mobile menu panel */
    .navbar-collapse{
        background:#fff;
        margin-top:15px;
        border-radius:20px;
        padding:25px;
        box-shadow:0 15px 40px rgba(0,0,0,.08);
    }

    /* Links */
    .nav-link{
        color:var(--dark) !important;
        margin:10px 0;
        display:inline-block;
        font-size:16px;
    }

    .nav-link.active{
        color:var(--primary) !important;
    }

    .nav-link::after{
        bottom:-2px;
    }

     .photo-gallery{

        grid-template-columns:
        repeat(2,1fr);
    }

    .video-card video{

        height:400px;
    }

    /* CTA Button */
    .btn-enroll{
        display:inline-flex;
        justify-content:center;
        align-items:center;
        width:100%;
        margin-top:20px;
        padding:14px 20px;
    }

    /* Center Menu */
    .navbar-nav{
        text-align:center;
    }

    /* Hamburger visible */
    .navbar-toggler span{
        transition:.3s ease;
    }

    .who-wrapper{
        padding:50px 35px;
    }

    .who-title{
        font-size:40px;
    }

    .experience-box{

        width:120px;
        height:120px;

        left:15px;
        bottom:15px;
    }
     .section-heading h2{
        font-size:38px;
    }

    .service-content h3{
        font-size:24px;
    }

    .counter-box{

        margin-bottom:40px;
    }

    .counter-box h2{

        font-size:42px;
    }

    .counter-icon{

        width:75px;
        height:75px;

        font-size:32px;
    }

     .cta-wrapper{

        flex-direction:column;

        text-align:center;
    }

    .cta-text h3{

        font-size:24px;
    }

    .cta-phone a{

        font-size:22px;
    }

        
    }

    @media(max-width:767px){
      .who-we-are-section{
        padding:70px 0;
    }

    .who-wrapper{

        padding:35px 25px;

        border-radius:25px;
    }

    .who-title{

        font-size:32px;
    }

    .who-text{

        font-size:15px;
    }

    .who-list li{

        font-size:15px;

        align-items:flex-start;
    }

    .who-image{
        margin-top:20px;
    }

    .experience-box{

        width:100px;
        height:100px;
    }

    .experience-box h3{
        font-size:28px;
    } 

    .services-section{
        padding:70px 0;
    }

    .section-heading h2{
        font-size:32px;
    }

    .service-image img{
        height:220px;
    }

    .page-banner{

        min-height:350px;
        text-align:center;
    }

    .banner-content{

        margin:auto;
    }

    .banner-content h1{

        font-size:42px;
    }

    .banner-content p{

        font-size:16px;
    }

    .breadcrumb-custom{

        justify-content:center;
    } 
}

   @media (max-width: 576px){
    .section-title h2 {
    font-size: 24px;
}
      .photo-gallery{

        grid-template-columns:1fr;
    }

    .gallery-item img{

        height:280px;
    }

    .video-card video{

        height:350px;
    }
    .cta-text h3{

        font-size:20px;
        line-height:1.5;
    }

    .cta-phone{

        flex-direction:column;
    }

    .cta-phone a{

        font-size:20px;
    }

    .cta-divider{

        display:none;
    }

    .cta-btn a{

        width:100%;
        display:block;
    }
    
     .cta-content h2{
        font-size:1.9rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary{
        width:100%;
    }
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:280px;
    }

    .navbar-custom{
        padding:10px 0;
    }

    .navbar-brand img{
        height:52px;
    }

    .navbar-custom.scrolled .navbar-brand img{
        height:46px;
    }

    .navbar-collapse{
        padding:20px;
        border-radius:16px;
    }

    .nav-link{
        font-size:15px;
        margin:8px 0;
    }

    .btn-enroll{
        font-size:14px;
        padding:12px 18px;
    }

    .who-title{

        font-size:24px;
        line-height:1.3;
    }

    .who-wrapper{
        padding:25px 20px;
    }

    .experience-box{
        display:none;
    }

    .service-content{
        padding:15px 20px 25px;
    }

    .service-content h3{
        font-size:22px;
    }

    .service-image img{
        height:200px;
    }

    .shape-1 {
    left: 0%;
    top: 0px;
}

  .shape-2 {
    right: 0%;
    top: 0px;
}

.hero-content h1 {
    font-size: 28px;
}

.hero-content p {
    font-size: 16px;
}
.hero-buttons{
    display: none;
}
.bg-shape img {
    width: 100px;
}

.process-down {
    margin-top: 0px;
      margin-bottom: 60px;
}

.process-section {
    padding: 70px 0 0 0;
}

.section-tag::after {
  
    top: 50%;
    left: 43%;
}

.project-content h4 {
    color: #fff;
    font-size: 17px;
  
}

.projects-section {
    padding: 30px 0;
}

.counter-box {
        margin-bottom: 0px;
    }

        .services-section {
        padding: 30px 0;
    }

        .counter-box h2 {
        font-size: 30px;
    }

    .btn-call{
        justify-content: center;
    }

      .whatsapp-btn{

        width:58px;
        height:58px;

        left:15px;
        bottom:15px;

        font-size:30px;
    }

    #scrollTopBtn{

        width:55px;
        height:55px;

        right:15px;
        bottom:15px;

        font-size:20px;
    }

    .hero-content{
        margin-top: 0px;
    }

    .hero-badge {
    font-size: 12px;

}

.testimonial-card{
    margin-top: 0px;
}

.cta-text {
    width: 100%;
}

.footer-logo {
    max-width: 120px;
}

}

