/* ============================================
   SYNERGY 360 - Custom Styles
   Fonts: Roboto (primary), Arial (fallback)
   Color Palette: Yellowish-green to Forest green gradient
   ============================================ */

:root {
    /* Colors */
    --primary-green: #7cb342;
    --dark-green: #2e7d32;
    --light-green: #aed581;
    --yellow-green: #9ccc65;
    --forest-green: #1b5e20;
    --gradient-start: #c5e1a5;
    --gradient-end: #2e7d32;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --bg-dark: #01240a;
    
    /* Typography - Standard Font Sizes */
    --font-size-xl: 26px;
    --font-size-lg: 21px;
    --font-size-md: 16px;
    --font-size-sm: 14px;
    
    /* Line Heights */
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.6;
    
    /* Spacing - Standard Units */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 40px;
    --spacing-xxl: 48px;
    --spacing-xxxl: 60px;
    
    /* Section Padding */
    --section-padding: 60px 0;
    --section-padding-sm: 40px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--text-dark);
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    overflow-x: hidden;
}

/* ============================================
   Typography System - Standardized
   ============================================ */

/* Base Typography */
p {
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

/* Headings - Standardized */
h1, .h1 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

h2, .h2 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

h3, .h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    line-height: var(--line-height-normal);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

h4, .h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    line-height: var(--line-height-normal);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

h5, .h5 {
    font-size: var(--font-size-md);
    font-weight: 600;
    line-height: var(--line-height-normal);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

h6, .h6 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: var(--line-height-normal);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

/* Section Headings - Standardized */
/* Standardized Section Headings */
.section-title-main,
.page_hdng2 h2,
.page_hdng4 h2,
.page_hdng5 h2,
.awards-title,
.elementor-element-b8fb780 .pxl-heading .pxl-item--title,
.StartupEnterprise_headingTop__F9pTz {
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-family: 'Roboto', Arial, sans-serif;
}

/* Subheadings */
.section-subtitle,
.overview-subtitle,
.awards-subtitle {
    font-size: var(--font-size-lg);
    font-weight: 500;
    line-height: var(--line-height-normal);
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

/* Body Text Sizes */
.text-xl {
    font-size: var(--font-size-xl);
}

.text-lg {
    font-size: var(--font-size-lg);
}

.text-md {
    font-size: var(--font-size-md);
}

.text-sm {
    font-size: var(--font-size-sm);
}

/* Standardized Spacing */
.section-padding {
    padding: var(--section-padding);
}

.section-padding-sm {
    padding: var(--section-padding-sm);
}

.mb-standard {
    margin-bottom: var(--spacing-xl);
}

.mb-standard-sm {
    margin-bottom: var(--spacing-lg);
}

/* Header/Navigation */
.header {
    background: #ffffff !important;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.navbar {
    padding: 20px 0;
}

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

.navbar-logo-img {
    max-height: 90px;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

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

.navbar-nav .nav-link {
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: #1a1a1a !important;
    margin: 0 0.3rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1rem;
    position: relative;
    border-radius: 6px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7cb342, #aed581);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: #2e7d32 !important;
    background: rgba(124, 179, 66, 0.08);
}

.navbar-nav .nav-link.active {
    color: #2e7d32 !important;
    background: rgba(124, 179, 66, 0.1);
    font-weight: 700;
}

.navbar-nav .btn-primary {
    background: linear-gradient(135deg, #7cb342 0%, #2e7d32 100%);
    border: none;
    color: #ffffff !important;
    font-weight: 600;
    padding: 0.65rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.navbar-nav .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #aed581 0%, #7cb342 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.navbar-nav .btn-primary:hover::before {
    left: 0;
}

.navbar-nav .btn-primary:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.5);
}

.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.1);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(124, 179, 66, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 26, 26, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Header Responsive Styles */
@media (max-width: 991px) {
    .navbar-logo-img {
        max-height: 55px;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .navbar-nav {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    .navbar-nav .btn-primary {
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .navbar-logo-img {
        max-height: 65px;
    }
    
    .navbar {
        padding: 12px 0;
    }
}

/* Hero/Banner Section - Using Header Image as Background */
.hero-banner-section {
    position: relative;
    width: 100%;
    padding-top: 125px;
    overflow: hidden;
    background: transparent;
    /* Performance optimization */
    contain: layout style paint;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 990px) {
    .hero-banner-section {
        padding-top: 80px;
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    margin: 0;
    padding: 0;
    min-height: 60vh;
}

@media (min-width: 1450px) {
    .hero-image-wrapper {
        min-height: 77vh;
    }
}

.hero-background-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: left center;
    /* Performance optimization - removed will-change and transform for memory efficiency */
    margin: 0;
    padding: 0;
}

/* Hero Video Background */
.hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    margin: 0;
    padding: 0;
    z-index: 0;
    pointer-events: none;
    border: none;
}

@media (min-width: 1450px) {
    .hero-background-video {
        width: 177.77777778vh; /* 16:9 aspect ratio */
        min-width: 100%;
        height: 56.25vw; /* 16:9 aspect ratio */
        min-height: 100%;
    }
    
    .hero-image-wrapper {
        width: 100vw;
        max-width: 100vw;
    }
    
    .hero-banner-section {
        width: 100vw;
        max-width: 100vw;
        overflow: hidden;
    }
}

@media (max-width: 1449px) {
    .hero-background-video {
        width: 177.77777778vh; /* 16:9 aspect ratio */
        min-width: 100%;
        height: 56.25vw; /* 16:9 aspect ratio */
        min-height: 100%;
    }
}

/* Hero Video Overlay - Same as Footer */
.hero-video-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(46 125 50 / 91%), rgb(174 213 129 / 49%));
    z-index: 1;
    opacity: 1;
    pointer-events: none;
}

/* Hero Text Overlay */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 40px 60px;
    width: 100%;
    max-width: 100%;
    pointer-events: none;
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
}

.hero-main-title {
    font-size: 7.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 3rem 0 -0.5rem;
    line-height: 1.1;
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 500;
    font-family: 'Roboto', Arial, sans-serif;
    color: #ffffff;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1.3;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.05em;
}

/* Hero Date and Location Banner */
.hero-date-location {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 30px;
    background: #2e7d32;
    width: 50%;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: 'Roboto', Arial, sans-serif;
}

.hero-date {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.hero-separator {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffffff;
    opacity: 0.9;
}

.hero-location {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .hero-main-title {
        font-size: 5.5rem;
        letter-spacing: 2px;
        margin: 2.5rem 0 -0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-date-location {
        width: 55%;
        padding: 14px 28px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-date,
    .hero-separator,
    .hero-location {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-text-overlay {
        padding: 30px 40px;
    }
    
    .hero-main-title {
        font-size: 4rem;
        letter-spacing: 1.5px;
        margin: 2rem 0 -0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-date-location {
        margin-top: 40px;
        margin-left: auto;
        margin-right: auto;
        padding: 12px 25px;
        width: 85%;
        max-width: none;
        gap: 12px;
    }
    
    .hero-date,
    .hero-separator,
    .hero-location {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-text-overlay {
        padding: 20px 30px;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
        margin: 1.5rem 0 -0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-date-location {
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        padding: 10px 20px;
        width: 90%;
        max-width: none;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .hero-date,
    .hero-separator,
    .hero-location {
        font-size: 1rem;
    }
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 100px;
    pointer-events: none;
}

.hero-content-overlay > * {
    pointer-events: auto;
}

/* Hero Organization Logo - Top Left Position */
.hero-org-logo {
    position: absolute;
    top: 20px;
    left: 30px;
    text-align: left;
    z-index: 10;
}

.ama-logo {
    display: inline-block;
    text-align: left;
}

.ama-text {
    display: inline-block;
    font-size: 2rem;
    font-weight: 900;
    color: #d32f2f;
    line-height: 1;
    margin-right: 0.5rem;
}

.ama-subtitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.ama-region {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #d32f2f;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* Milestone Badge - Top Center Position */
.milestone-badge-wrapper {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.milestone-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.badge-number-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(128, 128, 128, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Hero Main Title - Center Position */
.hero-main-title {
    font-size: 7.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 3rem 0 0.1rem;
    line-height: 1.1;
    font-family: 'Roboto', Arial, sans-serif;
}

/* Hero Tagline - Below Title */
.hero-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.3);
    margin: 0 0 2rem;
    font-family: 'Roboto', Arial, sans-serif;
}

/* Hero CTA Button - Left Center Position */
.btn-hero-register {
    display: inline-block;
    background: #2e7d32;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.875rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-family: 'Roboto', Arial, sans-serif;
}

.btn-hero-register:hover {
    background: #1b5e20;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.5), 0 4px 12px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Hero Event Details - Bottom Left Position */
.hero-event-details {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 10;
}

.event-date-location {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(46, 125, 50, 0.9);
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    font-family: 'Roboto', Arial, sans-serif;
}

.milestone-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.badge-number {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 80px;
    font-size: 2rem;
    font-weight: 900;
    margin: 0.5rem 0;
}

.hero-section h1 {
    font-size: 5rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.event-details {
    font-weight: 500;
}

.btn-hero-cta {
    background: var(--forest-green);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-cta:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Statistics Bar */
.stats-bar {
    background: rgba(255, 255, 255, 0.98);
    padding: 2.5rem 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(46, 125, 50, 0.1);
}

.stat-item {
    padding: 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: 'Roboto', Arial, sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Partners Logo Section - Exact Copy from Reference */
.elementor-element-ba2bc77:not(.elementor-motion-effects-element-type-background), 
.elementor-element-ba2bc77 > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: #ffffff;
}

.elementor-element-ba2bc77 > .elementor-background-overlay {
    display: none;
}

.elementor-element-ba2bc77 > .elementor-container {
    max-width: 1330px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 15px;
    padding-right: 15px;
}

/* Remove left/right padding for partners carousel to allow full width */
.elementor-element-ba2bc77 .elementor-element-733b9ad {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    max-width: 100vw;
}

.elementor-element-ba2bc77 .elementor-element-733b9ad > .elementor-widget-container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}

.elementor-element-ba2bc77 .elementor-element-733b9ad .pxl-carousel-inner,
.elementor-element-ba2bc77 .elementor-element-733b9ad .pxl-swiper-container,
.elementor-element-ba2bc77 .elementor-element-733b9ad .partners-swiper-1 {
    width: 100%;
    max-width: 100%;
}

.elementor-element-ba2bc77 {
    position: relative;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 0px;
    margin-bottom: 10px;
    overflow: hidden;
    padding-bottom: 80px;
}

.elementor-element-b8fb780 > .elementor-widget-container {
    margin: 50px 0px 0px 0px;
}

.elementor-element-b8fb780 .pxl-heading {
    text-align: center;
}

.elementor-element-b8fb780 .pxl-heading .pxl-heading--inner {
    justify-content: center;
}

.elementor-element-b8fb780 .pxl-heading .pxl-heading--inner .pxl-item--subtitle span {
    justify-content: center;
}

.elementor-element-b8fb780 .pxl-heading .pxl-item--title {
    color: #2e7d32;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: var(--line-height-tight);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.elementor-element-733b9ad .pxl-partner-carousel .pxl-item--logo {
    width: 170px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
}

.elementor-element-733b9ad .pxl-partner-carousel .pxl-item--logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.elementor-element-359bfd5 .pxl-partner-carousel .pxl-item--logo {
    width: 170px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
}

.elementor-element-359bfd5 .pxl-partner-carousel .pxl-item--logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.elementor-element-d904209 > .elementor-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Past partners carousel uses its own swiper instance */
.partners-swiper-2 {
    width: 100%;
}

/* Hide second partners carousel (single row requirement) */

.elementor-element-d904209 {
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin-top: 40px;
    margin-bottom: 80px;
}

.elementor-element-d904209 > .elementor-background-overlay {
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/* Elementor Base Styles */
.elementor-section {
    position: relative;
}

.elementor-section-boxed {
    max-width: 100%;
}

.elementor-section-stretched {
    width: 100%;
}

.elementor-container {
    position: relative;
    z-index: 2;
}

.elementor-column-gap-extended {
    --column-gap: 30px;
}

.elementor-widget-wrap {
    display: flex;
    flex-direction: column;
}

.elementor-widget {
    margin-bottom: 0;
}

.elementor-widget-container {
    position: relative;
}

/* PXL Heading Styles */
.pxl-heading {
    position: relative;
}

.pxl-heading--inner {
    display: flex;
    flex-direction: column;
}

.pxl-item--title {
    margin: 0;
}

.pxl-color-custom {
    color: inherit;
}

/* Swiper Carousel Styles - Exact from Reference */
.pxl-swiper-sliders {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pxl-carousel-inner {
    position: relative;
    width: 100%;
}

.pxl-swiper-container,
.partners-swiper-1,
.partners-swiper-2 {
    width: 100%;
    overflow: hidden;
}

.pxl-swiper-wrapper,
.partners-swiper-1 .swiper-wrapper,
.partners-swiper-2 .swiper-wrapper {
    display: flex;
    align-items: center;
    gap: 30px !important;
}

.pxl-swiper-slide,
.partners-swiper-1 .swiper-slide,
.partners-swiper-2 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    flex-shrink: 0;
}

.pxl-item--inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    min-height: 70px;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.pxl-item--inner:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.pxl-item--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Remove spacing around partner logos so slides sit flush */
.our.partners .pxl-item--inner,
.partners-swiper-1 .pxl-item--inner,
.partners-swiper-2 .pxl-item--inner {
    padding: 0;
}

/* Remove padding inside partner logo boxes to eliminate residual gaps */
.our.partners .pxl-item--logo,
.partners-swiper-1 .pxl-item--logo,
.partners-swiper-2 .pxl-item--logo {
    padding: 0;
}

.partners-swiper-1,
.partners-swiper-2 {
    --swiper-space-between: 30px;
    padding: 0 !important;
}

.partners-swiper-1 .swiper-slide,
.partners-swiper-2 .swiper-slide {
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

.pxl-item--logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.pxl-item--logo img {
    display: block !important;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    visibility: visible !important;
    opacity: 1 !important;
}

.pxl-item--inner:hover .pxl-item--logo img {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Elementor Inner Section */
.elementor-inner-section {
    position: relative;
}

.elementor-column {
    position: relative;
}

.elementor-col-100 {
    width: 100%;
}

.elementor-element-populated {
    position: relative;
}

/* Responsive adjustments for partners */
@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .partner-logo-item {
        padding: 1.5rem;
        min-height: 100px;
    }
}

/* Section Titles - Standardized */
.section-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: var(--spacing-lg);
    position: relative;
    display: inline-block;
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
    line-height: var(--line-height-tight);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 2px;
}

/* Overview Section */
.format-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.format-card i {
    color: var(--dark-green);
}

/* Enhanced Overview Section */
.overview-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.overview-section-spacing {
    padding: 2rem 0;
}

.overview-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.overview-section .row {
    --bs-gutter-x: 1.5rem !important;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.overview-section .col-lg-12,
.overview-section .col-lg-10 {
    --bs-gutter-x: 1.5rem !important;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.overview-section .awards-content-enhanced {
    padding: 3.5rem;
    margin: 0;
}

.overview-section .col-lg-10 {
    flex: 0 0 100%;
    max-width: 100%;
}

.overview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.section-title-main {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: var(--spacing-xl);
    position: relative;
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
    line-height: var(--line-height-tight);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(124, 179, 66, 0.2);
}

.overview-hero-text {
    font-size: var(--font-size-md);
    font-weight: 400;
    color: var(--text-dark);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-sm);
}

.overview-hero-text strong {
    color: var(--dark-green);
    font-weight: 600;
}

.overview-subtitle {
    font-size: var(--font-size-md);
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.highlights-badge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.badge-item {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white);
    color: var(--dark-green);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.badge-item:hover {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

/* Enhanced Format Cards */
.format-card-enhanced {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(124, 179, 66, 0.1);
}

.format-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--dark-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.format-card-enhanced:hover::before {
    transform: scaleX(1);
}

.format-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(124, 179, 66, 0.2);
    border-color: var(--primary-green);
}

.format-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
}

.format-card-enhanced:hover .format-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
}

.format-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.format-card-enhanced:hover .format-icon-wrapper::after {
    opacity: 0.3;
}

.format-icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
    z-index: 1;
}

.format-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    line-height: 1;
    font-family: 'Roboto', Arial, sans-serif;
}

.format-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 1rem;
    font-family: 'Roboto', Arial, sans-serif;
}

.format-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Overview Section */
@media (max-width: 768px) {
    .section-title-main {
        font-size: 2rem;
    }
    
    .overview-hero-text {
        font-size: 1.1rem;
    }
    
    .overview-subtitle {
        font-size: 1rem;
    }
    
    .badge-item {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .format-card-enhanced {
        padding: 2rem 1.5rem;
    }
    
    .format-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .format-icon-wrapper i {
        font-size: 1.5rem;
    }
    
    .format-number {
        font-size: 2rem;
    }
    
    .format-title {
        font-size: 1.1rem;
    }
}

/* Key Discussion Points - Reference Style */
.discussion-card-ref {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

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

.discussion-image {
    width: 100%;
    height: 250px;
    min-height: 250px;
    object-fit: cover;
    display: block;
}

.discussion-content {
    padding: 1.5rem;
}

.discussion-content h4 {
    color: var(--dark-green);
    font-weight: 600;
    font-size: var(--font-size-lg);
    line-height: var(--line-height-normal);
    margin: 0 0 var(--spacing-sm);
}

/* Key Discussion Points List */
.key-discussion-list {
    max-width: 900px;
    margin: 0 auto;
}

.discussion-point-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.discussion-point-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    transform: translateX(5px);
}

.discussion-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-green);
    min-width: 50px;
    line-height: 1;
}

.discussion-text h4 {
    color: var(--dark-green);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-normal);
}

.discussion-text p {
    color: var(--text-light);
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    margin: 0;
}

/* Speakers Section */
.speaker-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
    border-color: var(--primary-green);
}

.speaker-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--light-green);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.speaker-info {
    padding: 1.5rem;
    text-align: center;
}

.speaker-info h4 {
    color: var(--dark-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.speaker-designation {
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.speaker-company {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Who Should Attend - Reference Style */
.listing-design.design-style5 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px 16px;
}

.listing-design.design-style5 li {
    border-radius: 20px;
    border: 1px solid #D91C5C;
    color: #D91C5C;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    padding: 25px 20px !important;
    text-transform: capitalize;
    text-align: center;
    background: var(--white);
    transition: all 0.3s ease;
    position: relative;
}

.listing-design.design-style5 li:hover {
    background: #D91C5C;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(217, 28, 92, 0.3);
}

.listing-design.design-style5 li:before {
    display: none !important;
}

.listing-design.design-style5 li:after {
    display: none !important;
}

/* Agenda Section - Reference Style */
.mb-medium {
    position: relative;
    padding-bottom: 60px;
}

.mb-medium:before {
    position: absolute;
    content: '';
    background: linear-gradient(90deg, rgba(46, 125, 50, 0.00) 0.04%, var(--dark-green) 51.03%, rgba(46, 125, 50, 0.00) 100.04%);
    height: 1px;
    width: 100%;
    max-width: 1170px;
    bottom: 0px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 3;
}

.page_hdng5 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.page_hdng5 h1,
.page_hdng5 h2 {
    font-variant-numeric: lining-nums proportional-nums;
    font-style: normal;
    font-weight: 700;
    font-size: var(--font-size-xl);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--text-dark);
}

/* Removed decorative underline before agenda headings */

/* Agenda section heading - white text on dark background */
.sec-mdl-agnd.dt-3 .page_hdng5 h2 {
    color: #2e7d32;
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: var(--line-height-tight);
    text-align: center;
    font-family: 'Roboto', Arial, sans-serif;
}

/* underline removed */

.tab-strip {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    gap: 1rem;
}

.tab-strip.hide {
    display: none;
}

.tab-strip li {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-green);
    transition: all 0.3s ease;
}

.tab-strip li.current,
.tab-strip li.active {
    background: var(--dark-green);
    color: var(--white);
}

/* Agenda List - Reference Style */
.agenda-list-ref {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agenda-list-ref li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.agenda-list-ref li:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.agenda-list-ref li .time {
    min-width: 180px;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
    flex-shrink: 0;
}

.agenda-list-ref li h3 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.agenda-list-ref li .more {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    cursor: pointer;
    min-width: 30px;
    text-align: center;
    user-select: none;
    transition: transform 0.3s ease;
}

.agenda-list-ref li.parentbox.active .more {
    transform: rotate(0deg);
}

.agenda-list-ref li.parentbox.active {
    background: #f8f9fa;
}

.agenda-list-ref li .spkrs {
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.agenda-list-ref li .spkrs span {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.agenda-list-ref li .spkrs img,
.agenda-list-ref li .spkrs .agenda-lazy-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.agenda-list-ref li .spkrs h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--dark-green);
}

.agenda-list-ref li .spkrs p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.agenda-list-ref li.last {
    border-bottom: none;
}

/* Track Selection */
.track-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.track-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.track-icon i {
    font-size: 2rem;
    color: var(--white);
}

.track-card h4 {
    color: var(--dark-green);
    font-weight: 600;
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    line-height: var(--line-height-normal);
}

.track-card.selected {
    border-color: var(--dark-green);
    background: linear-gradient(135deg, rgba(197, 225, 165, 0.1), rgba(46, 125, 50, 0.1));
}

/* Awards Section */
/* Awards Section - Enhanced */
.awards-section {
    background: #f8f9fa;
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.awards-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 94, 32, 0.70);
    -webkit-mask-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    mask-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    mix-blend-mode: multiply;
    opacity: 0.72;
    z-index: 0;
    pointer-events: none;
}

.awards-section > * {
    position: relative;
    z-index: 1;
}

.awards-header {
    margin-bottom: 3rem;
}

.awards-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7cb342 0%, #aed581 100%);
    color: #ffffff;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 30px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-lg);
}

.awards-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 10px;
    position: relative;
    line-height: var(--line-height-tight);
}

.awards-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 15px;
    line-height: var(--line-height-normal);
}

.awards-content-enhanced {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(124, 179, 66, 0.1);
}

.awards-intro {
    margin-bottom: 2rem;
}

.awards-intro-text {
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
}

.awards-intro-text strong {
    color: var(--dark-green);
    font-weight: 600;
}

.awards-description {
    margin-bottom: 2rem;
}

.awards-description p {
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.awards-gallery {
    margin-top: 2.5rem;
}

.awards-slider-header {
    gap: 1rem;
}

.awards-gallery-title {
    color: var(--dark-green);
    font-size: 1.35rem;
    font-weight: 700;
}

.awards-gallery-subtitle {
    color: var(--text-light);
    font-size: var(--font-size-sm);
}

.awards-swiper {
    padding: 8px 0 16px;
}

.awards-swiper .swiper-slide {
    height: auto;
}

.award-slide-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 1px solid rgba(124, 179, 66, 0.15);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: all 0.3s ease;
}

.award-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.award-slide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(124, 179, 66, 0.2);
}

#awardees-showcase {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

#awardees-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 94, 32, 0.70);
    -webkit-mask-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    mask-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    mix-blend-mode: multiply;
    opacity: 0.72;
    z-index: 0;
    pointer-events: none;
}

#awardees-showcase > * {
    position: relative;
    z-index: 1;
}

.awards-swiper-nav button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(124, 179, 66, 0.35);
    background: #ffffff;
    color: var(--dark-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.awards-swiper-nav button:hover {
    background: var(--dark-green);
    color: #ffffff;
    border-color: var(--dark-green);
}

/* Awards Lightbox */
.awards-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.awards-lightbox.active {
    display: flex;
}

.awards-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.awards-lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
    padding: 12px;
}

.awards-lightbox__image-wrap {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
    max-width: 80vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.awards-lightbox__image-wrap img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.awards-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    color: #333;
    box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.awards-lightbox__close:hover {
    background: var(--dark-green);
    color: #fff;
}

.awards-lightbox__nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #333;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.awards-lightbox__nav:hover {
    background: var(--dark-green);
    color: #fff;
}

.awards-lightbox__prev {
    order: 0;
}

.awards-lightbox__next {
    order: 2;
}

.awards-lightbox__image-wrap {
    order: 1;
}

@media screen and (max-width: 767px) {
    .awards-lightbox__content {
        flex-direction: column;
        gap: 8px;
    }
    
    .awards-lightbox__nav {
        position: static;
        width: 40px;
        height: 40px;
    }
    
    .awards-lightbox__image-wrap img {
        max-height: 60vh;
    }
}

.awards-list {
    list-style: none;
    padding-left: 0;
    margin: var(--spacing-md) 0;
}

.awards-list li {
    font-size: var(--font-size-md);
    line-height: var(--line-height-relaxed);
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
    padding-left: 1.5rem;
    position: relative;
}

.awards-list li strong {
    font-weight: 600;
    color: var(--text-dark);
}

.awards-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--dark-green);
    font-weight: 600;
    font-size: 1.2em;
}

