:root {
    /* Modern AI Palette - Light Mode Base with Neon Accents */
    --bg-color: #f8fafc;
    /* Very light cool gray */
    --card-bg: rgba(255, 255, 255, 0.7);
    /* Translucent for glassmorphism */
    --text-primary: #0f172a;
    /* Slate 900 - Deep, readable dark */
    --text-secondary: #475569;
    /* Slate 600 - Softer secondary */

    /* Primary Brand Colors */
    --primary-color: #2563eb;
    /* Vivid Blue */
    --primary-dark: #1e40af;
    --secondary-color: #06b6d4;
    /* Cyan/Teal - "AI" feel */
    --accent-color: #f472b6;
    /* Soft Pink/Purple for highlights */

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-glow: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
    --gradient-dark: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    --gradient-accent: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));

    /* Glassmorphism & Effects */
    --glass-border: 1px solid rgba(255, 255, 255, 0.6);
    --backdrop-blur: blur(12px);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-glow: none;
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 4px 16px rgba(0, 0, 0, 0.1);

    /* Layout */
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --nav-height: 90px;
    --container-width: 1200px;

    /* Training Tracks */
    --track-beginner: #2dd4bf;
    /* Teal 400 */
    --track-intermediate: #3b82f6;
    /* Blue 500 */
    --track-advanced: #8b5cf6;
    /* Violet 500 */

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    background-image:
        radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(37, 99, 235, 0.1) 0px, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Contact Page - White Background Override */
body.contact-page-body {
    background-color: #ffffff !important;
    background-image: none !important;
    background: #ffffff !important;
}

body.contact-page-body::before,
body.contact-page-body::after {
    content: none !important;
    display: none !important;
}

/* Remove all glow effects on contact page */
.contact-page-body .footer.footer-enhanced::after,
.contact-page-body .footer.footer-enhanced::before,
.contact-page-body .hero::before,
.contact-page-body .hero::after {
    content: none !important;
    display: none !important;
    background: none !important;
    background-image: none !important;
}

/* Remove any radial gradients on contact page */
.contact-page-body,
.contact-page-body * {
    --gradient-glow: none;
}

/* Ensure all sections on contact page have white bg */
.contact-page-body .section {
    background: white !important;
}

/* Remove ALL rounded borders from contact page panels */
.contact-page-body .glass-panel-wrapper,
.contact-page-body .location-panel,
.contact-page-body .map-wrapper,
.contact-page-body .map-wrapper iframe,
.contact-page-body .location-grid {
    border-radius: 0 !important;
    background: white !important;
}

/* Ensure html element has no gradients */
html.contact-page-html,
html.contact-page-html body,
.contact-page-body {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}

/* Override any possible pseudo-element on html */
html.contact-page-html::before,
html.contact-page-html::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image hover zoom effect for containers */
div:hover>img,
a:hover>img {
    transform: scale(1.05);
}

/* Section Base Styling */
.section {
    padding: 100px 0;
    position: relative;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 4rem;
    font-weight: 800;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

/* Glassy Buttons - For Footer & Newsletter */
.btn-glass {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 12px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-glass:active,
.btn-glass:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

/* Glassy Primary Button */
.btn-glass-primary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 1px solid white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-glass-primary:hover {
    background: white;
}

.btn-glass-primary:active,
.btn-glass-primary:focus {
    background: rgba(255, 255, 255, 0.85);
    outline: none;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background: var(--primary-color);
    /* Blue Header */
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(37, 99, 235, 0.98);
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: 15px;
    padding: 15px 10px;
    height: 100%;
}

.logo {
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 30px;
}

.logo i {
    color: white;
    font-size: 1.6rem;
}

.logo .logo-text {
    color: white;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 0;
    flex: 1;
}

/* Menu Icon (Hamburger Toggle) - Positioned Right */
.menu-icon-wrapper {
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
}

.menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    cursor: pointer;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.menu-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.menu-icon.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Menu Dropdown */
.menu-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 280px;
    background: linear-gradient(145deg, rgba(30, 60, 140, 0.98) 0%, rgba(15, 30, 80, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 16px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, rgba(30, 60, 140, 0.98) 0%, rgba(30, 60, 140, 0.98) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    transform: rotate(45deg);
}

.menu-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.menu-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.menu-dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--secondary-color);
    font-size: 1rem;
}

.menu-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.nav-link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    color: white;
}

