/* 
   Impact Acceleration Summit - Custom CSS
   Modernized with Bootstrap theme inspiration
*/

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
    /* Colors */
    --primary-blue: #1B49C9;
    --secondary-blue: #031A6B;
    --accent-orange: #ff6b35;
    --light-orange: #ff8c5a;
    --dark-blue: #031A6B;
    --light-blue: #e6f2ff;
    
    /* Gradients */
    --gradient-blue: linear-gradient(180deg, #0781FD 0%, #0346ED 100%);
    --gradient-orange: linear-gradient(180deg, #ffb100 0%, #ff6b35 100%);
    --gradient-blue-start: #031A6B;
    --gradient-blue-end: #1B49C9;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.07);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.07);
    --shadow-2xl: 0 32px 64px rgba(0, 0, 0, 0.07);
    --shadow-inner: inset 0 1px 0 0px rgba(255, 255, 255, 0.15);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease;
    
    /* Typography */
    --font-primary: "europa", sans-serif;
    --font-secondary: "latienne-pro", serif;
    --font-size-base: 19px;
    --font-size-sm: 16px;
    --font-size-lg: 1.5rem;
    --font-size-xl: 2rem;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
    font-family: var(--font-primary);
    font-weight: 300;
    font-style: normal;
    font-size: var(--font-size-base);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-style: normal;
    margin-bottom: var(--spacing-md);
}

strong, b {
    font-family: var(--font-primary);
    font-weight: 400;
    font-style: normal;
}

/* ==========================================================================
   Button System
   ========================================================================== */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #031A6B 0%, #1B49C9 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(27, 73, 201, 0.2);
}

