/* ===== Global Styles ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #008751;
    --secondary-color: #64be34;
    --accent-color: #D4AF37;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-light: #e5e7eb;
    --white: #ffffff;
    --gray-bg: #f9fafb;
    --dark-bg: #03101f;
    --dark-surface: rgba(6, 18, 43, 0.75);
    --dark-surface-strong: rgba(10, 22, 45, 0.92);
    --surface-border: rgba(255, 255, 255, 0.08);
    --glow: rgba(212, 175, 55, 0.18);
    --muted: rgba(255, 255, 255, 0.72);
    --text-light-soft: rgba(255, 255, 255, 0.80);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
    --transition: all 0.35s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffffc9;
}

/* ===== Navbar ===== */
.navbar {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 0;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
      height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    max-width: 380px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 170px;
    flex-shrink: 0;
    min-width: 170px;
}

.logo-icon img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    overflow: hidden;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== Dropdown Menu ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-link:hover {
    background-color: rgba(0, 135, 81, 0.1);
    color: var(--primary-color);
    padding-left: 2rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, rgba(0, 136, 81, 0.85) 0%, rgba(15, 23, 42, 0.85) 100%), url('image/homebg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 2rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-subtitle-main {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-details {
    margin-bottom: 1.5rem;
}

.hero-date {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.hero-free {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.sponsor-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(245,250,248,0.98) 100%);
}

.sponsor-page::before,
.sponsor-page::after {
    content: '';
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.35;
    z-index: 0;
}

.sponsor-page::before {
    top: -120px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 135, 81, 0.22) 0%, rgba(0, 135, 81, 0) 65%);
}

.sponsor-page::after {
    bottom: -140px;
    left: -120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.20) 0%, rgba(212, 175, 55, 0) 70%);
}

.sponsor-page .navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 135, 81, 0.08);
}

.sponsor-page .navbar-container,
.sponsor-page .logo,
.sponsor-page .nav-menu {
    position: relative;
    z-index: 1;
}

.sponsor-page .nav-link,
.sponsor-page .dropdown-link {
    color: var(--primary-color);
}

.sponsor-page .nav-link:hover,
.sponsor-page .dropdown-link:hover,
.sponsor-page .nav-link.active,
.sponsor-page .dropdown-link.active {
    color: var(--secondary-color);
}

.sponsor-page .visitor-hero {
    position: relative;
    padding: 120px 2rem 90px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(0, 135, 81, 0.12), transparent 28%),
                radial-gradient(circle at 20% 20%, rgba(212,175,55,0.15), transparent 28%),
                linear-gradient(135deg, #f5fffa 0%, #f0faf8 45%, #e8faf6 100%);
    border-bottom: 1px solid rgba(0, 135, 81, 0.08);
}

.sponsor-page .visitor-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    color: var(--primary-color);
}

.sponsor-page .hero-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(0, 135, 81, 0.12);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    margin-bottom: 1.6rem;
    border: 1px solid rgba(0, 135, 81, 0.20);
}

.sponsor-page .hero-heading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.sponsor-page .hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(0, 135, 81, 0.10);
    color: var(--primary-color);
    font-size: 1.3rem;
    border: 1px solid rgba(0, 135, 81, 0.15);
}

.sponsor-page .visitor-hero-content h1 {
    font-size: clamp(3rem, 4.5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.sponsor-page .visitor-hero-content .hero-description,
.sponsor-page .visitor-hero-content .visitor-hero-subtitle {
    color: var(--text-dark);
    font-size: 1.05rem;
    max-width: 760px;
    margin: 0.75rem auto 0;
    line-height: 1.9;
}

.sponsor-page .section-label {
    display: inline-flex;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 700;
}

.sponsor-page .benefits-section {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    background:#ffffff;
}

.sponsor-page .benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-page .benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sponsor-page .benefits-header h2 {
    color: var(--primary-color);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.05;
    font-weight: 800;
    margin-top: 0.75rem;
}

.sponsor-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 1.5rem;
}

.sponsor-page .benefit-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 135, 81, 0.15);
    backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 135, 81, 0.08);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.sponsor-page .benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 16px 48px rgba(0, 135, 81, 0.12);
}

