/* =====================================================
   AeroHub Theme Override
   Primary: #19b3e3 (Cyan Blue)
   Secondary: #0d8cb5 (Deeper Cyan)
   Dark: #1a1a2e (Dark Navy)
   Accent: #00d4ff (Bright Cyan)
   Light BG: #f0f8ff
   ===================================================== */

/* Google Fonts Override */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700;900&display=swap');

/* ---- CSS Variables / Root ---- */
:root {
    --aerohub-primary: #19b3e3;
    --aerohub-primary-dark: #0d8cb5;
    --aerohub-primary-darker: #0a6e8f;
    --aerohub-accent: #00d4ff;
    --aerohub-white: #ffffff;
    --aerohub-dark: #1a1a2e;
    --aerohub-shadow-primary: rgba(25, 179, 227, 0.3);
    --aerohub-radius: 12px;
    --aerohub-radius-lg: 20px;

    /* Theme Variables - Default (DARK) */
    --theme-bg: #1a1a2e;
    --theme-navy: #16213e;
    --theme-text: #ffffff;
    --theme-text-gray: rgba(255, 255, 255, 0.7);
    --theme-header-bg: #1a1a2e;
    --theme-card-bg: #16213e;
    --theme-border: rgba(255, 255, 255, 0.1);
    --theme-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --theme-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --theme-nav-text: #ffffff;
    --theme-footer-bg: linear-gradient(180deg, #1a1a2e 0%, #111a30 100%);
}

body.light-theme {
    --theme-bg: #f0f8ff;
    --theme-navy: #e6f4fb;
    --theme-text: #1a1a2e;
    --theme-text-gray: #444444;
    --theme-header-bg: #ffffff;
    --theme-card-bg: #ffffff;
    --theme-border: rgba(0, 0, 0, 0.08);
    --theme-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --theme-gradient: linear-gradient(160deg, #f0f8ff 0%, #d4ecf7 100%);
    --theme-nav-text: #1a1a2e;
    --theme-footer-bg: linear-gradient(180deg, #d4ecf7 0%, #f9fcff 100%);
}

/* ---- Global Overrides ---- */
body {
    font-family: 'Roboto', 'Open Sans', sans-serif !important;
    background-color: var(--theme-bg) !important;
    color: var(--theme-text) !important;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans', 'Roboto', sans-serif !important;
}

/* ---- Preloader ---- */
.preloader .loader__path {
    stroke: var(--aerohub-primary) !important;
}

.preloader .loader__plane {
    fill: #fff !important;
}

/* ---- Scroll to Top ---- */
.scrollToTop {
    background: var(--aerohub-primary) !important;
    border-color: var(--aerohub-primary) !important;
    color: white !important;
}

.scrollToTop:hover {
    background: var(--aerohub-primary-dark) !important;
}

/* =====================================================
   HEADER / NAVIGATION
   ===================================================== */
.header-section {
    background: var(--theme-header-bg) !important;
    box-shadow: var(--theme-shadow) !important;
    position: relative;
    z-index: 999;
}

.header-section.header-section-one {
    background: var(--theme-header-bg) !important;
}

.header-bottom-area {
    background: transparent !important;
}

/* Logo Text Replacement */
.site-logo img {
    max-height: 50px !important;
    filter: none !important;
}

.navbar-nav .main-menu>li>a,
.navbar-nav.main-menu>li>a {
    color: var(--theme-nav-text) !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    letter-spacing: 0.5px !important;
    /* text-transform: uppercase !important; */
    transition: all 0.3s ease !important;
}

.navbar-nav .main-menu>li>a:hover,
.navbar-nav.main-menu>li>a:hover,
.navbar-nav .main-menu>li>a.active,
.navbar-nav.main-menu>li>a.active {
    color: var(--aerohub-primary) !important;
}

/* Sub-menu */
.sub-menu {
    background: var(--aerohub-white) !important;
    border-top: 3px solid var(--aerohub-primary) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-radius: 0 0 var(--aerohub-radius) var(--aerohub-radius) !important;
}

.sub-menu li a {
    color: var(--aerohub-charcoal) !important;
    font-size: 14px !important;
}

.sub-menu li a:hover {
    color: var(--aerohub-primary) !important;
    background: var(--aerohub-light-bg) !important;
}

/* Buttons */
.btn--base,
.header-action .btn--base {
    background: var(--aerohub-primary) !important;
    border-color: var(--aerohub-primary) !important;
    color: var(--aerohub-white) !important;
    border-radius: 30px !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    padding: 8px 15px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 15px rgba(25, 179, 227, 0.3) !important;
    position: relative;
    overflow: hidden;
}

.btn--base:hover,
.header-action .btn--base:hover {
    background: var(--aerohub-primary-dark) !important;
    border-color: var(--aerohub-primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(25, 179, 227, 0.4) !important;
}

.btn--base.active {
    background: transparent !important;
    border: 2px solid var(--aerohub-primary) !important;
    color: var(--aerohub-primary) !important;
}

.btn--base.active:hover {
    background: var(--aerohub-primary) !important;
    color: var(--aerohub-white) !important;
}

/* Theme Switcher Toggle */
.theme-toggle-btn {
    background: transparent;
    border: 2px solid var(--aerohub-primary);
    color: var(--aerohub-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 15px;
    padding: 0;
}

.theme-toggle-btn.theme-toggle-mobile {
    width: auto !important;
    height: auto !important;
    padding: 10px 25px !important;
    border-radius: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px;
    background: rgba(25, 179, 227, 0.1) !important;
    border-width: 1px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--theme-text) !important;
    margin: 15px 0 10px 0;
}

.theme-toggle-btn.theme-toggle-mobile:hover {
    background: var(--aerohub-primary) !important;
    color: white !important;
}

.theme-toggle-btn.theme-toggle-mobile span {
    color: inherit !important;
}

.theme-toggle-btn:hover {
    background: var(--aerohub-primary);
    color: white;
}

.banner-section {
    background: var(--theme-gradient) !important;
    padding-top: 90px !important;
    padding-bottom: 80px !important;
    position: relative;
    min-height: 90vh !important;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 179, 227, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.banner-content .title {
    color: var(--theme-text) !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 800 !important;
    font-size: 48px !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
}

.banner-content p {
    color: var(--theme-text-gray) !important;
    font-size: 17px !important;
    line-height: 1.8 !important;
    font-family: 'Roboto', sans-serif !important;
}

.banner-content p {
    color: var(--aerohub-gray) !important;
    font-size: 17px !important;
    line-height: 1.8 !important;
    font-family: 'Roboto', sans-serif !important;
}

.banner-social li a {
    color: var(--aerohub-charcoal) !important;
    border-color: rgba(25, 179, 227, 0.2) !important;
}

.banner-social li a:hover,
.banner-social li a.active {
    background: var(--aerohub-primary) !important;
    color: var(--aerohub-white) !important;
    border-color: var(--aerohub-primary) !important;
}

/* Call Widget */
.call-widget-btn {
    background: var(--aerohub-primary) !important;
    border-color: var(--aerohub-primary) !important;
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header .sub-title {
    color: var(--aerohub-primary) !important;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 14px !important;
}

.section-header .sub-title span {
    color: var(--aerohub-primary) !important;
}

.section-header .section-title {
    color: var(--aerohub-dark) !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 700 !important;
}

.section-header.white .sub-title,
.section-header.white .sub-title span {
    color: var(--aerohub-accent) !important;
}

.section-header.white .section-title {
    color: var(--aerohub-white) !important;
}

/* =====================================================
   OVERVIEW / SERVICES SECTION (legacy compat)
   ===================================================== */
.overview-section {
    background: var(--theme-bg) !important;
}

.custom-btn {
    color: var(--aerohub-primary) !important;
    border-color: var(--aerohub-primary) !important;
}

.custom-btn:hover {
    background: var(--aerohub-primary) !important;
    color: white !important;
}

/* =====================================================
   PRODUCT SHOWCASE SECTION
   ===================================================== */
.product-showcase-section {
    background: var(--theme-bg) !important;
    overflow: hidden;
}

.product-showcase-thumb {
    position: relative;
    border-radius: var(--aerohub-radius-lg) !important;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-showcase-thumb:hover {
    transform: translateY(-8px) !important;
}

.product-showcase-thumb img.bg-transparent-img {
    width: auto !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    background: transparent !important;
}

.product-showcase-content .section-title {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: var(--theme-text) !important;
    line-height: 1.25 !important;
    margin-bottom: 24px !important;
}

.text-primary-aerohub {
    color: var(--aerohub-primary) !important;
}

.product-feature-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
}

.product-feature-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 11px 0 !important;
    border-bottom: 1px solid var(--theme-border) !important;
    color: var(--theme-text-gray) !important;
    font-size: 15px !important;
    font-family: 'Roboto', sans-serif !important;
    line-height: 1.6 !important;
    transition: color 0.25s ease, padding-left 0.25s ease !important;
}

.product-feature-list li:last-child {
    border-bottom: none !important;
}

.product-feature-list li:hover {
    color: var(--theme-text) !important;
    padding-left: 5px !important;
}

.product-feature-list li i {
    color: var(--aerohub-primary) !important;
    font-size: 17px !important;
    flex-shrink: 0 !important;
    margin-top: 3px !important;
}

/* Light theme overrides */
.light-theme .product-showcase-section {
    background: #f4f7fb !important;
}

body.light-theme .product-showcase-thumb {
    box-shadow: none !important;
    background: transparent !important;
}

/* Responsive */
@media (max-width: 991px) {
    .product-showcase-thumb img {
        height: 280px !important;
    }

    .product-showcase-content .section-title {
        font-size: 26px !important;
    }

    .mt-60 {
        margin-top: 30px !important;
    }

    .pt-60 {
        padding-top: 30px !important;
    }
}

@media (max-width: 767px) {
    .product-showcase-thumb img {
        height: 220px !important;
    }

    .product-showcase-content .section-title {
        font-size: 22px !important;
    }
}

/* =====================================================
   ABOUT SECTION (New Redesign)
   ===================================================== */
.about-section-new {
    background: var(--theme-bg) !important;
    position: relative;
    overflow: hidden;
}

/* Floating decorative orbs */
.about-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: aboutFloat 6s ease-in-out infinite;
}

.about-deco-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(25, 179, 227, 0.12) 0%, transparent 70%);
    top: -80px;
    right: -80px;
    animation-delay: 0s;
}

.about-deco-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(25, 179, 227, 0.08) 0%, transparent 70%);
    bottom: 60px;
    left: -60px;
    animation-delay: 2s;
}

