:root {
    /* Core Colors */
    --primary-color: #070B14;
    --primary-gradient: linear-gradient(135deg, #070B14, #0F172A);
    --background-color: #FFFFFF;
    --background-gradient: linear-gradient(135deg, #FFFFFF, #F8FAFF);
    --secondary-color: #F0F4FF;
    --secondary-gradient: linear-gradient(135deg, #F0F4FF, #E8ECFF);
    --accent-color: #7B6CF6;
    --accent-gradient: linear-gradient(135deg, #7B6CF6, #6F60E8);
    --text-color: #171717;
    --icon-color: #436060;
    
    /* Derived Colors */
    --text-muted: rgba(23, 23, 23, 0.7);
    --text-white: #FFFFFF;
    --text-white-75: rgba(255, 255, 255, 0.75);
    --text-white-50: rgba(255, 255, 255, 0.5);
    
    /* Background Colors */
    --card-bg: rgba(240, 244, 255, 0.9);
    --card-bg-dark: rgba(67, 96, 96, 0.95);
    --navbar-bg: rgba(255, 255, 255, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(240, 244, 255, 0.1);
    
    /* Gradients */
    --overlay-gradient: linear-gradient(135deg, rgba(123, 108, 246, 0.05) 0%, rgba(123, 108, 246, 0) 100%);
    --dark-overlay: linear-gradient(135deg, rgba(67, 96, 96, 0.85), rgba(67, 96, 96, 0.75));
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(67, 96, 96, 0.05);
    --shadow-md: 0 4px 6px rgba(67, 96, 96, 0.1);
    --shadow-lg: 0 10px 20px rgba(67, 96, 96, 0.1);
    --shadow-xl: 0 20px 40px rgba(67, 96, 96, 0.1);
    --shadow-accent: 0 10px 20px rgba(123, 108, 246, 0.1);
    
    /* System Variables */
    --font-primary: 'Inter', sans-serif;
    --transition-speed: 0.3s;
    --card-border-radius: 16px;
    --navbar-height: 80px;
    
    /* Fonts */
    --heading-font: 'Space Grotesk', sans-serif;
    --body-font: 'DM Sans', sans-serif;
}

/* Navigation Styles */
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-item.active > .nav-link {
    color: #BDB1FB !important;
}

/* Marriage Menu Styles */
.nav-link:has(.heart-icon) {
    color: var(--accent-color);
}

/* Heart Separator */
.separator-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px 0;
}

.separator-heart {
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator-line {
    height: 1px;
    background: rgba(123, 108, 246, 0.2);
    flex: 1;
    max-width: 50px;
}

/* Contact Card Styles */
.contact-card {
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(123, 108, 246, 0.1) !important;
}

.contact-card .card-title {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-card .btn-primary {
    background: var(--accent-gradient);
    border: none;
    padding: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease;
    text-transform: none;
}

.contact-card .btn-primary:hover {
    transform: translateY(-2px);
}

.support-traits {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.support-traits span {
    display: inline-block;
    margin: 0 3px;
}

/* Modern UI Elements */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--text-white);
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #1a1f2c, var(--primary-color));
    color: var(--text-white);
}

.bg-gradient-light {
    background: linear-gradient(135deg, var(--background-color), var(--secondary-color));
    color: var(--text-color);
}

.bg-gradient-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
}

.bg-pattern-overlay {
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-repeat: repeat;
}

/* 3D Elements */
.feature-card-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-icon-3d {
    transform: translateZ(20px);
}

.floating-3d-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Modern Timeline */
.timeline-item-modern {
    position: relative;
}

.timeline-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Journey Section */
.journey-image {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.journey-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.journey-stats {
    transform: translateX(30px);
}

/* Expect Cards */
.expect-card-modern {
    text-align: center;
    padding: 2rem;
    border-radius: var(--card-border-radius);
    background: var(--background-color);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-speed) all ease;
}

.expect-icon-bg {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    background: var(--secondary-gradient);
}

/* Interactive Elements */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-accent);
}

.rounded-pill {
    border-radius: 50px;
}

/* Feature Cards */
.feature-card-3d {
    background: var(--background-color);
    border: 1px solid var(--secondary-color);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.feature-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-gradient);
    pointer-events: none;
}

.feature-card-3d {
    color: var(--text-color);
}

.feature-card-3d .text-muted {
    color: var(--text-muted) !important;
}

.feature-card-3d .text-accent {
    color: var(--icon-color);
}

.feature-card-3d i {
    color: var(--icon-color);
    font-size: 2rem;
}

/* Journey Card */
.journey-card {
    border: 1px solid var(--secondary-color);
    box-shadow: var(--shadow-xl);
    background: var(--background-color);
    position: relative;
    overflow: hidden;
    color: var(--text-color);
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-gradient);
    pointer-events: none;
}