.sponsor-page .benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 135, 81, 0.12);
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.sponsor-page .benefit-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.sponsor-page .benefit-card p {
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.sponsor-page .overview-table-section {
    padding: 4rem 2rem;
    background: #f5faf8;
}

.sponsor-page .overview-table-card {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 135, 81, 0.12);
    backdrop-filter: blur(24px);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(0, 135, 81, 0.08);
}

.sponsor-page .overview-table-card .table-top {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
}

.sponsor-page .overview-table-card .table-top h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.sponsor-page .table-note {
    color: var(--text-dark);
    font-size: 0.98rem;
}

.sponsor-page .table-scroll {
    overflow-x: auto;
    margin-top: 1rem;
}

.sponsor-page .overview-table-card table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.sponsor-page .overview-table-card th,
.sponsor-page .overview-table-card td {
    padding: 1.25rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 135, 81, 0.08);
}

.sponsor-page .overview-table-card th {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sponsor-page .overview-table-card td {
    color: var(--text-dark);
    font-size: 0.98rem;
}

.sponsor-page .overview-table-card .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.sponsor-page .overview-table-card .table-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 135, 81, 0.10);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
}

.sponsor-page .pricing-cards-section {
    padding: 5rem 2rem 6rem;
    background: #ffffff;
}

.sponsor-page .pricing-cards-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.sponsor-page .featured-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 135, 81, 0.08), rgba(212, 175, 55, 0.06));
    border: 1px solid rgba(0, 135, 81, 0.15);
    backdrop-filter: blur(24px);
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: 0 12px 35px rgba(0, 135, 81, 0.08);
    margin-bottom: 2rem;
}

.sponsor-page .featured-card .featured-text h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sponsor-page .featured-card .featured-text h2 {
    color: var(--primary-color);
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    line-height: 1.02;
    margin-bottom: 1rem;
}

.sponsor-page .featured-card .featured-text p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.9;
    max-width: 620px;
}

.sponsor-page .featured-card .featured-price {
    color: var(--secondary-color);
    font-size: clamp(3rem, 5vw, 4.4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.sponsor-page .featured-card .featured-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sponsor-page .featured-card .featured-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.9rem;
    font-size: 1rem;
}

.sponsor-page .featured-card .featured-list li::before {
    content: '\2714';
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.sponsor-page .featured-card .featured-action {
    margin-top: 1.5rem;
}

.sponsor-page .featured-card .card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 135, 81, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-page .featured-card .card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 135, 81, 0.28);
}

.sponsor-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 1.5rem;
}

.sponsor-page .pricing-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 135, 81, 0.12);
    backdrop-filter: blur(22px);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 135, 81, 0.06);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.sponsor-page .pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.sponsor-page .pricing-card.gold {
    border-color: var(--secondary-color);
}

.sponsor-page .pricing-card.silver {
    border-color: rgba(0, 135, 81, 0.18);
}

.sponsor-page .pricing-card.bronze {
    border-color: rgba(0, 135, 81, 0.15);
}

.sponsor-page .pricing-card.supporting {
    border-color: rgba(0, 135, 81, 0.12);
}

.sponsor-page .pricing-card.gala {
    border-color: var(--secondary-color);
}

.sponsor-page .pricing-card .card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.sponsor-page .pricing-card .card-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.sponsor-page .pricing-card.platinum .card-icon {
    background: var(--secondary-color);
    color: var(--white);
}

.sponsor-page .pricing-card.gold .card-icon {
    background: var(--secondary-color);
}

.sponsor-page .pricing-card.silver .card-icon {
    background: var(--primary-color);
}

.sponsor-page .pricing-card.bronze .card-icon {
    background: var(--primary-color);
}

.sponsor-page .pricing-card.supporting .card-icon {
    background: var(--primary-color);
}

.sponsor-page .pricing-card.gala .card-icon {
    background: var(--secondary-color);
}

