/* ====== GLOBAL RESET & BASE STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Swift721', 'Inter', sans-serif; /* Changed to Swift721 */
    color: #333;
    line-height: 1.6;
    background: #fff;
    overflow-x: hidden;
    font-weight: 400; /* Regular weight */
}

/* Headings - You can use Swift721 or keep Titillium Web */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Swift721', 'Titillium Web', sans-serif; /* Changed to Swift721 */
    font-weight: 700; /* Bold weight for headings */
}

/* For specific font weights */
.font-light { font-weight: 300; }
.font-regular { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

/* For condensed version */
.font-condensed {
    font-family: 'Swift721 Condensed', 'Swift721', sans-serif;
}


/* ====== NAVIGATION ====== */
.primary-menu-link {
    font-family: 'Swift721', sans-serif;
    font-weight: 600;
}

/* ====== HERO SECTION ====== */
.slide-content h2 {
    font-family: 'Swift721', 'Titillium Web', sans-serif;
    font-weight: 700;
}

/* ====== BUTTONS ====== */
.btn, .cta-button-primary, .cta-button-secondary {
    font-family: 'Swift721', sans-serif;
    font-weight: 600;
}


.boxContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}



/* ====== HEADER STYLES ====== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    background: white;
    width: 100%;
}

/* Secondary Navbar (Top Bar) - FIXED FOR MOBILE - ALL IN ONE LINE */
.secondary-navbar {
    background: linear-gradient(90deg, #0a4a7a 0%, #0d6db7 100%);
    padding: 10px 0;
    font-size: 14px;
    width: 100%;
}

.secondary-navbar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
}

.call-us-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
    min-width: fit-content;
}

.call-us-text a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.call-us-text a:hover {
    opacity: 0.9;
}

.header-flex {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
}

.region-select {
    flex-shrink: 0;
    min-width: 120px;
}

.region-select select {
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 14px;
    cursor: pointer;
    width: 100%;
    max-width: 150px;
    min-width: 120px;
}

.region-select select:focus {
    outline: none;
    border-color: rgba(255,255,255,0.6);
}

.region-select option {
    color: #333;
    background: white;
}

.secondary-menu-list {
    display: flex;
    list-style: none;
    gap: 15px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.secondary-menu-item {
    flex-shrink: 0;
}

.secondary-menu-item a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
    white-space: nowrap;
    display: block;
}

.secondary-menu-item a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Primary Navbar (Main Header) */
.primary-navbar {
    background: white;
    padding: 0;
    width: 100%;
}

.primary-navbar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    position: relative;
    width: 100%;
}

/* ====== LOGO STYLES ====== */
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
  height: 110px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}


/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* Search Icon */

.search-icon a {
    color: #0a4a7a;
    font-size: 18px;
    text-decoration: none;
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-icon a:hover {
    background-color: rgba(10, 74, 122, 0.1);
}

/* Mobile Hamburger Button */
.mn-hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #0a4a7a;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
    z-index: 1002;
}

.mn-hamburger-btn:hover {
    color: #0d6db7;
}

/* Search Container */
.search-container {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    z-index: 1001;
}

.search-container.active {
    display: flex;
    animation: slideDown 0.3s ease-out;
}

.search-container input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}

.search-container input:focus {
    border-color: #0a4a7a;
}

.search-container button {
    background: #0a4a7a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.search-container button:hover {
    background: #0d6db7;
}



/* Primary Menu */
.primary-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin: 0 20px;
}

.primary-menu-list {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.primary-menu-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
    font-size: 15px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.primary-menu-link:hover {
    color: #0a4a7a;
}

.primary-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0d6db7;
    transition: width 0.3s;
}

.primary-menu-link:hover::after {
    width: 100%;
}

/* ====== DROPDOWN MENU STYLES ====== */
/* Active state for menu items */
.primary-menu-link.active {
    color: #e63946 !important;
    position: relative;
}

.primary-menu-link.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #e63946;
    border-radius: 1px;
}

/* Active state for dropdown items */
.dropdown-item.active {
    color: #e63946 !important;
    background: rgba(230, 57, 70, 0.08);
    font-weight: 600;
}