.award-highlight-card {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.05) 0%, rgba(174, 213, 129, 0.05) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(124, 179, 66, 0.15);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.award-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(124, 179, 66, 0.2);
    border-color: #7cb342;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7cb342 0%, #aed581 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #ffffff;
    font-size: 1.8rem;
}

.award-highlight-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.award-highlight-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .awards-title {
        font-size: 2.2rem;
    }
    
    .awards-subtitle {
        font-size: 1.1rem;
    }
    
    .awards-content-enhanced {
        padding: 2.5rem;
    }

    .overview-section .awards-content-enhanced {
        padding-inline: 1rem; /* 40% of 2.5rem */
    }
    
    .awards-swiper-nav button {
        width: 38px;
        height: 38px;
    }
}

@media screen and (max-width: 767px) {
    .awards-title {
        font-size: 1.8rem;
    }
    
    .awards-intro-text {
        font-size: 1rem;
    }
    
    .awards-content-enhanced {
        padding: 2rem;
    }

    .overview-section .awards-content-enhanced {
        padding-inline: 0.8rem; /* 40% of 2rem */
    }
    
    .award-highlight-card {
        margin-bottom: 1.5rem;
    }
    
    .awards-gallery-title {
        font-size: 1.15rem;
    }
    
    .awards-gallery-subtitle {
        font-size: 0.9rem;
    }
    
    .awards-swiper {
        padding: 0;
    }
    
}