.sponsor-page .pricing-card h3 {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.sponsor-page .pricing-card .card-subtitle {
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    display: inline-block;
}

.sponsor-page .pricing-card .card-price {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.sponsor-page .pricing-card .card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(0, 135, 81, 0.08);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.sponsor-page .pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Icon styling for consistent appearance */
.feature-icon i,
.quick-link-icon i,
.highlight-icon i,
.audience-icon i,
.about-list li i,
.highlight-item .highlight-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(0, 135, 81, 0.06);
}

.social-links .social-icon i {
    font-size: 1rem;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    color: var(--primary-color);
}

.sponsor-page .pricing-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 0.95rem;
    line-height: 1.7;
}

.sponsor-page .pricing-card ul li::before {
    content: '\2714';
    color: currentColor;
    opacity: 0.9;
    margin-top: 0.15rem;
}

.sponsor-page .pricing-card .card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.4rem;
    margin-top: 1.5rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-page .pricing-card .card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 135, 81, 0.22);
}

.sponsor-page .contact-section {
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(0, 135, 81, 0.08);
}

.sponsor-page .contact-form {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 135, 81, 0.12);
    backdrop-filter: blur(18px);
    padding: 2.5rem;
    border-radius: 28px;
}

.sponsor-page .contact-form h3 {
    color: var(--primary-color);
}

.sponsor-page .contact-field label,
.sponsor-page .contact-field input,
.sponsor-page .contact-field textarea,
.sponsor-page .contact-field select {
    color: var(--text-dark);
}

.sponsor-page .contact-field input,
.sponsor-page .contact-field textarea,
.sponsor-page .contact-field select {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 135, 81, 0.12);
}

.sponsor-page .contact-field input:focus,
.sponsor-page .contact-field textarea:focus,
.sponsor-page .contact-field select:focus {
    box-shadow: 0 0 0 3px rgba(0, 135, 81, 0.12);
    border-color: var(--primary-color);
}

.sponsor-page .contact-form button {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 135, 81, 0.16);
}

.sponsor-page .testimonial-note {
    color: var(--text-dark);
    margin-top: 1rem;
}

@media (max-width: 1040px) {
    .sponsor-page .featured-card {
        grid-template-columns: 1fr;
    }

    .sponsor-page .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .sponsor-page .benefits-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-page .overview-table-card table {
        min-width: 100%;
    }
}

@media (max-width: 640px) {
    .sponsor-page::before,
    .sponsor-page::after {
        display: none;
    }

    .sponsor-page .hero-label,
    .sponsor-page .hero-heading h1 {
        font-size: clamp(2.2rem, 7vw, 3rem);
    }

    .sponsor-page .visitor-hero {
        padding: 90px 1.5rem 70px;
    }
}

.btn {
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.about-content .btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.about-content .btn-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--accent-color);
    padding: 10px 25px;
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.25);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.35);
}

.whatsapp-float i {
    font-size: 1.1rem;
}

/* ===== Countdown ===== */
.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.countdown-label {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* ===== Stats Section ===== */
.stats {
    background: var(--gray-bg);
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== About Section ===== */
.about {
    background: var(--white);
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-list {
    list-style: none;
}

.about-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== Image Carousel ===== */
.image-carousel {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: var(--gray-bg);
    transition: box-shadow 0.3s ease;
    animation: carouselFadeIn 1s ease-out;
}

@keyframes carouselFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-carousel:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.carousel-container {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1.2s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: var(--gray-bg);
}

/* ===== Alternative Slide Animation ===== */
/* Uncomment below and comment above for slide effect instead of fade+zoom */

/*
.carousel-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    transition: left 1s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    left: 0;
    z-index: 2;
}

.carousel-slide.prev {
    left: -100%;
}
*/

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite;
}

.indicator.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
    animation: none;
}

.indicator:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    width: 0%;
    transition: width 0.1s linear;
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ===== Features Section ===== */
.features {
    background: var(--gray-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Quick Links Section ===== */
.quick-links {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.quick-links h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.quick-link-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.quick-link-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quick-link-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
}

.quick-link-card p {
    opacity: 0.9;
}

/* ===== Why Exhibit Section ===== */
.exhibit-section {
    background: var(--gray-bg);
    padding: 5rem 2rem;
    text-align: center;
}

.exhibit-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), #7c2d12);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===== Contact Section ===== */
.contact-preview {
    background: var(--white);
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-dark);
}

.contact-preview h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 2rem;
    align-items: start;
}