.bar {
    display: block;
    width: 24px;
    height: 2px;
    margin: 6px auto;
    background-color: currentColor;
    transition: 0.3s;
}

/* Navigation Search Form */
.nav-search-form {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.nav-search-form:focus-within {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-search-input {
    background: transparent;
    border: none;
    padding: 6px 12px;
    color: white;
    font-size: 0.85rem;
    width: 140px;
    outline: none;
}

.nav-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.nav-search-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-search-btn:hover {
    background: white;
    color: var(--primary-color);
}

/* Nav Right Section */
.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Glassy Header Buttons - Exact Match to Footer Style */
.btn-header-glass {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-header-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-header-glass:active,
.btn-header-glass:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    outline: none;
}

/* Primary Header Button (Register Now) - Ultra Glassy Gradient Effect */
.btn-header-glass.btn-header-primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(230, 240, 255, 0.9) 100%);
    color: var(--primary-color);
    padding: 10px 24px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 4px 15px rgba(37, 99, 235, 0.3),
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.btn-header-glass.btn-header-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.5),
            transparent);
    transition: left 0.6s ease;
}

.btn-header-glass.btn-header-primary:hover::before {
    left: 100%;
}

.btn-header-glass.btn-header-primary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(240, 248, 255, 1) 100%);
    box-shadow:
        0 6px 20px rgba(37, 99, 235, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        inset 0 -1px 0 rgba(37, 99, 235, 0.15);
    transform: translateY(-2px);
}

