
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    overflow-x:hidden;
    background:#fff;
}

/* TOP BAR */

.top-bar{
    background:#000;
    color:#fff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:14px 80px;

    font-size:15px;
}

/* PERFECT TOP BAR ALIGNMENT */

.top-bar .container{
    display:flex !important;
    justify-content:space-between !important;
    align-items:center !important;
    width:100%;
}

.top-left{
    display:flex !important;
    align-items:center !important;
    gap:30px !important;
}

.top-left span{
    display:flex;
    align-items:center;
}

.top-left i,
.top-right i{
    color:#f4a100;
    margin-right:8px;
}

.top-right{
    display:flex;
    align-items:center;
}

.top-right i{
    margin-left:15px;
    cursor:pointer;
}

/* NAVBAR */

.navbar{
    width:100%;
    background:#fff;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:35px 80px;

    gap:40px;

    box-shadow:0 2px 10px rgba(0,0,0,0.05);

    transition:0.4s;
}

.logo{
    flex:1;
}

.logo h2{
    font-size:64px;
    line-height:70px;
    font-weight:800;
    color:#08224a;
}

.logo p{
    font-size:18px;
    color:#f4a000;
    margin-top:10px;
}

.nav-links{
    flex:2;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:55px;

    list-style:none;

    margin:0;
    padding:0;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#111;

    font-size:20px;
    font-weight:600;

    white-space:nowrap;

    transition:0.3s;
}

.nav-links a:hover{
    color:#f4a000;
}

.nav-btn{
    background:#08224a;
    color:#fff;

    text-decoration:none;

    padding:18px 34px;

    border-radius:14px;

    font-size:22px;
    font-weight:600;

    display:flex;
    justify-content:center;
    align-items:center;

    min-width:220px;

    white-space:nowrap;

    flex-shrink:0;

    transition:0.3s;
}

.nav-btn:hover{
    background:#f4a000;
}

/* HERO SECTION */

.hero-clean{
    position:relative;

    min-height:90vh;

    background-image:url('../assets/images/ca_1.png');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    padding:80px 20px;

    overflow:hidden;
}

.hero-clean::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.60);
}

/* HERO CONTENT */

.hero-clean-content{
    position:relative;
    z-index:2;

    max-width:900px;
}

.hero-mini-title{
    color:#f4a100;

    font-size:15px;
    font-weight:600;

    letter-spacing:2px;
}

.hero-clean-content h1{
    font-size:72px;

    line-height:90px;

    color:#fff;

    margin:30px 0;

    font-weight:600;
}

.hero-clean-content p{
    font-size:22px;

    line-height:38px;

    color:#e5e5e5;

    max-width:750px;

    margin:auto;

    margin-bottom:45px;
}

.hero-clean-btn{
    background:#0b1f3a;
    color:#fff;

    border:none;

    padding:18px 42px;

    border-radius:6px;

    font-size:17px;
    font-weight:500;

    cursor:pointer;

    transition:0.3s;
}

.hero-clean-btn:hover{
    background:#f4a100;
}

/* STICKY NAVBAR */

.navbar.sticky{
    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    animation:slideDown 0.4s ease;

    background:#fff;
}

@keyframes slideDown{

    from{
        transform:translateY(-100%);
    }

    to{
        transform:translateY(0);
    }

}

/* CLIENT SECTION */

.client-section{
    padding:70px 0;

    background:#fff;

    overflow:hidden;
}

.client-heading{
    text-align:center;

    margin-bottom:40px;
}

.client-heading span{
    color:#0b1f3a;

    font-size:28px;
    font-weight:600;
}

.client-slider{
    width:100%;

    overflow:hidden;

    position:relative;
}

.client-track{
    display:flex;

    width:calc(250px * 12);

    animation:scrollClients 25s linear infinite;
}

.client-item{
    width:250px;

    height:100px;

    margin:0 15px;

    border-radius:10px;

    background:#f8fafc;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:18px;
    font-weight:600;

    color:#0b1f3a;

    box-shadow:0 5px 20px rgba(0,0,0,0.05);

    transition:0.3s;
}