/* Footer - Reference Style */
.footer-section {
    background: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/footer-bg.jpg') center left;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgb(46 125 50 / 78%), rgb(46 125 50));
    z-index: 0;
    pointer-events: none;
}

/* Footer background behind speakers section */
section#speakers {
    position: relative;
}

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

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

.footer-content {
    padding-bottom: 20px;
}

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

.footer-logo-img {
    max-height: 100px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
}

.celebration-badge {
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    padding: 5px;
    flex-shrink: 0;
}

.footer-logo h4 {
    color: #f1f8e9;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo .text-danger {
    color: #e8f5e9 !important;
}

.footer-text {
    color: #f9fff8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 14px;
}

.footer-text p {
    margin-bottom: 0.75rem;
    color: #f9fff8;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social-icon span {
    margin-right: 0.5rem;
    color: #f9fff8;
    font-weight: 500;
}

.footer-social-icon .social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-social-icon .social-icon:hover {
    background: #ffffff;
    color: #2e7d32;
    transform: translateY(-3px);
    border-color: #ffffff;
}

.footer-widget-heading h3 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: #f1f8e9;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Ensure footer inline links stay light even with utility classes */
.footer-section .footer-links.list-inline a,
.footer-section .footer-links.list-inline a.text-dark {
    color: #f1f8e9 !important;
}

.footer-section .footer-links.list-inline a:hover {
    color: #ffffff !important;
}

.contact-widget .footer-text p {
    color: #f9fff8;
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.contact-widget .footer-text p strong {
    color: #ffffff;
    font-weight: 600;
}

.contact-widget .footer-text i {
    color: #ffffff;
    width: 20px;
}

.copyright-text {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    color: #f1f8e9;
    font-size: 14px;
}

.copyright-text p {
    color: #f1f8e9;
    margin: 0;
}

/* Contact Section Styles */
.contact-section {
    padding: 0px 0 80px 0;
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Left Panel: Contact Information */
.contact-info-panel {
    background: #2e7d32;
    padding: 60px 40px;
    color: #fff;
    position: relative;
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.95));
    z-index: 0;
    pointer-events: none;
}

.contact-info-panel > * {
    position: relative;
    z-index: 1;
}