.btn-header-glass.btn-header-primary:active,
.btn-header-glass.btn-header-primary:focus {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
    box-shadow:
        0 2px 8px rgba(37, 99, 235, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(0);
    outline: none;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 100px;
    overflow: hidden;
}

/* Abstract blob background */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.05), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: floatBlob 20s infinite alternate;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-50px, 50px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 24px;
    background: linear-gradient(to right, #0f172a, #334155);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

/* 3D Carousel Section */
.carousel-section {
    padding: 100px 0;
    position: relative;
    perspective: 1200px;
    overflow: visible;
    /* modified to show full 3d effect */
}

.carousel-container {
    position: relative;
    width: 280px;
    height: 380px;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: rotate 25s infinite linear;
}

.carousel-container:hover {
    animation-play-state: paused;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    /* Glass card */
    backdrop-filter: var(--backdrop-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s;
}

.carousel-item i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.carousel-item h3 {
    margin-bottom: 8px;
    font-size: 1.25rem;
}

/* Positioning 6 items in a circle */
.carousel-item:nth-child(1) {
    transform: rotateY(0deg) translateZ(350px);
}

.carousel-item:nth-child(2) {
    transform: rotateY(60deg) translateZ(350px);
}

.carousel-item:nth-child(3) {
    transform: rotateY(120deg) translateZ(350px);
}

.carousel-item:nth-child(4) {
    transform: rotateY(180deg) translateZ(350px);
}

.carousel-item:nth-child(5) {
    transform: rotateY(240deg) translateZ(350px);
}

.carousel-item:nth-child(6) {
    transform: rotateY(300deg) translateZ(350px);
}

@keyframes rotate {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

/* Offerings/Tracks */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.offering-card {
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    text-align: left;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    transition: width 0.4s ease;
}

.offering-card:hover {
    transform: translateY(-12px);
}

.offering-card:hover::before {
    width: 8px;
}

.offering-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 28px;
    transition: all 0.4s ease;
}

.offering-card:hover .offering-icon {
    transform: scale(1.1);
}

/* Offering Bullet List Styling */
.offering-bullet-list {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.offering-bullet-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #0f172a !important;
    list-style: none !important;
}

.offering-bullet-list li::before {
    content: '•' !important;
    position: absolute;
    left: 0;
    top: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0f172a !important;
}

.offering-card .offering-bullet-list li {
    color: #0f172a !important;
}

.offering-card .offering-bullet-list li::before {
    color: #0f172a !important;
}

/* AI Training Card - #a8cafb Pastel Blue - Glassy Minimal */
.offering-card.card-training {
    background: linear-gradient(145deg, #a8cafb 0%, #b8d4fc 50%, #c8defe 100%);
    color: #1e3a5f;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.offering-card.card-training::before {
    background: linear-gradient(180deg, #3b82f6 0%, #1d4ed8 100%);
}

.offering-card.card-training .offering-icon {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    color: #1d4ed8;
}

.offering-card.card-training:hover .offering-icon {
    background: rgba(255, 255, 255, 0.7);
    color: #1e40af;
    transform: scale(1.05);
}

.offering-card.card-training h3 {
    color: #0f172a;
}

.offering-card.card-training p,
.offering-card.card-training li {
    color: #0f172a;
}

.offering-card.card-training:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-8px);
}

/* Events & Webinars Card - #c4f9e1 Pastel Green - Glassy Minimal */
.offering-card.card-events {
    background: linear-gradient(145deg, #c4f9e1 0%, #d0fbe8 50%, #dcfdee 100%);
    color: #14532d;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.offering-card.card-events::before {
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
}

.offering-card.card-events .offering-icon {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    color: #16a34a;
}

.offering-card.card-events:hover .offering-icon {
    background: rgba(255, 255, 255, 0.7);
    color: #15803d;
    transform: scale(1.05);
}

.offering-card.card-events h3 {
    color: #0f172a;
}

.offering-card.card-events p,
.offering-card.card-events li {
    color: #0f172a;
}

.offering-card.card-events:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-8px);
}

/* Collaboration Card - #f0e3fe Pastel Purple - Glassy Minimal */
.offering-card.card-collaboration {
    background: linear-gradient(145deg, #f0e3fe 0%, #f4eafe 50%, #f8f0ff 100%);
    color: #4c1d95;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.offering-card.card-collaboration::before {
    background: linear-gradient(180deg, #a855f7 0%, #7c3aed 100%);
}

.offering-card.card-collaboration .offering-icon {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    color: #7c3aed;
}

.offering-card.card-collaboration:hover .offering-icon {
    background: rgba(255, 255, 255, 0.7);
    color: #6d28d9;
    transform: scale(1.05);
}

.offering-card.card-collaboration h3 {
    color: #0f172a;
    text-shadow: none;
}

.offering-card.card-collaboration p,
.offering-card.card-collaboration li {
    color: #0f172a;
    text-shadow: none;
}

.offering-card.card-collaboration:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-8px);
}

/* Impact Card - #a1edfd Pastel Cyan - Glassy Minimal */
.offering-card.card-impact {
    background: linear-gradient(145deg, #a1edfd 0%, #b3f1fe 50%, #c5f5ff 100%);
    color: #0c4a6e;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: none;
}

.offering-card.card-impact::before {
    background: linear-gradient(180deg, #06b6d4 0%, #0891b2 100%);
}

.offering-card.card-impact .offering-icon {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    color: #0891b2;
}

.offering-card.card-impact:hover .offering-icon {
    background: rgba(255, 255, 255, 0.7);
    color: #0e7490;
    transform: scale(1.05);
}

.offering-card.card-impact h3 {
    color: #0f172a;
    text-shadow: none;
}

.offering-card.card-impact p,
.offering-card.card-impact li {
    color: #0f172a;
}

.offering-card.card-impact:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-8px);
}

/* Track Specifics */
.track-beginner .offering-icon {
    background: rgba(45, 212, 191, 0.1);
    color: var(--track-beginner);
}

.track-beginner h3 {
    color: var(--track-beginner);
}

.track-intermediate .offering-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--track-intermediate);
}