/* Dropdown menu styling */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown.active .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dropdown item styling */
.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(230, 57, 70, 0.1);
    color: #e63946;
}

/* Dropdown toggle arrow rotation */
.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    border: 1px solid rgba(0,0,0,0.1);
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(10, 74, 122, 0.05);
    color: #0a4a7a;
    padding-left: 25px;
}

/* Member Login Button */
.primary-menu-list li:last-child a.member-login {
    background: linear-gradient(90deg, #0a4a7a 0%, #0d6db7 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    margin-left: 10px;
    transition: all 0.3s;
}

.primary-menu-list li:last-child a.member-login:hover {
    background: linear-gradient(90deg, #093e67 0%, #0a5a9c 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 74, 122, 0.2);
}

.primary-menu-list li:last-child a.member-login::after {
    display: none;
}

/* ====== MOBILE RESPONSIVE STYLES ====== */
@media (max-width: 1100px) {
    .primary-menu-list {
        gap: 20px;
    }
    
    .logo-image {
        height: 55px;
        max-width: 180px;
    }
    
    .primary-menu-link {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .primary-navbar-wrap {
        padding: 12px 0;
    }
    
    .primary-menu-list {
        gap: 15px;
    }
    
    .logo-image {
        height: 50px;
        max-width: 160px;
    }
}

@media (max-width: 900px) {
    /* Secondary Navbar Mobile - ALL IN ONE LINE */
    .secondary-navbar-wrap {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 8px 0;
        overflow: hidden;
    }
    
    .call-us-text {
        flex: 0 0 auto;
        font-size: 12px;
    }
    
    .call-us-text a {
        font-size: 12px;
    }
    
    .header-flex {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        gap: 10px;
        justify-content: flex-end;
    }
    
    .region-select {
        flex: 0 0 auto;
        min-width: 110px;
    }
    
    .region-select select {
        font-size: 12px;
        padding: 5px 8px;
        max-width: 110px;
        min-width: 110px;
    }
    
    .secondary-menu-list {
        flex: 0 0 auto;
        gap: 10px;
        min-width: 0;
        overflow: hidden;
    }
    
    .secondary-menu-item a {
        font-size: 12px;
        white-space: nowrap;
    }
    
    /* Primary Navbar Mobile */
    .primary-navbar-wrap {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    
    .mn-hamburger-btn {
        display: block !important;
        order: 3;
    }
    
    .header-logo {
        order: 1;
        flex: 1;
    }
    
    .header-actions {
        order: 2;
    }
    
    .logo-image {
        height: 45px;
        max-width: 150px;
    }
    
    /* Mobile Menu */
    .primary-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        margin: 0;
        padding: 80px 20px 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        display: block !important;
        z-index: 999;
        box-shadow: none;
    }
    
    .primary-menu.active {
        left: 0 !important;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .primary-menu-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .primary-menu-list li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .primary-menu-list li:last-child {
        border-bottom: none;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 2px solid #f0f0f0;
    }
    
    .primary-menu-link {
        display: flex;
        padding: 15px 0;
        width: 100%;
        font-size: 16px;
        justify-content: space-between;
        align-items: center;
        white-space: normal;
    }
    
    .primary-menu-list li:last-child a.member-login {
        margin: 0;
        border-radius: 6px;
        text-align: center;
        padding: 15px;
        display: block;
        width: 100%;
    }
    
    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: rgba(10, 74, 122, 0.03);
        border-radius: 0;
        border: none;
        margin-top: 5px;
        margin-left: 15px;
        width: calc(100% - 15px);
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 300px;
        padding: 10px 0;
    }
    
    .dropdown-item {
        padding: 12px 15px 12px 30px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    /* Search Container Mobile */
    .search-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        padding: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1003;
    }
    
    .search-container input {
        font-size: 16px;
    }
    
    /* Overlay for mobile menu */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }
    
    .menu-overlay.active {
        display: block;
    }
}

@media (max-width: 768px) {
    /* Secondary Navbar - Keep all in one line */
    .secondary-navbar {
        padding: 6px 0;
    }
    
    .secondary-navbar-wrap {
        gap: 8px;
        padding: 6px 0;
    }
    
    .call-us-text {
        font-size: 11px;
    }
    
    .call-us-text a {
        font-size: 11px;
    }
    
    .header-flex {
        gap: 8px;
    }
    
    .region-select select {
        font-size: 11px;
        padding: 4px 6px;
        max-width: 100px;
        min-width: 100px;
    }
    
    .secondary-menu-list {
        gap: 8px;
    }
    
    .secondary-menu-item a {
        font-size: 11px;
    }
    
    .logo-image {
        height: 40px;
        max-width: 140px;
    }
    
    .search-container {
        padding: 12px;
    }
    
    .primary-menu {
        width: 280px;
    }
}

@media (max-width: 576px) {
    /* Secondary Navbar - Even smaller for mobile */
    .secondary-navbar-wrap {
        gap: 5px;
    }
    
    .call-us-text {
        font-size: 10px;
        min-width: auto;
    }
    
    .call-us-text a {
        font-size: 10px;
    }
    
    .call-us-text span {
        display: none;
    }
    
    .call-us-text a span:first-child {
        display: inline;
    }
    
    .header-flex {
        gap: 5px;
    }
    
    .region-select {
        min-width: 90px;
    }
    
    .region-select select {
        font-size: 10px;
        padding: 3px 5px;
        max-width: 90px;
        min-width: 90px;
    }
    
    .secondary-menu-list {
        gap: 5px;
    }
    
    .secondary-menu-item a {
        font-size: 10px;
    }
    
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .primary-menu {
        width: 260px;
        padding: 70px 15px 15px;
    }
    
    .primary-menu-link {
        font-size: 15px;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .boxContainer {
        padding: 0 15px;
    }
    
    /* Secondary Navbar - Minimal for very small screens */
    .secondary-navbar {
        font-size: 10px;
        padding: 5px 0;
    }
    
    .secondary-navbar-wrap {
        gap: 4px;
        padding: 4px 0;
    }
    
    .call-us-text {
        font-size: 9px;
    }
    
    .call-us-text a {
        font-size: 9px;
        gap: 3px;
    }
    
    .region-select {
        min-width: 80px;
    }
    
    .region-select select {
        font-size: 9px;
        padding: 2px 4px;
        max-width: 80px;
        min-width: 80px;
    }
    
    .secondary-menu-list {
        gap: 4px;
    }
    
    .secondary-menu-item a {
        font-size: 9px;
    }
    
    .logo-image {
        height: 45px;
        max-width: 140px;
    }
    
    .search-icon a {
        font-size: 16px;
        padding: 6px;
    }
    
    .mn-hamburger-btn {
        font-size: 22px;
        padding: 6px;
    }
    
    .primary-menu {
        width: 240px;
    }
}

/* Animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky header effect */
.header.sticky .primary-navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ====== HERO SLIDER - FIXED FOR MOBILE ====== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    width: 100%;
    /* REMOVED margin-bottom: 60px; - This was causing white space */
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 74, 122, 0.85) 0%, rgba(10, 74, 122, 0.7) 50%, rgba(10, 74, 122, 0.4) 100%);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    line-height: 1.2;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.slide-content .btn {
    background: white;
    color: #0a4a7a;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: 2px solid white;
}

.slide-content .btn:hover {
    background: transparent;
    color: white;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dot.active {
    background: white;
}

/* CAROUSEL ARROWS - FIXED POSITIONING FOR MOBILE */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: black;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid black;
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.3);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* MOBILE RESPONSIVE FOR SLIDER - REMOVED ALL MARGIN */
@media (max-width: 1200px) {
    .hero-slider {
        height: 405px;
        margin-bottom: 0; /* REMOVED margin */
    }
    
    .slide-content {
        left: 8%;
        max-width: 550px;
        padding: 35px;
    }
    
    .slide-content h2 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 389px;
        margin-bottom: 0; /* REMOVED margin */
    }
    
    .slide-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
        padding: 25px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .slide-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    /* Arrows on image for mobile */
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.3);
        border: 1px solid black;
    }
    
    .slider-arrow.prev {
        left: 10px;
    }
    
    .slider-arrow.next {
        right: 10px;
    }
    
    .slider-controls {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 272px;
        margin-bottom: 0; /* REMOVED margin */
    }
    
    .slide-content {
        padding: 20px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
    }
    
    .slide-content h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-content .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    /* Smaller arrows for mobile */
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-arrow.prev {
        left: 8px;
    }
    
    .slider-arrow.next {
        right: 8px;
    }
    
    .slider-controls {
        bottom: 15px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 189px;
        margin-bottom: 0; /* REMOVED margin */
    }
    
    .slide-content {
        padding: 15px;
        backdrop-filter: blur(5px);
    }
    
    .slide-content h2 {
        font-size: 20px;
    }
    
    .slide-content p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .slide-content .btn {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    /* Even smaller arrows for very small screens */
    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .slider-arrow.prev {
        left: 5px;
    }
    
    .slider-arrow.next {
        right: 5px;
    }
    
    .slider-controls {
        bottom: 10px;
        gap: 10px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 360px) {
    .hero-slider {
        height: 177px;
        margin-bottom: 0; /* REMOVED margin */
    }
    
    .slide-content {
        padding: 12px;
    }
    
    .slide-content h2 {
        font-size: 18px;
    }
    
    .slide-content p {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .slide-content .btn {
        padding: 7px 15px;
        font-size: 12px;
    }
    
    .slider-arrow {
        width: 25px;
        height: 25px;
        font-size: 10px;
    }
}

/* ====== FAQ SECTION ====== */

.faq-section {
  padding: 5rem 1rem;
  background: #f8fafc;
}

.boxContainer {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-title p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  flex: 1;
  text-align: left;
}

.faq-icon {
  margin-left: 1rem;
  transition: transform 0.3s ease;
  color: #64748b;
}

.faq-icon i {
  font-size: 1.25rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  opacity: 0;
}

/* Active state for open FAQ */
.faq-item.open .faq-answer {
  max-height: 1000px;
  opacity: 1;
  transition: max-height 0.5s ease-in, opacity 0.3s ease-in 0.1s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer > * {
  padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p,
.faq-answer ul {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.faq-answer ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.faq-col h4 {
  color: #1e293b;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.faq-col ul {
  padding-left: 1rem;
}

.faq-col li {
  color: #475569;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .faq-question {
    padding: 1.25rem 1.5rem;
  }
  
  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-answer > * {
    padding: 0 1.5rem 1.25rem 1.5rem;
  }
  
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ====== FEATURES SECTION ====== */
.features-section {
    padding: 50px 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: #0a4a7a;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    justify-items: center;
}

.feature-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 350px;
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(10, 74, 122, 0.15);
}

.feature-image {
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    font-size: 22px;
    color: #0a4a7a;
    margin-bottom: 15px;
}

.feature-content p {
    color: #666;
    margin-bottom: 20px;
}

.feature-link {
    color: #0d6db7;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ====== CONTACT CTA SECTION ====== */
.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a4a7a 0%, #0d6db7 100%);
    color: white;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.contact-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-primary {
    background: white;
    color: #0a4a7a;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid white;
}

.cta-button-primary:hover {
    background: transparent;
    color: white;
}

.cta-button-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid white;
}

.cta-button-secondary:hover {
    background: white;
    color: #0a4a7a;
}

/* ====== STRAIGHT ARROW FLOW DIAGRAM - FIXED FOR MOBILE ====== */
.straight-flow-diagram {
    padding: 25px 0;
    background: #f8fafc;
}

.flow-title {
    text-align: center;
    margin-bottom: 60px;
}

.flow-title h2 {
    font-size: 36px;
    color: #004C8F;
    margin-bottom: 10px;
    font-weight: 700;
}

.flow-sub {
    font-size: 20px;
    color: #666;
    font-weight: 500;
}

.straight-flow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 40px;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
    position: relative;
    z-index: 2;
}

.white-circle {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #eef5ff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.flow-item:hover .white-circle {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 76, 143, 0.15);
    border-color: #004C8F;
}

.blue-icon {
    font-size: 48px;
    color: #004C8F;
    transition: transform 0.3s ease;
}

.flow-item:hover .blue-icon {
    transform: scale(1.1);
}

.red-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #ff3333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    border: 3px solid white;
    z-index: 3;
}

.flow-item:hover .red-number {
    transform: scale(1.1);
}

.flow-item h4 {
    color: #004C8F;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    max-width: 180px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5px;
}

.icon-combined {
    position: relative;
    width: 60px;
    height: 60px;
}

.small-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 20px;
    color: #004C8F;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #eef5ff;
}

.straight-arrow {
    width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.arrow-line {
    width: 60px;
    height: 2px;
    background: #004C8F;
    opacity: 0.6;
    position: relative;
}

.arrow-head {
    color: #004C8F;
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    opacity: 0.8;
}

.vertical-arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.v-line {
    width: 2px;
    height: 80px;
    background: #004C8F;
    opacity: 0.6;
}

.v-head {
    color: #004C8F;
    font-size: 24px;
    font-weight: bold;
    margin-top: 5px;
    opacity: 0.8;
}

/* ====== RESPONSIVE FLOW DIAGRAM - FIXED EXTRA ICONS ====== */
@media (max-width: 1200px) {
    .flow-item {
        min-width: 160px;
    }
    
    .white-circle {
        width: 90px;
        height: 90px;
    }
    
    .blue-icon {
        font-size: 42px;
    }
    
    .straight-arrow {
        width: 60px;
    }
    
    .arrow-line {
        width: 40px;
    }
    
    .vertical-arrow {
        height: 90px;
    }
    
    .v-line {
        height: 70px;
    }
}

@media (max-width: 992px) {
    .straight-flow-diagram {
        padding: 60px 0;
    }
    
    .flow-title h2 {
        font-size: 32px;
    }
    
    .flow-sub {
        font-size: 18px;
    }
    
    .flow-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .straight-arrow {
        display: none;
    }
    
    .vertical-arrow {
        display: none;
    }
    
    .flow-item {
        min-width: 140px;
        margin-bottom: 20px;
        flex: 0 0 calc(25% - 30px);
    }
    
    .white-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .blue-icon {
        font-size: 36px;
    }
    
    .red-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
        top: -12px;
        right: -12px;
    }
    
    .flow-item h4 {
        font-size: 14px;
        min-height: 40px;
        max-width: 140px;
    }
    
    .icon-combined {
        width: 50px;
        height: 50px;
    }
    
    .small-icon {
        font-size: 16px;
        width: 25px;
        height: 25px;
        bottom: -8px;
        right: -8px;
    }
}

@media (max-width: 768px) {
    .straight-flow-diagram {
        padding: 50px 0;
    }
    
    .flow-title {
        margin-bottom: 40px;
    }
    
    .flow-title h2 {
        font-size: 28px;
    }
    
    .flow-sub {
        font-size: 16px;
    }
    
    .flow-row {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .flow-item {
        min-width: 100%;
        max-width: 280px;
        margin-bottom: 0;
        flex: 0 0 auto;
    }
    
    .white-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .blue-icon {
        font-size: 42px;
    }
    
    .red-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        top: -15px;
        right: -15px;
    }
    
    .flow-item h4 {
        font-size: 18px;
        min-height: auto;
        max-width: 280px;
        margin-bottom: 10px;
    }
    
    /* REMOVED extra icons that were showing - FIXED */
    .flow-item::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 20px;
        background: #004C8F;
        opacity: 0.6;
        display: none; /* Changed from block to none */
    }
    
    .flow-row:last-child .flow-item:last-child::after {
        display: none;
    }
    
    .flow-item::before {
        content: '↓';
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        color: #004C8F;
        font-size: 20px;
        font-weight: bold;
        opacity: 0.8;
        display: none; /* Changed from block to none */
    }
    
    .flow-row:last-child .flow-item:last-child::before {
        display: none;
    }
    
    .icon-combined {
        width: 60px;
        height: 60px;
    }
    
    .small-icon {
        font-size: 20px;
        width: 30px;
        height: 30px;
        bottom: -10px;
        right: -10px;
    }
}

