/* ========================================
   AI Bharat Health Mission 2026 - Styles
   ======================================== */

/* Custom Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --bg-primary: #050508;
    --bg-secondary: #0c0c10;
    --bg-card: #12121a;
    --bg-card-hover: #1c1c28;
    --text-primary: #ffffff;
    --text-secondary: #d4d4d8;
    --text-muted: #8b8b96;
    --accent-blue: #38bdf8;
    --accent-pink: #e63976;
    --accent-purple: #9945ff;
    --accent-orange: #f97316;
    --accent-green: #34d399;
    --gradient-primary: linear-gradient(135deg, #9945ff 0%, #38bdf8 100%);
    --gradient-button: linear-gradient(90deg, #e63976 0%, #f97316 100%);
    --gradient-hero: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    --border-glow: rgba(153, 69, 255, 0.3);
    --shadow-glow: 0 0 40px rgba(153, 69, 255, 0.15);
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Selection Style */
::selection {
    background: var(--accent-pink);
    color: var(--text-primary);
}

/* Container */
.container-custom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Full Width Container Override */
.container {
    max-width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

/* ========================================
   Header & Navigation
   ======================================== */
.aibhm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 12, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.aibhm-header.scrolled {
    background: rgba(5, 5, 12, 0.92);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.aibhm-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.aibhm-logo-section {
    display: flex;
    gap: 5px;
}

.aibhm-logo-section img {
    height: 40px;
    object-fit: contain;
}

.aibhm-logo-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

.aibhm-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.aibhm-nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.aibhm-nav-links a:hover {
    color: var(--text-primary);
}

.aibhm-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-button);
    transition: var(--transition);
}

.aibhm-nav-links a:hover::after {
    width: 100%;
}

.aibhm-nav-links a.active::after {
    width: 100%;
}

.aibhm-nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Buttons */
.btn-outline-custom {
    padding: 10px 25px;
    border: 1px solid var(--accent-pink);
    background: transparent;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-custom:hover {
    background: var(--accent-pink);
    color: var(--text-primary);
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.4);
}

.btn-gradient-custom {
    padding: 12px 30px;
    background: var(--gradient-button);
    border: none;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-gradient-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.4);
    color: var(--text-primary);
}

.btn-gradient-custom i {
    transition: var(--transition);
}

.btn-gradient-custom:hover i {
    transform: translateX(5px);
}

/* Mobile Menu Toggle */
.aibhm-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.aibhm-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #ffffff;
    /* Explicit white color for visibility */
    transition: var(--transition);
}

/* New Styles for Logos and Navigation */
.aibhm-logos-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.aibhm-logo-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.aibhm-label-text {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1;
}

.aibhm-main-logo {
    height: 42px !important;
    border-radius: 6px;
    padding: 4px;
    background: #fff;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.aibhm-main-logo:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.aibhm-partner-logo {
    height: 36px;
    border-radius: 6px;
    padding: 4px;
    background: #fff;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.aibhm-partner-logo:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* Vertical divider between logo groups */
.aibhm-logo-divider-v {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    flex-shrink: 0;
}

.aibhm-nav-right {
    display: flex;
    align-items: center;
}

.aibhm-top-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.aibhm-btn-outline {
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    color: #fff !important;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
}

.aibhm-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff !important;
    transform: translateY(-1px);
}

/* Gradient CTA button in navbar */
.aibhm-btn-gradient-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    background: var(--gradient-button);
    border: none;
    border-radius: 6px;
    color: #fff !important;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(230, 57, 118, 0.3);
}

.aibhm-btn-gradient-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 57, 118, 0.45);
    color: #fff !important;
}

.aibhm-btn-gradient-nav i {
    font-size: 10px;
    transition: var(--transition);
}

.aibhm-btn-gradient-nav:hover i {
    transform: translateX(3px);
}

/* Kebab Menu (vertical dots) */
.aibhm-kebab-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: -15px;
}

.aibhm-kebab-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
    margin-left: 7px;
}