.contact-info {
    background: var(--gray-bg);
    padding: 1.5rem;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-info p {
    color: var(--text-light);
}

.contact-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.contact-form {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-field {
    margin-bottom: 1.2rem;
}

.contact-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
}

.contact-field textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form button {
    margin-top: 1rem;
    width: 100%;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.social-icon i {
    font-size: 1.2rem;
    line-height: 1;
}

.social-icon:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.map-section {
    padding: 4rem 2rem;
    background: var(--gray-bg);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-container h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.map-container p {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: var(--white);
    padding: 1rem;
}

.map-wrapper iframe {
    border-radius: 10px;
    width: 100%;
    height: 400px;
}

/* ===== Sector Page ===== */
.sector-hero {
    background: linear-gradient(135deg, rgba(0, 136, 81, 0.85) 0%, rgba(15, 23, 42, 0.85) 100%), url('image/SAP Industry Solutions.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 2rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sector-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sector-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.sector-intro {
    padding: 4rem 2rem;
    background: var(--white);
}

.sector-intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.sector-intro-container p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.sectors-section {
    padding: 5rem 2rem;
    background: var(--gray-bg);
}

.sectors-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.sectors-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.sector-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--border-light);
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.sector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(0, 136, 117, 0.3);
}

.sector-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.sector-card p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sector-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.sector-features li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.sector-features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sector-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0f172a 100%);
    color: var(--white);
    text-align: center;
}

.sector-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.sector-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ===== About Page Styles ===== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(0, 135, 113, 0.9) 0%, rgba(15, 23, 42, 0.9) 100%), url('image/maps.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 80px 2rem 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* About Content Section */
.about-content-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-main-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.highlight-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Sidebar */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-details-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.event-details-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.event-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.event-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--primary-color);
    font-weight: 500;
}

.quick-actions {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.quick-actions h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.action-btn {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
}

.action-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Objectives Section */
.objectives-section {
    padding: 5rem 2rem;
    background: var(--gray-bg);
}

.objectives-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.objectives-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.objective-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.objective-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.objective-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    margin-top: 1rem;
}

.objective-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Event Details Section ===== */
.event-details-full {
    background: linear-gradient(135deg, #f0f4f8, var(--gray-bg));
    padding: 5rem 2rem;
}

.event-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

.event-details-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.event-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.overview-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--primary-color);
}

.overview-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.overview-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.event-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.component-block {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.component-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.component-block h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--accent-color);
}

.component-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.component-list li {
    color: var(--text-dark);
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.component-block p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.why-choose-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

.why-choose-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: inherit;
}

.why-choose-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: inherit;
    opacity: 0.9;
}

.why-choose-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.why-choose-image {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.why-choose-img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Why to Visit Section */
.why-visit-section {
    padding: 5rem 2rem;
    background: var(--gray-bg);
}

.why-visit-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-visit-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.why-visit-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.visit-reasons {
    text-align: left;
}

.visit-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.visit-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.visit-free .btn {
    display: inline-block;
    margin: 0 auto;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    text-align: center;
}

.visitor-types h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.visitor-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    text-align: left;
}