@media (max-width: 576px) {
    .straight-flow-diagram {
        padding: 40px 0;
    }
    
    .flow-title h2 {
        font-size: 24px;
    }
    
    .flow-sub {
        font-size: 15px;
    }
    
    .flow-item {
        max-width: 240px;
    }
    
    .white-circle {
        width: 90px;
        height: 90px;
    }
    
    .blue-icon {
        font-size: 38px;
    }
    
    .red-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .flow-item h4 {
        font-size: 16px;
    }
    
    /* Ensure extra icons don't show */
    .flow-item::after {
        display: none !important;
    }
    
    .flow-item::before {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .flow-item {
        max-width: 200px;
    }
    
    .white-circle {
        width: 80px;
        height: 80px;
    }
    
    .blue-icon {
        font-size: 34px;
    }
    
    .red-number {
        width: 32px;
        height: 32px;
        font-size: 15px;
        top: -12px;
        right: -12px;
    }
    
    .flow-item h4 {
        font-size: 15px;
    }
    
    .icon-combined {
        width: 50px;
        height: 50px;
    }
    
    .small-icon {
        font-size: 16px;
        width: 25px;
        height: 25px;
        bottom: -8px;
        right: -8px;
    }
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-out;
}

/* ====== RESPONSIVE FEATURES SECTION ====== */
@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 50px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 15px;
    }
    
    .features-grid {
        gap: 25px;
    }
    
    .feature-card {
        max-width: 100%;
    }
    
    .feature-content {
        padding: 20px;
    }
    
    .feature-content h3 {
        font-size: 20px;
    }
}