.contact-info-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-intro {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-intro-text {
    color: #fff;
}

.contact-phone-icon {
    display: inline-flex;
    align-items: center;
}

.phone-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.contact-phone-number {
    color: #fff;
    font-weight: 500;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-detail-link {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-detail-link:hover {
    opacity: 0.8;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.mobile-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-icon svg path {
    fill: #fff;
    stroke: #fff;
}

.contact-detail-text {
    color: #fff;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-detail-text strong {
    color: #fff;
    font-weight: 600;
}

.contact-map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-map {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

/* Contact Enquiry Blocks */
.contact-enquiry-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}

.contact-enquiry-item {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.contact-enquiry-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-enquiry-line {
    color: #fff;
    margin: 6px 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-enquiry-line a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-enquiry-line a::after {
    content: '';
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E") no-repeat center center;
    background-size: contain;
}

.contact-enquiry-line a:hover {
    color: #e8f5e9;
}

/* Right Panel: Contact Form */
.contact-form-panel {
    padding: 60px 40px;
    background: #fff;
}

.contact-form-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 30px;
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row:first-child {
    margin-top: 0;
}

.form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group + .form-group {
    margin-top: 0;
}

.form-col-50 {
    flex: 0 0 calc(50% - 10px);
}

.form-col-100 {
    flex: 0 0 100%;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.required-asterisk {
    color: #d32f2f;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: none;
    border-bottom: 2px solid var(--primary-green);
    background: transparent;
    font-size: 0.95rem;
    color: #333;
    transition: border-color 0.3s ease;
    outline: none;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-bottom-color: var(--dark-green);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-select-wrapper {
    position: relative;
}

.form-select-wrapper::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--primary-green);
    pointer-events: none;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.form-select option {
    padding: 10px;
}

.form-submit-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.form-submit-btn {
    background: #2f7d33;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: inherit;
}

.form-submit-btn:hover {
    background: #25642a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 125, 51, 0.35);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-submit-btn:disabled {
    background: #9e9e9e;
    cursor: not-allowed;
    transform: none;
}

.contact-form-message {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
}

.contact-form-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.contact-form-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-panel {
        padding: 40px 30px;
    }
    
    .contact-form-panel {
        padding: 40px 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 24px;
    }
    
    .form-col-50 {
        flex: 0 0 100%;
    }
    
    .form-group {
        margin-bottom: 0;
    }
    
    /* Add spacing above second field in each row on mobile */
    .form-row .form-group:not(:first-child) {
        margin-top: 20px;
    }
    
    .form-label {
        margin-top: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 0 0 60px 0;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        padding: 30px 20px;
    }
    
    .contact-info-title {
        font-size: 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        margin-bottom: 28px;
    }
    
    .form-group {
        margin-bottom: 0;
    }
    
    /* Add spacing above second field in each row on mobile */
    .form-row .form-group:not(:first-child) {
        margin-top: 24px;
    }
    
    .form-label {
        margin-top: 0;
        margin-bottom: 12px;
    }
    
    .form-submit-wrapper {
        justify-content: stretch;
    }
    
    .form-submit-btn {
        width: 100%;
    }
}

/* Newsletter Form Styles - Matching Footer Theme */
.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    font-size: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-submit-btn {
    width: 100%;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.newsletter-submit-btn:hover {
    background: #ffffff;
    color: #2e7d32;
    transform: translateY(-3px);
    border-color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.newsletter-submit-btn:active {
    transform: translateY(0);
}

.newsletter-submit-btn:disabled {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    transform: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-download-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-download-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.15);
}

.footer-download-btn:active {
    transform: translateY(1px);
}

.newsletter-message {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
}

/* Award tabs layout */
.award-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.award-card {
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
}

.award-card-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.award-card-body {
    padding: 28px 28px 32px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.award-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 10px;
}

.award-card-tagline {
    font-size: 1rem;
    color: #3c3c3c;
    margin-bottom: 22px;
}

.award-card-cta {
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.award-apply-btn {
    display: block;
    width: 100%;
    padding: 12px 28px;
    background: #2e7d32;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: all 0.25s ease;
    text-decoration: none;
}

.award-apply-btn:hover {
    background: #25642a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(46, 125, 50, 0.35);
}

@media (max-width: 768px) {
    .award-cards-grid {
        grid-template-columns: 1fr;
    }

    .award-card-image img {
        height: 200px;
    }

    .award-card-body {
        padding: 22px 20px 26px;
    }
}

.newsletter-message.success {
    background: rgba(255, 255, 255, 0.15);
    color: #f1f8e9;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.newsletter-message.error {
    background: rgba(255, 255, 255, 0.15);
    color: #ffebee;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.copyright-text a {
    color: #f1f8e9;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.copyright-text a:hover {
    color: #ffffff;
}

.footer-social a {
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-green) !important;
    transform: translateY(-3px);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-info i {
    color: var(--primary-green);
}

/* Buttons */
.btn-primary {
    background: var(--dark-green);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--forest-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-main-title {
        font-size: 3rem;
        letter-spacing: 2px;
        margin: 2rem 0 1rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        letter-spacing: 2px;
        margin: 0 0 1.5rem;
    }
    
    .hero-org-logo {
        top: 10px;
        left: 15px;
    }
    
    .ama-text {
        font-size: 1.5rem;
    }
    
    .ama-subtitle {
        font-size: 0.65rem;
    }
    
    .ama-region {
        font-size: 0.6rem;
    }
    
    .milestone-badge-wrapper {
        top: 10px;
    }
    
    .milestone-badge {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .badge-text {
        font-size: 0.65rem;
    }
    
    .badge-number-circle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        line-height: 35px;
    }
    
    .btn-hero-register {
        font-size: 0.9rem;
        padding: 0.75rem 2rem;
    }
    
    .hero-event-details {
        bottom: 15px;
        left: 15px;
    }
    
    .event-date-location {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-image-wrapper {
        height: 20vh;
    }
    
    .hero-background-image {
        object-position: left center;
    }
    
    .hero-content-overlay {
        padding: 80px 0 60px;
    }
    
    /* Key Discussion Points Mobile */
    .discussion-card-ref {
        margin-bottom: 1.5rem;
    }
    
    .discussion-point-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .discussion-number {
        min-width: auto;
        font-size: 1.5rem;
    }
    
    /* Who Should Attend Mobile */
    .listing-design.design-style5 {
        grid-template-columns: 1fr;
    }
    
    /* Agenda Mobile */
    .agenda-list-ref li {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .agenda-list-ref li .time {
        min-width: auto;
        font-size: 0.9rem;
        color: #1a1a1a;
    }
    
    .agenda-list-ref li h3 {
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer-widget-heading h3 {
        font-size: 1rem;
    }
    
    .footer-social-icon {
        flex-wrap: wrap;
    }
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .agenda-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .agenda-time {
        min-width: auto;
    }
    
    .stats-bar {
        padding: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Gallery Section - Grid Layout */
.gallery-grid-section {
    position: relative;
    padding: 50px 0 0px;
    overflow: hidden;
    background: #f8faf8;
}

/* Gallery Swiper Overrides */
.gallery-grid-header {
    margin-bottom: 16px;
    padding: 0 24px;
    gap: 12px;
}

.gallery-grid-header h2 {
    color: #2e7d32;
    text-align: left;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: var(--line-height-tight);
}

.gallery-grid-nav button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(124, 179, 66, 0.35);
    background: #ffffff;
    color: #2e7d32;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.gallery-grid-nav button:hover {
    background: var(--dark-green);
    color: #ffffff;
    border-color: var(--dark-green);
}

.gallery-grid-swiper {
    padding: 0 0 12px;
}

.gallery-grid-swiper .swiper-slide {
    height: auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-grid-section .container {
    max-width: 1200px;
    padding-left: 32px;
    padding-right: 32px;
}

.gallery-header-container {
    margin-left: 10%;
    margin-right: 10%;
}

@media (max-width: 992px) {
    .gallery-header-container {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (max-width: 768px) {
    .gallery-header-container {
        margin-left: 16px;
        margin-right: 16px;
    }
}

@media (max-width: 768px) {
    .gallery-grid-section {
        padding: 50px 0 0px;
    }
    
    .gallery-grid-nav button {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .gallery-grid-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 10px;
    }
    
    .gallery-grid-nav {
        align-self: flex-end;
    }
}

/* Agenda Dark Theme */
.agenda-dark {
    position: relative;
    background: #2e7d32;
    color: #ffffff;
}

.agenda-dark .partners-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9), rgba(46, 125, 50, 0.95));
    z-index: 0;
}

.agenda-dark .common_section,
.agenda-dark .row,
.agenda-dark .col-md-12 {
    position: relative;
    z-index: 1;
}

.agenda-dark .page_hdng5 h2,
.agenda-dark h3,
.agenda-dark h4,
.agenda-dark h5,
.agenda-dark h6 {
    color: #ffffff;
}

.agenda-dark.sec-mdl-agnd.dt-3 {
    background: #2e7d32 !important;
}

.agenda-dark.sec-mdl-agnd.dt-3 ul.tab-strip li {
    color: rgba(255, 255, 255, 0.75);
}

.agenda-dark.sec-mdl-agnd.dt-3 ul.tab-strip li.current,
.agenda-dark.sec-mdl-agnd.dt-3 ul.tab-strip li:hover {
    color: #ffffff;
}

.agenda-dark.sec-mdl-agnd.dt-3 .tabcontent ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.agenda-dark.sec-mdl-agnd.dt-3 .tabcontent ul li h3 {
    color: #ffffff;
}

.agenda-dark.sec-mdl-agnd.dt-3 .tabcontent ul li span.time {
    color: #ffffff;
}

.agenda-dark.sec-mdl-agnd.dt-3 .tabcontent ul li p {
    color: rgba(255, 255, 255, 0.9);
}

.agenda-dark.sec-mdl-agnd.dt-3 {
    padding: 60px 0 80px;
    overflow: hidden;
}

/* Agenda styled like Who Should Attend */
#agenda {
    position: relative;
    background: #2e7d32;
    overflow: hidden;
    margin-bottom: 0;
}

#agenda .partners-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

#agenda {
    /* ensure parallax overlay remains visible as you scroll the tall agenda */
    position: relative;
    background-clip: padding-box;
}

@media (max-width: 1024px) {
    #agenda .partners-bg-overlay {
        background-attachment: scroll; /* mobile-friendly fallback */
    }
}

@media (max-width: 1024px) {
    #speakers .partners-bg-overlay {
        background-attachment: scroll; /* mobile-friendly fallback */
    }
}

#agenda .common_section,
#agenda .row,
#agenda .col-md-12 {
    position: relative;
    z-index: 1;
}

#agenda .page_hdng5 h2 {
    color: #ffffff;
}

/* underline removed */

#agenda ul.tab-strip li {
    color: rgba(255, 255, 255, 0.8);
    border-color: #aed581;
    background: transparent;
}

#agenda ul.tab-strip li.current,
#agenda ul.tab-strip li:hover {
    color: #ffffff;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

#agenda .tabcontent ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#agenda .tabcontent ul li {
    background: rgba(124, 179, 66, 0.12);
    border: 1px solid #aed581;
    border-radius: 20px;
    padding: 22px 24px;
    padding-left: 24px;
    position: relative;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}

#agenda .tabcontent ul li:hover {
    background: rgba(124, 179, 66, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

#agenda .tabcontent ul li span.time {
    position: static;
    min-width: unset;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 4px;
}

#agenda .tabcontent ul li h3 {
    color: #ffffff;
    margin: 0;
}

#agenda .tabcontent ul li p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

#agenda .tabcontent ul li:last-child {
    border-bottom: 1px solid #aed581;
    margin-bottom: 0;
}

.gallery-grid-section h2 {
    color: #2e7d32;
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: var(--line-height-tight);
}

.gallery-grid-section .container {
    padding: 0;
    max-width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-columns: calc(100vw / 6);
    grid-auto-flow: column;
    gap: 0;
    margin-top: 40px;
    width: max-content;
    min-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-grid::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    width: calc(100vw / 6);
    height: calc(100vw / 6);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-auto-columns: calc(100vw / 5);
    }
    
    .gallery-item {
        width: calc(100vw / 5);
        height: calc(100vw / 5);
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-auto-columns: calc(100vw / 4);
    }
    
    .gallery-item {
        width: calc(100vw / 4);
        height: calc(100vw / 4);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-auto-columns: calc(100vw / 3);
    }
    
    .gallery-item {
        width: calc(100vw / 3);
        height: calc(100vw / 3);
    }
    
    .gallery-grid-section {
        padding: 50px 0 0px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-auto-columns: calc(100vw / 2);
    }
    
    .gallery-item {
        width: calc(100vw / 2);
        height: calc(100vw / 2);
    }
}

/* Video Section */
.video-section {
    padding: 20px 0 80px 0;
    margin: 0;
    background: #f8f9fa;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.video-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.video-wrapper {
    display: block;
    width: 60%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 33.75%; /* 16:9 aspect ratio (9/16 * 60%) */
    height: 0;
    overflow: hidden;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

@media (max-width: 768px) {
    .video-container {
        padding: 0 20px;
    }
    
    .video-wrapper {
        width: 90%;
        padding-bottom: 50.625%; /* 16:9 aspect ratio (9/16 * 90%) */
    }
}

@media (max-width: 480px) {
    .video-container {
        padding: 0 15px;
    }
    
    .video-wrapper {
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 aspect ratio (9/16 * 100%) */
    }
}


/* Gallery Section - From Reference (keeping for backward compatibility) */
.elementor-element-fd9e26a {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: #f8faf8;
}

.elementor-element-fd9e26a .elementor-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(180deg, rgba(124, 179, 66, 0.02) 0%, rgba(174, 213, 129, 0.01) 100%);
}

/* Gallery Section Heading - Matching Speakers Section Style */
.elementor-element-fd9e26a .page_hdng2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.elementor-element-fd9e26a .page_hdng2 h2 {
    color: #2e7d32;
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: var(--line-height-tight);
}

.pxl-image-carousel.pxl-image-carousel1 {
    position: relative;
    z-index: 1;
    width: 100%;
}

.pxl-image-carousel.pxl-image-carousel1 .pxl-carousel-inner {
    position: relative;
}

.pxl-image-carousel.pxl-image-carousel1 .pxl-carousel-inner .pxl-swiper-container {
    overflow: visible !important;
    width: 100%;
}

.pxl-image-carousel.pxl-image-carousel1 .pxl-carousel-inner .pxl-swiper-wrapper {
    align-items: center;
    display: flex;
}

.pxl-image-carousel.pxl-image-carousel1 .pxl-carousel-inner .pxl-swiper-wrapper .pxl-swiper-slide {
    height: auto;
    flex-shrink: 0;
}

.pxl-image-carousel.pxl-image-carousel1 .pxl-carousel-inner .pxl-swiper-wrapper .pxl-swiper-slide .pxl-item--inner {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    width: 100%;
}

.pxl-image-carousel.pxl-image-carousel1 .pxl-carousel-inner .pxl-swiper-wrapper .pxl-swiper-slide .pxl-item--inner img {
    transition: all 0.3s linear;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.pxl-image-carousel.pxl-image-carousel1 .pxl-carousel-inner .pxl-swiper-wrapper .pxl-swiper-slide:nth-child(odd) img {
    height: 364px;
}

@media screen and (max-width: 767px) {
    .pxl-image-carousel.pxl-image-carousel1 .pxl-carousel-inner .pxl-swiper-wrapper .pxl-swiper-slide:nth-child(odd) img {
        height: auto;
    }
}

.pxl-image-carousel.pxl-image-carousel1 .pxl-carousel-inner .pxl-swiper-wrapper .pxl-swiper-slide:hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 767px) {
    .pxl-image-carousel.pxl-image-carousel1 .pxl-carousel-inner .pxl-swiper-wrapper .pxl-swiper-slide:hover img {
        transform: scale(1);
    }
}

.pxl-image-carousel.pxl-image-carousel1 .pxl-image--popup {
    display: none !important;
}

.pxl-image-carousel.pxl-image-carousel1 .pxl-image {
    cursor: default;
    pointer-events: none;
}

.pxl-image-carousel.pxl-image-carousel1 .pxl-image img {
    pointer-events: none;
}

.elementor-element-ece9910 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
}