.journey-stats {
    background: var(--background-color);
    border: 1px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
    padding: 0.625rem 0.875rem;
    border-radius: 0.75rem;
    width: auto;
    min-width: 200px;
    transform: translateY(-10%);
    bottom: 15% !important;
}

.journey-stats .overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-gradient);
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

.journey-stats .d-flex {
    position: relative;
    z-index: 1;
}

.stats-icon {
    background: var(--icon-color);
    color: var(--text-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stats-icon i {
    font-size: 1rem;
}

.journey-stats .stats-text h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
}

.journey-stats .stats-text p {
    font-size: 0.75rem;
    line-height: 1.2;
    color: var(--accent-color);
}

/* Session Details */
.detail-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1rem;
}

.session-details .card {
    overflow: hidden;
    position: relative;
}

.session-details .card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(123, 108, 246, 0.1) 0%, rgba(123, 108, 246, 0.05) 100%);
    pointer-events: none;
}

/* Timeline Modern */
.timeline-item-modern {
    background: var(--background-color);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid var(--secondary-color);
}

.timeline-item-modern .timeline-icon {
    background: var(--icon-color);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-item-modern .timeline-icon i {
    font-size: 1rem;
}

.timeline-item-modern .timeline-content h4 {
    color: var(--text-color);
    font-size: 0.875rem;
    font-weight: 600;
}

.timeline-item-modern .timeline-content p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Expect Section */
.expect-section .card {
    background: var(--background-gradient);
    border: none;
    box-shadow: var(--shadow-xl);
}

.expect-icon-bg {
    background: var(--accent-color);
    box-shadow: var(--shadow-md);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.expect-icon-bg i {
    font-size: 24px !important;
    color: var(--background-color) !important;
}

.expect-card-modern {
    padding: 1.5rem;
    background: var(--background-color);
    border: 1px solid var(--secondary-color);
    border-radius: 1rem;
    height: 100%;
}

.expect-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.expect-card-modern .text-accent {
    color: var(--text-white) !important;
}

/* Dark Section */
.dark-section {
    background: var(--dark-overlay);
    color: var(--text-white);
    border-radius: 1rem;
    padding: 2rem;
}

.dark-section .text-muted {
    color: var(--text-white-75) !important;
}

.dark-section h3, 
.dark-section h4, 
.dark-section p {
    color: var(--text-white);
}

/* CTA Section */
.cta-section .card {
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
}

.btn-light {
    background: var(--background-color);
    color: var(--primary-color);
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border-color: var(--text-white-50);
    color: var(--text-white);
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--primary-color);
    border-color: var(--text-white);
}

/* Hero Section */
.hero-card {
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-xl);
}

.floating-3d-element i {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Row */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.col-lg-4 {
    display: flex;
    padding: 12px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    background: transparent;
    overflow: hidden;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(7, 11, 20, 0.1);
}

.feature-card-bg {
    position: relative;
    width: 100%;
    height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(7, 11, 20, 0.06);
}

.feature-card-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        rgba(255,255,255,0.75) 0%, 
        rgba(255,255,255,0.85) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
    transition: all var(--transition-speed) ease;
}