.about-deco-3 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes aboutFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }
}

.about-deco-3 {
    animation: aboutFloat3 8s ease-in-out infinite;
}

@keyframes aboutFloat3 {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.12);
    }
}

.about-section-new .container {
    position: relative;
    z-index: 1;
}

/* Badge / chip */
.about-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(25, 179, 227, 0.12);
    border: 1px solid rgba(25, 179, 227, 0.3);
    color: var(--aerohub-primary) !important;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 6px 18px;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Section heading */
.about-main-title {
    font-size: 38px !important;
    font-weight: 800 !important;
    color: var(--theme-text) !important;
    line-height: 1.25 !important;
    margin-bottom: 18px !important;
    font-family: 'Open Sans', sans-serif !important;
}

.about-lead {
    font-size: 16px !important;
    color: var(--theme-text-gray) !important;
    line-height: 1.8 !important;
    max-width: 680px;
    margin: 0 auto;
}

.mb-50 {
    margin-bottom: 50px !important;
}

/* Product cards */
.about-product-card {
    background: var(--theme-card-bg) !important;
    border: 1px solid var(--theme-border) !important;
    border-radius: var(--aerohub-radius-lg) !important;
    overflow: hidden;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
    position: relative;
}

.about-product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 24px 60px rgba(25, 179, 227, 0.18) !important;
    border-color: var(--aerohub-primary) !important;
}

