.hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: absolute;
    top: 20%;
    left: 60px;
    transform: translateY(-20%);
    z-index: 2;
}

/* LOGO SIZE */
/* LOGO FIX */
.logo {
    height: 65px;
    width: auto;
}
 

/* MOBILE */
@media (max-width: 768px) {
    .logo {
        height: 55px;
        transform: scale(1.3);
    }
}
 

/* DROPDOWN */
.dropdown-menu {
    border-radius: 6px;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.dropdown-item {
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: var(--accent);
    color: #000;
}
.navbar .nav-link {
    padding: 10px 15px;
}

@media (max-width: 991px) {
    .navbar-nav {
        background: #fff;
        padding: 15px;
        border-radius: 8px;
    }
}

/* GLOBAL SECTION SPACING */
 
h1, h2, h3 {
    font-weight: 700;
    color: var(--primary);
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
}
/* HERO TEXT FIX */
.hero h1,
.hero h2,
.hero p {
    color: #fff !important;
}

p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}
 
.btn {
    padding: 12px 25px;
    font-size: 15px;
    border-radius: 5px;
}
/* BRAND COLORS */
:root {
    --primary: #1F2B5C;
    --accent: #FDD600;
    --secondary: #35AAC6;
    --dark: #11181A;
}

/* TOP BAR */
.top-bar {
    background: var(--primary);
    font-size: 14px;
}

/* NAVBAR */
.navbar {
    background: #fff;
}
 
.navbar .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: var(--primary);
}
/* KEEP DROPDOWN ARROW INLINE */
 }.navbar-nav .nav-link {
    white-space: nowrap;
}
/* FOOTER */
.footer {
    background: var(--primary);
    color: #fff;
}

/* HEADINGS */
.footer h5 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #fff;
}

/* SERVICES */
.services {
    background: #f8f9fa;
}

/* CARD */
.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* HOVER EFFECT */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* CONTENT */
.service-content {
    padding: 20px;
}

.service-content h5 {
    font-weight: 700;
    color: var(--primary);
}

.service-content p {
    margin: 10px 0;
}
/* SERVICE TITLE ARROW */
.service-content h5::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 14px;
    background: var(--accent);
    margin-right: 8px;
}
.service-content {
    padding: 25px;
}

.service-content p {
    font-size: 15px;
    color: #555;
}
.service-content .btn {
    margin-top: 10px;
}
.services {
    border-top: 1px solid #eee;
}
/* IMAGE WRAPPER */
.service-img {
    overflow: hidden;
    position: relative;
}

/* IMAGE */
.service-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* OVERLAY */
.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-card:hover .service-img::after {
    opacity: 1;
}

/* CONTENT LIFT */
.service-card:hover .service-content {
    transform: translateY(-5px);
}








/* SECTION HEADER */
.section-header {
    max-width: 700px;
    margin: 0 auto;
}

/* SMALL TOP TEXT */
.section-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* MAIN TITLE */
.section-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

/* DESCRIPTION */
.section-header p {
    color: #666;
    font-size: 16px;
}

/* CLEAN UNDERLINE (centered) */
.section-header h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--accent);
    display: block;
    margin: 12px auto 0;
}

/* STICKY HEADER */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
}
.navbar .nav-link {
    position: relative;
}

/* underline animation */
.navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}

.navbar .nav-link:hover::after {
    width: 100%;
}
/* MOBILE MENU */
@media (max-width: 991px) {

    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .navbar .nav-link {
        padding: 10px 0;
        color: var(--primary);
    }

    .dropdown-menu {
        border: none;
        box-shadow: none;
    }
}
/* ADD BACKGROUND + SHADOW ON SCROLL */
.navbar.scrolled {
    background: #fff !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}





/* SHOW DROPDOWN ON HOVER (DESKTOP) */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
}








/* DROPDOWN ICON */
.navbar .nav-link i {
    font-size: 12px;
    transition: 0.3s ease;
}

/* ROTATE ON HOVER */
.nav-item.dropdown:hover i {
    transform: rotate(180deg);
}












/* FOOTER */
.footer p {
    font-size: 15px;
    margin-bottom: 10px;
    color: #ccc;   /* lighter but readable */
}