.client-item:hover{
    background:#0b1f3a;

    color:#fff;

    transform:translateY(-6px);
}

@keyframes scrollClients{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(calc(-250px * 6));
    }

}

/* TESTIMONIAL SECTION */

.testimonial-section{
    padding:110px 80px;

    background:#f8fafc;
}

.testimonial-heading{
    text-align:center;

    margin-bottom:60px;
}

.testimonial-heading h2{
    font-size:52px;

    color:#0b1f3a;

    margin-top:18px;
}

.testimonial-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.testimonial-card{
    background:#fff;

    padding:45px 35px;

    border-radius:16px;

    transition:0.4s;

    box-shadow:0 5px 25px rgba(0,0,0,0.06);
}

.testimonial-card:hover{
    transform:translateY(-10px);

    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.stars{
    color:#f4a100;

    font-size:24px;

    margin-bottom:20px;
}

.testimonial-card p{
    color:#555;

    line-height:34px;

    margin-bottom:30px;

    font-size:17px;
}

.testimonial-card h3{
    color:#0b1f3a;

    font-size:24px;

    margin-bottom:8px;
}

.testimonial-card span{
    color:#777;
}

/* BLOG SECTION */

.blog-section{
    padding:100px 80px;
    background:#ffffff;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#f4a100;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
}

.section-title h2{
    font-size:52px;
    color:#0b1f3a;
    margin-top:12px;
    font-weight:700;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:50px;
}

.blog-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,0.14);
}

.blog-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.blog-content{
    padding:28px;
}

.blog-content h3{
    font-size:28px;
    color:#0b1f3a;
    margin-bottom:15px;
    line-height:1.4;
}

.blog-content p{
    color:#666;
    line-height:30px;
    margin-bottom:20px;
    font-size:16px;
}

.blog-content a{
    color:#f4a100;
    text-decoration:none;
    font-weight:600;
}

/* CTA SECTION */

.cta-section{
    background:#0b1f3a;
    padding:55px 80px;
}