.visitor-list li {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Exhibitors Section */
.exhibitors-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.exhibitors-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.exhibitors-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.exhibitors-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.exhibitors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.exhibitor-category {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.exhibitor-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: var(--white);
    border-color: var(--primary-color);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.exhibitor-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.exhibitor-category p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}
.audience-section {
    padding: 5rem 2rem;
    background: var(--gray-bg);
}

.audience-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.audience-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.audience-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.audience-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Marketing Campaign Section */
.marketing-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.marketing-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.marketing-header {
    position: relative;
    margin-bottom: 3rem;
}

.green-line {
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    margin-bottom: 1rem;
    border-radius: 2px;
}

.marketing-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin: 0;
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.marketing-item {
    background: var(--gray-bg);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.marketing-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 136, 81, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), #7c2d12);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Exhibitor Page Styles ===== */

/* Exhibitor Hero */
.exhibitor-hero {
    background: linear-gradient(135deg, rgba(0, 136, 81, 0.85) 0%, rgba(15, 23, 42, 0.85) 100%), url('image/exhibitor-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 80px 2rem;
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exhibitor-hero .container {
    max-width: 800px;
    margin: 0 auto;
}

.exhibitor-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.exhibitor-hero .subheading {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Intro Section */
.intro-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.intro-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 2rem;
    background: var(--gray-bg);
}

.benefits-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(0, 136, 117, 0.3);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Booth Section */
.booth-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.booth-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.booth-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.booth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.booth-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid var(--border-light);
}

.booth-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.booth-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.booth-card p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.booth-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Registration Section */
.registration-section {
    padding: 5rem 2rem;
    background: var(--gray-bg);
}

.registration-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.registration-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.registration-section form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 136, 81, 0.1);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    margin-top: 1rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 136, 81, 0.3);
}

.payment-note {
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Logos Section */
.logos-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.logos-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logos-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logos-grid img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: var(--transition);
    opacity: 0.7;
}