.elementor-element-ece9910 .pxl-item--image {
    width: 100%;
}

.elementor-element-ece9910 .pxl-item--image img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.2;
}

@media (max-width: 1024px) {
    .pxl-image-carousel.pxl-image-carousel1 .pxl-carousel-inner .pxl-swiper-container {
        padding: 0 20px;
    }
    
    .elementor-element-fd9e26a .page_hdng2 h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .elementor-element-fd9e26a {
        padding: 60px 0 80px;
    }
    
    .elementor-element-fd9e26a .page_hdng2 {
        margin-bottom: 30px;
    }
    
    .elementor-element-fd9e26a .page_hdng2 h2 {
        font-size: 28px;
    }
    
    .pxl-image-carousel.pxl-image-carousel1 .pxl-image {
        min-height: 300px;
    }
    
    .pxl-image-carousel.pxl-image-carousel1 .pxl-image--popup {
        width: 40px;
        height: 40px;
    }
    
    .pxl-image-carousel.pxl-image-carousel1 .pxl-image--popup i {
        font-size: 16px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: #f8faf8;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 94, 32, 0.70);
    -webkit-mask-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    mask-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    mix-blend-mode: multiply;
    opacity: 0.72;
    z-index: 0;
    pointer-events: none;
}

.testimonials-section > * {
    position: relative;
    z-index: 1;
}

.testimonials-section .page_hdng2 h2 {
    color: #2e7d32;
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0;
    font-family: 'Roboto', Arial, sans-serif;
    line-height: var(--line-height-tight);
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow: hidden;
}

.testimonials-swiper {
    padding: 20px 0 40px;
    overflow: hidden;
    width: 100%;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(124, 179, 66, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(124, 179, 66, 0.15);
    border-color: rgba(124, 179, 66, 0.3);
}

.quote-icon {
    color: #7cb342;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 25px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
    font-family: 'Roboto', Arial, sans-serif;
}

.testimonial-author {
    border-top: 1px solid rgba(124, 179, 66, 0.2);
    padding-top: 25px;
    margin-top: auto;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 5px;
    font-family: 'Roboto', Arial, sans-serif;
}

.author-designation {
    font-size: 16px;
    color: #666;
    font-weight: 400;
    font-family: 'Roboto', Arial, sans-serif;
}

.testimonials-swiper .swiper-pagination {
    position: relative;
    margin-top: 40px;
    bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(124, 179, 66, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: #7cb342;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 1024px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonial-card {
        padding: 40px 30px;
        min-height: 300px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .testimonials-section .page_hdng2 {
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .testimonials-section .page_hdng2 h2 {
        font-size: var(--font-size-xl);
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 15px;
        overflow: hidden;
    }
    
    .testimonials-swiper {
        padding: 30px 0 50px;
        overflow: hidden;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        min-height: auto;
        margin: 0 10px;
        width: calc(100% - 20px);
        box-sizing: border-box;
    }
    
    .quote-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        font-size: var(--font-size-md);
        margin-bottom: 20px;
        line-height: var(--line-height-relaxed);
    }
    
    .author-name {
        font-size: var(--font-size-md);
    }
    
    .author-designation {
        font-size: var(--font-size-sm);
    }
    
    .testimonials-swiper .swiper-pagination {
        margin-top: 30px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: auto;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Why You Must Not Miss Section - From Nextech Reference */
section#what-learn-section {
    background: #2e7d32;
    padding: 60px 0px 20px;
}

#what-learn-section .page_hdng4 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

#what-learn-section .page_hdng4 h2 {
    color: #ffffff;
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: var(--line-height-tight);
    margin-bottom: 0;
    font-family: 'Roboto', Arial, sans-serif;
}

/**event wdgt wrapper css**/
#event-wdgt-wrapper .ew-ds-2 p {
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-family: Inter, 'Roboto', Arial, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 35px;
}

/* Enhanced Why Section Text Styling */
.why-section-subtitle {
    color: #ffffff;
    text-align: center;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.why-section-subtitle strong {
    color: #aed581;
    font-weight: 700;
}

.why-section-subheading {
    color: #aed581;
    text-align: center;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-section-description {
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .why-section-subtitle {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .why-section-subheading {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .why-section-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
}

#event-wdgt-wrapper .ew-ds-2 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    justify-content: center;
    align-items: center;
}

#event-wdgt-wrapper .ew-ds-2 ul li {
    padding: 73px 45px 48px 45px;
    cursor: pointer;
    width: 17.5%;
    min-height: 438px;
    justify-content: flex-end;
    align-items: center;
    display: flex;
    flex-direction: column;
    background-size: cover !important;
    border-radius: 20px;
    border: 1px solid #7cb342;
}

#event-wdgt-wrapper .ew-ds-2 ul li picture {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
    display: none;
}

#event-wdgt-wrapper .ew-ds-2 ul li h4 {
    color: #ffffff;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

#event-wdgt-wrapper .ew-ds-2 ul li .wdgt-title {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    width: -webkit-fill-available;
}

/* Center align first 3 card titles */
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(1) .wdgt-title,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(2) .wdgt-title,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(3) .wdgt-title {
    text-align: center;
}

#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(1) .wdgt-title h4,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(2) .wdgt-title h4,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(3) .wdgt-title h4 {
    text-align: center;
}

#event-wdgt-wrapper .ew-ds-2 ul li:hover .wdgt-title, 
#event-wdgt-wrapper .ew-ds-2 ul li.active .wdgt-title { 
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
}

/* Keep center alignment when hovered/active for first 3 cards */
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(1):hover .wdgt-title,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(1).active .wdgt-title,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(2):hover .wdgt-title,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(2).active .wdgt-title,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(3):hover .wdgt-title,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(3).active .wdgt-title {
    text-align: center;
}

#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(1):hover .wdgt-title h4,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(1).active .wdgt-title h4,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(2):hover .wdgt-title h4,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(2).active .wdgt-title h4,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(3):hover .wdgt-title h4,
#event-wdgt-wrapper .ew-ds-2 ul li:nth-child(3).active .wdgt-title h4 {
    text-align: center;
}

#event-wdgt-wrapper .ew-ds-2 ul li span {
    display: none;
}

#event-wdgt-wrapper .ew-ds-2 ul li:hover, 
#event-wdgt-wrapper .ew-ds-2 ul li.active {
    width: 43%;
    padding: 50px 55px;
    justify-content: flex-end;
    align-items: flex-start;
    border-color: #aed581;
}

#event-wdgt-wrapper .ew-ds-2 ul li:hover span, 
#event-wdgt-wrapper .ew-ds-2 ul li span, 
#event-wdgt-wrapper .ew-ds-2 ul li.active span {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

#event-wdgt-wrapper .ew-ds-2 ul li span { 
    display: none; 
}

#event-wdgt-wrapper .ew-ds-2 ul li:hover h4, 
#event-wdgt-wrapper .ew-ds-2 ul li.active h4 {
    margin-bottom: 10px;
}

/* Left align titles and descriptions in why-section cards */
#event-wdgt-wrapper .ew-ds-2 ul li,
#event-wdgt-wrapper .ew-ds-2 ul li .wdgt-title,
#event-wdgt-wrapper .ew-ds-2 ul li .wdgt-title h4,
#event-wdgt-wrapper .ew-ds-2 ul li h4,
#event-wdgt-wrapper .ew-ds-2 ul li span {
    text-align: left !important;
    align-items: flex-start;
}

#event-wdgt-wrapper .ew-ds-2 ul li span {
    width: 100%;
}

#event-wdgt-wrapper .ew-ds-2 ul li:hover picture img {
    height: 43px;
}