.track-intermediate h3 {
    color: var(--track-intermediate);
}

.track-advanced .offering-icon {
    background: rgba(139, 92, 246, 0.1);
    color: var(--track-advanced);
}

.track-advanced h3 {
    color: var(--track-advanced);
}

.offering-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.offering-list li::before {
    content: '\f00c';
    /* FontAwesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #1e40af 0%, #0f172a 100%);
    margin: 0 0 0 0;
    padding: 80px 0;
    border-radius: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.newsletter-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(244, 114, 182, 0.1) 0%, transparent 40%),
        linear-gradient(45deg, rgba(6, 182, 212, 0.2), transparent);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: white;
    margin-bottom: 16px;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    border: none;
    font-size: 1rem;
    outline: none;
}

.btn-subscribe {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: white;
    color: var(--secondary-color);
}

/* Blue Section Shadings */
.section-blue-light {
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%);
}

.section-blue-medium {
    background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%);
}

.section-blue-dark {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
}

/* Featured Event & Announcement Wrapper */
.featured-announcement-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .featured-announcement-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Featured Section Wrapper - Two Column Layout */
.featured-section-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .featured-section-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Promo Image Panel - 400x568px */
.promo-image-panel {
	width: 400px;
	height: 568px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	background-image: url(images/advert2.jpg);
}

.promo-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promo-image-panel:hover img {
    transform: scale(1.05);
}

.promo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.promo-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.promo-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.promo-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.btn-promo {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-promo:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1100px) {
    .promo-image-panel {
        width: 100%;
        height: 400px;
    }
}

/* Virtual AI Training Card - Vertical Minimalistic Glassy Design */
.virtual-training-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
}

/* Image Section */
.virtual-training-image {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
}

.virtual-training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.virtual-training-card:hover .virtual-training-image img {
    transform: scale(1.05);
}

.virtual-training-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.virtual-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Content Section */
.virtual-training-content {
    padding: 35px 40px 40px;
    text-align: center;
}

.virtual-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.virtual-subtitle {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.virtual-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.meta-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

.virtual-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Register Button - Glassy Style */
.btn-virtual-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-virtual-register:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-virtual-register i {
    transition: transform 0.3s ease;
}

.btn-virtual-register:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .virtual-training-content {
        padding: 25px 20px 30px;
    }

    .virtual-title {
        font-size: 1.6rem;
    }

    .virtual-meta {
        flex-direction: column;
        gap: 12px;
    }
}

/* Featured Event Section - Blue Header Color Design */
.featured-event-card-glass {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 50px;
    border: none;
    position: relative;
    overflow: hidden;
}

.featured-event-card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.featured-event-card-glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #60a5fa 0%, #06b6d4 50%, white 100%);
    border-radius: 24px 0 0 24px;
}