.about-product-img-wrap {
    position: relative;
    overflow: hidden;
    max-height: 280px;
}

.about-product-img-wrap img {
    width: 100% !important;
    height: 260px !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
    display: block !important;
}

.about-product-card:hover .about-product-img-wrap img {
    transform: scale(1.05) !important;
}

/* Floating label on image */
.about-product-label {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: var(--aerohub-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(25, 179, 227, 0.45);
}

.about-product-label.label-pro {
    background: linear-gradient(135deg, #0d8cb5, var(--aerohub-primary)) !important;
}

/* Product info inside card */
.about-product-info {
    padding: 24px 28px 28px !important;
}

.about-product-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--theme-text) !important;
    margin-bottom: 10px !important;
    font-family: 'Open Sans', sans-serif !important;
}

.about-product-title span {
    color: var(--aerohub-primary) !important;
}

.about-product-info>p {
    color: var(--theme-text-gray) !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin-bottom: 16px !important;
}

/* Mini checklist inside card */
.about-mini-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.about-mini-list li {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 7px 0 !important;
    border-bottom: 1px solid var(--theme-border) !important;
    color: var(--theme-text-gray) !important;
    font-size: 14px !important;
    transition: color 0.25s ease, padding-left 0.25s ease !important;
}

.about-mini-list li:last-child {
    border-bottom: none !important;
}

.about-mini-list li:hover {
    color: var(--theme-text) !important;
    padding-left: 4px !important;
}

.about-mini-list li i {
    color: var(--aerohub-primary) !important;
    font-size: 13px !important;
    flex-shrink: 0 !important;
}

/* CTA bar */
.about-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--theme-card-bg) !important;
    border: 1px solid var(--theme-border) !important;
    border-radius: var(--aerohub-radius-lg) !important;
    padding: 28px 36px !important;
    position: relative;
    overflow: hidden;
}

.about-cta-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--aerohub-primary), #00d4ff);
    border-radius: 4px 0 0 4px;
}

.about-cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(25, 179, 227, 0.12);
    border: 1.5px solid rgba(25, 179, 227, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: iconPulse 2.5s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(25, 179, 227, 0.3);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(25, 179, 227, 0);
    }
}

.about-cta-icon i {
    color: var(--aerohub-primary) !important;
    font-size: 20px !important;
}

.about-cta-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.about-cta-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--theme-text-gray) !important;
}

.about-cta-email {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--theme-text) !important;
    text-decoration: none !important;
    transition: color 0.25s ease !important;
    font-family: 'Open Sans', sans-serif !important;
}

.about-cta-email:hover {
    color: var(--aerohub-primary) !important;
    text-decoration: underline !important;
}

/* Responsive */
@media (max-width: 991px) {
    .about-main-title {
        font-size: 28px !important;
    }

    .about-cta-bar {
        padding: 22px 20px !important;
    }

    .about-cta-email {
        font-size: 16px !important;
    }
}

@media (max-width: 767px) {
    .about-main-title {
        font-size: 24px !important;
    }

    .about-cta-bar {
        flex-direction: column;
        text-align: center;
    }

    .about-cta-left {
        flex-direction: column;
    }

    .about-cta-bar::before {
        display: none;
    }

    .about-product-img-wrap img {
        height: 200px !important;
    }
}

/* =====================================================
   FEATURE SECTION
   ===================================================== */
.feature-section {
    background: var(--theme-navy) !important;
}

.feature-item {
    background: var(--theme-card-bg) !important;
    border: 1px solid var(--theme-border) !important;
    padding: 40px 30px !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
}

.feature-item:hover,
.feature-item.active {
    background: var(--theme-card-bg) !important;
    border-color: var(--aerohub-primary) !important;
    transform: translateY(-5px) !important;
    box-shadow: var(--theme-shadow) !important;
}