.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color), #7c2d12);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section .container {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section .cta-button {
    margin-top: 2rem;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 2rem 2rem;
    text-align: center;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .logo {
        max-width: 340px;
    }

    .logo-icon {
        height: 200px; 
    }

    .logo h1 {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 1rem;
        gap: 1rem;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: var(--white);
        box-shadow: none;
        margin-top: 0.5rem;
    }

    .nav-dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    .dropdown-link {
        padding: 0.5rem 1rem;
    }

    .dropdown-link:hover {
        padding-left: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle-main {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .carousel-container {
        height: 250px;
    }

    .carousel-indicators {
        bottom: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        padding: 1rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.2rem;
    }

    .about-hero-stats {
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-image {
        height: 300px;
    }

    .why-choose-img {
        height: 300px;
    }

    .why-visit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .marketing-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .exhibitors-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .quick-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .logo {
        gap: 0.5rem;
    }

    .logo-icon {
        height: 60px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle-main {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero {
        padding: 50px 1rem;
        min-height: auto;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .countdown {
        flex-direction: column;
        gap: 0.5rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-visit-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .marketing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .marketing-item {
        padding: 1rem;
        font-size: 1rem;
    }

    .exhibitors-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .map-container h3 {
        font-size: 1.8rem;
    }

    .map-container p {
        font-size: 1rem;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .sector-hero-content h1 {
        font-size: 2.5rem;
    }

    .sector-hero-subtitle {
        font-size: 1.1rem;
    }

    .sectors-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .sector-card {
        padding: 1.5rem;
    }

    .sector-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .sector-hero-content h1 {
        font-size: 2rem;
    }

    .sector-hero-subtitle {
        font-size: 1rem;
    }

    .sectors-container h2 {
        font-size: 2rem;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sector-card {
        padding: 1.2rem;
    }

    .sector-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .sector-card h3 {
        font-size: 1.3rem;
    }

    .sector-cta-content h2 {
        font-size: 2rem;
    }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.contact-item span,
.contact-item a,
.contact-item p {
    font-size: 1rem;
    color: var(--text-light);
}

.contact-item .contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(0, 135, 117, 0.12);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-item .contact-icon i {
    font-size: 0.9rem;
    line-height: 1;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* ===== Conference Page Styles ===== */

/* Conference Hero Section */
.conference-hero {
    background: linear-gradient(135deg, rgba(0, 136, 81, 0.85) 0%, rgba(15, 23, 42, 0.85) 100%), url('image/homebg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conference-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.conference-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Conference Intro Section */
.conference-intro {
    padding: 4rem 2rem;
    background: var(--white);
}

.conference-intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.conference-intro-container p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* What to Expect Section */
.expect-section {
    padding: 5rem 2rem;
    background: var(--gray-bg);
}

.expect-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.expect-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expect-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.expect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.expect-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(0, 136, 117, 0.3);
}

.expect-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.expect-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Conference Schedule Section */
.schedule-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.schedule-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.schedule-day {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    text-align: left;
    transition: var(--transition);
}

.schedule-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.schedule-day h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.schedule-list {
    list-style: none;
    padding: 0;
}

.schedule-list li {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
}

.schedule-list li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Featured Speakers Section */
.speakers-section {
    padding: 5rem 2rem;
    background: var(--gray-bg);
}

.speakers-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.speakers-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.speakers-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.speaker-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.speaker-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 136, 117, 0.3);
}

.speaker-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.speaker-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Venue & Date Section */
.venue-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.venue-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.venue-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.venue-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.venue-date,
.venue-location {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--gray-bg);
    border-radius: 15px;
    min-width: 250px;
}

.venue-date i,
.venue-location i {
    font-size: 3rem;
    color: var(--primary-color);
}

.venue-date h3,
.venue-location h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

/* Conference CTA Section */
.conference-cta {
    background: linear-gradient(135deg, var(--secondary-color), #7c2d12);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.conference-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.conference-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Responsive Styles for Conference Page ===== */
@media (max-width: 768px) {
    .conference-hero-content h1 {
        font-size: 2.5rem;
    }

    .conference-hero-subtitle {
        font-size: 1.1rem;
    }

    .expect-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .speakers-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .venue-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .conference-cta-content h2 {
        font-size: 2rem;
    }

    .conference-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .conference-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== Event Schedule Page Styles ===== */

/* Schedule Hero Section */
.schedule-hero {
    background: linear-gradient(135deg, rgba(0, 136, 81, 0.85) 0%, rgba(15, 23, 42, 0.85) 100%), url('image/homebg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.schedule-hero-subtitle {
    font-size: 1.8rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.schedule-hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -50px;
    top: 0;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-year {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 136, 81, 0.3);
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-content {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.timeline-phase {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-events {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.event-card.workshop:hover {
    border-color: var(--accent-color);
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.event-location i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.event-location h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.event-type {
    margin-bottom: 0.5rem;
}

.event-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-badge.conference {
    background: var(--secondary-color);
}

.event-badge.workshop {
    background: var(--accent-color);
}

.event-badge.expo {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.event-badge.international {
    background: linear-gradient(45deg, #7c3aed, #ec4899);
    font-size: 0.75rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.event-meta i {
    color: var(--primary-color);
}

/* Featured Abuja Event */
.abuja-featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border: 3px solid var(--accent-color);
    transform: scale(1.02);
    position: relative;
    overflow: hidden;
}

.abuja-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="50" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.abuja-featured .event-location i {
    color: var(--accent-color);
}

.abuja-featured .event-location h4 {
    color: var(--white);
    font-size: 1.3rem;
}

.abuja-featured .event-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.abuja-featured .event-meta span {
    color: rgba(255, 255, 255, 0.9);
}

.abuja-featured .event-meta i {
    color: var(--accent-color);
}

.featured-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: auto;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.event-description {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.event-description p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Schedule Closing Section */
.schedule-closing {
    background: linear-gradient(135deg, var(--secondary-color), #7c2d12);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.schedule-closing-content h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.closing-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.closing-stat {
    text-align: center;
    padding: 1rem;
}

.closing-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.closing-stat p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ===== Responsive Styles for Event Schedule Page ===== */
@media (max-width: 768px) {
    .schedule-hero-content h1 {
        font-size: 2.5rem;
    }

    .schedule-hero-subtitle {
        font-size: 1.4rem;
    }

    .schedule-hero-description {
        font-size: 1rem;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -30px;
        width: 30px;
    }

    .timeline-year {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }

    .timeline-dot {
        width: 16px;
        height: 16px;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .timeline-header h3 {
        font-size: 1.6rem;
    }

    .timeline-events {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-card {
        padding: 1.2rem;
    }

    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .abuja-featured {
        transform: scale(1);
    }

    .schedule-closing-content h2 {
        font-size: 1.8rem;
    }

    .closing-stats {
        gap: 2rem;
    }

    .closing-stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .schedule-hero-content h1 {
        font-size: 2rem;
    }

    .schedule-hero-subtitle {
        font-size: 1.2rem;
    }

    .timeline-header h3 {
        font-size: 1.4rem;
    }

    .timeline-phase {
        font-size: 0.8rem;
    }

    .event-location h4 {
        font-size: 1rem;
    }

    .event-badge {
        font-size: 0.7rem;
    }

    .schedule-closing-content h2 {
        font-size: 1.6rem;
    }

    .closing-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .closing-stat h3 {
        font-size: 1.8rem;
    }
}

/* ===== Visitor Page Styles ===== */

/* Visitor Hero Section */
.visitor-hero {
    background: linear-gradient(135deg, rgba(0, 136, 81, 0.85) 0%, rgba(15, 23, 42, 0.85) 100%), url('image/homebg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visitor-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.visitor-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Visitor Intro Section */
.visitor-intro {
    padding: 4rem 2rem;
    background: var(--white);
}

.visitor-intro-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.visitor-intro-container p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Why Attend Section */
.why-attend-section {
    padding: 5rem 2rem;
    background: var(--gray-bg);
}

.why-attend-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-attend-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.why-attend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-attend-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.why-attend-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.why-attend-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(0, 136, 117, 0.3);
}

.why-attend-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.why-attend-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Registration Section */
.registration-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.registration-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.registration-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.registration-container > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.form-container {
    margin-top: 2rem;
}

.form-container iframe {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-height: 1432px;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 2rem;
    background: var(--gray-bg);
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.benefits-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Visitor CTA Section */
.sponsor-page .visitor-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.visitor-cta {
    background: linear-gradient(135deg, var(--secondary-color), #7c2d12);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.visitor-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.visitor-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.visitor-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Responsive Styles for Visitor Page ===== */
@media (max-width: 768px) {
    .visitor-hero-content h1 {
        font-size: 2.5rem;
    }

    .visitor-hero-subtitle {
        font-size: 1.1rem;
    }

    .why-attend-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .visitor-cta-content h2 {
        font-size: 2rem;
    }

    .visitor-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .visitor-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .form-container iframe {
        min-height: 1000px;
    }
}

@media (max-width: 480px) {
    .visitor-hero-content h1 {
        font-size: 2rem;
    }

    .visitor-hero-subtitle {
        font-size: 1rem;
    }

    .registration-container h2,
    .why-attend-container h2,
    .benefits-container h2,
    .visitor-cta-content h2 {
        font-size: 2rem;
    }

    .form-container iframe {
        min-height: 1200px;
    }
}

/* ===== Register Page Styles ===== */

/* Register Hero Section */
.register-hero {
    background: linear-gradient(135deg, rgba(0, 136, 81, 0.85) 0%, rgba(15, 23, 42, 0.85) 100%), url('image/homebg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 2rem;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.register-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Registration Options Section */
.registration-options {
    padding: 5rem 2rem;
    background: var(--white);
}

.registration-options-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.registration-options-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.option-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.visitor-card:hover {
    border-color: var(--primary-color);
}

.exhibitor-card:hover {
    border-color: var(--secondary-color);
}

.sponsor-card:hover {
    border-color: var(--accent-color);
}

.option-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 136, 117, 0.3);
}

.option-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.option-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.option-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.option-benefits li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.option-benefits li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ===== Responsive Styles for Register Page ===== */
@media (max-width: 768px) {
    .register-hero-content h1 {
        font-size: 2.5rem;
    }

    .register-hero-subtitle {
        font-size: 1.1rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .option-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .register-hero-content h1 {
        font-size: 2rem;
    }

    .register-hero-subtitle {
        font-size: 1rem;
    }

    .registration-options-container h2 {
        font-size: 2rem;
    }

    .option-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .option-card h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .conference-hero-content h1 {
        font-size: 2rem;
    }

    .conference-hero-subtitle {
        font-size: 1rem;
    }

    .expect-container h2,
    .schedule-container h2,
    .speakers-container h2,
    .venue-container h2,
    .conference-cta-content h2 {
        font-size: 2rem;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
    }

    .venue-date,
    .venue-location {
        padding: 1.5rem;
        min-width: auto;
    }

    .venue-date i,
    .venue-location i {
        font-size: 2.5rem;
    }

    .venue-date h3,
    .venue-location h3 {
        font-size: 1.3rem;
        font-weight: 600;
    }
}