.aibhm-kebab-toggle span {
    display: block;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    transition: var(--transition);
}

.aibhm-kebab-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.aibhm-kebab-wrapper .aibhm-dropdown-menu {
    position: absolute;
    top: calc(100% - 5px);
    right: 0;
    left: auto;
    display: none;
}

.aibhm-kebab-wrapper:hover .aibhm-dropdown-menu {
    display: block;
    animation: fadeInSlideUp 0.3s ease forwards;
}

.aibhm-nav-links {
    margin: 0;
    padding: 0;
}

.aibhm-has-dropdown {
    position: relative;
    list-style: none;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.aibhm-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-decoration: none;
}

.aibhm-dots {
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--accent-orange);
    font-weight: 800;
}

.aibhm-dropdown-menu {
    position: absolute;
    top: calc(100% - 5px);
    right: 0;
    left: auto;
    background: rgba(15, 15, 15, 0.9);
    min-width: 240px;
    padding: 12px 0;
    list-style: none;
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow: hidden;
}

.aibhm-has-dropdown:hover .aibhm-dropdown-menu {
    display: block;
    animation: fadeInSlideUp 0.3s ease forwards;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aibhm-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    right: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.aibhm-dropdown-menu li {
    width: 100%;
    padding: 0;
}

.aibhm-dropdown-menu li a {
    display: block;
    padding: 14px 24px;
    color: var(--text-secondary) !important;
    font-size: 14px;
    text-transform: none !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.aibhm-dropdown-menu li:last-child a {
    border-bottom: none;
}

.aibhm-dropdown-menu li a:hover {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), transparent);
    color: var(--accent-orange) !important;
    padding-left: 30px;
}

.aibhm-dropdown-menu li a::after {
    display: none !important;
}

/* ========================================
   Hero Section - Full Screen Video Background
   ======================================== */
.aibhm-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg-primary);
    overflow: hidden;
    padding-top: 80px;
}

/* Full Screen Background Video */
.aibhm-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.aibhm-hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Themed Color Overlay with low transparency */
.aibhm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(77, 45, 94, 0.75) 0%,
            rgba(139, 69, 87, 0.7) 50%,
            rgba(77, 45, 94, 0.75) 100%);
    z-index: 1;
}

/* Hero Content - Centered (Legacy) */
.aibhm-hero-content-center {
    text-align: center;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Hero Content - Right Aligned Layout */
.aibhm-hero-center {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    min-height: calc(100vh - 100px);
    width: 100%;
    padding-bottom: 60px;
}

.aibhm-hero-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 380px;
}

.aibhm-hero-logo-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.2));
}

.aibhm-hero-subtext {
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 0.85rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    text-align: center;
}