.feature-content .title {
    color: var(--theme-text) !important;
    margin-bottom: 15px !important;
}

.feature-content p {
    color: var(--theme-text-gray) !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

/* =====================================================
   STATISTICS SECTION
   ===================================================== */
.statistics-section {
    background-color: var(--aerohub-primary) !important;
    position: relative;
}

.statistics-section::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(135deg, var(--aerohub-primary) 0%, var(--aerohub-primary-dark) 50%, var(--aerohub-primary-darker) 100%) !important;
    z-index: 0 !important;
}

.statistics-section .container {
    position: relative;
    z-index: 1;
}

.bg-overlay-base::before,
.bg-overlay-black::before {
    background: var(--theme-bg) !important;
    opacity: 0.8 !important;
}

.about-section[data-background] {
    background-image: none !important;
    /* Remove background image that might have hardcoded dark overlay */
    background: var(--theme-bg) !important;
}

.statistics-item {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: var(--aerohub-radius) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s ease !important;
}

.statistics-item:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    transform: translateY(-5px) !important;
}

.statistics-content .odo-title,
.statistics-content .odometer {
    color: var(--aerohub-white) !important;
    font-family: 'Open Sans', sans-serif !important;
}

.statistics-content p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* =====================================================
   CHARTER / DEALS SECTION
   ===================================================== */
.charter-section {
    background: var(--theme-bg) !important;
}

.charter-item {
    background: var(--theme-card-bg) !important;
    border-radius: var(--aerohub-radius-lg) !important;
    overflow: hidden;
    box-shadow: var(--theme-shadow) !important;
    border: 1px solid var(--theme-border) !important;
    height: 100% !important;
}

.charter-content .title a {
    color: var(--theme-text) !important;
}

.charter-content .sub-title {
    color: var(--aerohub-primary) !important;
    display: block !important;
    margin-bottom: 10px !important;
    font-weight: 600 !important;
}

.charter-meta span {
    color: var(--theme-text-gray) !important;
}

.charter-meta .price {
    color: var(--aerohub-primary) !important;
    font-weight: 700 !important;
}

.charter-btn a {
    color: var(--aerohub-primary) !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
}

.charter-btn a:hover {
    color: var(--aerohub-primary-dark) !important;
    gap: 12px !important;
}

.charter-btn a i {
    font-size: 16px !important;
    display: inline-block !important;
}

.charter-content .title a:hover {
    color: var(--aerohub-primary) !important;
}

.charter-content .sub-title {
    color: var(--aerohub-primary) !important;
}

.charter-meta .price {
    color: var(--aerohub-primary) !important;
    font-weight: 700 !important;
}

.charter-btn a {
    color: var(--aerohub-primary) !important;
    border-color: var(--aerohub-primary) !important;
}

.charter-btn a:hover {
    background: var(--aerohub-primary) !important;
    color: var(--aerohub-white) !important;
}

.slider-prev,
.slider-next {
    background: var(--aerohub-primary) !important;
    border-color: var(--aerohub-primary) !important;
    color: white !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--aerohub-primary-dark) !important;
    transform: scale(1.1) !important;
}

/* =====================================================
   BOOK FORM SECTION
   ===================================================== */
.book-form-section {
    background: var(--aerohub-light-bg) !important;
}

.book-form-area {
    border-radius: var(--aerohub-radius-lg) !important;
    overflow: hidden;
    position: relative;
}

.book-form-area::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: var(--aerohub-gradient-dark) !important;
    opacity: 0.92 !important;
    z-index: 0 !important;
}

.book-form-area .row {
    position: relative;
    z-index: 1;
}

.book-form label {
    color: var(--aerohub-white) !important;
}

.book-form .form--control,
.book-select .form--control {
    border-color: rgba(25, 179, 227, 0.3) !important;
    color: var(--aerohub-white) !important;
}

.book-form-icon i {
    color: var(--aerohub-accent) !important;
}

/* =====================================================
   PACKAGE SECTION
   ===================================================== */
.package-section {
    background: var(--theme-navy) !important;
}

.package-item {
    background: var(--theme-card-bg) !important;
    border: 1px solid var(--theme-border) !important;
    border-radius: var(--aerohub-radius-lg) !important;
    overflow: hidden;
}

.package-prize span {
    background: var(--aerohub-primary) !important;
    color: white !important;
    font-weight: 700 !important;
}

.package-content-header .title a {
    color: var(--theme-text) !important;
}

.package-list li {
    color: var(--theme-text-gray) !important;
    font-size: 14px !important;
}

.custom-btn {
    color: var(--aerohub-primary) !important;
    border: 1px solid var(--aerohub-primary) !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
}

.custom-btn:hover {
    background: var(--aerohub-primary) !important;
    color: white !important;
}

/* =====================================================
   TESTIMONIAL / CLIENT SECTION
   ===================================================== */
.client-section {
    background: var(--theme-bg) !important;
}

.client-item {
    background: var(--theme-card-bg) !important;
    border: 1px solid var(--theme-border) !important;
    padding: 40px !important;
    border-radius: var(--aerohub-radius-lg) !important;
    box-shadow: var(--theme-shadow) !important;
    position: relative !important;
    margin-top: 50px !important;
}