/* ICON SPACING */
.footer i {
    margin-right: 8px;
    color: var(--accent);
}
/* LINKS */
.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: var(--accent);
}
.footer .col-md-4 {
    margin-bottom: 20px;
}
.footer-bottom {
    background: #0b0f1a;
    color: #aaa;
    font-size: 14px;
}

/* OUTLINE BUTTON (WHITE BORDER) */
/* PRIMARY BUTTON */
.btn-warning {
    background: #FDD600;
    color: #111;
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.btn-warning:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* OUTLINE BUTTON */
.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #fff;
    color: #111;
    transform: translateY(-2px);
}

.btn {
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


/* =====================
   BASE
===================== */
.has-submenu {
    position: relative;
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* =====================
   DESKTOP (hover)
===================== */
@media (min-width: 992px) {

    .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        min-width: 220px;
        display: none;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        border-radius: 6px;
        z-index: 1000;
    }

    .submenu li a {
        display: block;
        padding: 10px 15px;
        color: #333;
        text-decoration: none;
    }

    .submenu li a:hover {
        background: #f5f5f5;
    }

    /* show on hover */
    .has-submenu:hover .submenu {
        display: block;
    }
}

/* NAVBAR HEIGHT FLEXIBLE */
.navbar {
    padding: 20px 0;
}
/* LOGO - FULL + RESPONSIVE */
/* LOGO FIX - NO CROPPING */
.logo {
    max-height: 80px;
    height: auto;
    width: auto;
    object-fit: contain;
}

/* ENSURE FULL VISIBILITY */
.navbar-brand {
    display: flex;
    align-items: center;
    overflow: visible;   /* important */
}
@media (max-width: 991px) {

    .logo {
        max-height: 60px;
    }

    .navbar {
        padding: 12px 0;
    }

}




@media (max-width: 768px) {

    /* INCREASE HEADER HEIGHT */
    .navbar {
        padding: 18px 0;
    }

    /* MAKE LOGO BIGGER */
    .logo {
        max-height: 75px;
        height: auto;
        width: auto;
        object-fit: contain;
    }

    /* ALIGN PROPERLY */
    .navbar-brand {
        display: flex;
        align-items: center;
    }

}
.logo {
    transform: scale(1.15);
    transform-origin: left center;
}

/* MOBILE HERO FIX */
@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 80vh;
    }

    .hero-content {
         
        top: auto;
        left: auto;
        transform: none;
        padding: 60px 20px;
        text-align: center;
    }

}
@media (max-width: 768px) {

    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 15px;
    }

}
@media (max-width: 768px) {

    .hero .d-flex {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero .btn {
        width: 80%;
        max-width: 280px;
    }

}
.hero-img {
    object-fit: cover;
}

/* optional better focus on mobile */
@media (max-width: 768px) {
    .hero-img {
        object-position: center;
    }
}
/* KEEP HERO OVERLAY STYLE ON MOBILE */
@media (max-width: 768px) {

    .hero {
        height: 85vh;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 20px;
        right: 20px;
        transform: translateY(-50%);
        text-align: center;
    }

}
@media (max-width: 768px) {

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
    }

}
@media (max-width: 768px) {

    .hero .d-flex {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero .btn {
        width: 90%;
        max-width: 260px;
    }

}
@media (max-width: 768px) {

    .hero-content {
        text-align: center;
        left: 15px;
        right: 15px;
    }

}
@media (max-width: 768px) {

    .hero .d-flex {
        flex-direction: row;   /* side by side */
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;       /* safe for small screens */
    }

}
@media (max-width: 768px) {

    .hero .btn {
        padding: 10px 18px;
        font-size: 14px;
        width: auto;         /* remove full width */
    }

}
/* =====================
   MOBILE (click/slide)
===================== */
@media (max-width: 991px) {

    .submenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 10px;
    }

    .submenu.open {
        max-height: 300px;
    }

    .submenu li a {
        display: block;
        padding: 8px 0;
        color: var(--primary);
        text-decoration: none;
    }

    .services-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 38%;   /* 🔥 reduced height */
}

.video-wrapper iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 8px;
}


.top-bar {
    font-size: 14px;
}

.top-bar i {
    margin-right: 5px;
}

/* MOBILE */
@media (max-width: 768px) {

    .top-bar .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

}