/* Responsive Hero */
@media (max-width: 992px) {
    .aibhm-hero-center {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .aibhm-hero-tagline .tagline-line {
        font-size: 2rem;
    }

    .aibhm-hero-tagline .accent-text {
        font-size: 4rem;
    }

    .aibhm-hero-logo-img {
        max-width: 200px;
    }

    .aibhm-hero-subtext {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
}

/* Logo Circle with background (Legacy) */
.aibhm-hero-logo-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(77, 45, 94, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 25px 25px;
    box-shadow: 0 0 60px rgba(139, 69, 87, 0.5),
        0 0 100px rgba(77, 45, 94, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.aibhm-hero-logo-circle img {
    max-width: 85%;
    max-height: 200px;
    object-fit: contain;
}

/* Date and Venue - Inside Circle */
.aibhm-hero-date {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    text-align: center;
}

/* Theme Text */
.aibhm-hero-theme {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    max-width: 800px;
    margin-top: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .aibhm-hero-logo-circle {
        width: 280px;
        height: 280px;
        padding: 25px 20px 20px;
    }

    .aibhm-hero-logo-circle img {
        max-width: 80%;
        max-height: 140px;
    }

    .aibhm-hero-date {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
        margin-top: 10px;
    }

    .aibhm-hero-theme {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .aibhm-hero-logo-img {
        max-width: 180px;
    }

    .aibhm-hero-subtext {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
}

.aibhm-hero-title-new {
    margin-bottom: 25px;
}

.aibhm-hero-logo {
    display: block;
    max-width: 280px;
    height: auto;
    margin: 0 auto 20px auto;
    border-radius: 10px;
}

.aibhm-hero-date {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.aibhm-title-small {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.aibhm-title-large {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 10px;
}

.aibhm-title-year {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent-pink);
}

/* Video Background */
.aibhm-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

/* Dark Overlay over video */
.aibhm-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.aibhm-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(153, 69, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(255, 0, 102, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.aibhm-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.aibhm-hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--accent-blue);
    font-weight: bold;
}

.aibhm-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aibhm-hero-title span {
    display: block;
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
    font-size: 0.5em;
    font-weight: 600;
    margin-top: 10px;
}

.aibhm-hero-subtitle {
    font-size: 1.25rem;
    /* color: var(--text-secondary); */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.aibhm-hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ========================================
   About + Statistics Combined Section
   ======================================== */
.aibhm-about-stats {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.aibhm-about-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg,
            #1a0a1e 0%,
            #2d1b3e 50%,
            #1a0a1e 100%);
    z-index: 0;
}

/* Background glow effects */
.aibhm-about-stats-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(255, 100, 50, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(0, 200, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.aibhm-about-stats .container {
    position: relative;
    z-index: 2;
}

.aibhm-about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.aibhm-about-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.aibhm-about-text:last-child {
    margin-bottom: 0;
}

/* Statistics Row */
.aibhm-stats-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.aibhm-stat-item {
    flex: 1;
    text-align: center;
    padding: 0 40px;
}

.aibhm-stat-item .aibhm-stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.aibhm-stat-item .aibhm-stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.aibhm-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    align-self: stretch;
}

/* ========================================
   Statistics Section (Legacy)
   ======================================== */
.aibhm-stats {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
}

.aibhm-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 102, 0.5), transparent);
}

.aibhm-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.aibhm-stat-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.aibhm-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-button);
}

.aibhm-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.aibhm-stat-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.aibhm-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    /* text-transform: uppercase; */
    letter-spacing: 2px;
}

/* ========================================
   Theme Highlight Section - Two Column
   ======================================== */
.aibhm-theme-highlight {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.aibhm-theme-highlight-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            #2d1b4e 0%,
            #4a2c5a 30%,
            #6b3a5d 60%,
            #8b4557 100%);
    z-index: 0;
}

/* Dotted pattern overlay */
.aibhm-theme-highlight-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.aibhm-theme-split {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.aibhm-theme-left {
    flex: 1;
    max-width: 50%;
}

.aibhm-theme-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.aibhm-theme-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.aibhm-theme-right {
    flex: 1;
    max-width: 50%;
    border-left: 1px dashed rgba(255, 255, 255, 0.3);
    padding-left: 60px;
}

.aibhm-theme-right p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.aibhm-theme-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: var(--transition);
}

.aibhm-theme-readmore:hover {
    color: var(--accent-pink);
}

.aibhm-theme-readmore i {
    transition: var(--transition);
}

.aibhm-theme-readmore:hover i {
    transform: translateX(5px);
}

/* ========================================
   Key Areas / Theme Section (Legacy)
   ======================================== */
.aibhm-themes {
    padding: 30px 0;
    background: var(--bg-primary);
}

.aibhm-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.aibhm-section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.aibhm-section-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-button);
    margin: 0 auto;
    border-radius: 2px;
}

.aibhm-theme-main {
    /* text-align: center; */
    margin-bottom: 60px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.aibhm-theme-main h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.aibhm-theme-main p {
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.aibhm-themes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.aibhm-theme-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.aibhm-theme-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
}

.aibhm-theme-card-header {
    padding: 20px 25px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.aibhm-theme-card-header.blue {
    background: var(--accent-blue);
    color: #000;
}

.aibhm-theme-card-header.pink {
    background: var(--accent-pink);
}

.aibhm-theme-card-header.orange {
    background: var(--accent-orange);
}

.aibhm-theme-card-header.green {
    background: var(--accent-green);
    color: #000;
}

.aibhm-theme-card-header.purple {
    background: var(--accent-purple);
}

.aibhm-theme-card-body {
    padding: 25px;
}

.aibhm-theme-card-body ul {
    list-style: none;
}

.aibhm-theme-card-body li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.aibhm-theme-card-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-pink);
    font-weight: bold;
}

/* ========================================
   Why Attend Section
   ======================================== */
.aibhm-why-attend {
    padding: 30px 0;
    background: var(--bg-secondary);
}

.aibhm-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.aibhm-why-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.aibhm-why-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-glow);
}