.cta-container{
    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.cta-text h2{
    color:#fff;
    font-size:42px;
    margin-bottom:12px;
    line-height:1.25;
    max-width:700px;
}

.cta-text p{
    color:#d6d6d6;
    font-size:16px;
    line-height:28px;
    max-width:700px;
}

.cta-btn{
    background:#f4a100;
    color:#fff;
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:0.3s;

    min-width:170px;
    text-align:center;
}

.cta-btn:hover{
    background:#ffb300;
}

/* FOOTER */

.footer{
    background:#06152c;
    padding:50px 80px 18px;
}

.footer-grid{
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:45px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3{
    color:#fff;
    font-size:22px;
    margin-bottom:18px;
}

.footer-about p,
.footer-contact p,
.footer-links a{
    color:#d2d2d2;
    font-size:15px;
    line-height:30px;
    text-decoration:none;
}

.footer-links a{
    margin-bottom:6px;
    display:block;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    margin-top:30px;
    padding-top:15px;
    text-align:center;
}

.footer-bottom p{
    color:#aaa;
    font-size:13px;
}

/* WHATSAPP FLOAT BUTTON */

.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    bottom:30px;
    right:25px;

    background:#25d366;
    color:#fff;

    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
    text-decoration:none;

    box-shadow:0 8px 25px rgba(0,0,0,0.25);

    z-index:9999;

    transition:0.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    background:#1ebe5d;
}

/* ENQUIRY FLOAT BUTTON */

.enquiry-float{
    position:fixed;
    bottom:110px;
    right:25px;

    background:#0b1f3a;
    color:#fff;

    padding:14px 24px;

    border-radius:40px;

    font-size:15px;
    font-weight:600;

    text-decoration:none;

    box-shadow:0 8px 25px rgba(0,0,0,0.20);

    z-index:9999;

    transition:0.3s ease;
}

.enquiry-float:hover{
    background:#f4a100;
    transform:translateY(-4px);
}

/* RESPONSIVE */

@media(max-width:991px){

    .top-bar,
    .navbar{
        padding:20px 40px;
    }

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .logo{
        text-align:center;
    }

    .logo h2{
        font-size:46px;
        line-height:54px;
    }

    .nav-links{
        gap:30px;
        flex-wrap:wrap;
    }

    .nav-btn{
        min-width:180px;
        font-size:18px;
    }

    .hero-clean-content h1{
        font-size:52px;
        line-height:68px;
    }

    .hero-clean-content p{
        font-size:18px;
        line-height:32px;
    }

    .testimonial-grid,
    .blog-grid{
        grid-template-columns:1fr;
    }

    .cta-container{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    /* TOP BAR */

    .top-bar{
        padding:15px 20px !important;
    }

    .top-bar .container{
        display:flex !important;
        flex-direction:column !important;
        align-items:center !important;
        justify-content:center !important;

        gap:12px !important;

        text-align:center !important;
    }

    .top-left{
        display:flex !important;
        flex-wrap:wrap !important;
        justify-content:center !important;
        align-items:center !important;

        gap:18px !important;
    }

    .top-right{
        display:flex !important;
        justify-content:center !important;
        align-items:center !important;

        gap:16px !important;

        width:100% !important;
    }

    /* NAVBAR */

    .navbar{
        display:flex !important;
        flex-direction:column !important;

        align-items:center !important;
        justify-content:center !important;

        gap:18px !important;

        padding:20px 12px !important;
    }

    .logo{
        text-align:center !important;
    }

    .logo h2{
        font-size:28px !important;
        line-height:38px !important;
    }

    .logo p{
        font-size:16px !important;
    }

    .nav-links{
        display:grid !important;

        grid-template-columns:repeat(2,1fr) !important;

        width:100% !important;

        gap:18px !important;

        text-align:center !important;

        padding:0 !important;
        margin:0 !important;
    }

    .nav-links li{
        margin:0 !important;
        list-style:none !important;
    }

    .nav-links a{
        font-size:18px !important;
        display:block !important;
    }

    .nav-btn{
        width:180px !important;

        display:flex !important;
        justify-content:center !important;
        align-items:center !important;

        font-size:18px !important;

        padding:14px 18px !important;
    }

    .hero-clean{
        padding:100px 20px;
    }

    .hero-clean-content h1,
    .about-hero-content h1{
        font-size:42px !important;
        line-height:1.2 !important;
    }

    .hero-clean-content p,
    .about-hero-content p{
        font-size:18px !important;
        padding:0 15px !important;
        line-height:30px;
    }

    .blog-section,
    .cta-section,
    .footer,
    .testimonial-section{
        padding-left:25px;
        padding-right:25px;
    }

    .section-title h2,
    .testimonial-heading h2,
    .cta-text h2{
        font-size:36px;
    }

}
/* =========================
   NAVBAR
========================= */

.navbar{
    width: 100%;
    background: #fff;
    padding: 22px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1000;
}

/* LOGO */

.logo{
    flex-shrink: 0;
}

.logo h2{
    font-size: 58px;
    line-height: 0.95;
    font-weight: 700;
    color: #082b66;
    margin: 0;
}

.logo p{
    font-size: 18px;
    color: #f39c12;
    margin-top: 12px;
    font-weight: 500;
}

/* NAV LINKS */

.nav-links{
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li{
    list-style: none;
}

.nav-links a{
    text-decoration: none;
    color: #111;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-links a:hover{
    color: #082b66;
}

.active-link{
    color: #082b66 !important;
}

/* BUTTON */

.nav-btn{
    background: #082b66;
    color: #fff;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.nav-btn:hover{
    background: #0b3c8f;
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .navbar{
        padding: 20px 40px;
        gap: 25px;
    }

    .logo h2{
        font-size: 42px;
    }

    .nav-links{
        gap: 28px;
    }

    .nav-links a{
        font-size: 16px;
    }

    .nav-btn{
        padding: 14px 24px;
        font-size: 16px;
    }

}

@media(max-width:992px){

    .navbar{
        flex-direction: column;
        padding: 25px;
    }

    .logo{
        text-align: center;
    }

    .nav-links{
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

}