.featured-event-inner {
    display: flex;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.featured-event-image {
    flex: 0 0 380px;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.featured-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-event-card-glass:hover .featured-event-image img {
    transform: scale(1.05);
}

.featured-event-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.featured-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 22px;
}

.featured-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.featured-meta i {
    color: #60a5fa;
    font-size: 1.1rem;
}

.featured-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* Register Button - Same as Footer Subscribe Style */
.btn-featured-register {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    width: fit-content;
    border: 1px solid white;
}

.btn-featured-register:hover {
    background: white;
    transform: translateY(-2px);
}

.btn-featured-register:active,
.btn-featured-register:focus {
    background: rgba(255, 255, 255, 0.85);
    outline: none;
}

.btn-featured-register i {
    transition: transform 0.3s ease;
}

.btn-featured-register:hover i {
    transform: translateX(5px);
}

@media (max-width: 900px) {
    .featured-event-inner {
        flex-direction: column;
        gap: 30px;
    }

    .featured-event-image {
        flex: none;
        width: 100%;
        height: 280px;
    }

    .featured-title {
        font-size: 1.8rem;
    }

    .featured-meta {
        flex-direction: column;
        gap: 10px;
    }
}

.event-meta {
    display: flex;
    gap: 24px;
    margin: 20px 0;
    color: var(--text-secondary);
    font-weight: 500;
}

.event-meta i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Announcement Panel */
.announcement-panel {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.announcement-header {
    background: var(--primary-color);
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.announcement-header i {
    font-size: 1.3rem;
}

.announcement-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.announcement-image-holder {
    width: 100%;
    height: 320px;
    position: relative;
    overflow: hidden;
}

.announcement-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.announcement-panel:hover .announcement-image-holder img {
    transform: scale(1.05);
}

.announcement-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: white;
}

.announcement-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.announcement-overlay h4 {
    margin: 0 0 5px;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.announcement-overlay p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.announcement-content {
    padding: 20px;
    flex: 1;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.announcement-item:last-child {
    margin-bottom: 0;
}

.announcement-item:hover {
    background: #eff6ff;
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.announcement-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 30px;
    height: 30px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Team Section */
.team-grid {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.team-grid .team-card {
    flex: 1;
    max-width: calc(100% / 8 - 22px);
}

@media (max-width: 1200px) {
    .team-grid {
        flex-wrap: wrap;
        gap: 20px;
    }

    .team-grid .team-card {
        flex: 0 1 calc(25% - 15px);
        max-width: calc(25% - 15px);
    }
}

@media (max-width: 900px) {
    .team-grid .team-card {
        flex: 0 1 calc(33.33% - 15px);
        max-width: calc(33.33% - 15px);
    }
}

@media (max-width: 600px) {
    .team-grid .team-card {
        flex: 0 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 400px) {
    .team-grid .team-card {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.team-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.08);
}

.team-social {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    display: flex;
    gap: 6px;
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .team-social {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.team-social a {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.team-info {
    padding: 12px 10px;
    text-align: center;
}

.team-info h4 {
    margin: 0 0 3px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-role {
    display: block;
    font-size: 0.65rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
}

.team-info p {
    display: none;
}

/* Who It's For */
.audience-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.audience-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 24px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    color: var(--text-primary);
    border: 1px solid rgba(37, 99, 235, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.audience-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-6px) translateX(5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(6, 182, 212, 0.2);
}

.audience-item:hover::before {
    opacity: 1;
}

.audience-item i {
    color: var(--secondary-color);
    font-size: 1.3rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.audience-item:hover i {
    background: var(--gradient-main);
    color: white;
    transform: scale(1.1);
}

/* Sponsor Block - Plain Style */
.sponsor-block {
    text-align: center;
    padding: 30px 20px;
    background: transparent;
    border-radius: 0;
    margin-top: 0;
    box-shadow: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.sponsor-block::before {
    display: none;
}

.sponsor-logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: white;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Image Placeholders & Banner */
/* Image Placeholders & Banner */
.top-page-banner {
    width: 100%;
    height: 700px;
    background-color: #1e3a8a;
    /* Fallback blue */
    background-image: url('./hero-banner.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.top-page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay for text readability */
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.img-holder {
    width: 100%;
    height: 250px;
    background-color: #e2e8f0;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.img-holder::before {
    content: 'IMAGE';
    position: absolute;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.5;
    letter-spacing: 2px;
}

/* Slogan Section Image */
.slogan-section {
	position: relative;
	background: url('https://images.unsplash.com/photo-1677442136019-21780ecad995?q=80&w=2664&auto=format&fit=crop') no-repeat center center/cover;
	padding: 120px 0;
	text-align: center;
	color: white;
	z-index: 0;
	/* Optional fixed attachment for parallax feel */
	background-attachment: fixed;
	background-image: url(images/Bannerd.jpg);
}

.slogan-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    /* Strong dark blue overlay */
    z-index: -1;
}

/* Footer Refinement */
.footer {
    background: #313131;
    color: #9ca3af;
    padding: 80px 0 40px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Minimalistic Footer */
.footer.footer-minimal {
    padding: 30px 0 20px;
}

.footer-minimal-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-nav {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav a:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon-small {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: #9ca3af;
    font-size: 0.95rem;
}

.social-icon-small:hover {
    background: var(--secondary-color);
    color: white;
}

.copyright-minimal {
    text-align: center;
    color: #6b7280;
    font-size: 0.8rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
    font-size: 1.4rem;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: #6b7280;
    font-size: 0.85rem;
}


/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade Left Animation */
.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade Right Animation */
.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In Animation */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Blur In Animation */
.blur-in {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: opacity 1s ease, filter 1s ease, transform 1s ease;
}

.blur-in.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Staggered Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
}

.back-to-top:active {
    transform: scale(0.95);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ============================================
   ENHANCED FOOTER STYLES
   ============================================ */

/* Enhanced Footer - Main Container */
.footer.footer-enhanced {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: #b8c5d6;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer.footer-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer.footer-enhanced::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Footer Main Grid - 4 Columns */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Brand Section */
.footer-brand .footer-logo {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 20px;
}

.footer-brand .footer-logo i {
    color: white;
    font-size: 1.8rem;
}

.footer-brand .footer-logo span {
    color: white;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #8b9cb5;
    margin-bottom: 25px;
}

/* Enhanced Social Icons */
.footer-social-enhanced {
    display: flex;
    gap: 12px;
}

.social-icon-enhanced {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b9cb5;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon-enhanced:hover {
    background: var(--gradient-main);
    border-color: transparent;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Footer Headings */
.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 2px;
}

/* Footer Links */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 14px;
}

.footer-links-list a {
    color: #8b9cb5;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links-list a i {
    font-size: 0.7rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.footer-links-list a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links-list a:hover i {
    transform: translateX(3px);
}

/* Legal Links with Icons */
.footer-legal a i {
    font-size: 0.9rem;
}

/* Contact List Styling */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(6, 182, 212, 0.2);
    transform: translateX(5px);
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(6, 182, 212, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7a8f;
    font-weight: 600;
}

.contact-details a,
.contact-details span:not(.contact-label) {
    color: #c8d4e6;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-color);
}

/* Mini Newsletter in Footer */
.footer-newsletter-mini {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-newsletter-mini p {
    font-size: 0.85rem;
    color: #8b9cb5;
    margin-bottom: 12px;
}

.btn-footer-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--gradient-main);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-footer-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-footer-subscribe i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.btn-footer-subscribe:hover i {
    transform: translateX(4px);
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 30px;
}

.footer-bottom-left p {
    font-size: 0.85rem;
    color: #6b7a8f;
    margin: 0;
    line-height: 1.6;
}

.footer-bottom-left .sponsor-text {
    margin-top: 5px;
}

.footer-bottom-left strong {
    color: #a0b1c5;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-right a {
    color: #8b9cb5;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: var(--secondary-color);
}

.footer-divider {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
}

/* ============================================
   LEGAL MODALS (Privacy Policy, Terms, Cookies)
   ============================================ */

.legal-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.legal-modal.active {
    display: flex;
    opacity: 1;
}

.legal-modal-content {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes modalSlideIn {
    to {
        transform: translateY(0);
    }
}

.legal-modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.legal-modal-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.legal-modal-header h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.legal-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.legal-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.legal-modal-body {
    padding: 40px;
    max-height: calc(85vh - 120px);
    overflow-y: auto;
}

.legal-modal-body h3 {
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-modal-body h3::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.legal-modal-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-modal-body ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-modal-body li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
}

.legal-modal-body li::marker {
    color: var(--secondary-color);
}

.legal-modal-body a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-modal-body a:hover {
    color: var(--secondary-color);
}

.legal-updated {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem !important;
    color: var(--primary-color) !important;
    font-weight: 600;
    margin-bottom: 20px !important;
}

/* Custom Scrollbar for Modal */
.legal-modal-body::-webkit-scrollbar {
    width: 6px;
}

.legal-modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.legal-modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .hero-btns {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 40px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .carousel-container {
        transform: scale(0.8);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Enhanced Footer Mobile */
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .footer-logo {
        justify-content: center;
    }

    .footer-social-enhanced {
        justify-content: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-links-list a {
        justify-content: center;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        justify-content: center;
    }

    /* Modal Mobile */
    .legal-modal-content {
        max-height: 90vh;
        border-radius: 16px;
    }

    .legal-modal-header {
        padding: 20px;
        flex-wrap: wrap;
    }

    .legal-modal-header h2 {
        font-size: 1.4rem;
    }

    .legal-modal-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .legal-modal-body {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .footer-main-grid {
        gap: 35px;
    }

    .footer.footer-enhanced {
        padding: 60px 0 0;
    }

    .legal-modal {
        padding: 10px;
    }

    .legal-modal-header {
        padding: 15px 20px;
    }

    .legal-modal-body {
        padding: 20px;
    }

    .legal-modal-body h3 {
        font-size: 1rem;
    }

    /* Navigation Mobile */
    .nav-search-form {
        display: none;
    }

    .nav-right {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    /* Featured Event Mobile */
    .featured-event-card-glass {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Contact Page Enhancements - Glassy & Blue Theme
   ========================================================================== */

/* Page Background Overlay */
/* Page Background Overlay - LIGHT THEME */
.contact-page-body {
    background: #f8fafc;
    background-image: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
    color: #1e3a8a;
    text-align: center;
    overflow: hidden;
}

.contact-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    opacity: 0.05;
    /* Very subtle on light bg */
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #1e3a8a, #2563eb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Glassy Content Panels - LIGHT THEME */
.glass-panel-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    color: #334155;
    transition: transform 0.3s ease;
}

.glass-panel-wrapper:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.glass-panel-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1e3a8a;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 15px;
}

/* Contact Form Overrides for Light Theme */
.contact-form-glass .form-group {
    margin-bottom: 20px;
}

.contact-form-glass .form-label {
    color: #475569;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.contact-form-glass .form-input,
.contact-form-glass .form-textarea,
.contact-form-glass .form-select {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.contact-form-glass .form-input:focus,
.contact-form-glass .form-textarea:focus,
.contact-form-glass .form-select:focus {
    background: white;
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.contact-form-glass .form-input::placeholder,
.contact-form-glass .form-textarea::placeholder {
    color: #94a3b8;
}

.contact-form-glass .btn-primary {
    background: #2563eb;
    color: white;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.contact-form-glass .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Contact Info Items */
.contact-info-glass-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #2563eb;
    flex-shrink: 0;
}

.contact-info-text strong {
    display: block;
    color: #1e3a8a;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-info-text a,
.contact-info-text span,
.contact-info-text p {
    color: #64748b;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-text a:hover {
    color: #2563eb;
}

/* Enhanced Social Grid - Light */
.contact-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.social-card-glass {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #475569;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.social-card-glass:hover {
    background: #f8fafc;
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.social-card-glass i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #3b82f6;
}

.social-card-glass span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Image Panel for Contact Page */
.contact-image-panel {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 30px;
    border: 1px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.contact-image-panel:hover img {
    transform: scale(1.05);
}

/* Contact Grid Layout */
.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 900px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .glass-panel-wrapper {
        padding: 30px 20px;
    }

    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-image-panel {
        height: 250px;
    }
}

/* Location Panel (About Page) */
.location-panel {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.map-wrapper {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.location-icon-box {
    width: 44px;
    height: 44px;
    background: #eff6ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-panel {
        padding: 30px 20px;
    }
}

/* Location Grid - Two Column Layout */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Community Page Image Gallery */
.community-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .community-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .community-gallery {
        grid-template-columns: 1fr;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Enhanced Styles */
.footer-enhanced {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #94a3b8;
    padding: 80px 0 30px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-main-grid {
        grid-template-columns: 1fr;
    }
}

.footer-column {
    color: #94a3b8;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #94a3b8;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a:hover {
    color: white;
}

.footer-links-list i {
    font-size: 0.7rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon-wrapper {
    width: 40px;
    height: 40px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details a,
.contact-details span {
    color: #cbd5e1;
    font-size: 0.95rem;
}

.contact-details a:hover {
    color: white;
}

/* Footer Social Icons */
.footer-social-enhanced {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-icon-enhanced {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icon-enhanced:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.sponsor-text {
    font-size: 0.85rem;
    margin-top: 5px;
}

.footer-bottom-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-right a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: white;
}

.footer-divider {
    color: #475569;
}

.footer-newsletter-mini {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter-mini p {
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.btn-footer-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-footer-subscribe:hover {
    background: #2563eb;
    color: white;
}

/* Offerings Grid - 4 columns on same line */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 992px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .offerings-grid {
        grid-template-columns: 1fr;
    }
}

/* Offering Cards Base Style */
.offering-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.offering-card .offering-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.offering-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: left;
}

.offering-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

/* Blue Shades for Each Card */
/* Training - Deep Navy Blue */
.card-training {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    border: none;
}

.card-training .offering-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card-training h3 {
    color: white;
}

.card-training p {
    color: rgba(255, 255, 255, 0.85);
}

/* Events - Royal Blue */
.card-events {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    border: none;
}

.card-events .offering-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card-events h3 {
    color: white;
}

.card-events p {
    color: rgba(255, 255, 255, 0.85);
}

/* Collaboration - Sky Blue */
.card-collaboration {
    background: linear-gradient(135deg, #0284c7 0%, #0ea5e9 100%);
    color: white;
    border: none;
}

.card-collaboration .offering-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card-collaboration h3 {
    color: white;
}

.card-collaboration p {
    color: rgba(255, 255, 255, 0.85);
}

/* Impact - Indigo Blue */
.card-impact {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: white;
    border: none;
}

.card-impact .offering-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card-impact h3 {
    color: white;
}

.card-impact p {
    color: rgba(255, 255, 255, 0.85);
}

/* Offering List Style */
.offering-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offering-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #334155;
}

.offering-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* ============================================
   ABOUT GRID - Modern Minimalistic Style
   ============================================ */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* About Column - What is AI Community World */
.about-column-left {
    padding: 40px;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.08) 0%, rgba(30, 64, 175, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06);
}

.about-column-left h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-column-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* About Image Container - Wider and Bigger */
.about-image-container {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    margin-bottom: 30px;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

/* About Column - Our Approach */
.about-column-right {
    background: linear-gradient(145deg, rgba(6, 182, 212, 0.12) 0%, rgba(45, 212, 191, 0.08) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow:
        0 4px 20px rgba(6, 182, 212, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.about-column-right:hover {
    box-shadow:
        0 8px 30px rgba(6, 182, 212, 0.12),
        0 2px 6px rgba(0, 0, 0, 0.04);
    transform: translateY(-5px);
}

/* ============================================
   OFFERING CARD BULLET LISTS
   ============================================ */

.offering-card ul.offering-bullet-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.offering-card ul.offering-bullet-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
}

.offering-card ul.offering-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 5px;
    font-size: 1.2rem;
    line-height: 1.3;
}

/* White bullet color for dark cards */
.offering-card.card-training ul.offering-bullet-list li::before,
.offering-card.card-events ul.offering-bullet-list li::before,
.offering-card.card-collaboration ul.offering-bullet-list li::before {
    color: rgba(255, 255, 255, 0.8);
}

/* Dark bullet color for light cards */
.offering-card.card-impact ul.offering-bullet-list li::before {
    color: rgba(10, 58, 74, 0.7);
}