.client-header {
    margin-bottom: 25px !important;
}

.client-quote img {
    max-width: 50px !important;
    filter: sepia(1) saturate(5) hue-rotate(160deg) !important;
    /* Make quote icon cyan-ish */
    opacity: 0.6 !important;
}

.client-content p {
    color: var(--theme-text) !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
    font-style: italic !important;
    margin-bottom: 25px !important;
}

.client-footer-left .title,
.client-footer-left .title a {
    color: var(--theme-text) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
}

.client-footer-left .sub-title {
    color: var(--aerohub-primary) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.client-footer-right .ratings i {
    color: #ffc107 !important;
}

.client-footer-right .ratings i.active {
    color: var(--theme-text-gray) !important;
    opacity: 0.3 !important;
}

/* =====================================================
   BRAND SECTION
   ===================================================== */
.brand-section {
    background: var(--aerohub-light-bg) !important;
    border-top: 1px solid rgba(25, 179, 227, 0.1) !important;
    border-bottom: 1px solid rgba(25, 179, 227, 0.1) !important;
}

.brand-item img {
    filter: grayscale(100%) opacity(0.5) !important;
    transition: all 0.3s ease !important;
}

.brand-item img:hover {
    filter: grayscale(0%) opacity(1) !important;
}

/* =====================================================
   BLOG SECTION
   ===================================================== */
.blog-section {
    background: var(--theme-bg) !important;
}

.blog-item {
    background: var(--theme-card-bg) !important;
    border: 1px solid var(--theme-border) !important;
    border-radius: var(--aerohub-radius-lg) !important;
    overflow: hidden;
    height: 100% !important;
}

.blog-content {
    padding: 25px !important;
}

.blog-content .title a {
    color: var(--theme-text) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
}

.blog-post-meta span {
    color: var(--aerohub-primary) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-right: 15px !important;
}

.blog-content p {
    color: var(--theme-text-gray) !important;
    font-size: 15px !important;
    margin-top: 15px !important;
}

.blog-btn a {
    color: var(--aerohub-primary) !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    margin-top: 20px !important;
}

.brand-section {
    background: var(--theme-navy) !important;
}

.blog-content .title a:hover {
    color: var(--aerohub-primary) !important;
}

.blog-post-meta .date,
.blog-post-meta .comment {
    color: var(--aerohub-primary) !important;
}

.blog-btn a {
    color: var(--aerohub-primary) !important;
    font-weight: 600 !important;
}

.blog-btn a:hover {
    color: var(--aerohub-primary-dark) !important;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer-section {
    background: var(--aerohub-dark) !important;
    position: relative;
}

.footer-section.section--bg {
    background: var(--aerohub-dark) !important;
}

.section-header h2,
.section-title {
    color: var(--theme-text) !important;
}

.section-header .sub-title,
.section-header .sub-title span {
    color: var(--aerohub-primary) !important;
}

.section-header.white h2,
.section-header.white .sub-title {
    color: var(--theme-text) !important;
}

.footer-logo .site-logo img {
    filter: brightness(100) !important;
    max-height: 45px !important;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.65) !important;
}

.footer-widget .widget-title,
.footer-widget .title {
    color: white !important;
    font-family: 'Open Sans', sans-serif !important;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget .widget-title::after,
.footer-widget .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--aerohub-primary);
    border-radius: 2px;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: all 0.3s ease !important;
}

.footer-list li a:hover {
    color: var(--aerohub-accent) !important;
    padding-left: 5px !important;
}

/* Newsletter */
.subscribe-form .btn--base {
    background: var(--aerohub-primary) !important;
    border-radius: 0 30px 30px 0 !important;
}

.subscribe-form .form--control {
    border-radius: 30px 0 0 30px !important;
    border-color: rgba(25, 179, 227, 0.3) !important;
    background: rgba(255, 255, 255, 0.07) !important;
    color: var(--aerohub-white) !important;
}

/* Copyright */
.copyright-area {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.copyright-area p {
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-social li a {
    color: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s ease !important;
}

.footer-social li a:hover,
.footer-social li a.active {
    background: var(--aerohub-primary) !important;
    color: var(--aerohub-white) !important;
    border-color: var(--aerohub-primary) !important;
}

/* =====================================================
   NICE-SELECT OVERRIDE
   ===================================================== */
.nice-select {
    border-color: rgba(25, 179, 227, 0.3) !important;
    border-radius: 8px !important;
}

.nice-select .option.selected,
.nice-select .option:hover {
    background: rgba(25, 179, 227, 0.1) !important;
    color: var(--aerohub-primary) !important;
}

/* =====================================================
   MOBILE / BURGER MENU
   ===================================================== */
.navbar-toggler {
    /* border-color: var(--aerohub-primary) !important; */
}

.navbar-toggler .fas {
    color: var(--aerohub-primary) !important;
}

/* =====================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ===================================================== */
@keyframes aerohubPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 179, 227, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(25, 179, 227, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(25, 179, 227, 0);
    }
}

@keyframes aerohubFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.banner-thumb img {
    animation: aerohubFloat 6s ease-in-out infinite;
}

.video-icon {
    animation: aerohubPulse 2s infinite;
}

/* Glossy button effect */
.btn--base::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
    transition: left 0.5s ease !important;
}

