

        :root {
            --primary-maroon: #0e0064;
            --primary-dark: #0e0064;
            --accent-gold: #FBB843;;
            --text-dark: #1a1a1a;
            --text-gray: #666666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --gradient-start: #0e0064;
            --gradient-end: #0e0064;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
                font-family: 'Europa Nuova', sans-serif;
            font-weight: 600;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-maroon);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent-gold);
        }

        .section-subtitle {
            color: var(--text-gray);
            font-size: 1rem;
            margin-bottom: 3rem;
        }

        /* ============================================
           NAVBAR STYLES
           ============================================ */
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
            background: transparent;
        }

        .navbar.scrolled {
            background: var(--white);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 10px 0;
        }

        .navbar.scrolled .nav-link {
            color: var(--text-dark) !important;
        }

        .navbar.scrolled .navbar-brand img {
            filter: none;
        }

        .navbar-brand img {
            height: 60px;
            transition: all 0.3s ease;
        }

        .nav-link {
            color: var(--white) !important;
            font-weight: 500;
            font-size: 18px;
            padding: 8px 15px !important;
            margin: 0 5px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 80%;
        }

        .btn-register {
            background: var(--accent-gold);
            color: var(--white) !important;
            padding: 10px 25px !important;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-register:hover {
            background: #ffcc33;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
        }

        .btn-register::after {
            display: none !important;
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero-section {
          background-image: radial-gradient( circle farthest-corner at 17.6% 50.7%,  rgba(25,0,184,1) 0%, rgba(0,0,0,1) 90% );
            display: flex;
            align-items: center;
            padding-top: 140px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: radial-gradient( circle farthest-corner at 17.6% 50.7%,  rgba(25,0,184,1) 0%, rgba(0,0,0,1) 90% );
            background-size: 100px;
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-logo {
            width: 120px;
            margin-bottom: 20px;
        }

        .hero-date {
                font-family: "Roboto Slab", serif;
            color: rgba(255, 255, 255, 0.9);
            font-size: 2.5rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            font-weight: 600;
            justify-content: center;
          
        }

        .hero-title {
          font-family: 'Europa Nuova', sans-serif;
    font-weight: 800; /* ExtraBold */
            color: var(--white);
            font-size: 3.6rem;
         
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-subtitle {
            color: rgba(255,255,255,0.85);
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn-hero {
            background: var(--accent-gold);
            color: var(--white);
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-hero:hover {
            background: #ffcc33;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            color: var(--white);
        }

        .partner-logos {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
        }

        .partner-label {
            color: rgba(255,255,255,0.7);
            font-size: 0.85rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .partner-logo {
            height: 40px;
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        /* ============================================
           ABOUT SECTION
           ============================================ */
        .about-section {
            background: var(--bg-light);
        }

        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-content h2 {
            color: var(--primary-maroon);
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .about-content p {
            color: var(--text-gray);
            margin-bottom: 15px;
            text-align: justify;
        }

        /* ============================================
           AGENDA SECTION
           ============================================ */
        .agenda-section {
            background: var(--white);
        }

        .agenda-item {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 20px 25px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            background: var(--white);
        }

        .agenda-item:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-color: var(--primary-maroon);
            transform: translateX(5px);
        }

        .agenda-time {
            background: var(--primary-maroon);
            color: var(--white);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            white-space: nowrap;
        }

        .agenda-title {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .agenda-desc {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin: 0;
        }

        /* ============================================
           KEY QUESTIONS SECTION
           ============================================ */
        .questions-section {
            background: var(--bg-light);
        }

        .questions-list {
            list-style: none;
            padding: 0;
        }

        .questions-list li {
            padding: 15px 0;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .questions-list li:last-child {
            border-bottom: none;
        }

        .questions-list i {
            color: var(--primary-maroon);
            font-size: 1.2rem;
            margin-top: 3px;
        }

        .questions-list span {
            color: var(--text-dark);
            font-size: 18px;
        }

        /* ============================================
           COUNTDOWN SECTION
           ============================================ */
        .countdown-section {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            padding: 60px 0 30px;
            position: relative;
        }

        .countdown-label {
            color: rgba(255,255,255,0.9);
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .countdown-date {
            color: var(--white);
            font-size: 35px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .countdown-box {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .countdown-item {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px 35px;
            text-align: center;
            min-width: 100px;
        }

        .countdown-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1;
            display: block;
        }

        .countdown-text {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }

        /* ============================================
           GALLERY SECTION
           ============================================ */
        .gallery-section {
            background: var(--white);
        }

        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(139, 21, 56, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: var(--white);
            font-size: 2rem;
        }

        /* ============================================
           SPEAKERS SECTION
           ============================================ */
        .speakers-section {
            background: var(--bg-light);
        }

        .speaker-card {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }

        .speaker-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .speaker-image {
            width: 100%;
            /* height: 280px; */
            object-fit: cover;
            object-position: top;
        }

        .speaker-info {
            padding: 20px;
            text-align: center;
        }

        .speaker-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .speaker-designation {
            color: var(--text-gray);
            font-size: 0.85rem;
            line-height: 1.4;
        }

        /* ============================================
           PARTNERS SECTION
           ============================================ */
        .partners-section {
            background: var(--white);
        }

        .partner-category {
            margin-bottom: 50px;
        }

        .partner-category-title {
            font-size: 1.3rem;
            color: var(--primary-maroon);
            margin-bottom: 25px;
            text-align: center;
        }

        .partner-logo-item {
            background: var(--bg-light);
            border-radius: 15px;
            padding: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            transition: all 0.3s ease;
        }

        .partner-logo-item:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-5px);
        }

        .partner-logo-item img {
            max-height: 85px;
            max-width: 100%;
            object-fit: contain;
        }

        /* ============================================
           SPONSORSHIP SECTION
           ============================================ */
        .sponsorship-section {
            background: var(--bg-light);
        }

        .sponsorship-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            text-align: center;
            border-top: 5px solid var(--primary-maroon);
        }

        .sponsorship-card h3 {
            color: var(--primary-maroon);
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .sponsorship-card p {
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .contact-person {
            background: var(--bg-light);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
        }

        .contact-person h4 {
            color: var(--text-dark);
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 10px;
            color: var(--text-gray);
        }

        .contact-detail i {
            color: var(--primary-maroon);
        }

        .btn-sponsor {
            background: var(--primary-maroon);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-sponsor:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            color: var(--white);
        }

        /* ============================================
           FOOTER SECTION
           ============================================ */
        .footer-section {
            background: #1a1a1a;
            color: var(--white);
            padding: 80px 0 30px;
        }

        .footer-title {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: var(--white);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent-gold);
        }

        .footer-about p {
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .footer-stats {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-gold);
            display: block;
        }

        .stat-label {
            color: rgba(255,255,255,0.7);
            font-size: 0.85rem;
        }

        .footer-contact p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .footer-contact i {
            color: var(--accent-gold);
            margin-top: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--accent-gold);
            transform: translateY(-3px);
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            margin: 0;
        }

        .agenda-desc {
    margin-top: 6px;
    font-size: 18px;
    color: #191919;
    line-height: 1.6;
}


        /* ============================================
           RESPONSIVE STYLES
           ============================================ */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .navbar-collapse {
                background: var(--white);
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            }

            .navbar-collapse .nav-link {
                color: var(--text-dark) !important;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .countdown-number {
                font-size: 2rem;
            }

            .countdown-item {
                padding: 15px 25px;
                min-width: 135px;
            }

            .section-padding {
                padding: 50px 0;
            }

            .about-content h2 {
                font-size: 1.8rem;
            }

            .agenda-time {
                margin-bottom: 10px;
            }

            .footer-stats {
                justify-content: center;
            }
        }

        @media (max-width: 575px) {
            .hero-title {
                font-size: 1.6rem;
            }

            .partner-logo {
                height: 30px;
            }

          

            .sponsorship-card {
                padding: 25px;
            }
        }
/* Main agenda box */
/* Agenda box */
.agenda-box {
    background: #f3f3f3;
    border-radius: 20px;
    padding: 24px 28px;
    margin-bottom: 26px;
    transition: all 0.3s ease;
}

.agenda-box:hover {
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}

/* Header inline */
.agenda-header-inline {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Time pill */
.agenda-time-pill {
    background: #0e0064;
    color: #fff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    /* white-space: nowrap; */
}

/* Title inline */
.agenda-title-inline {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
}

/* Description */
.agenda-desc {
    margin-top: 8px;
    padding-left: 4px;
    font-size: 18px;
    color: #121212;
    line-height: 1.6;
}

/* 📱 Mobile fix */
@media (max-width: 768px) {
  .hero-section {
 padding-top: 100px;
  }
  .hero-date{
    font-size: 18px;
  }
    .agenda-box {
        border-radius: 10px;
        padding: 20px;
    }

    .agenda-header-inline {
        flex-direction: column;
        align-items: flex-start;
    }

    .agenda-title-inline {
        font-size: 17px;
    }
}







/* ------- */

/* Speaker card */
.speaker-card {
  cursor: pointer;
}

/* Modal animation from TOP */
.speaker-modal .modal-dialog {
  transform: translateY(-80px);
  transition: transform 0.4s ease-out;
}

.speaker-modal.show .modal-dialog {
  transform: translateY(0);
}

/* Header styling */
.modal-header {
  border-bottom: 1px solid #e5e5e5;
}

.modal-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

/* Speaker image */
.modal-speaker-img {
  width: 120px;
  object-fit: cover;
  border-radius: 4px;
}

/* Body text exactly like screenshot */
.modal-body p {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 0;
}

/* Move modal to top */
.speaker-modal .modal-dialog {
    margin-top: 80px;        /* distance from top */
    transform: translateY(-30px);
    transition: all 0.35s ease-out;
}

/* Slide down animation */
.speaker-modal.show .modal-dialog {
    transform: translateY(0);
}

/* Keep modal large and clean */
.speaker-modal .modal-content {
    border-radius: 10px;
}


/* Force modal to top */
.speaker-modal {
    padding-top: 90px !important; /* below navbar */
}

.speaker-modal .modal-dialog {
    margin: 0 auto !important;
}

/* Smooth top animation */
.speaker-modal.fade .modal-dialog {
    transform: translateY(-40px);
    transition: transform 0.35s ease-out;
}

.speaker-modal.show .modal-dialog {
    transform: translateY(0);
}


.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #fff;
  font-size: 34px;
}

/* baner */

/* ============================================
   IAFI Hero Banner Styles
   ============================================ */

/* CSS Variables */
:root {
    --primary-dark: #061b4d;
    --primary-light: #0b2a6f;
    --accent-gold: #e6a817;
    --accent-yellow: #f4b942;
    --text-white: #ffffff;
    --text-light: #b8d4f0;
    --badge-yellow: #f4b942;
    --badge-white: #ffffff;
    --font-primary: 'Poppins', sans-serif;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ============================================
   Background Wave Patterns
   ============================================ */
.wave-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.wave-lines {
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.wave-line {
    animation: waveFlow 8s ease-in-out infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 0.5s; }
.wave-3 { animation-delay: 1s; }
.wave-4 { animation-delay: 1.5s; }
.wave-5 { animation-delay: 2s; }
.wave-6 { animation-delay: 2.5s; }
.wave-7 { animation-delay: 3s; }
.wave-8 { animation-delay: 3.5s; }

@keyframes waveFlow {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.6;
    }
    25% {
        transform: translateX(10px) translateY(-5px);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-5px) translateY(5px);
        opacity: 0.5;
    }
    75% {
        transform: translateX(5px) translateY(-3px);
        opacity: 0.7;
    }
}

/* ============================================
   Geometric Sphere Graphic
   ============================================ */
.sphere-container {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    max-width: 600px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}

.geometric-sphere {
    width: 100%;
    height: auto;
    animation: sphereRotate 20s linear infinite;
}

.sphere-wireframe {
    animation: spherePulse 4s ease-in-out infinite;
}

.inner-core {
    animation: coreGlow 3s ease-in-out infinite alternate;
}

@keyframes sphereRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spherePulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes coreGlow {
    0% {
        opacity: 0.5;
        filter: drop-shadow(0 0 5px rgba(255, 180, 80, 0.5));
    }
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(255, 180, 80, 0.9));
    }
}

/* ============================================
   Hero Content Container
   ============================================ */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 1200px;
}

/* ============================================
   Logo Styles
   ============================================ */
.logo-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.iafi-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.logo-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.logo-tag {
    font-size: 0.55rem;
    font-weight: 400;
    color: #666;
    font-style: italic;
    line-height: 1.2;
}

/* ============================================
   Text Content Styles
   ============================================ */
.text-content {
    margin-bottom: 2rem;
}

/* Organization Name */
.org-name {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

/* Main Headline */
.main-headline {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.highlight-text {
    color: var(--accent-gold);
    font-weight: 800;
}

.highlight-text sup {
    font-size: 0.5em;
    font-weight: 600;
    vertical-align: super;
}

.wrc-text {
    color: var(--text-white);
    font-weight: 800;
}

/* Subheading */
.subheading {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ============================================
   Event Badges
   ============================================ */
.badges-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.event-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: clamp(0.875rem, 2vw, 1.125rem);
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Date Badge */
.date-badge {
    background-color: var(--badge-yellow);
    color: var(--primary-dark);
}

/* Location Badge */
.location-badge {
    background-color: var(--badge-white);
    color: var(--primary-dark);
}

/* ============================================
   Call to Action Button
   ============================================ */
.cta-container {
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: var(--text-white);
    background: transparent;
    border: 2px solid var(--text-white);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    background: var(--text-white);
    color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

/* ============================================
   Hero Footer
   ============================================ */
.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 10;
}

/* Media Partner */
.media-partner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partner-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.partner-text {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--primary-dark);
    letter-spacing: 1px;
    line-height: 1;
}

.partner-text-bold {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 2px;
    line-height: 1;
}

/* Social Media */
.social-media {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-white);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--accent-gold);
}

/* ============================================
   Responsive Styles
   ============================================ */

/* Large Screens (1200px and up) */
@media (min-width: 1200px) {
    .sphere-container {
        right: 0;
        width: 550px;
    }
}

/* Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .sphere-container {
        right: -5%;
        width: 450px;
    }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .sphere-container {
        right: -10%;
        width: 350px;
        opacity: 0.7;
    }
    
    .hero-footer {
        padding: 1rem 1.5rem;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .hero-section {
     
        padding-bottom: 10px;
    }
    
    .sphere-container {
        right: -20%;
        width: 280px;
        opacity: 0.5;
        top: 55%;
    }
    
    .iafi-logo {
        padding: 0.5rem 1rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-main {
        font-size: 1.5rem;
    }
    
    .logo-sub {
        font-size: 0.55rem;
    }
    
    .logo-tag {
        font-size: 0.5rem;
    }
    
    .badges-container {
        flex-direction: column;
        align-items: center;
    }
    
    .event-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .media-partner {
        align-items: center;
    }
    
    .social-media {
        flex-direction: column;
        align-items: center;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .sphere-container {
        width: 200px;
        opacity: 0.4;
    }
    
    .iafi-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .logo-text {
        align-items: center;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        width: 90%;
        max-width: 280px;
    }
}

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .hero-content {
        max-width: 1400px;
    }
    
    .sphere-container {
        width: 650px;
    }
}

/* ============================================
   Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-section {
        background: #000046;
    }
    
    .highlight-text {
        color: #ffd700;
    }
}


/* -------- */
/* Contact Cards */
.contact-card {
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Social Icons */
.social-icons a {
  color: #fff;
  margin-left: 15px;
  font-size: 20px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #ffd700;
  transform: translateY(-3px);
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .social-icons a {
    margin: 0 10px;
  }
}