.feature-card:hover .feature-card-bg::before {
    background: linear-gradient(180deg, 
        rgba(255,255,255,0.8) 0%, 
        rgba(255,255,255,0.9) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.feature-card-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    z-index: 2;
}

.feature-card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    opacity: 0.9;
    transition: all var(--transition-speed) ease;
    text-align: center;
    display: flex;
    justify-content: center;
}

.feature-card:hover .feature-card-icon {
    color: var(--accent-color);
    transform: scale(1.1);
    opacity: 1;
}

.feature-card-content h4 {
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.feature-card-content p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.85;
}

/* Side Menu Icon Colors */
.about-nav .list-group-item i {
    color: #9CAF88; /* Soft sage green that complements periwinkle */
    transition: color var(--transition-speed);
}

.about-nav .list-group-item:hover i {
    color: var(--accent-color);
}

.about-nav .list-group-item.active i {
    color: var(--accent-color);
}

.navbar-nav .dropdown-toggle:hover {
    color: var(--accent-color) !important;
}

.navbar .dropdown-menu {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .dropdown-item:hover {
    background: var(--accent-gradient);
    color: white !important;
}

/* Global Styles */
body {
    font-family: var(--body-font);
    color: var(--text-color);
    background: var(--background-gradient);
    line-height: 1.6;
    padding-top: var(--navbar-height);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Section Spacing */
.section {
    padding: 120px 0;
    position: relative;
}

.section-lg {
    padding: 160px 0;
}

.section-sm {
    padding: 80px 0;
}

/* Container Modifications */
@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}

/* Spacing Utilities */
.mb-lg {
    margin-bottom: 80px;
}

.mb-md {
    margin-bottom: 40px;
}

.mb-sm {
    margin-bottom: 20px;
}

/* Navbar Styles */
.navbar {
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(240, 244, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    height: var(--navbar-height);
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.navbar-scrolled {
    background: var(--primary-gradient);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .navbar-logo {
    height: 45px;
}

.navbar-nav {
    margin-left: 3rem;
}

.nav-item {
    margin: 0 0.75rem;
}

.navbar-brand h3 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.nav-link {
    font-family: var(--heading-font);
    color: var(--background-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--accent-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: calc(100% - 2rem);
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar-scrolled .nav-link {
    color: var(--background-color) !important;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Dropdown Menu */
.dropdown-menu {
    background: rgba(7, 11, 20, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 244, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-top: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    color: var(--background-color);
    font-family: var(--heading-font);
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--accent-gradient);
    color: var(--background-color);
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 3rem 0;
    margin: 0 -1rem;
}

@media (max-width: 992px) {
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 100%;
    padding: 0;
}

.glass-card-content {
    padding: 2rem;
}

.glass-card-img {
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(7, 11, 20, 0.15);
    border-color: var(--accent-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: inherit;
    animation: kenBurns 20s linear infinite;
    transform-origin: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide.active .hero-content {
    animation: contentScale 20s linear infinite;
    animation-delay: 0.5s;
}

@keyframes kenBurns {
    0% {
        transform: scale(1) translate(0);
    }
    25% {
        transform: scale(1.1) translate(-1%, 1%);
    }
    50% {
        transform: scale(1.15) translate(1%, -1%);
    }
    75% {
        transform: scale(1.1) translate(-1%, -1%);
    }
    100% {
        transform: scale(1) translate(0);
    }
}

@keyframes contentScale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(7,11,20,0.75), rgba(15,23,42,0.65));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    transform-origin: center;
    transition: transform 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 
        -2px -2px 0 #000,
        2px -2px 0 #000,
        -2px 2px 0 #000,
        2px 2px 0 #000,
        0 0 20px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF;
    text-shadow: 
        1px 1px 0 #000,
        -1px 1px 0 #000,
        1px -1px 0 #000,
        -1px -1px 0 #000,
        0 0 10px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.6s;
}

.hero-content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.9s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot.active {
    background: var(--accent);
    transform: scale(1.2);
    border-color: #FFFFFF;
}

/* Event Card */
.event-card {
    background: var(--background-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.event-image {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.event-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #7B6CF6;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(123, 108, 246, 0.3);
}

.event-location {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-location i {
    color: #7B6CF6;
}

.event-card:hover .event-location {
    background: #7B6CF6;
    color: white;
}

.event-card:hover .event-location i {
    color: white;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.event-description {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.event-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    gap: 0.5rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.event-pill i {
    color: var(--accent);
    font-size: 0.875rem;
}

.event-card:hover .event-pill {
    background: var(--accent);
    color: white;
}

.event-card:hover .event-pill i {
    color: white;
}

.event-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.event-link:hover {
    text-decoration: none;
    color: inherit;
}

.event-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.event-buttons .btn {
    flex: 1;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-buttons .btn-outline {
    padding: calc(0.7rem - 2px) calc(1rem - 2px);
}

/* Form Controls */
.form-control {
    background: var(--secondary-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.8rem;
    border-radius: 0.5rem;
    color: var(--text-color);
    transition: var(--transition-speed);
}

.form-control:focus {
    background: white;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(123, 108, 246, 0.2);
}

/* Form Spacing */
.form-section {
    max-width: 640px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Event Cards Row */
.event-cards-row {
    margin: 0 -1.25rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #7B6CF6;
    color: white;
    box-shadow: 0 4px 15px rgba(123, 108, 246, 0.3);
}

.btn-primary:hover {
    background: #6557D3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 108, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background: white;
    border: 2px solid #7B6CF6;
    color: #7B6CF6;
    padding: calc(0.8rem - 2px) calc(2rem - 2px);
    box-shadow: 0 4px 15px rgba(123, 108, 246, 0.1);
}

.btn-outline:hover {
    background: #7B6CF6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 108, 246, 0.2);
    text-decoration: none;
}

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

.btn-lg.btn-outline {
    padding: calc(1rem - 2px) calc(2.5rem - 2px);
}

/* Contact Form Button */
.contact-form .btn-primary {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: #7B6CF6;
    color: white;
    margin-top: 1rem;
}

.contact-form .btn-primary:hover {
    background: #6557D3;
    transform: translateY(-2px);
}

/* Card Content Spacing */
.card-body {
    padding: 2rem;
}

.card-title {
    margin-bottom: 1rem;
}

.card-text {
    margin-bottom: 1.5rem;
}

/* Footer Modifications */
.footer {
    background: var(--primary-gradient);
    color: var(--background-color);
    padding: 5rem 0 2rem;
}

.footer-content {
    margin-bottom: 60px;
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer h5 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links a {
    color: var(--background-color);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* About Page Styles */
.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-hero {
    height: 240px;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-hero-image {
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

.about-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.7;
}

.about-hero-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--background-color));
}

.about-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

.about-breadcrumb .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.about-nav .list-group-item.active {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
}

.about-nav .list-group-item:hover:not(.active) {
    background-color: var(--secondary-color);
    color: var(--accent-color);
}

.about-section {
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

/* FAQ Header Styles */
.faq-icon-wrapper {
    background: #282854;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.faq-icon {
    color: #7B6CF6;
    font-size: 1.5rem;
}

.faq-header {
    color: #F2F1FE;
    font-size: 1.75rem;
    font-weight: 600;
    margin: 0;
    font-family: var(--heading-font);
}

.faq-header-container {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

/* Accordion Styles */
.accordion-button {
    background: #2D3043 !important;
    color: rgba(255, 255, 255, 0.87) !important;
    font-weight: 500;
    border: none !important;
    transition: all var(--transition-speed) ease;
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-button:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #7869EF;
    border-radius: 4px 0 0 4px;
}

.accordion-button:not(.collapsed) {
    background: #2D3043 !important;
    color: rgba(255, 255, 255, 0.87) !important;
    box-shadow: none;
}

.accordion-button:hover {
    background: #33374D !important;
}

.accordion-button::after {
    filter: brightness(0) invert(0.87);
}

.accordion-body {
    background: #1F2237;
    color: #EBEBED;
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
}

.accordion-body p,
.accordion-body span,
.accordion-body li,
.accordion-body div:not(.d-flex):not(.btn) {
    color: #EBEBED !important;
}

.accordion-body .btn {
    color: #FFFFFF !important;
}

.accordion-body strong,
.accordion-body b,
.accordion-body h1,
.accordion-body h2,
.accordion-body h3,
.accordion-body h4,
.accordion-body h5,
.accordion-body h6,
.accordion-body .lead {
    color: #7B6CF6 !important;
}

.accordion-body .fas,
.accordion-body .fa-lg,
.accordion-body i {
    color: #7B6CF6 !important;
}

.accordion-body a {
    color: #7B6CF6;
    text-decoration: none;
}

.accordion-body a:hover {
    color: #6F60E8;
    text-decoration: underline;
}

.accordion-item {
    background: transparent !important;
    border: none !important;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.accordion-collapse {
    border: none;
}

/* Assessment Page Styles */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 34px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border: 2px solid #E8ECFF;
    transition: all 0.4s ease;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 40px;
    left: 3px;
    bottom: 2px;
    background-color: white;
    transition: all 0.4s ease;
    border-radius: 34px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-slider:after {
    position: absolute;
    content: "No";
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s ease;
}

input:checked + .toggle-slider {
    background: var(--accent-gradient);
    border-color: var(--accent-color);
}

input:checked + .toggle-slider:before {
    transform: translateX(42px);
    background-color: white;
}

input:checked + .toggle-slider:after {
    content: "Yes";
    color: white;
    justify-content: flex-start;
    padding-left: 12px;
}

.assessment-item {
    transition: transform 0.3s ease;
}

.assessment-item:hover {
    transform: translateY(-2px);
}

.assessment-item:hover .toggle-slider {
    border-color: var(--accent-color);
}

.assessment-item .form-check-label {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--body-font);
}

.section-title {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}

/* Existing styles continue below */
img[src*='couple-hands.webp'] {
    border-radius: 16px;
}

.footer-link {
    color: var(--background-color);
    text-decoration: none;
    opacity: 0.8;
    margin-left: 2rem;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Quotes Section */
.quotes-section {
    background: var(--primary-gradient);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.quotes-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(123, 108, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(123, 108, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.quote-text {
    font-size: 2rem;
    line-height: 1.5;
    color: var(--background-color);
    font-weight: 300;
    margin-bottom: 2rem;
    font-family: var(--heading-font);
}

.quote-author {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--body-font);
}

.quotes-section .owl-dots {
    margin-top: 2rem;
}

.quotes-section .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
}

.quotes-section .owl-dot.active span {
    background: var(--accent-color);
}

@media (max-width: 768px) {
    .quote-text {
        font-size: 1.5rem;
    }
}

.secondary-nav {
    height: 32px;
    font-family: 'Inter', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1029;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
}

.secondary-nav.nav-hidden {
    transform: translateY(-100%);
}

.secondary-nav a {
    font-size: 0.75rem;
    transition: opacity 0.3s;
    letter-spacing: 0.2px;
}

.secondary-nav a:hover {
    opacity: 0.9;
}

.secondary-nav .dropdown-toggle {
    font-size: 0.75rem;
    padding: 0;
    letter-spacing: 0.2px;
    text-transform: none;
}

.secondary-nav .current-lang {
    text-transform: none;
}

.secondary-nav .dropdown-toggle:focus {
    box-shadow: none;
}

.secondary-nav .dropdown-menu {
    min-width: 160px;
    border-radius: 8px;
    margin-top: 0.5rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
}

.secondary-nav .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.secondary-nav .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Adjust main navbar position */
.navbar.fixed-top {
    top: 32px;
    transition: top 0.3s ease-in-out;
}

.navbar.fixed-top.nav-down {
    top: 0;
}

@media (max-width: 768px) {
    .secondary-nav {
        height: auto;
    }
    
    .secondary-nav .container-fluid {
        padding: 0.25rem 1rem;
    }
    
    /* Adjust main navbar position on mobile */
    .navbar.fixed-top {
        top: 32px;
    }
    
    .navbar.fixed-top.nav-down {
        top: 0;
    }
}
.navbar.navbar-dark {
    z-index: 1028 !important;
}
.navbar .nav-link {
    font-size: 0.85rem !important;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
}
.navbar .dropdown-menu {
    font-size: 0.8rem !important;
}
.dropdown-menu {
    z-index: 1030 !important;
}
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #343a40;
        padding: 1rem;
        margin: 0 -1rem;
    }
}
.dropdown-menu {
    background-color: #343a40;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.dropdown-item {
    color: rgba(255,255,255,.8) !important;
}
.dropdown-item:hover {
    background-color: #23272b;
    color: white !important;
}
.navbar-nav .nav-item {
    margin-left: 1px;
    margin-right: 1px;
}
.nav-btn {
    background: #7B6CF6;
    color: #FFFFFF !important;
    border-radius: 16px;
    padding: 8px 16px !important;
    margin: 0 5px;
    transition: all 0.3s;
    font-weight: 600;
}
.nav-btn:hover {
    background: linear-gradient(to right, #7B6CF6, #6F60E8);
    color: #FFFFFF !important;
    transform: translateY(-5px);
}
.dropdown-menu {
    margin-top: 0;
}
.nav-link.active,
.dropdown-item.active {
    color: var(--accent-color) !important;
    font-weight: 500;
}
.nav-link.dropdown-toggle.active {
    color: var(--accent-color) !important;
}
    /* Mobile menu styling */
    @media (max-width: 991.98px) {
        .navbar-collapse {
            position: fixed;
            top: 80px; /* Match navbar height */
            left: 0;
            right: 0;
            background-color: #070B14;
            padding: 1rem;
            max-height: calc(100vh - 80px);
            overflow-y: auto;
            z-index: 1027;
        }

        .navbar-nav {
            padding: 0.5rem 0;
        }

        .nav-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-item:last-child {
            border-bottom: none;
        }

        .nav-link {
            padding: 0.75rem 0;
            font-size: 1.1rem;
        }

        .dropdown-menu {
            background-color: rgba(255, 255, 255, 0.05);
            border: none;
            border-radius: 8px;
            margin: 0.5rem 0;
            padding: 0.5rem 0;
        }

        .dropdown-item {
            color: rgba(255, 255, 255, 0.8);
            padding: 0.75rem 1rem;
            font-size: 1rem;
        }

        .dropdown-item:hover {
            background-color: rgba(123, 108, 246, 0.1);
            color: #7B6CF6;
        }

        /* Improve dropdown toggle visibility */
        .dropdown-toggle::after {
            float: right;
            margin-top: 0.5rem;
        }

        /* Add animation for dropdown toggle */
        .dropdown-toggle[aria-expanded="true"]::after {
            transform: rotate(180deg);
        }

        .dropdown-toggle::after {
            transition: transform 0.2s ease;
        }
    }

    /* Dropdown hover functionality */
    @media (min-width: 992px) {
        .navbar .nav-item.dropdown {
            position: relative;
        }

        .navbar .nav-item.dropdown::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -20px;
            height: 20px;
            background: transparent;
        }

        .navbar .dropdown-menu {
            display: none;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.15s, visibility 0s;
            margin-top: -1px;
            padding-top: 8px;
        }

        .navbar .nav-item.dropdown:hover > .dropdown-menu,
        .navbar .dropdown-menu:hover,
        .navbar .nav-item.dropdown:focus-within > .dropdown-menu {
            display: block !important;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }

        .navbar .nav-link.dropdown-toggle::after {
            pointer-events: none;
        }

        .navbar .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            right: 0;
            height: 20px;
            background: transparent;
        }
    }

    .navbar .dropdown-menu .dropdown-item:hover {
        background-color: rgba(123, 108, 246, 0.1);
        color: #7B6CF6;
    }