.aibhm-why-card-image {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aibhm-why-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aibhm-why-card-body {
    padding: 25px;
}

.aibhm-why-card-body h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.4;
}

.aibhm-why-card-body p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ========================================
   What to Expect Section - Card Grid
   ======================================== */
.aibhm-expect {
    padding: 80px 0;
    background: var(--bg-primary);
    position: relative;
}

/* Background with blur effect */
.aibhm-expect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.aibhm-expect .container {
    position: relative;
    z-index: 1;
}

.aibhm-expect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.aibhm-expect-card {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.aibhm-expect-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.aibhm-expect-header {
    padding: 20px 25px;
}

.aibhm-expect-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 5px;
}

.aibhm-expect-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.aibhm-expect-body {
    padding: 25px;
    background: rgba(0, 0, 0, 0.4);
}

.aibhm-expect-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aibhm-expect-body li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.aibhm-expect-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-pink);
    font-weight: bold;
}

/* .aibhm-expect-body li:last-child {
    margin-bottom: 0;
    color: var(--text-muted);
    font-style: italic;
} */

/* ========================================
   Agenda Section (Legacy)
   ======================================== */
.aibhm-agenda {
    padding: 100px 0;
    background: var(--bg-primary);
}

.aibhm-agenda-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.aibhm-agenda-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.aibhm-agenda-item:hover {
    border-color: var(--border-glow);
    transform: translateX(10px);
}

.aibhm-agenda-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-button);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.aibhm-agenda-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--accent-blue);
}

.aibhm-agenda-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.aibhm-agenda-content p,
.aibhm-agenda-content ul {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.aibhm-agenda-content ul {
    list-style: none;
    margin-top: 10px;
}

.aibhm-agenda-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.aibhm-agenda-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-pink);
}

/* ========================================
   Contact Section
   ======================================== */
.aibhm-contact {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.aibhm-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.aibhm-contact-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition);
}

.aibhm-contact-card:hover {
    border-color: var(--accent-pink);
    transform: translateY(-5px);
}

.aibhm-contact-card i {
    font-size: 2.5rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

.aibhm-contact-card h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.aibhm-contact-card p {
    font-size: 1.1rem;
    font-weight: 600;
}

.aibhm-contact-email {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent-blue);
    text-decoration: none;
    word-break: break-word;
    transition: var(--transition);
}

.aibhm-contact-email:hover {
    color: var(--accent-pink);
    text-decoration: underline;
}

/* ========================================
   Footer
   ======================================== */