/* ====== EXTRA MOBILE FIXES ====== */
@media (max-width: 768px) {
    .boxContainer {
        padding: 0 15px;
    }
    
    .contact-cta-section {
        padding: 60px 0;
    }
    
    .contact-cta-content h2 {
        font-size: 28px;
    }
    
    .contact-cta-content p {
        font-size: 16px;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Security Features Grid */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.security-item {
    text-align: center;
    padding: 20px;
    background: rgba(10, 74, 122, 0.05);
    border-radius: 8px;
    transition: transform 0.3s;
}

.security-item:hover {
    transform: translateY(-5px);
    background: rgba(10, 74, 122, 0.1);
}

.security-item i {
    font-size: 32px;
    color: #0d6db7;
    margin-bottom: 15px;
}

.security-item h4 {
    color: #0a4a7a;
    margin: 10px 0 8px;
    font-size: 16px;
}

.security-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Quote Steps */
.quote-steps {
    margin: 25px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(10, 74, 122, 0.05);
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #0a4a7a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    color: #0a4a7a;
    margin: 0 0 8px 0;
    font-size: 16px;
}

.step-content p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.cta-text {
    background: rgba(10, 74, 122, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
}

.inline-link {
    color: #0d6db7;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #0d6db7;
    transition: all 0.3s;
}

.inline-link:hover {
    color: #0a4a7a;
    border-bottom: 1px solid #0a4a7a;
}

/* Certifications */
.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    min-width: 120px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(10, 74, 122, 0.15);
}

.cert-badge i {
    font-size: 28px;
    color: #0d6db7;
    margin-bottom: 10px;
}

.cert-badge span {
    font-size: 14px;
    font-weight: 600;
    color: #0a4a7a;
    text-align: center;
}


/* ====== FOOTER - FIXED FOR MOBILE ====== */
.footer-header-logo{
    height: 95px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
}


.footer {
    background: #0a1a2d;
    color: white;
    padding-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #0d6db7;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    line-height: 1.5;
}

.footer-column ul li a:hover {
    color: white;
}

.contact-info {
    color: #b0b0b0;
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-info i {
    color: #0d6db7;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #0d6db7;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: #b0b0b0;
    font-size: 14px;
}

/* ====== RESPONSIVE FOOTER - FIXED ====== */
@media (max-width: 768px) {
    .footer {
        padding-top: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-column ul li a {
        font-size: 14px;
    }
    
    .contact-info p {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 15px 0;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding-top: 30px;
    }
    
    .footer-top {
        padding-bottom: 30px;
    }
    
    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .footer-column ul li {
        margin-bottom: 8px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .contact-info p {
        font-size: 13px;
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .social-links {
        gap: 10px;
        margin-top: 15px;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
    }
    
    .footer-bottom {
        padding: 12px 0;
        font-size: 12px;
    }
}

/* ====== IMAGE RESPONSIVE FIXES ====== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Make sure all images in banners are responsive */
.banner-image, .hero-image, .slide-image, .feature-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
}

/* Add mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Close button for mobile menu */
.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #0a4a7a;
    cursor: pointer;
    z-index: 1001;
    display: none;
}

@media (max-width: 900px) {
    .mobile-menu-close {
        display: block;
    }
}

/* ====== UTILITY CLASSES ====== */
.hide-on-mobile {
    display: block;
}

.show-on-mobile {
    display: none;
}

@media (max-width: 900px) {
    .hide-on-mobile {
        display: none !important;
    }
    
    .show-on-mobile {
        display: block !important;
    }
}

/* ====== SECONDARY NAVBAR FIX FOR VERY SMALL SCREENS ====== */
@media (max-width: 320px) {
    .secondary-navbar-wrap {
        gap: 3px;
    }
    
    .call-us-text {
        font-size: 8px;
    }
    
    .call-us-text a {
        font-size: 8px;
    }
    
    .region-select select {
        font-size: 8px;
        max-width: 70px;
        min-width: 70px;
        padding: 1px 3px;
    }
    
    .secondary-menu-item a {
        font-size: 8px;
    }
    
    .logo-image {
        height: 25px;
        max-width: 90px;
    }
    
    .primary-menu {
        width: 220px;
    }
    
    .hero-slider {
        height: 160px;
        margin-bottom: 0; /* REMOVED margin */
    }
} 

/* ====== MOBILE MENU OVERLAY ====== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ====== DROPDOWN HOVER EFFECTS FOR DESKTOP ====== */
@media (min-width: 901px) {
    .dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .dropdown:hover .dropdown-icon {
        transform: rotate(180deg) !important;
    }
}

/* ====== FIX FOR MOBILE MENU ANIMATION ====== */
@media (max-width: 900px) {
    .primary-menu {
        transition: left 0.3s ease !important;
    }
    
    .dropdown-menu {
        transition: max-height 0.3s ease !important;
    }
    
    /* Ensure hamburger button is clickable */
    .mn-hamburger-btn {
        cursor: pointer;
        z-index: 1002;
    }
}

/* Language Dropdown Styles */
.language-dropdown {
    position: relative;
    margin-right: 15px;
}

.language-dropdown-toggle {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    min-width: 60px;
    transition: none; /* Remove animations */
}

.language-dropdown-toggle:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.language-dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.2s;
}

.language-dropdown.active .language-dropdown-toggle i {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    flex-direction: column;
    min-width: 120px;
    z-index: 1000;
    margin-top: 5px;
}

.language-dropdown.active .language-dropdown-menu {
    display: flex;
}

.language-option {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #495057;
    border-bottom: 1px solid #f8f9fa;
    transition: none; /* Remove animations */
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8f9fa;
    color: #0056b3;
}

.language-option.active {
    background: #0056b3;
    color: white;
}

.language-option.active:hover {
    background: #004494;
    color: white;
}

.language-code {
    font-weight: 600;
    font-size: 12px;
    min-width: 30px;
}

.language-name {
    font-size: 13px;
    flex-grow: 1;
}

/* Remove the old language switcher styles if they exist */
.language-switcher {
    display: none !important;
}

.footer-badge {
    margin-top: 20px;
    text-align: center;
}

.footer-badge img {
    max-width: 140px;
    width: 100%;
    margin-bottom: 8px;
}

.footer-badge p {
    font-size: 14px;
    color: #b0b0b0;
    letter-spacing: 0.5px;
}

/* ✅ HARD FIX: Mobile pe poora footer grid center + single column */
@media (max-width: 768px) {

  .footer-grid{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .footer-column{
    width: 100% !important;
    max-width: 420px;          /* optional: column ko nice width */
    text-align: center !important;
    margin: 0 auto !important;
  }

  /* ✅ Badge absolutely center */
  .footer-badge{
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 16px auto 0 auto !important;
    text-align: center !important;
  }

  .footer-badge img{
    display: block !important;
    margin: 0 auto !important;
    float: none !important;
  }

  .footer-badge p{
    text-align: center !important;
    margin: 8px 0 0 0 !important;
  }

  /* contact lines center (optional) */
  .contact-info p{
    justify-content: center !important;
    text-align: center !important;
  }
}

/* =========================
   HERO FULL VIDEO SECTION
========================= */
/* ===== OPTION 3 : CLEAN LUXURY ===== */
.hero-video-section{
  position:relative; height:87vh; min-height:560px; overflow:hidden; background:#000;
}
.hero-video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }

.home-hero-overlay{
  position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(circle at left, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.1) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.65) 100%);
}

.hero-text-wrapper{
  position:relative; z-index:2; height:100%;
  display:flex; align-items:center; padding-left:90px;
}

.hero-card{
  max-width:760px;
  padding:22px 0;
  background: transparent;
  margin-top: 200px;
}

.hero-card::before{
  content:"TRUSTED COLD CHAIN";
  display:inline-block;
  padding:8px 14px;
  margin-bottom:18px;
  font-weight:700;
  letter-spacing:2px;
  font-size:12px;
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
  border-radius:999px;
  background: rgba(0,0,0,.25);
}

.hero-card h1{
  font-size:40px;
   line-height:1.08; font-weight:900;
  color:#fff;
  text-shadow:0 10px 30px rgba(0,0,0,.7);
  position:relative;
  padding-bottom:18px;
}

.hero-card h1::after{
  content:"";
  position:absolute;
  left:0; bottom:0;
  width:160px; height:6px;
  background: linear-gradient(90deg,#ff2d2d,#ff6b6b);
  border-radius: 8px;
  box-shadow:0 0 16px rgba(255,45,45,.6);
}

@media (max-width: 900px){
  .hero-text-wrapper{ padding: 0 18px; justify-content:center; text-align:center; }
  .hero-card h1{ font-size:32px; }
  .hero-card h1::after{ left:50%; transform:translateX(-50%); width:120px; }
}

/* ===========================
   HEADER LOGO SPACING FIX
   =========================== */

/* Desktop / Laptop */
.primary-navbar .primary-navbar-wrap{
  display: flex;
  align-items: center;
}

/* Logo ko thoda LEFT shift + menu se gap bada do */
.primary-navbar .header-logo{
  flex: 0 0 auto;
 margin-left: -49px;
  margin-right: 70px;
}

/* Menu normal rahe */
.primary-navbar .primary-menu{
  flex: 1 1 auto;
}

/* Responsive: Mobile par negative margin hata do */
@media (max-width: 900px){
  .primary-navbar .header-logo{
    margin-left: 0;
    margin-right: 0;
  }
}


/* =========================================================
   ✅ SECONDARY HEADER STYLES
========================================================= */
.secondary-header {
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: #ffffff;
  padding: 0;
  font-family: 'Segoe UI', 'Roboto', 'Arial', sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(183, 28, 28, 0.2);
}


.boxContainer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.secondary-header-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.tagline {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeIn 0.8s ease-out;
}

.tagline::before,
.tagline::after {
  content: '❖';
  color: #ffeb3b;
  margin: 0 15px;
  font-size: 18px;
  text-shadow: 0 0 5px rgba(255, 235, 59, 0.5);
  animation: pulse 2s infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Optional: Add a subtle shine effect on hover */
.tagline span {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
  font-weight: bold;
}

.tagline:hover span {
  transform: scale(1.02);
}

/* Responsive styles */
@media (max-width: 768px) {
  .secondary-header {
    padding: 10px 0;
  }
  
  .tagline {
    font-size: 14px;
    padding: 6px 15px;
    letter-spacing: 0.2px;
  }
  
  .tagline::before,
  .tagline::after {
    margin: 0 10px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .secondary-header {
    padding: 8px 0;
  }
  
.marquee-text {
  line-height: 0px !important;
}

  .tagline {
    font-size: 12px;
    padding: 5px 10px;
    line-height: 0.3;
  }
  
  .tagline::before,
  .tagline::after {
    margin: 0 8px;
    font-size: 14px;
  }
  
  .boxContainer {
    padding: 0 15px;
  }
}