@media screen and (max-width: 767px) { 
    #event-wdgt-wrapper .ew-ds-2 ul {
        justify-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding-left: 0;
        margin-left: 0;
    }
    
    #event-wdgt-wrapper .ew-ds-2 ul li, 
    #event-wdgt-wrapper .ew-ds-2 ul li:hover, 
    #event-wdgt-wrapper .ew-ds-2 ul li.active { 
        padding: 20px;
        padding-left: 20px !important;
        width: 100% !important;
        max-width: 100%;
        min-height: auto;
        margin-left: auto;
        margin-right: auto;
        background: linear-gradient(180deg, rgba(124, 179, 66, 0.70) 0%, rgba(46, 125, 50, 0.70) 100%) !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        list-style: none;
    }
    
    #event-wdgt-wrapper .ew-ds-2 ul li picture { 
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    #event-wdgt-wrapper .ew-ds-2 ul li picture img {
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
    }
    
    #event-wdgt-wrapper .ew-ds-2 ul li:hover picture img,
    #event-wdgt-wrapper .ew-ds-2 ul li.active picture img {
        filter: brightness(0) invert(1);
        -webkit-filter: brightness(0) invert(1);
    }
    
    #event-wdgt-wrapper .ew-ds-2 ul li span {
        display: block;
        text-align: center;
        color: #fff;
    }
    
    #event-wdgt-wrapper .ew-ds-2 ul li:hover h4, 
    #event-wdgt-wrapper .ew-ds-2 ul li.active h4, 
    #event-wdgt-wrapper .ew-ds-2 ul li h4 {
        margin-bottom: 10px;
        font-size: 22px;
        text-align: center;
    }
    
    #event-wdgt-wrapper .ew-ds-2 ul li:hover span, 
    #event-wdgt-wrapper .ew-ds-2 ul li span, 
    #event-wdgt-wrapper .ew-ds-2 ul li.active span {
        font-size: 14px;
        line-height: 140%;
        color: #fff;
    }
    
    #event-wdgt-wrapper .ew-ds-2 ul li .wdgt-title {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        width: 100%;
        text-align: center;
    }
    
    #event-wdgt-wrapper .ew-ds-2 ul li .wdgt-title h4 {
        text-align: center;
    }
}

/**activity css**/
.activity-ds-2 {
    margin-top: 17px;
}

.activity-ds-2 p {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
}

.activity-ds-2 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.activity-ds-2 ul li {
    backdrop-filter: blur(54px);
    padding: 18px 27px;
    width: calc(100% / 4 - 20px);
    cursor: pointer;
    transition: width 750ms ease-in-out;
    transition-delay: 250ms;
    min-height: 320px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid #aed581;
    background: linear-gradient(180deg, rgba(124, 179, 66, 0.70) 0%, rgba(46, 125, 50, 0.70) 100%);
}

.activity-ds-2 ul li picture {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.activity-ds-2 ul li h4 {
    color: #1C2D28;
    text-align: center;
    text-transform: capitalize;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.activity-ds-2 ul li span {
    display: none;
}

.activity-ds-2 ul li:hover span, 
.activity-ds-2 ul li span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.activity-ds-2 ul li span { 
    display: none; 
}

.activity-ds-2 ul li:hover h4 {
    font-size: 18px;
    font-weight: 600;
}

.activity-ds-2 ul li:hover picture img {
    height: 43px;
}

.activity-ds-2 ul li:hover {
    border-color: #7cb342;
    background: linear-gradient(180deg, rgba(102, 187, 106, 0.85) 0%, rgba(76, 175, 80, 0.85) 100%);
}

.activity-ds-2 ul li.filled_column {
    width: 32.7%;
}

@media screen and (max-width: 767px) { 
    .activity-ds-2 ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding-left: 0;
        margin-left: 0;
    }
    
    .activity-ds-2 ul li { 
        padding: 20px;
        padding-left: 20px !important;
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        list-style: none;
    }
    
    .activity-ds-2 ul li picture { 
        width: 50px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .activity-ds-2 ul li h4 {
        text-align: center;
        width: 100%;
    }
    
    .activity-ds-2 ul li span {
        display: block;
        text-align: center;
        width: 100%;
    }
}

/**activity css end**/

/* Key Discussion Points Section - From Reference */
section.discussion_points {
    padding: 60px 0px 80px;
    background: #2e7d32;
}

/* Make Key Discussion Points a light theme with dark masked overlay */
#key-discussion-points {
    background: #ffffff;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

#key-discussion-points .partners-bg-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background-color: rgba(27, 94, 32, 0.70);
    -webkit-mask-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    mask-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    mix-blend-mode: multiply;
    opacity: 0.72;
    z-index: 0;
    pointer-events: none;
}

#key-discussion-points > * {
    position: relative;
    z-index: 1;
}

#key-discussion-points .page_hdng4 h2 {
    color: var(--dark-green);
}

#key-discussion-points .listing-design.design-style1 li {
    background: rgba(124, 179, 66, 0.08);
    border-color: rgba(124, 179, 66, 0.35);
    color: var(--text-dark);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

#key-discussion-points .listing-design.design-style1 li h4 {
    color: var(--dark-green);
}

#key-discussion-points .listing-design.design-style1 li p {
    color: var(--text-dark);
}

/* Who Should Attend Section - 3 Column Grid */
#who-should-attend .listing-design.design-style1 li {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 250px;
    text-align: center;
}

@media screen and (max-width: 991px) {
    #who-should-attend .listing-design.design-style1 li {
        flex: 1 1 calc(50% - 10px);
        min-width: 200px;
    }
}

@media screen and (max-width: 767px) {
    #who-should-attend .listing-design.design-style1 li {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

section.discussion_points .page_hdng4 {
    text-align: center;
    margin-bottom: 40px;
}

section.discussion_points .page_hdng4 h2 {
    color: #ffffff;
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0;
    line-height: var(--line-height-tight);
    font-family: 'Roboto', Arial, sans-serif;
}

.listing-design.design-style1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.listing-design.design-style1 ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.listing-design.design-style1 li {
    border-radius: 20px;
    border: 1px solid #7cb342;
    padding: 25px 30px;
    background: rgba(124, 179, 66, 0.1);
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    line-height: 22px;
    flex: 1 1 calc(50% - 10px);
    min-width: 300px;
    transition: all 0.3s ease;
    position: relative;
}

.listing-design.design-style1 li h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    margin-top: 0;
}

.listing-design.design-style1 li p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
    margin-top: 0;
}

.listing-design.design-style1 li:hover {
    background: rgba(124, 179, 66, 0.2);
    border-color: #aed581;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 179, 66, 0.3);
}

/* Removed .last class - all items now display in 2-column layout */

@media screen and (max-width: 767px) {
    .listing-design.design-style1 li {
        flex: 1 1 100%;
        min-width: 100%;
        padding: 20px;
        font-size: 16px;
    }
    
    .listing-design.design-style1 li h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .listing-design.design-style1 li p {
        font-size: 14px;
    }
    
    section.discussion_points .page_hdng4 h2 {
        font-size: var(--font-size-xl);
    }
}

/* Speakers Section - From Reference */
section#speakers {
    background: #2e7d32;
    padding: 60px 0px 80px;
    position: relative;
    overflow: hidden;
}

#speakers .partners-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

section#speakers .page_hdng2 {
    text-align: center;
    margin-bottom: 40px;
}

section#speakers .page_hdng2 h2 {
    color: #ffffff;
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0;
    line-height: var(--line-height-tight);
    font-family: 'Roboto', Arial, sans-serif;
}

#speakers .container,
#speakers .row,
#speakers .page_hdng2,
#speakers .news_lst17 {
    position: relative;
    z-index: 1;
}

.speakers-soon__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 8px;
}

.speakers-soon__text {
    font-size: 1rem;
    color: #ececec !important;
    margin: 0;
}

.speakers-soon__badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.news_lst17 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.news_lst17 article {
    flex: 0 0 auto;
    width: calc(25% - 15px);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.news_lst17 .imgframe {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: rgba(124, 179, 66, 0.1);
    border: 1px solid #7cb342;
    height: 100%;
}

.news_lst17 .imgframe:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(124, 179, 66, 0.4);
    border-color: #aed581;
}

.news_lst17 .imgframe img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0 0;
}

