*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f7f9fc;
    color:#111;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* NAVBAR */

.navbar{
    width:100%;
    background:#ffffff;
    padding:18px 0;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 2px 20px rgba(0,0,0,0.08);
}

.nav-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:70px;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#111;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#5b3df5;
}

/* HERO */

.hero{
    padding:80px 0;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.tagline{
    background:#e9e5ff;
    color:#5b3df5;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    display:inline-block;
    margin-bottom:25px;
}

.hero-content h1{
    font-size:58px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary{
    background:#5b3df5;
    color:#fff;
    padding:16px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

.btn-secondary{
    border:2px solid #5b3df5;
    color:#5b3df5;
    padding:16px 32px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

/* HERO SLIDER */

.hero-slider{
    width:100%;
}

.hero-slider img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* MOBILE */

@media(max-width:768px){

.hero-grid{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:40px;
}

.nav-links{
    display:none;
}

.hero-slider img{
    height:350px;
}

.hero-buttons{
    flex-direction:column;
}

}

/* ================= GLOBAL ================= */

body{
    font-family: 'Poppins', sans-serif;
    background:#f7f9fc;
    color:#1a1a1a;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= SECTION TAG ================= */

.section-tag{
    display:inline-block;
    background:#e7f0ff;
    color:#0d47a1;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

/* ================= ABOUT SECTION ================= */

.premium-about{
    padding:100px 0;
    background:#ffffff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-content h2{
    font-size:42px;
    line-height:1.3;
    margin-bottom:25px;
    color:#0d1b3d;
}

.about-content p{
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
    color:#555;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.12);
}

.about-highlights{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:35px;
}

.highlight-box{
    background:#f7f9fc;
    padding:25px;
    border-radius:18px;
    text-align:center;
    transition:0.3s;
}

.highlight-box:hover{
    transform:translateY(-8px);
}

.highlight-box h3{
    font-size:32px;
    color:#0d47a1;
    margin-bottom:10px;
}

.highlight-box p{
    font-size:14px;
    margin:0;
}

/* ================= SERVICES ================= */

.services-section{
    padding:100px 0;
    background:#f3f7fc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#0d1b3d;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#ffffff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card h3{
    font-size:24px;
    margin-bottom:18px;
    color:#0d1b3d;
}

.service-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .about-content h2,
    .section-title h2{
        font-size:32px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .about-highlights{
        grid-template-columns:1fr;
    }

}

/* ===== PREMIUM HEADER FIX ===== */

.brandss{
    display:none;
}

.navbar{
    background:#14003b !important;
    padding:12px 50px !important;
    min-height:auto !important;
}

.navbar-brand{
    margin-right:40px;
}

.navbar-brand img{
    height:58px;
    width:auto;
}

.navbar-nav{
    align-items:center;
}

.nav-item{
    margin:0 8px;
}

.nav-link{
    color:#ffffff !important;
    font-size:14px;
    font-weight:500;
    transition:0.3s;
    padding:10px 18px !important;
}

.nav-link:hover{
    color:#f7c948 !important;
}

.dropdown-menu{
    border:none;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.dropdown-item{
    padding:10px 18px;
    font-weight:500;
}

/* REMOVE OLD HUGE LOGO BG */
.navbar::before,
.navbar::after{
    display:none !important;
    content:none !important;
}

/* ===== PREMIUM NAVBAR FINAL ===== */

.navbar{
    background: linear-gradient(90deg,#12002f,#1b0047) !important;
    padding: 14px 40px !important;
    box-shadow: 0 6px 25px rgba(0,0,0,0.18);
}

.navbar-nav{
    margin: auto;
    align-items: center;
}

.nav-item{
    margin: 0 10px;
}

.nav-link{
    color: #ffffff !important;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.nav-link:hover{
    color: #ffcc33 !important;
    transform: translateY(-2px);
}

.dropdown-menu{
    border: none;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.dropdown-item{
    padding: 10px 18px;
    border-radius: 8px;
    transition: 0.3s;
}

.dropdown-item:hover{
    background: #14003b;
    color: #fff;
}

/* ===== PREMIUM NAVBAR ===== */

.navbar{
    background: linear-gradient(90deg,#12002f,#1d0047) !important;
    padding: 14px 45px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.navbar-brand img{
    height: 62px;
    width: auto;
    filter: brightness(0) invert(1);
}

.navbar-nav{
    gap: 12px;
}

.nav-link{
    color:#ffffff !important;
    font-size:15px;
    font-weight:500;
    transition:0.3s;
}

.nav-link:hover{
    color:#ffcc33 !important;
}

.dropdown-menu{
    border:none;
    border-radius:12px;
    padding:10px;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

.dropdown-item{
    padding:10px 18px;
    border-radius:8px;
    transition:0.3s;
}

.dropdown-item:hover{
    background:#14003b;
    color:#fff;
}

.carousel-item img{
    width:100%;
    height:88vh;
    object-fit:cover;
}

.navbar-brand img{
    height: 65px;
    width: auto;
}

.navbar{
    background:#12003b !important;
    padding:12px 40px;
}

.navbar-brand img{
    height:55px;
    width:auto;
    filter:brightness(0) invert(1);
}

.navbar-nav{
    gap:18px;
}

.nav-link{
    color:#ffffff !important;
    font-size:15px;
    font-weight:600;
    letter-spacing:0.3px;
}

.nav-link:hover{
    color:#f7c948 !important;
}

.carousel-item img{
    width:100%;
    height:620px;
    object-fit:cover;
}

.top-logo-section{
    background:#ffffff;
    padding:12px 40px;
}

.top-logo-section .text-center{
    text-align:left !important;
}

.top-logo-section img{
    height:55px;
    width:auto;
}

.navbar{
    background:#12003b !important;
    padding:10px 40px;
}

.navbar-nav{
    gap:20px;
}

.nav-link{
    color:#ffffff !important;
    font-size:15px;
    font-weight:600;
}

.nav-link:hover{
    color:#f7c948 !important;
}

.navbar .container-fluid{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.navbar-collapse{
    justify-content:flex-end;
}

.navbar-nav{
    margin-left:auto !important;
    gap:20px;
}

.navbar-nav{
    gap:30px;
    align-items:center;
}

.navbar-collapse{
    flex-grow:1;
}

.navbar-nav{
    margin-left:auto !important;
    margin-right:0 !important;
    gap:28px;
}

.navbar .container-fluid{
    display:flex;
    align-items:center;
}

.navbar-nav{
    margin-left:160px !important;
    gap:32px;
}

.navbar-nav{
margin-left:160px !important;
    gap:50px;
}

.navbar-nav.ml-auto{
    margin-left:180px !important;
    margin-right:0 !important;
}

.hero-section .container{
    max-width:1200px;
}

.hero-section .row{
    display:flex;
    align-items:center;
}

.hero-section .col-lg-6{
    width:50%;
}

.hero-title{
    font-size:58px;
    line-height:1.2;
    max-width:600px;
}

.hero-text{
    max-width:550px;
}

.hero-image{
    width:100%;
    height:auto;
    border-radius:20px;
    display:block;
}

@media(max-width:991px){

.hero-section .col-lg-6{
    width:100%;
}

.hero-title{
    font-size:38px;
}

.hero-buttons{
    flex-direction:column;
}

}

/* HERO SECTION FIX */

.hero-section{
    padding:80px 0;
    background:#f5f7fb;
}

.hero-section .container{
    max-width:1200px;
    margin:auto;
}

.hero-section .row{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
}

.hero-left{
    flex:0 0 50%;
    max-width:50%;
    padding-right:40px;
}

.hero-right{
    flex:0 0 50%;
    max-width:50%;
    text-align:center;
}

.hero-title{
    font-size:64px;
    line-height:1.15;
    font-weight:700;
    color:#111111;
    margin-bottom:25px;
}

.hero-text{
    font-size:20px;
    line-height:1.8;
    color:#555555;
    margin-bottom:30px;
}

.hero-image{
    width:100%;
    max-width:520px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.hero-btn{
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.hero-btn-primary{
    background:#1a004b;
    color:#ffffff;
}

.hero-btn-secondary{
    border:2px solid #1a004b;
    color:#1a004b;
}

/* MOBILE */

@media(max-width:991px){

.hero-left,
.hero-right{
    flex:0 0 100%;
    max-width:100%;
    text-align:center;
    padding-right:0;
}

.hero-title{
    font-size:42px;
}

.hero-buttons{
    justify-content:center;
    flex-wrap:wrap;
}

.hero-right{
    margin-top:40px;
}

.navbar{
    padding-top:8px !important;
    padding-bottom:8px !important;
    min-height:auto !important;
}

.navbar{
    padding-top:8px !important;
    padding-bottom:8px !important;
    min-height:auto !important;
}

.logo img{
    max-height:60px;
}

.nav-link{
    white-space: nowrap;
}
.navbar-nav .nav-item{
    margin:0 6px;
}

.navbar-nav .nav-item{
    margin: 0 18px;
}

.nav-link{
    white-space: nowrap;
}

#navbardrop{
    white-space: nowrap;
}

.navbar-nav{
    display:flex;
    align-items:center;
}

.navbar-nav .nav-item{
    flex: 0 0 auto;
}

.navbar-nav .nav-link{
    white-space: nowrap;
}

.navbar-nav .nav-item{
    white-space: nowrap;
}

.nav-link{
    font-size: 15px !important;
    padding: 10px 12px !important;
}

.hero-section{
    padding: 80px 0;
}

.hero-section .

.hero-section{
    padding: 70px 0 !important;
    background: #f4f5f7 !important;
}

.hero-section .container{
    max-width: 1280px !important;
}

.hero-section .col-lg-6:first-child{
    padding-left: 60px !important;
    padding-right: 40px !important;
}

.hero-title{
    font-size: 72px !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
}

.hero-text{
    font-size: 24px !important;
    line-height: 1.8 !important;
    max-width: 90% !important;
}

.hero-title{
    font-size: 58px !important;
    line-height: 1.15 !important;
    font-weight: 700 !important;
    max-width: 700px !important;
    margin-bottom: 25px !important;
}

.hero-text{
    font-size: 17px !important;
    line-height: 1.8 !important;
    max-width: 650px !important;
}

.hero-section .col-lg-6:first-child{
    padding-left: 70px !important;
    padding-right: 30px !important;
}

.hero-image{
    width: 90% !important;
    border-radius: 24px !important;
}