.btn--base:hover::after {
    left: 100% !important;
}

/* =====================================================
   RESPONSIVE OVERRIDES
   ===================================================== */
@media (max-width: 1399px) {
    .banner-content .title {
        font-size: 42px !important;
    }
}

@media (max-width: 1199px) {
    .banner-content .title {
        font-size: 36px !important;
    }

    .banner-section {
        padding-top: 120px !important;
        min-height: auto !important;
    }
}

@media (max-width: 991px) {
    .banner-content .title {
        font-size: 32px !important;
    }

    .banner-section {
        padding-top: 20px !important;
        padding-bottom: 60px !important;
        text-align: center;
    }

    .banner-content {
        text-align: center !important;
    }

    .banner-btn {
        justify-content: center !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .banner-thumb {
        text-align: center !important;
        margin-top: 30px !important;
    }

    .banner-thumb img {
        max-width: 80% !important;
    }

    .banner-social-area {
        display: none !important;
    }

    /* Navbar collapse styling */
    .navbar-collapse {
        background: var(--theme-header-bg) !important;
        padding: 20px !important;
        border-radius: var(--aerohub-radius) !important;
        box-shadow: var(--theme-shadow) !important;
        margin-top: 10px !important;
    }

    .navbar-nav.main-menu>li {
        border-bottom: 1px solid var(--theme-border) !important;
    }

    .header-right {
        /* margin-top: 15px !important;
        padding-top: 15px !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important; */
        display: none;
    }

    .theme-toggle-btn.theme-toggle-mobile {
        margin: 10px 0 15px 0;
    }

    .navbar-collapse .main-menu li:last-child {
        border-bottom: 0 !important;
    }

    .header-action-area {
        justify-content: center !important;
    }

    /* Section spacing */
    .ptb-120 {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .pt-120 {
        padding-top: 80px !important;
    }

    /* Overview section */
    .overview-tab .nav-tab-area {
        margin-bottom: 30px;
    }

    /* Feature grid */
    .feature-item {
        margin-bottom: 20px;
    }

    /* Statistics */
    .statistics-item {
        margin-bottom: 15px;
    }

    /* Footer */
    .footer-widget {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .banner-content .title {
        font-size: 28px !important;
    }

    .banner-content p {
        font-size: 15px !important;
    }

    .section-header .section-title {
        font-size: 26px !important;
    }

    .btn--base {
        padding: 10px 22px !important;
        font-size: 14px !important;
    }

    .charter-item {
        margin-bottom: 20px;
    }

    .client-area .row {
        flex-direction: column-reverse;
    }

    .blog-item {
        margin-bottom: 20px;
    }

    /* Footer columns stack */
    .footer-top-area .col-xl-4,
    .footer-top-area .col-xl-3,
    .footer-top-area .col-xl-2,
    .footer-bottom-area .col-xl-3,
    .footer-bottom-area .col-xl-4,
    .footer-bottom-area .col-xl-2 {
        margin-bottom: 25px;
    }

    .copyright-area {
        text-align: center;
    }

    .footer-social {
        justify-content: center !important;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .banner-content .title {
        font-size: 24px !important;
    }

    .banner-content p {
        font-size: 14px !important;
    }

    .section-header .section-title {
        font-size: 22px !important;
    }

    .banner-btn {
        flex-direction: column !important;
        align-items: center !important;
    }

    .banner-btn .btn--base {
        width: 100% !important;
        text-align: center !important;
    }

    .book-form-area {
        border-radius: var(--aerohub-radius) !important;
        padding: 30px 15px !important;
    }

    .call-widget-wrapper {
        bottom: 15px !important;
        right: 15px !important;
    }
}

/* =====================================================
   WHY CHOOSE AEROHUB SECTION
   ===================================================== */
.why-aerohub-section {
    background: var(--theme-bg) !important;
    position: relative;
    overflow: hidden;
}

.why-aerohub-bg-line {
    position: absolute;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aerohub-primary), transparent);
    opacity: 0.1;
    z-index: 0;
}

.why-line-1 {
    top: 20%;
    left: -50%;
    transform: rotate(-15deg);
}

.why-line-2 {
    bottom: 20%;
    right: -50%;
    transform: rotate(-15deg);
}

.why-section-title {
    color: var(--theme-text) !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    font-family: 'Open Sans', sans-serif !important;
}

.why-section-lead {
    color: var(--theme-text-gray) !important;
    font-size: 18px !important;
    line-height: 1.8 !important;
    max-width: 800px;
    margin: 0 auto;
}

.why-card {
    background: var(--theme-card-bg) !important;
    border: 1px solid var(--theme-border) !important;
    border-top: 3px solid var(--aerohub-primary) !important;
    border-radius: 12px !important;
    padding: 30px 25px !important;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    z-index: 1;
}

.why-card:hover {
    transform: translateY(-8px) !important;
    border-color: var(--aerohub-primary) !important;
    box-shadow: 0 15px 35px rgba(25, 179, 227, 0.15) !important;
}

.why-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.why-card-icon {
    width: 54px;
    height: 54px;
    background: rgba(25, 179, 227, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.why-card-icon i {
    font-size: 24px !important;
    color: var(--aerohub-primary) !important;
}

.why-card:hover .why-card-icon {
    background: var(--aerohub-primary);
    transform: scale(1.1);
}

.why-card:hover .why-card-icon i {
    color: var(--aerohub-white) !important;
}

.why-card-title {
    color: var(--theme-text) !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    line-height: 1.3 !important;
    transition: all 0.3s ease;
}

.why-card:hover .why-card-title {
    color: var(--aerohub-primary) !important;
}

.why-card p {
    color: var(--theme-text-gray) !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
}

/* Response */
@media (max-width: 991px) {
    .why-section-title {
        font-size: 32px !important;
    }
}

@media (max-width: 767px) {
    .why-section-title {
        font-size: 28px !important;
    }

    .why-card {
        padding: 30px 20px !important;
    }
}

/* =====================================================
   SECTION DIVIDER
   ===================================================== */
.section-partition {
    position: relative;
    height: 1px;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 5;
    background: var(--theme-bg);
}

.aerohub-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--aerohub-primary) 50%, transparent 100%);
    opacity: 0.3;
}

.aerohub-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: var(--aerohub-primary);
    box-shadow: 0 0 10px var(--aerohub-primary);
    border-radius: 2px;
}