.news_lst17 .caption {
    padding: 20px 20px 30px 20px;
    text-align: center;
    background: rgba(124, 179, 66, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
}

.speakers-soon {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 24px;
    border: 1px dashed #7cb342;
    border-radius: 18px;
    background: rgba(124, 179, 66, 0.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.speakers-soon__badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f7e27d 0%, #e0b749 45%, #f7d95f 100%);
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.speakers-soon__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 8px;
}

.speakers-soon__text {
    font-size: 1rem;
    color: #4f4f4f;
    margin: 0;
}

.news_lst17 .caption h5 {
    color: #2e7d32;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0;
    text-align: center;
}

.news_lst17 .caption span {
    color: #555555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    display: block;
    text-align: center;
}

.dt-13.dtstyle-4 {
    margin: 10px 0px !important;
}

.dt-13.dtstyle-4 .caption {
    min-height: auto;
}

@media screen and (max-width: 991px) {
    .news_lst17 article {
        width: calc(33.333% - 14px);
    }
}

@media screen and (max-width: 767px) {
    .news_lst17 article {
        width: calc(50% - 10px);
        min-width: 150px;
    }
    
    section#speakers .page_hdng2 h2 {
        font-size: 28px;
    }
    
    .news_lst17 .caption {
        padding: 15px;
    }
    
    .news_lst17 .caption h5 {
        font-size: 16px;
    }
    
    .news_lst17 .caption span {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .news_lst17 article {
        width: 100%;
    }
}

/* Agenda Section - From Reference (dt-3) - White Background */
.sec-mdl-agnd.dt-3 {
    padding: 40px 0;
    margin-bottom: 20px;
    background: #ffffff;
}

.sec-mdl-agnd.dt-3 ul.tab-strip {
    border-bottom: 1px solid rgba(124, 179, 66, 0.3);
    margin-bottom: 30px;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li .spkrs {
    border-top: 1px solid rgba(124, 179, 66, 0.3);
}

.sec-mdl-agnd.dt-3 ul.tab-strip li {
    cursor: pointer;
    float: left;
    margin-right: 45px;
    font-size: 36px;
    line-height: 1em;
    padding-bottom: 20px;
    color: rgba(26, 26, 26, 0.6);
    position: relative;
    transition: all 0.3s ease;
}

.sec-mdl-agnd.dt-3 ul.tab-strip li.current,
.sec-mdl-agnd.dt-3 ul.tab-strip li:hover {
    color: #1a1a1a;
}

.sec-mdl-agnd.dt-3 .tabcontent {
    display: none;
}

.sec-mdl-agnd.dt-3 .tabcontent.current {
    display: block;
}

.sec-mdl-agnd.dt-3 .tabcontent ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li {
    list-style: none;
    border-bottom: 1px solid rgba(124, 179, 66, 0.3);
    padding: 22px 0;
    padding-left: 220px;
    position: relative;
    font-size: 16px;
    line-height: 1.3em;
    color: #1a1a1a;
    transition: background 0.2s ease;
    -webkit-transition: background 0.2s ease;
    padding-right: 30px;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li span.time {
    display: block;
    position: absolute;
    left: 10px;
    top: 22px;
    z-index: 1;
    color: #1a1a1a;
    font-size: 16px;
    background: 0 0;
    padding: 0;
    min-width: 110px;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li:last-child {
    border: 0;
    margin-bottom: 0;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li .detail {
    display: block;
    font-size: 14px;
    padding-top: 5px;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li p {
    margin-bottom: 20px;
    padding-right: 40px;
    color: #666;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li .detail ul {
    margin-left: 15px;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li .detail ul li {
    border: 0;
    margin-bottom: 10px;
    color: #666;
    line-height: 1.5em;
    font-size: 14px;
    list-style: disc;
    padding: 0;
    padding-left: 0;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li:hover span.more {
    color: #aed581;
}

.sec-mdl-agnd.dt-3 span.more {
    position: absolute;
    color: #7cb342;
    font-size: 40px;
    right: 0;
    top: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sec-mdl-agnd.dt-3 span.more.rotate {
    transform: rotate(45deg);
}

.sec-mdl-agnd.dt-3 .tabcontent ul li .spkrs {
    width: 100%;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(124, 179, 66, 0.3);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li .spkrs span {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li .spkrs img,
.sec-mdl-agnd.dt-3 .tabcontent ul li .spkrs .agenda-lazy-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li .spkrs span h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
}

.sec-mdl-agnd.dt-3 .tabcontent ul li .spkrs span p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.sec-mdl-agnd.dt-3 .keynote {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-align: right;
}

@media screen and (max-width: 767px) {
    .sec-mdl-agnd.dt-3 .tabcontent ul li {
        font-size: 16px;
        padding-right: 20px;
        padding: 15px 20px 15px 15px;
        padding-left: 15px;
    }
    
    .sec-mdl-agnd.dt-3 .tabcontent ul li span.time {
        position: static;
        margin-bottom: 10px;
        font-size: 14px;
        color: #1a1a1a;
    }
    
    .sec-mdl-agnd.dt-3 .tabcontent ul li span.more {
        font-size: 40px;
        top: 10px;
    }
    
    .sec-mdl-agnd.dt-3 .tabcontent ul li p {
        padding-right: 0;
    }
    
    .sec-mdl-agnd.dt-3 ul.tab-strip li {
        margin-right: 15px;
        font-size: 18px;
    }
}

/* ============================================
   Track Selection Section - From Reference
   ============================================ */

.track-selection-section {
    position: relative;
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.track-selection-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.05) 0%, rgba(46, 125, 50, 0.05) 100%);
    z-index: 0;
}

.track-selection-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.track-selection-header {
    text-align: center;
    margin-bottom: 60px;
}

.track-selection-top {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.track-selection-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Roboto', Arial, sans-serif;
}

.track-selection-subtext {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.track-selection-subtext p {
    margin: 0;
}

.track-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.track-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.track-card-gold {
    border-top: 4px solid var(--primary-green);
}

.track-card-header {
    padding: 30px 25px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.track-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Roboto', Arial, sans-serif;
}

.track-card-blurb {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.track-card-cta {
    margin-top: 20px;
}

.track-apply-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.track-apply-btn:hover {
    background: var(--dark-green);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

.track-card-body {
    padding: 25px;
    flex-grow: 1;
}

.track-criteria-wrap {
    margin-top: 10px;
}

.track-criteria-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.track-criteria-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.track-criteria-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.track-criteria-item:last-child {
    margin-bottom: 0;
}

.track-tick {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.track-tick img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.track-criteria-item p {
    margin: 0;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
    flex: 1;
}

.track-criteria-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-right: 5px;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .track-selection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 768px) {
    .track-selection-section {
        padding: 60px 0;
    }
    
    .track-selection-title {
        font-size: 36px;
    }
    
    .track-selection-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .track-card-header {
        padding: 25px 20px 15px;
    }
    
    .track-card-body {
        padding: 20px;
    }
    
    .track-card-title {
        font-size: 24px;
    }
}

/* ============================================
   Track Selection Section - Reference Classes (Exact Clone from Reference)
   ============================================ */

.StartupEnterprise_section__SyU4V {
    position: relative;
    padding: 40px 0 96px;
    background: #2e7d32;
    font-family: Poppins, sans-serif;
    overflow: hidden;
}

/* Network SVG Background - Animation removed for performance */
.network-animation-bg {
    display: none;
}

.network-svg {
    display: none;
}

/* Stagger animations for different nodes */
.network-nodes .node:nth-child(1) { --node-index: 0; }
.network-nodes .node:nth-child(2) { --node-index: 1; }
.network-nodes .node:nth-child(3) { --node-index: 2; }
.network-nodes .node:nth-child(4) { --node-index: 3; }
.network-nodes .node:nth-child(5) { --node-index: 4; }
.network-nodes .node:nth-child(6) { --node-index: 5; }
.network-nodes .node:nth-child(7) { --node-index: 6; }
.network-nodes .node:nth-child(8) { --node-index: 7; }
.network-nodes .node:nth-child(9) { --node-index: 8; }
.network-nodes .node:nth-child(10) { --node-index: 9; }
.network-nodes .node:nth-child(11) { --node-index: 10; }
.network-nodes .node:nth-child(12) { --node-index: 11; }
.network-nodes .node:nth-child(13) { --node-index: 12; }
.network-nodes .node:nth-child(14) { --node-index: 13; }
.network-nodes .node:nth-child(15) { --node-index: 14; }
.network-nodes .node:nth-child(16) { --node-index: 15; }
.network-nodes .node:nth-child(17) { --node-index: 16; }
.network-nodes .node:nth-child(18) { --node-index: 17; }
.network-nodes .node:nth-child(19) { --node-index: 18; }
.network-nodes .node:nth-child(20) { --node-index: 19; }
.network-nodes .node:nth-child(21) { --node-index: 20; }

.network-lines .connection:nth-child(1) { --line-index: 0; }
.network-lines .connection:nth-child(2) { --line-index: 1; }
.network-lines .connection:nth-child(3) { --line-index: 2; }
.network-lines .connection:nth-child(4) { --line-index: 3; }
.network-lines .connection:nth-child(5) { --line-index: 4; }
.network-lines .connection:nth-child(6) { --line-index: 5; }
.network-lines .connection:nth-child(7) { --line-index: 6; }
.network-lines .connection:nth-child(8) { --line-index: 7; }
.network-lines .connection:nth-child(9) { --line-index: 8; }
.network-lines .connection:nth-child(10) { --line-index: 9; }
.network-lines .connection:nth-child(11) { --line-index: 10; }
.network-lines .connection:nth-child(12) { --line-index: 11; }
.network-lines .connection:nth-child(13) { --line-index: 12; }
.network-lines .connection:nth-child(14) { --line-index: 13; }
.network-lines .connection:nth-child(15) { --line-index: 14; }
.network-lines .connection:nth-child(16) { --line-index: 15; }
.network-lines .connection:nth-child(17) { --line-index: 16; }
.network-lines .connection:nth-child(18) { --line-index: 17; }
.network-lines .connection:nth-child(19) { --line-index: 18; }
.network-lines .connection:nth-child(20) { --line-index: 19; }

@media (max-width: 768px) {
    .StartupEnterprise_section__SyU4V {
        padding: 30px 0 60px;
    }
}

.StartupEnterprise_bg__je1Rh {
    position: absolute;
    inset: 0;
    background-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.35;
    pointer-events: none;
}

.partners-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

#agenda,
#what-learn-section,
#key-discussion-points,
#who-should-attend,
#tracks {
    position: relative;
    overflow: hidden;
}

/* Darker overlay treatment for light/white sections */
.light-overlay {
    position: relative;
    overflow: hidden;
}

.light-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 100%),
        url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.28;
    mix-blend-mode: multiply;
    z-index: 0;
    pointer-events: none;
}

/* Force stronger custom overlay for overview */
#overview.light-overlay::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    /* white base with dark partners-bg mask */
    background-color: rgba(27, 94, 32, 0.70) !important;
    background-image: none !important;
    -webkit-mask-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg') !important;
    mask-image: url('https://amasouthasia.org/event/wp-content/plugins/custom-site-hoster/uploads/ahmedabad-event/images/partners-bg.svg') !important;
    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;
    -webkit-mask-size: cover !important;
    mask-size: cover !important;
    -webkit-mask-position: center !important;
    mask-position: center !important;
    mix-blend-mode: multiply !important;
    opacity: 0.72 !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 1024px) {
    #overview.light-overlay::before {
        -webkit-mask-size: cover !important;
        mask-size: cover !important;
    }
}

.light-overlay > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .partners-bg-overlay {
        background-attachment: scroll; /* mobile-friendly fallback */
    }
}

.StartupEnterprise_container__WT_ZM {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 1;
}

@media (max-width: 1300px) {
    .StartupEnterprise_container__WT_ZM {
        max-width: 1100px;
    }
}

@media (max-width: 640px) {
    .StartupEnterprise_container__WT_ZM {
        padding: 0 16px;
    }
}

.StartupEnterprise_headingWrap__wDK6z {
    text-align: center;
    margin-bottom: 48px;
}

.StartupEnterprise_headingWrap__wDK6z .StartupEnterprise_headingTop__F9pTz {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin: 0 0 12px 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    font-family: 'Roboto', Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 640px) {
    .StartupEnterprise_headingWrap__wDK6z .StartupEnterprise_headingTop__F9pTz {
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .StartupEnterprise_headingWrap__wDK6z {
        margin-bottom: 24px;
    }
}

.StartupEnterprise_headingBottom__zclTb {
    margin: 0 0 20px 0;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Roboto', Arial, sans-serif;
    text-align: center;
}

@media (max-width: 640px) {
    .StartupEnterprise_headingBottom__zclTb {
        font-size: 32px;
        line-height: 1.3;
        margin: 0 0 16px 0;
    }
}

.StartupEnterprise_subtext___6TfX {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.6;
    letter-spacing: 0.3px;
    text-align: center;
    max-width: 600px;
}

.StartupEnterprise_subtext___6TfX p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .StartupEnterprise_subtext___6TfX {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .StartupEnterprise_subtext___6TfX {
        font-size: 18px;
    }
}

.StartupEnterprise_grid__P2LnC {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .StartupEnterprise_grid__P2LnC {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 640px) {
    .StartupEnterprise_grid__P2LnC {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
        overflow: visible;
    }
}

.StartupEnterprise_card__YSOnj {
    background: linear-gradient(180deg, rgba(124, 179, 66, 0.70) 0%, rgba(46, 125, 50, 0.70) 100%);
    border-radius: 20px;
    overflow: visible;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    border: 1px solid rgba(174, 213, 129, 0.5);
    display: flex;
    flex-direction: column;
    min-height: 520px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Premium Gold Award Style */
.StartupEnterprise_award_gold {
    background: #1a1a1a;
    border: 3px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    position: relative;
    background-clip: padding-box;
}

.StartupEnterprise_award_gold::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, 
        #d4af37 0%,
        #ffd700 25%,
        #ffed4e 50%,
        #ffd700 75%,
        #d4af37 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 1;
}

.StartupEnterprise_award_gold::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(212, 175, 55, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
    /* Animation removed for performance */
}

/* Premium Silver Award Style */
.StartupEnterprise_award_silver {
    background: #1a1a1a;
    border: 3px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    position: relative;
    background-clip: padding-box;
}

.StartupEnterprise_award_silver::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, 
        #c0c0c0 0%,
        #e8e8e8 25%,
        #ffffff 50%,
        #e8e8e8 75%,
        #c0c0c0 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 1;
}

.StartupEnterprise_award_silver::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(192, 192, 192, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(192, 192, 192, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
    /* Animation removed for performance */
}

/* Premium Bronze Award Style */
.StartupEnterprise_award_bronze {
    background: #1a1a1a;
    border: 3px solid transparent;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    position: relative;
    background-clip: padding-box;
}

.StartupEnterprise_award_bronze::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, 
        #cd7f32 0%,
        #e6a857 25%,
        #ffb84d 50%,
        #e6a857 75%,
        #cd7f32 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 1;
}

.StartupEnterprise_award_bronze::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(205, 127, 50, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(205, 127, 50, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
    /* Animation removed for performance */
}

/* Base card pseudo-elements removed - now handled by award-specific styles */

@media (max-width: 640px) {
    .StartupEnterprise_card__YSOnj {
        min-width: 100%;
        max-width: 100%;
        overflow: visible;
    }
}

/* Gold Award Hover */
.StartupEnterprise_award_gold:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
}

.StartupEnterprise_award_gold:hover::before {
    opacity: 0.8;
}

.StartupEnterprise_award_gold:hover::after {
    opacity: 0.9;
}

/* Silver Award Hover */
.StartupEnterprise_award_silver:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
}

.StartupEnterprise_award_silver:hover::before {
    opacity: 0.8;
}

.StartupEnterprise_award_silver:hover::after {
    opacity: 0.9;
}

/* Bronze Award Hover */
.StartupEnterprise_award_bronze:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7);
}

.StartupEnterprise_award_bronze:hover::before {
    opacity: 0.8;
}

.StartupEnterprise_award_bronze:hover::after {
    opacity: 0.9;
}


.StartupEnterprise_cardHeader__78RS1 {
    position: relative;
    padding: 45px 40px 25px;
    color: #1a1a1a;
    text-align: center;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, #f7e27d 0%, #e0b749 45%, #f7d95f 100%);
    border-bottom: none;
    position: relative;
    overflow: visible;
    z-index: 2;
}

@media (max-width: 640px) {
    .StartupEnterprise_cardHeader__78RS1 {
        min-height: 115px;
    }
}

.StartupEnterprise_cardTitle__VwC9B {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.15;
    margin: 0 0 18px;
    color: #ffffff;
    letter-spacing: -0.8px;
    text-transform: none;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Award-specific title colors - Black text on golden header */
.StartupEnterprise_award_gold .StartupEnterprise_cardTitle__VwC9B,
.StartupEnterprise_award_silver .StartupEnterprise_cardTitle__VwC9B,
.StartupEnterprise_award_bronze .StartupEnterprise_cardTitle__VwC9B {
    color: #1a1a1a;
    text-shadow: none;
    filter: none;
}

/* Silver and Bronze also get golden header */
.StartupEnterprise_award_silver .StartupEnterprise_cardHeader__78RS1,
.StartupEnterprise_award_bronze .StartupEnterprise_cardHeader__78RS1 {
    background: linear-gradient(135deg, #f7e27d 0%, #e0b749 45%, #f7d95f 100%);
    color: #1a1a1a;
}

.StartupEnterprise_blurb__k6YZv {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
    margin: 0 0 20px 0;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    font-style: normal;
    text-shadow: none;
    padding-bottom: 10px;
}

.StartupEnterprise_cardBody__41ogu {
    padding: 35px 40px;
    margin-top: 0;
    padding-bottom: 40px;
    flex-grow: 1;
    background: #1a1a1a;
    position: relative;
    z-index: 2;
    border-radius: 0 0 20px 20px;
}

.StartupEnterprise_cardBody__41ogu .StartupEnterprise_cardBody__41ogu p {
    font-size: 14px;
}

.StartupEnterprise_criteriaWrap__2ldQi {
    margin-top: 8px;
    margin-bottom: 0;
}

.StartupEnterprise_criteriaTitle__rmKQ2 {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 2.5px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 28px;
    color: #ffffff;
    position: relative;
    padding-bottom: 16px;
}

.StartupEnterprise_criteriaTitle__rmKQ2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1.5px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%);
}

.StartupEnterprise_criteriaTitle__rmKQ2::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.StartupEnterprise_criteriaList__cqzN7 {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-gap: 8px;
    gap: 8px;
}

.StartupEnterprise_criteriaItem___62Gr {
    display: flex;
    align-items: start;
    gap: 14px;
    color: #667085;
    font-size: 15px;
    padding: 10px 0;
    transition: background 0.2s ease;
    border-radius: 4px;
    margin: 0 -4px;
    padding-left: 4px;
    padding-right: 4px;
}

.StartupEnterprise_criteriaItem___62Gr:hover {
    background: rgba(255, 255, 255, 0.1);
    padding-left: 8px;
}

.StartupEnterprise_criteriaItem___62Gr p {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.65;
    color: #ffffff;
    width: 100%;
    letter-spacing: 0.15px;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.StartupEnterprise_criteriaItem___62Gr p .StartupEnterprise_criteriaLabel__0vNSj {
    color: #ffffff;
    font-weight: 600;
}

.StartupEnterprise_tick__I_epC {
    width: 22px;
    height: 22px;
    position: relative;
    margin-top: 1px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) brightness(0) saturate(100%) invert(69%) sepia(90%) saturate(2000%) hue-rotate(5deg) brightness(1.1);
    transition: opacity 0.2s ease;
}

.StartupEnterprise_criteriaItem___62Gr:hover .StartupEnterprise_tick__I_epC {
    opacity: 0.9;
}

.StartupEnterprise_tick__I_epC img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.StartupEnterprise_cardCta__lo_au {
    position: relative;
    margin-top: 20px;
    padding: 0;
    z-index: 3;
}

.StartupEnterprise_applyBtn__CIfpq {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7cb342 0%, #2e7d32 100%);
    text-decoration: none;
    color: #ffffff;
    transition: box-shadow 0.3s ease, background 0.3s ease;
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 3;
}

.StartupEnterprise_applyBtn__CIfpq:hover {
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(124, 179, 66, 0.5);
}

.StartupEnterprise_applyBtn__CIfpq::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #aed581 0%, #7cb342 100%);
    transition: left 0.3s ease;
    z-index: -1;
}


.StartupEnterprise_applyBtn__CIfpq:hover::before {
    left: 0;
}

/* Award-specific header backgrounds removed - using transparent with metallic borders */


/* ============================================
   Registration Desk (cloned from Elementor)
   ============================================ */
.registration-desk {
    padding: 80px 0;
    background: linear-gradient(135deg, #f6f7fb 0%, #eef1f5 100%);
}

.reg-tabs {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.16);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px;
}

.reg-tab-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.reg-tab-button {
    border: 1px solid #d6dce5;
    background: #f8fafc;
    color: #1f2937;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reg-tab-button:hover {
    border-color: #7cb342;
    color: #2e7d32;
    background: #eef8ec;
}

.reg-tab-button.active {
    background: linear-gradient(135deg, #7cb342 0%, #5a9d2f 100%);
    color: #fff;
    border-color: #5a9d2f;
    box-shadow: 0 10px 25px rgba(92, 156, 47, 0.3);
}

.reg-tab-panels {
    margin-top: 12px;
}

.reg-tab-panel {
    display: none;
}

.reg-tab-panel.active {
    display: block;
}

.reg-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.reg-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 0 1 50%;
    min-width: 320px;
    max-width: 520px;
}

.reg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.reg-card-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #f59e0b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: none;
    clip-path: none;
}

.reg-card-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
}

.reg-card-header p {
    margin: 6px 0 0;
    color: #4b5563;
    font-size: 14px;
    font-weight: 500;
}

.reg-card-price {
    margin: 16px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.reg-card-price .currency {
    font-size: 28px;
    font-weight: 800;
    color: #2e7d32;
}

.reg-card-price .amount {
    font-size: 40px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
}

.reg-card-price .period {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.reg-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
}

.reg-card-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
}

.reg-card-list li::before {
    content: '✔';
    color: #2e7d32;
    font-weight: 700;
}

.reg-card-footer {
    margin-top: auto;
}

.reg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    width: auto;
    min-width: 180px;
    max-width: 220px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7cb342 0%, #5a9d2f 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 10px 25px rgba(92, 156, 47, 0.25);
}

.reg-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 30px rgba(92, 156, 47, 0.35);
}

@media (max-width: 768px) {
    .registration-desk {
        padding: 60px 0;
    }
    .reg-tabs {
        padding: 16px;
    }
    .reg-card {
        padding: 18px;
        flex: 1 1 100%;
        max-width: 100%;
    }

/* Utility override */
.dt-13.dtstyle-4 {
    margin: 0px 0px !important;
}
    .reg-card-price .amount {
        font-size: 32px;
    }
    .reg-card-grid {
        grid-template-columns: 1fr;
    }
}