.aibhm-footer {
    padding: 60px 0 30px;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aibhm-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.aibhm-footer-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.aibhm-footer-logos img {
    height: 40px;
    border-radius: 6px;
    padding: 4px;
    background: #fff;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.aibhm-footer-logos img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.aibhm-footer-social {
    display: flex;
    gap: 15px;
}

.aibhm-footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.aibhm-footer-social a:hover {
    background: var(--accent-pink);
    border-color: var(--accent-pink);
    color: var(--text-primary);
}

.aibhm-footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.aibhm-footer-copyright a {
    color: var(--accent-purple);
    transition: var(--transition);
}

.aibhm-footer-copyright a:hover {
    color: var(--accent-blue);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 1200px) {
    .aibhm-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .aibhm-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .aibhm-nav-links,
    .aibhm-nav-cta {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .aibhm-nav-links.mobile-open,
    .aibhm-nav-cta.mobile-open {
        display: flex;
    }

    .aibhm-nav-links {
        top: 100%;
    }

    .aibhm-nav-cta {
        top: calc(100% + 200px);
    }

    .aibhm-nav-links a {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .aibhm-menu-toggle {
        display: flex;
        order: 3;
        /* Ensure it stays on the right */
        z-index: 2000;
    }

    .aibhm-logo-section img {
        height: 30px;
        /* Smaller logos on mobile */
    }

    .aibhm-logo-section {
        flex: 0 1 auto;
    }

    .aibhm-logo-section span {
        font-size: 8px !important;
    }

    .aibhm-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .aibhm-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .aibhm-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .aibhm-themes-grid {
        grid-template-columns: 1fr;
    }

    .aibhm-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Hero Split Layout for Tablet */
    .aibhm-hero-split {
        flex-direction: column;
        text-align: center;
    }

    .aibhm-hero-left {
        max-width: 100%;
    }

    .aibhm-hero-right {
        justify-content: center;
    }

    .aibhm-ai-video-text {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .aibhm-hero-title {
        font-size: 2.5rem;
    }

    .aibhm-why-grid {
        grid-template-columns: 1fr;
    }

    .aibhm-contact-grid {
        grid-template-columns: 1fr;
    }

    .aibhm-agenda-item {
        flex-direction: column;
        gap: 20px;
    }

    .aibhm-footer-content {
        flex-direction: column;
        text-align: center;
    }

    /* What to Expect Section Responsive */
    .aibhm-expect-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .aibhm-expect-header h3 {
        font-size: 1rem;
    }

    .aibhm-expect-body {
        padding: 20px;
    }

    /* Stats Row Responsive */
    .aibhm-stats-row {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .aibhm-stat-divider {
        width: 80%;
        height: 1px;
        align-self: center;
    }

    .aibhm-stat-item {
        padding: 0;
    }

    /* Theme Split Responsive */
    .aibhm-theme-split {
        flex-direction: column;
        gap: 40px;
    }

    .aibhm-theme-left,
    .aibhm-theme-right {
        max-width: 100%;
    }

    .aibhm-theme-right {
        border-left: none;
        border-top: 1px dashed rgba(255, 255, 255, 0.3);
        padding-left: 0;
        padding-top: 40px;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 {
    animation-delay: 0.1s;
}

.animate-delay-2 {
    animation-delay: 0.2s;
}

.animate-delay-3 {
    animation-delay: 0.3s;
}

.animate-delay-4 {
    animation-delay: 0.4s;
}

/* Scroll Animation Classes */
.aibhm-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.aibhm-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

dl,
ol,
ul {
    margin-bottom: 0 !important;
}

.aibhm-scroll-down {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: #7b2cbf;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.4);
    animation: aibhm-bounce 2s infinite;
}

.aibhm-scroll-down:hover {
    background-color: #9d4edd;
    transform: scale(1.1);
    color: #ffffff !important;
}

@keyframes aibhm-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Removed fade-out to allow toggle to up arrow */

/* Event Pop-up Style */
.aibhm-event-popup {
    position: fixed;
    top: 150px;
    right: -400px;
    background: #ffffff;
    color: #7b2cbf !important;
    padding: 15px 25px;
    border-radius: 30px 0 0 30px;
    box-shadow: -5px 5px 25px rgba(123, 44, 191, 0.2);
    z-index: 10001;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #7b2cbf;
    border-right: none;
    font-size: 1.1rem;
}

.aibhm-event-popup.show {
    right: 0;
    z-index: 999;
}

.aibhm-event-popup:hover {
    padding-right: 35px;
    background: #7b2cbf;
    color: #ffffff !important;
    transform: scale(1.05);
}

.aibhm-event-popup i {
    transition: transform 0.3s ease;
}

.aibhm-event-popup:hover i {
    transform: translateX(5px);
}

/* New Header Layout Styles */
.aibhm-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.aibhm-logos-left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.aibhm-logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.aibhm-logo-group .label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #fff;
    opacity: 0.9;
}

.aibhm-logo-group img {
    max-height: 42px;
    width: auto;
}

.aibhm-nav-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.aibhm-nav-center img {
    max-height: 50px;
    width: auto;
}

.aibhm-nav-center .sub-text {
    font-size: 8px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0px;
    font-weight: 500;
}

.aibhm-nav-right {
    display: flex;
    align-items: center;
}

.aibhm-top-links {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.aibhm-top-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.aibhm-top-links a:hover {
    color: var(--accent-purple);
}

.aibhm-nav-links {
    display: flex !important;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.aibhm-nav-links li a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s;
}

.aibhm-nav-links li a:hover {
    color: var(--accent-purple) !important;
}

.aibhm-sep {
    margin: 0 10px;
    opacity: 0.5;
}

@media (max-width: 991px) {
    .aibhm-navbar {
        padding: 10px 0;
        justify-content: space-between !important;
        gap: 5px;
    }

    .aibhm-logos-left {
        gap: 10px;
        flex: 1;
        justify-content: flex-start;
    }

    .aibhm-logo-group .label {
        font-size: 7px;
        margin-bottom: 2px;
        letter-spacing: 0.5px;
    }

    .aibhm-logo-group img {
        max-height: 20px !important;
    }

    .aibhm-nav-center {
        margin: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .aibhm-nav-center img {
        max-height: 38px !important;
    }

    .aibhm-nav-center .sub-text {
        font-size: 6px;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .aibhm-nav-right {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 1, 31, 0.98);
        padding: 30px 20px;
        z-index: 999;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        border-bottom: 3px solid #7b2cbf;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .aibhm-nav-right.active {
        display: flex !important;
    }

    .aibhm-top-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .aibhm-sep {
        display: none;
    }

    .aibhm-nav-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .aibhm-nav-links li a {
        font-size: 16px;
    }

    .aibhm-menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        order: 4;
    }

    .aibhm-menu-toggle span {
        display: block;
        width: 25px;
        height: 2px;
        background: #fff;
        transition: all 0.3s ease;
    }

    .aibhm-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .aibhm-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .aibhm-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* ========================================
       Startup Innovation Partner Section@media
       ======================================== */
    .aibhm-startup-partner {
        padding: 100px 0;
        background: transparent;
        text-align: center;
    }

    .aibhm-startup-logo {
        margin-top: 30px;
    }

    .aibhm-startup-logo-box {
        display: inline-block;
        background: var(--bg-card);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 40px 60px;
        transition: var(--transition);
    }

    .aibhm-startup-logo-box:hover {
        transform: translateY(-5px);
        border-color: var(--border-glow);
        box-shadow: var(--shadow-glow);
    }

    .aibhm-startup-logo-box img {
        max-width: 500px;
        width: 100%;
        height: auto;
        display: block;
    }
}

/* ========================================
       Startup Innovation Partner Section
       ======================================== */
.aibhm-startup-partner {
    padding: 100px 0;
    background: transparent;
    text-align: center;
}

.aibhm-startup-logo {
    margin-top: 30px;
}

.aibhm-startup-logo-box {
    display: inline-block;
    background: #ffffff;
    /* White background for the box */
    border: 2px solid rgba(255, 255, 255, 0.2);
    /* Visible border */
    border-radius: 15px;
    padding: 30px 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    /* Visible shadow */
    transition: var(--transition);
}

.aibhm-startup-logo-box:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 16px 48px rgba(255, 0, 102, 0.2);
}

.aibhm-startup-logo-box img {
    max-width: 300px;
    /* Proper size - not too big */
    width: 100%;
    height: auto;
    display: block;
}