/* =====================================================
   SELECTION COLOR
   ===================================================== */
::selection {
    background: var(--aerohub-primary);
    color: var(--aerohub-white);
}

::-moz-selection {
    background: var(--aerohub-primary);
    color: var(--aerohub-white);
}

/* =====================================================
   SCROLLBAR STYLING
   ===================================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--aerohub-light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--aerohub-primary);
    border-radius: 4px;
}

/* =====================================================
   HORIZON (INDUSTRY) SECTION REDESIGN
   ===================================================== */
.industry-section {
    padding: 80px 0 !important;
    background: var(--theme-bg);
    overflow: hidden;
}

.horizon-grid {
    display: flex;
    gap: 20px;
    padding: 0 15px;
}

.horizon-card {
    flex: 1;
    height: 600px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.horizon-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.horizon-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.horizon-card:hover {
    flex: 1.5;
}

.horizon-card:hover .horizon-img {
    transform: scale(1.1);
}

.horizon-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    transition: transform 0.5s ease;
}

.horizon-card:hover .horizon-content {
    transform: translateY(-20px);
}

.horizon-icon {
    width: 60px;
    height: 60px;
    background: var(--aerohub-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(25, 179, 227, 0.3);
}

.horizon-card h3 {
    color: white;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.horizon-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.horizon-card:hover .horizon-desc {
    max-height: 150px;
    opacity: 1;
    margin-top: 15px;
}

.horizon-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: white;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
}

/* Attractive Headline Styling */
.horizon-title-area {
    margin-bottom: 60px;
}

.horizon-title-area .sub-title {
    color: var(--aerohub-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    display: block;
}

.horizon-main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(90deg, var(--theme-text) 0%, var(--aerohub-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 991px) {
    .horizon-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        height: auto !important;
        padding: 0 15px !important;
    }

    .horizon-card {
        flex: 0 0 auto !important;
        width: 100% !important;
        height: 400px !important;
        margin-bottom: 0 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

::-webkit-scrollbar-thumb:hover {
    background: var(--aerohub-primary-dark);
}

/* =====================================================
   PREMIUM FOOTER & OFFICE LOCATIONS
   ===================================================== */
.footer-section {
    position: relative;
    z-index: 1;
    background: var(--theme-footer-bg) !important;
    transition: all 0.3s ease;
}

/* Force Text Visibility */
.footer-section .title,
.footer-section .widget-title,
.footer-section p,
.footer-section span,
.footer-section li,
.footer-section i:not(.theme-icon),
.copyright-area p {
    color: var(--theme-text) !important;
}

.footer-section a {
    color: var(--theme-text) !important;
}

.footer-section a:hover {
    color: var(--aerohub-primary) !important;
}

/* Divider Visibility */
.border-top-divider,
.copyright-area {
    border-top: 1px solid var(--theme-border) !important;
}

/* Newsletter Form Theme Fix */
.subscribe-form {
    background: var(--theme-card-bg) !important;
    border: 1px solid var(--theme-border) !important;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 5px;
}

.subscribe-form .form--control {
    background: transparent !important;
    border: none !important;
    color: var(--theme-text) !important;
    padding-left: 10px !important;
}

.subscribe-form .form--control::placeholder {
    color: var(--theme-text-gray) !important;
    opacity: 0.6;
}

.subscribe-form .subscribe-icon {
    color: var(--aerohub-primary) !important;
    padding-left: 15px;
    font-size: 20px;
}

.footer-section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--theme-text) !important;
    position: relative;
    padding-bottom: 20px;
}

.footer-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--aerohub-primary);
    border-radius: 2px;
}

/* Office Tabs Nav Style */
.office-nav-tabs {
    border-bottom: none;
    gap: 15px;
}

.office-nav-tabs .nav-link {
    border: none !important;
    border-radius: 30px;
    padding: 10px 25px;
    color: var(--theme-text) !important;
    background: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(25, 179, 227, 0.2) !important;
}

.office-nav-tabs .nav-link:hover {
    border-color: var(--aerohub-primary) !important;
}