.btn-orange {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8F00 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.btn-green {
    background: linear-gradient(135deg, #4AD500 0%, #38A200 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(74, 213, 0, 0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Update mobile styles */
@media (max-width: 767.98px) {
    .btn-xl {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* Update hero CTA buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-cta-buttons .btn {
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-cta-buttons .btn-orange {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8F00 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.hero-cta-buttons .btn-outline-primary {
    background: #fff;
    color: #031A6B;
    box-shadow: 0 4px 15px rgba(3, 26, 107, 0.1);
}

.hero-cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-cta-buttons .btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Logo Styling */
.logo-container {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 56px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: height 0.3s;
}

.logo-gradient {
    fill: url(#logo-gradient);
}

.logo-icon-container {
    display: inline-block;
    padding: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #031A6B 0%, #1B49C9 100%);
    box-shadow: 0 0 30px rgba(27, 73, 201, 0.3);
}

.logo-icon {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

/* Navbar Styling - Improved for cleaner look */
.navbar {
    background: transparent;
    box-shadow: none;
    transition: background 0.3s, box-shadow 0.3s;
    padding: .5rem 0;
}

.navbar-brand {
    font-family: "latienne-pro", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff !important;
    letter-spacing: 1.5px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #fff !important;
    font-family: "europa", sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: #fff !important;
    text-shadow: 0 0 16px rgba(190,197,255,0.5);
    filter: drop-shadow(0 0 16px rgba(190,197,255,0.5));
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
    box-shadow: 0 0 16px rgba(190,197,255,0.5);
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
    width: 80%;
}

/* Add styles for section in view */
.section-in-view .nav-link {
    color: #fff !important;
    text-shadow: 0 0 16px rgba(190,197,255,0.5);
    filter: drop-shadow(0 0 16px rgba(190,197,255,0.5));
}

.section-in-view .nav-link::after {
    width: 80%;
}

.apply-btn {
    background-image: linear-gradient(180deg, #ffb100 0%, #ff6b35 100%) !important;
    color: #fff !important;
    border-radius: 8px !important;
    border: 0 !important;
    font-weight: bold !important;
    font-size: 16px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07), inset 0 1px 0 0px rgba(255, 255, 255, 0.15) !important;
    transition: all 150ms ease-in-out !important;
    padding: 12px 26px !important;
}

.apply-btn:hover {
    filter: brightness(1.1);
}

.apply-btn:active {
    transform: scale(.95);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--gradient-blue-start), var(--gradient-blue-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/* Hero Section */
.hero-section {
    background: url('../images/blue-background.jpg') center center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
}

.hero-section-variation-b {
    position: relative;
    min-height: 100vh;
    width: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/blue-background.jpg') center center/cover no-repeat;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 26, 107, 0.7);
    z-index: 2;
    pointer-events: none;
}

.hero-splash-container {
    position: relative;
    z-index: 3;
    padding-top: 160px;
    padding-bottom: 80px;
}

.splash-badge {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-family: "europa", sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    padding: 0.5rem 2.2rem;
    border-radius: 1rem;
    border: 1px solid #BEC5FF;
    margin-bottom: 1.5rem;
}

.splash-divider {
    width: 200px;
    height: 1px;
    background: #BEC5FF;
    border-radius: 2px;
    margin: 0 auto 1.5rem auto;
}

.splash-headline {
    color: #fff;
    font-family: "latienne-pro", serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.splash-subheadline {
    color: #F0F2FF;
    font-family: "europa", sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767.98px) {
    .splash-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1.8rem;
    }
    .hero-splash-container {
        padding-top: 140px;
        padding-bottom: 60px;
    }
}

@media (min-width: 768px) {
    .splash-headline {
        font-size: 3.5rem;
    }
}

.splash-video-placeholder {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    aspect-ratio: 16/9;
}

.splash-video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 767.98px) {
    .splash-video-placeholder {
        max-width: 100%;
        margin: 0 auto 2rem;
    }
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #555;
    font-weight: 400;
}

.support-line {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

.hero-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    outline: 1px solid rgba(0, 0, 0, 0.05);
}

.video-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
    outline: 1px solid rgba(0, 0, 0, 0.05);
}

.video-placeholder {
    background-color: var(--light-blue);
    color: var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    height: 250px;
}

.video-placeholder:hover {
    background-color: var(--primary-blue);
    color: white;
}

.video-placeholder i {
    opacity: 0.8;
    color: var(--accent-orange);
}

/* Section Styling - More refined and elegant */
.section-divider {
    height: 1px;
    width: 7rem;
    background: var(--dark-blue);
    margin: 0 auto var(--spacing-xl);
    border-radius: 2px;
    box-shadow: 0 0 16px #BEC5FF;
}

/* Core Promise Section */
.core-promise-section {
    background-color: #f9f9f9;
    position: relative;
}

.core-promise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--dark-blue);
    opacity: 0.9;
    box-shadow: 0 0 16px #BEC5FF;
}

.highlight {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.2rem;
    margin: 1.5rem 0;
}

/* For Founders Section */
.for-founders-section {
    background-color: white;
    position: relative;
}

.feature-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-list li i {
    color: var(--primary-blue);
    margin-right: 1rem;
    font-size: 1.25rem;
}

/* For Investors Section */
.for-investors-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.for-investors-section .section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.for-investors-section .section-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.for-investors-section .container {
    position: relative;
    z-index: 2;
    padding: 32px 0;
}

.for-investors-section .content-wrapper {
    background: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.for-investors-section .gradient-text {
    -webkit-text-fill-color: white !important;
    color: white !important;
}

.for-investors-section .feature-list {
    list-style: none;
    padding-left: 0;
}

.for-investors-section .feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.for-investors-section .feature-list li i {
    color: #FF6B00;
    margin-right: 15px;
    font-size: 1.2em;
}

@media (max-width: 991px) {
    .for-investors-section .container {
        padding: 40px 0;
    }
    
    .for-investors-section .content-wrapper {
        padding: 30px;
        margin: 0 15px;
    }
}

@media (max-width: 767px) {
    .for-investors-section .container {
        padding: 30px 0;
    }
    
    .for-investors-section .content-wrapper {
        padding: 25px;
    }
}

/* Experience Section */
.experience-section {
    background-color: white;
    position: relative;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-orange));
}

.timeline > li {
    position: relative;
    margin-bottom: 40px;
}

.timeline-badge {
    width: 3rem;
    height: 3rem;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--box-shadow);
}

.timeline-badge i {
    margin-top: 12px;
}

.timeline-panel {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--box-shadow);
    margin-left: 2rem;
}

.timeline-panel h5 {
    margin-bottom: 5px;
    color: var(--dark-blue);
    font-weight: 700;
}

/* Guarantee Section */
.guarantee-section {
    background-color: #f9f9f9;
    position: relative;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--dark-blue);
    opacity: 0.9;
    box-shadow: 0 0 16px #BEC5FF;
}

.guarantee-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.guarantee-card {
    border: 2px solid var(--primary-blue);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 4px 24px rgba(3, 26, 107, 0.08);
    margin: 2rem auto;
    max-width: 700px;
    padding-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.guarantee-card > * {
    margin: 1.5rem 0;
}

.guarantee-card > *:first-child {
    margin-top: 0;
}

.guarantee-card > *:last-child {
    margin-bottom: 0;
}

/* Who It's For Section */
.who-its-for-section {
    background-color: white;
    position: relative;
}

.qualification-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.qualification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.qualification-card h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Closing Section */
.closing-section {
    background: linear-gradient(135deg, var(--gradient-blue-start), var(--gradient-blue-end));
    color: white;
    padding: 100px 0;
    position: relative;
}

.closing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-orange);
}

.closing-section .gradient-text {
    -webkit-text-fill-color: white;
    margin-bottom: 2rem;
}

.closing-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.closing-section .highlight {
    color: white;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.investor-btn {
    background-color: var(--primary-blue) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
    border: none;
    box-shadow: 0 2px 8px rgba(27, 73, 201, 0.15);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.investor-btn:hover {
    background-color: var(--secondary-blue) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(27, 73, 201, 0.25);
}

.closing-section .btn-outline-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #031A6B;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.closing-section .btn-outline-primary:hover {
    background: #fff;
    color: #031A6B;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.closing-section .btn-outline-primary:active {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.closing-section .btn-primary {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.closing-section .btn-primary:hover {
    background-color: var(--light-orange);
    border-color: var(--light-orange);
}

/* Footer improvements for alignment, sizing, and disclaimer */
.footer {
    font-size: 0.98rem;
    background: var(--dark-blue);
    color: #fff;
    padding: 2.5rem 0 1.2rem 0;
    border-top: 1px solid #1B49C9;
    text-align: center;
}

.footer .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer .site-logo {
    height: 38px;
    width: auto;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-copyright-privacy {
    color: #fff;
    text-align: center;
    font-size: 0.93rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-copyright {
    color: #fff;
    font-size: 0.93rem;
    font-weight: 400;
}

.footer-policy-sep {
    color: rgba(255,255,255,0.4);
    margin: 0 0.5em;
    font-size: 1em;
}

.footer-link {
    color: #fff;
    text-decoration: underline;
    margin: 0 0.2em;
    font-size: 0.98em;
    font-weight: 400;
}

.footer-link:hover {
    color: var(--accent-orange);
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    margin-top: 1.5em;
    line-height: 1.5;
    text-align: center;
    font-weight: 400;
}

@media (max-width: 767.98px) {
    .footer .logo-container {
        justify-content: center;
    }
    .footer .site-logo {
        height: 30px;
    }
    .footer-tagline {
        font-size: 0.95rem;
    }
    .footer-disclaimer {
        font-size: 0.7rem;
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    section {
        padding: 70px 0;
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .order-lg-1 {
        margin-top: 30px;
    }
    
    .order-lg-2 {
        margin-bottom: 30px;
    }
    
    .navbar-collapse {
        background: rgba(3,26,107,0.98) !important;
    }
    
    .site-logo {
        height: 50px;
    }
    
    .navbar .apply-btn {
        display: inline-block !important;
        margin-right: 0.2rem;
        margin-left: 0;
        padding: 0.4rem 1.1rem !important;
        font-size: 1rem;
        vertical-align: middle;
    }
    .navbar-toggler {
        float: right;
        margin-left: 0;
        margin-right: 0;
    }
    .navbar-nav {
        margin-top: 1rem;
    }
    .hero-splash-container {
        padding-top: 40px;
    }
    .splash-badge {
        margin-bottom: 0.7rem;
    }
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0 !important;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 50px 0;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .qualification-card {
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    .site-logo {
        height: 50px;
    }

    .navbar .apply-btn {
        display: inline-block !important;
        margin-right: 0.2rem;
        margin-left: 0;
        padding: 0.4rem 1.1rem !important;
        font-size: 1rem;
        vertical-align: middle;
    }
}

/* Image Placeholders */
img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
    border-radius: 8px;
}

img:hover {
    transform: scale(1.02);
}

/* Section Spacing and Refinements */
.container {
    max-width: 1200px;
}

.section-title {
    margin-bottom: 3rem;
}

/* Accent Elements */
.accent-border {
    border-left: 3px solid var(--dark-blue);
    padding-left: 15px;
}

.accent-bg {
    position: relative;
}

.accent-bg::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(3, 26, 107, 0.1);
    border-radius: 50%;
    z-index: -1;
    top: -20px;
    right: -20px;
}

/* Modernized Images */
.img-fluid {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.img-fluid:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

/* Navbar Transparent on Splash, Solid on Scroll */
.navbar.scrolled {
    background: #031A6B !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar.scrolled .nav-link,
.navbar.scrolled .navbar-brand,
.navbar.scrolled .apply-btn {
    color: #fff !important;
}

/* Particle animation overlay for hero section */
.hero-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Experience Section - Event Structure */
.event-days {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-left: 40px;
    align-items: center;
}

.event-days::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: #1B49C9;
    opacity: 1;
    box-shadow: 0 0 16px #BEC5FF;
    z-index: 0;
}

.event-days::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    background: #1B49C9;
    border-radius: 50%;
    box-shadow: 0 0 16px #BEC5FF;
    z-index: 1;
}

.event-day {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(3, 26, 107, 0.08);
    padding: 2.5rem 2rem 2rem 2rem;
    margin-bottom: 0;
    border-left: 5px solid var(--dark-blue);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2.5rem;
    padding-left: 2.5rem;
    max-width: 70%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
}

.event-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-blue-start), var(--gradient-blue-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 20px rgba(3, 26, 107, 0.15);
    margin-bottom: 0;
}

.event-icon .icon-image {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.event-day-title {
    font-size: 2rem;
    font-family: "europa", sans-serif;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--gradient-blue-start), var(--gradient-blue-end));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.event-day-content {
    margin-left: 0;
    width: 100%;
}

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

.event-schedule li {
    font-size: 1.08rem;
    margin-bottom: 0.7rem;
    padding-left: 0.5rem;
    color: #222;
    font-family: "europa", sans-serif;
    font-weight: 300;
}

.event-schedule li strong {
    color: var(--dark-blue);
    font-weight: 400;
    font-family: "europa", sans-serif;
    margin-right: 0.3em;
}

@media (max-width: 991.98px) {
    .event-day {
        max-width: 90%;
    }
}

@media (max-width: 767.98px) {
    .event-day {
        padding: 1.7rem 0.7rem 1.2rem 1.7rem;
        padding-top: 1.7rem;
        padding-left: 1.7rem;
        max-width: 100%;
    }
    
    .event-icon {
        width: 50px;
        height: 50px;
    }
    
    .event-icon .icon-image {
        width: 25px;
        height: 25px;
    }
    
    .event-day-title {
        font-size: 1.5rem;
    }
    .event-day-content {
        margin-left: 0;
    }
}

/* Mobile Navbar Hamburger (Toggler) */
.navbar-toggler {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0.25rem 0.5rem;
    margin-left: 0.5rem;
    z-index: 1051;
}
.navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
}
.navbar-toggler-icon {
    /* background-image: none !important; */
    width: 28px;
    height: 22px;
    display: inline-block;
    position: relative;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.2s;
}
.navbar-toggler-icon span {
    top: 9px;
}
.navbar-toggler-icon::before {
    top: 0;
}
.navbar-toggler-icon::after {
    bottom: 0;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-blue-start), var(--gradient-blue-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(27, 73, 201, 0.2);
}

.icon-image {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.experience-section-columns {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.experience-section-column {
    flex: 1 1 0;
    min-width: 0;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.experience-card-grid {
    /* Remove flex and column layout for Bootstrap grid compatibility */
    /* display: flex; */
    /* flex-direction: column; */
    /* gap: 3.5rem; */
    /* width: 100%; */
}

.experience-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(3, 26, 107, 0.13);
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    min-height: 160px;
    padding-top: 2.5rem;
    width: 100%;
}

.experience-card:hover {
    box-shadow: 0 8px 32px rgba(3, 26, 107, 0.18);
    transform: translateY(-4px) scale(1.02);
}

.experience-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(3, 26, 107, 0.13);
    z-index: 2;
}

/* Blue gradient for founders */
.experience-section-column.founders .experience-card-icon {
    background: linear-gradient(135deg, var(--gradient-blue-start), var(--gradient-blue-end));
}

/* Green gradient for investors */
.experience-section-column.investors .experience-card-icon {
    background: linear-gradient(135deg, #10C60E, #4be54a);
}

.experience-card-icon .icon-image {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.experience-card-header {
    font-family: "europa", sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 1.08rem;
    margin-right: 0.3em;
}

@media (max-width: 991.98px) {
    .experience-section-column {
        max-width: 90%;
    }
}

@media (max-width: 767.98px) {
    .experience-section-column {
        max-width: 100%;
    }
}

.experience-logo {
    width: 120px;
    height: 120px;
    transition: transform 0.3s ease;
}

.experience-logo:hover {
    transform: scale(1.05);
}

.btn-xl {
    padding: 0.85rem 0 !important;
    font-size: 1.5rem !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    width: 100%;
    max-width: 420px;
    min-width: 0;
    display: inline-block;
}

@media (max-width: 767.98px) {
  .btn-xl {
    font-size: 1.1rem !important;
    padding: 0.7rem 0 !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .splash-section .btn-xl,
  .hero-splash-container .btn-xl {
    margin-bottom: 0.7rem !important;
  }
}

.event-details {
    font-size: 1.25rem;
    color: var(--dark-blue);
    text-align: center;
    text-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.main-event-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.optional-pre-event {
    font-size: 0.9rem;
    color: rgba(3, 26, 107, 0.8);
}

.hero-section .optional-pre-event {
    color: rgba(255, 255, 255, 0.9);
}

.calendar-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
}

.event-date {
    font-weight: 500;
    color: var(--dark-blue);
}

.event-location {
    color: rgba(3, 26, 107, 0.9);
}

/* Hero section specific styles */
.hero-section .event-details .calendar-icon {
    filter: brightness(0) invert(1); /* Makes the icon white */
}

.hero-section .event-details .event-date,
.hero-section .event-details .event-location {
    color: #fff;
}

/* Footer specific styles */
.footer .event-details .calendar-icon {
    filter: brightness(0) invert(1); /* Makes the icon white */
}

.footer .event-details .event-date,
.footer .event-details .event-location {
    color: #fff;
}

.event-details i {
    color: var(--primary-blue);
    filter: none;
    font-size: 1.25rem;
    display: inline-block;
    width: auto;
    height: auto;
    line-height: 1;
}

/* Application Section */
.application-section {
    background-color: #f9f9f9;
    position: relative;
}

.application-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--dark-blue);
    opacity: 0.9;
    box-shadow: 0 0 16px #BEC5FF;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2rem 0;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(3, 26, 107, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(3, 26, 107, 0.12);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gradient-blue-start), var(--gradient-blue-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.process-step p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-blue);
}

.investment-details {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(3, 26, 107, 0.08);
}

.investment-details h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price-tag {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-family: "europa", sans-serif;
}

.additional-price {
    color: rgba(3, 26, 107, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 767.98px) {
    .process-step {
        padding: 1.2rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .process-step p {
        font-size: 1rem;
    }
    
    .price-tag {
        font-size: 2.5rem;
    }
}

/* Featured Investors Section */
.featured-investors-section {
    background-color: #fff;
    position: relative;
}

.investor-card {
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 4px 24px rgba(3, 26, 107, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.investor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(3, 26, 107, 0.12);
}

.investor-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 0;
    margin: 0;
    background: #fff;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.investor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    display: block;
}

.investor-card:hover .investor-image img {
    transform: scale(1.05);
}

.investor-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.investor-content h3 {
    color: var(--dark-blue);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: "europa", sans-serif;
    font-weight: 600;
}

.investor-title {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.investor-focus {
    color: var(--accent-orange);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.investor-bio {
    color: rgba(3, 26, 107, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991.98px) {
    .investor-image {
        height: auto;
        aspect-ratio: 1 / 1;
        min-height: 0;
    }
    .investor-image img {
        aspect-ratio: 1 / 1;
        height: auto;
        min-height: 0;
    }
}

@media (max-width: 767.98px) {
    .investor-image {
        aspect-ratio: 1 / 1;
    }
    .investor-image img {
        aspect-ratio: 1 / 1;
    }
    .investor-content {
        padding: 1.2rem;
    }
    
    .investor-content h3 {
        font-size: 1.2rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-section {
    padding: 100px 0 60px;
    background-color: #fff;
}

.privacy-content {
    color: #333;
    line-height: 1.6;
    font-size: 14px;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.privacy-date {
    color: #666;
    font-size: 13px;
    margin-bottom: 24px;
}

.privacy-content h2 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin: 24px 0 12px;
}

.privacy-content p {
    margin-bottom: 12px;
}

.privacy-content ul {
    margin: 0 0 12px 20px;
    padding: 0;
}

.privacy-content ul li {
    margin-bottom: 8px;
    list-style-type: disc;
}

.privacy-content a {
    color: #0066cc;
    text-decoration: underline;
}

.privacy-content a:hover {
    color: #004499;
}

@media (max-width: 767.98px) {
    .privacy-section {
        padding: 80px 0 40px;
    }
    
    .privacy-content {
        font-size: 13px;
    }
    
    .privacy-title {
        font-size: 20px;
    }
}

img[src*="Total-Confidence-Guarantee-Seal.jpg"] {
    transition: none !important;
}
img[src*="Total-Confidence-Guarantee-Seal.jpg"]:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Strategic Mentors Section */
.strategic-mentors-section {
    background: #fff;
    padding: 80px 0 60px;
}
.strategic-mentors-section .gradient-text {
    margin-bottom: 0.5em;
}
.strategic-mentors-section .subheadline {
    font-size: 1.2rem;
    color: var(--dark-blue);
    font-weight: 600;
    margin-bottom: 1.2em;
}
.strategic-mentors-intro p {
    font-size: 1.08rem;
    color: #333;
    margin-bottom: 0.7em;
}
.strategic-mentor-card {
    background: #f9f9f9;
    border-radius: 1.25rem;
    border: 2px solid var(--primary-blue);
    box-shadow: none;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 2.5rem;
    min-height: 260px;
    transition: none;
}
.strategic-mentor-card:hover {
    box-shadow: none;
    transform: none;
}
.mentor-image-col {
    flex: 0 0 320px;
    max-width: 320px;
    display: flex;
    align-items: stretch;
    background: #e6f2ff;
    aspect-ratio: 1 / 1;
    min-width: 180px;
}
.mentor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    aspect-ratio: 1 / 1;
    min-width: 180px;
    min-height: 180px;
    background: #e6f2ff;
}
.mentor-info-col {
    flex: 1 1 0;
    padding: 2.2rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mentor-name {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.2em;
}
.mentor-subtitle {
    font-size: 1.08rem;
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1em;
}
.mentor-bullets {
    margin: 0.5em 0 0.5em 1.2em;
    padding: 0;
}
.mentor-bullets li {
    margin-bottom: 0.5em;
    font-size: 1.01rem;
    line-height: 1.6;
}
.mentor-who, .mentor-how, .mentor-results, .mentor-workshop {
    margin-bottom: 0.7em;
}
.mentor-cta {
    margin-top: 0.7em;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 0.6em 1.5em;
    border-radius: 0.7em;
}
@media (max-width: 991.98px) {
    .strategic-mentor-card {
        flex-direction: column;
        min-height: 0;
    }
    .mentor-image-col {
        max-width: 100%;
        width: 100%;
        min-width: 0;
        aspect-ratio: 1 / 1;
    }
    .mentor-image {
        min-width: 0;
        min-height: 0;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        display: block;
    }
    .mentor-info-col {
        padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    }
}
@media (max-600px) {
    .strategic-mentors-section {
        padding: 50px 0 30px;
    }
    .mentor-info-col {
        padding: 1.1rem 0.5rem 1rem 0.5rem;
    }
    .mentor-name {
        font-size: 1.15rem;
    }
    .mentor-subtitle {
        font-size: 0.98rem;
    }
}

.hero-section .event-date,
.hero-section .event-location {
    color: #fff;
}

.closing-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.button-30-orange {
  padding: 12px 26px;
  color: #fff;
  background-image: linear-gradient(180deg, #ff8c5a 0%, #ff6b35 100%);
  border-radius: 8px;
  border: 0;
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07), 0 32px 64px rgba(0, 0, 0, 0.07), inset 0 1px 0 0px rgba(255, 255, 255, 0.15);
  transition: all 150ms ease-in-out;
}
.button-30-orange:hover {
  filter: brightness(1.1);
}
.button-30-orange:active {
  transform: scale(.95);
}

.button-30, .button-30-orange, .apply-btn {
  text-decoration: none !important;
  display: inline-block;
  font-size: 1.1rem;
  padding: 12px 26px;
  text-align: center;
}
.cta-buttons a.button-30, .cta-buttons a.button-30-orange, .cta-buttons a.apply-btn {
  width: 48%;
  min-width: 180px;
  max-width: 420px;
  margin: 0;
  text-align: center;
  font-family: 'europa', Arial, sans-serif !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  padding: 1.1rem 0 !important;
  border-radius: 20px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-buttons {
  gap: 4%;
}

@media (max-width: 767.98px) {
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .cta-buttons a.button-30,
  .cta-buttons a.button-30-orange {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0 0 1rem 0;
  }
  .cta-buttons a.button-30:last-child,
  .cta-buttons a.button-30-orange:last-child {
    margin-bottom: 0;
  }
  .cta-buttons a.button-30,
  .cta-buttons a.button-30-orange {
    font-size: 1.1rem !important;
    padding: 0.7rem 0 !important;
  }
}

/* ==========================================================================
   Layout & Sections
   ========================================================================== */
section {
    padding: 5rem 0;
    position: relative;
    scroll-margin-top: 100px; /* Add space for fixed nav */
}

/* ==========================================================================
   Subscribe Section
   ========================================================================== */
.subscribe-section {
    position: relative;
    background: url('../images/stage-bg.jpg') center center/cover no-repeat;
    padding: var(--spacing-xl) 0;
}
.subscribe-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(27,73,201,0.65) 0%, rgba(3,26,107,0.55) 100%);
    z-index: 1;
}
.subscribe-form-container {
    position: relative;
    z-index: 2;
}
.subscribe-form-container .row {
    min-height: 500px;
}
.subscribe-card {
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(31, 56, 108, 0.18);
    padding: 2.5rem 2rem 2rem 2rem;
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
}
.upcoming-dates-card {
    padding: 2.5rem;
}
.upcoming-dates {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.date-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    background: #f7f9fc;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.date-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 56, 108, 0.12);
}
.date-item i {
    color: #1B49C9;
    font-size: 1.2rem;
    margin-top: 0.3rem;
}
.date-content {
    flex: 1;
}
.date-content h3 {
    margin: 0;
    font-size: 1.25rem;
}
.date-content .location {
    margin: 0;
    color: var(--text-muted);
}
.date-content .btn-sm {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    white-space: nowrap;
    margin-left: 1rem;
}
@media (max-600px) {
    .date-content .btn-sm {
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
    }
}
.subscribe-card h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    display: block;
}
.subscribe-card .subheadline {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 2rem;
    text-align: center;
}
.subscribe-card form {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.subscribe-card .form-control {
    background: #f7f9fc;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    font-size: 1rem;
    color: #222;
    padding: 0.9rem 1.1rem;
    margin-bottom: 1rem;
}
.subscribe-card .form-control::placeholder {
    color: #222;
    opacity: 0.6;
}
.subscribe-card .form-check-input {
    margin-right: 0.5rem;
}
/* Checkbox alignment */
.subscribe-card .infusion-field.mb-3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem !important;
}
.subscribe-card .infusion-checkbox {
    display: flex;
    align-items: center;
    width: 100%;
}
.subscribe-card .infusion-checkbox label {
    font-weight: 400;
    color: #222;
    opacity: 0.7;
    font-size: 0.97rem;
    margin-bottom: 0;
    margin-left: 0.5rem;
    line-height: 1.3;
    cursor: pointer;
}
/* Orange 3D button */
.subscribe-card .infusion-submit {
    margin-top: auto;
}
.subscribe-card .infusion-submit .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.85rem 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff9900 0%, #ff6a00 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 16px rgba(255, 153, 0, 0.18), 0 2px 4px rgba(0,0,0,0.08);
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.subscribe-card .infusion-submit .btn:hover {
    background: linear-gradient(90deg, #ff6a00 0%, #ff9900 100%);
    box-shadow: 0 8px 24px rgba(255, 153, 0, 0.22), 0 2px 8px rgba(0,0,0,0.10);
    transform: translateY(-2px) scale(1.02);
}
.subscribe-card label {
    font-size: 0.98rem;
    color: #222;
    margin-bottom: 0.5rem;
}
@media (max-width: 991.98px) {
    .subscribe-form-container .row {
        min-height: auto;
    }
    .subscribe-card {
        margin-bottom: 2rem;
    }
    .upcoming-dates-card {
        padding: 2rem;
    }
}
@media (max-600px) {
    .subscribe-card { 
        padding: 1.5rem 0.7rem 1.5rem 0.7rem; 
    }
    .upcoming-dates-card {
        padding: 1.5rem 0.7rem;
    }
    .date-item {
        padding: 0.75rem;
    }
    .date-content h3 {
        font-size: 1.1rem;
    }
    .date-content .location {
        font-size: 0.9rem;
    }
}

.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-cta-buttons .btn {
    min-width: 200px;
}

@media (max-width: 767.98px) {
    .hero-cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.faq-section .accordion {
    --bs-accordion-border-color: #e9ecef;
    --bs-accordion-border-width: 1px;
    --bs-accordion-border-radius: 0.5rem;
    --bs-accordion-inner-border-radius: calc(0.5rem - 1px);
    --bs-accordion-btn-padding-x: 1.5rem;
    --bs-accordion-btn-padding-y: 1.25rem;
    --bs-accordion-btn-color: var(--primary-blue);
    --bs-accordion-btn-bg: #fff;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23031A6B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transform: rotate(-90deg);
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23031A6B'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    --bs-accordion-btn-focus-border-color: #86b7fe;
    --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(3, 26, 107, 0.25);
    --bs-accordion-active-color: var(--primary-blue);
    --bs-accordion-active-bg: #fff;
}

.faq-section .accordion-item {
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-section .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-blue);
    background-color: #fff;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-blue);
    background-color: #fff;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: #e9ecef;
}

.faq-section .accordion-button::after {
    background-image: var(--bs-accordion-btn-icon);
    transition: var(--bs-accordion-btn-icon-transition);
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: rotate(0deg);
}

.faq-section .accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
}

.faq-section .accordion-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.faq-section .accordion-body li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.faq-section .accordion-body li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .accordion-button {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-section .accordion-body {
        padding: 1rem;
    }
}

.call-dates {
    margin-top: 1rem;
}

.call-date {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.call-date .experience-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.call-date .calendar-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.call-date strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.prep-calls {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
}

.prep-calls h3 {
    color: var(--primary-blue);
    font-weight: 600;
}

.hero-section .event-details i {
    color: #fff;
}

/* Reusable 3-column card grid for experience sections */
.card-grid-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    justify-items: center;
    /* max-width: 1400px; */
    /* margin: 0 auto; */
}

/* Restore blue gradient background for icons in card grid */
.experience-card-grid .experience-card-icon {
    background: linear-gradient(135deg, var(--gradient-blue-start), var(--gradient-blue-end));
}

.mentor-profile-btn {
  border: 1px solid #1B49C9 !important;
  color: #1B49C9 !important;
  background: #fff !important;
  transition: background 0.2s, color 0.2s;
}
.mentor-profile-btn:hover, .mentor-profile-btn:focus {
  background: #1B49C9 !important;
  color: #fff !important;
  border-color: #1B49C9 !important;
}

/* ==========================================================================
   Full Width Background Sections
   ========================================================================== */
.full-width-bg-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.full-width-bg-section .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.full-width-bg-section .container {
    position: relative;
    z-index: 2;
}

.full-width-bg-section .section-content {
    color: white;
    padding: 3rem;
    background: rgba(27, 73, 201, 0.9);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.full-width-bg-section .section-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0px 0px 8px rgba(0,0,0,0.7);
}

.full-width-bg-section .section-body {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.95;
    text-shadow: 0px 0px 3px rgba(0,0,0,0.6);
}

/* Mobile responsive styles for full width sections */
@media (max-width: 767.98px) {
    .full-width-bg-section {
        min-height: 300px;
        display: block !important;
        padding: 0;
    }
    
    .full-width-bg-section .bg-image {
        position: static;
        height: 200px;
        margin-bottom: 1rem;
        border-radius: 0;
    }
    
    .full-width-bg-section .container {
        position: static;
    }
    
    .full-width-bg-section .section-content {
        padding: 1.5rem;
        border-radius: 12px;
        z-index: 3;
        background: rgba(27, 73, 201, 0.9);
        margin-bottom: 1rem;
        color: white;
    }
    
    .mobile-gradient-overlay {
        display: none;
    }
    
    .full-width-bg-section .section-headline {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-shadow: 0px 0px 12px rgba(0,0,0,0.9);
    }
    
         .full-width-bg-section .section-body {
         font-size: 1.1rem;
         text-shadow: 0px 0px 8px rgba(0,0,0,0.8);
     }
 }

/* ==========================================================================
   Program Overview Section
   ========================================================================== */
.program-overview-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.program-overview-card {
    background: #fff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

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

.program-features-list li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.program-features-list li i {
    color: #28a745;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-card {
    background: linear-gradient(135deg, #031A6B 0%, #1B49C9 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(27, 73, 201, 0.2);
}

.price-tag-large {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-period {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.risk-free-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Mobile responsive styles for program overview */
@media (max-width: 767.98px) {
    .program-overview-card {
        padding: 2rem 1.5rem;
    }
    
    .program-overview-card .row {
        flex-direction: column;
    }
    
    .program-overview-card .col-lg-4 {
        margin-top: 2rem;
    }
    
    .price-tag-large {
        font-size: 2.5rem;
    }
    
    .program-features-list li {
        font-size: 0.95rem;
    }
}