.office-nav-tabs .nav-link.active {
    background: var(--aerohub-primary);
    color: var(--aerohub-white);
    border-color: var(--aerohub-primary) !important;
    box-shadow: 0 5px 15px rgba(25, 179, 227, 0.3);
}

.office-nav-tabs .nav-link.active:hover {
    color: var(--aerohub-white) !important;
}

/* Office Tab Content Style */
.office-tab-wrapper {
    display: flex;
    background: var(--theme-card-bg);
    border: 1px solid rgba(25, 179, 227, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.office-tab-wrapper:hover {
    box-shadow: 0 15px 40px rgba(25, 179, 227, 0.15);
    border-color: rgba(25, 179, 227, 0.3);
}

.office-tab-map {
    width: 60%;
    /* filter: grayscale(1); */
    transition: filter 0.5s ease;
}

/* .office-tab-wrapper:hover .office-tab-map {
    filter: grayscale(0);
} */

.office-tab-info {
    width: 40%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.office-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--aerohub-primary);
    margin-bottom: 20px;
}

.office-address {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--theme-text);
    opacity: 0.85;
}

.office-contact {
    font-size: 14px;
    color: var(--theme-text);
    opacity: 0.75;
    margin-bottom: 8px;
}

.office-contact i {
    color: var(--aerohub-primary);
    margin-right: 10px;
    width: 15px;
    text-align: center;
}

/* Mini Footer Widgets Area */
.footer-bottom-area {
    background: var(--theme-card-bg) !important;
    border: 1px solid var(--theme-border) !important;
    border-radius: 20px;
    padding: 60px;
    position: relative;
    z-index: 9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;

}

.footer-bottom-area .title {
    color: var(--theme-text) !important;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
}

.footer-bottom-area .footer-list li a,
.footer-bottom-area .footer-list li span {
    color: var(--theme-text) !important;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-bottom-area .footer-list li a:hover {
    color: var(--aerohub-primary) !important;
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom-area .theme-icon {
    color: var(--aerohub-primary) !important;
}

@media only screen and (max-width: 991px) {
    .footer-bottom-area {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .office-tab-wrapper {
        flex-direction: column;
    }

    .office-tab-map,
    .office-tab-info {
        width: 100%;
    }
}


.theme-icon {
    color: var(--aerohub-primary);
}

/* Footer Top Contacts */
.footer-contact-info span {
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-text);
}

.partner-item {
    background: var(--theme-card-bg);
    border: 1px solid var(--theme-border);
    border-radius: 12px;
    padding: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: scale(1.05);
    border-color: var(--aerohub-primary);
    box-shadow: 0 5px 20px rgba(25, 179, 227, 0.15);
}

.partner-logo {
    max-height: 60px;
    width: auto;
    filter: brightness(1);
    transition: all 0.3s ease;
}

body.light-theme .garuda-logo {
    filter: invert(1) brightness(0.2);
}

/* Responsive Footer */
@media (max-width: 767px) {
    .footer-contact-info {
        flex-direction: column;
        gap: 15px !important;
    }
}

/* .custom-container {
    margin-left: 5%;
    max-width: 1385px;
} */

/* =====================================================
   RESPONSIVE TYPOGRAPHY (MATCHING HOME PAGE)
   Targets all pages to ensure mobile consistency
   ===================================================== */
@media (max-width: 991px) {
    /* Hero Headings */
    .about-hero-title, 
    .product-hero-title, 
    .solutions-hero-title, 
    .contact-hero-title {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    /* Section Headings */
    .section-title-alt,
    .about-main-title,
    .spec-main-title,
    .form-heading {
        font-size: 30px !important;
    }
}

@media (max-width: 767px) {
    /* Hero Headings */
    .about-hero-title, 
    .product-hero-title, 
    .solutions-hero-title, 
    .contact-hero-title,
    .section-title-alt,
    .about-main-title,
    .spec-main-title,
    .split-title,
    .specialist-title,
    .form-heading {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    /* Hero & Section Descriptions */
    .about-hero-desc, 
    .product-hero-desc, 
    .solutions-hero-desc, 
    .contact-hero-desc,
    .why-section-lead,
    .about-lead,
    .split-desc,
    .feature-section-subtitle,
    .form-subheading {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    /* Secondary Headings */
    .vision-title,
    .showcase-title,
    .innovation-card h3 {
        font-size: 22px !important;
    }

    /* Buttons */
    .contact-btn,
    .custom-btn {
        font-size: 14px !important;
        padding: 10px 20px !important;
    }
}

@media (max-width: 575px) {
    /* Hero Headings */
    .about-hero-title, 
    .product-hero-title, 
    .solutions-hero-title, 
    .contact-hero-title,
    .section-title-alt,
    .about-main-title,
    .spec-main-title,
    .split-title,
    .specialist-title,
    .form-heading {
        font-size: 24px !important;
    }

    /* Hero & Section Descriptions */
    .about-hero-desc, 
    .product-hero-desc, 
    .solutions-hero-desc, 
    .contact-hero-desc,
    .why-section-lead,
    .about-lead,
    .split-desc,
    .feature-section-subtitle,
    .form-subheading {
        font-size: 14px !important;
    }

    /* Secondary Headings */
    .vision-title,
    .showcase-title,
    .innovation-card h3 {
        font-size: 20px !important;
    }
}