        :root {
            --primary-blue: #003865;
            --maroon: #800000;
            --gold: #f9b233;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --text-dark: #333333;
            --text-light: #6c757d;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Georgia', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--white);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Times New Roman', sans-serif;
            font-weight: 600;
            color: var(--maroon);
            margin-bottom: 1rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Skip to main content for accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 6px;
            background: var(--primary-blue);
            color: white;
            padding: 8px;
            text-decoration: none;
            z-index: 10000;
            transition: top 0.3s;
        }

        .skip-link:focus {
            top: 6px;
        }

        /* Topbar Styles */
        .iabamrr-topbar {
            background: linear-gradient(90deg, var(--primary-blue), #00294e);
            color: var(--white);
            padding: 8px 0;
            font-size: 14px;
        }

        .iabamrr-topbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .iabamrr-topbar-links {
            display: flex;
            list-style: none;
            gap: 25px;
            margin: 0;
            padding: 0;
        }

        .iabamrr-topbar-links li {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .iabamrr-topbar-links a {
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }

        .iabamrr-topbar-links a:hover {
            color: var(--gold);
            transform: translateY(-1px);
        }

        .iabamrr-topbar-links i {
            color: var(--gold);
        }

        /* Header Styles */
        .iabamrr-header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .iabamrr-header.scrolled {
            padding: 5px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .iabamrr-header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .iabamrr-logo img {
            height: 90px;
            transition: var(--transition);
            width: auto;
        }

        .iabamrr-header.scrolled .iabamrr-logo img {
            height: 70px;
        }

        .iabamrr-nav {
            display: flex;
        }

        .iabamrr-nav-menu {
            display: flex;
            list-style: none;
            gap: 25px;
            margin: 0;
            padding: 0;
        }

        .iabamrr-nav-menu li {
            position: relative;
        }

        .iabamrr-nav-menu a {
            text-decoration: none;
            color: var(--primary-blue);
            font-weight: 500;
            font-size: 16px;
            transition: var(--transition);
            padding: 8px 0;
            display: block;
        }

        .iabamrr-nav-menu a:hover {
            color: var(--maroon);
            transform: translateY(-2px);
        }

        .iabamrr-nav-menu li.active>a {
            color: var(--secondary);
            font-weight: 700;
            border-bottom: 2px solid #660000ec;
            padding-bottom: 4px;
        }


        .iabamrr-nav-menu .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            box-shadow: var(--shadow);
            min-width: 300px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 100;
            border-radius: 8px;
            overflow: hidden;
        }

        .iabamrr-nav-menu li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .iabamrr-nav-menu .dropdown li {
            width: 100%;
        }

        .iabamrr-nav-menu .dropdown a {
            padding: 12px 20px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            font-size: 14px;
        }

        .iabamrr-nav-menu .dropdown a:hover {
            background-color: rgba(0, 56, 101, 0.05);
            transform: translateX(5px);
        }

        .iabamrr-mobile-toggle {
            display: none;
            font-size: 24px;
            color: var(--primary-blue);
            cursor: pointer;
            z-index: 1002;
            background: none;
            border: none;
            padding: 5px;
        }

        /* Mobile Nav Close Button */
        .iabamrr-mobile-close {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: var(--primary-blue);
            cursor: pointer;
            z-index: 1003;
            background: none;
            border: none;
        }

        .iabamrr-nav.active .iabamrr-mobile-close {
            display: block;
        }

        /* Hero Section - Fixed Slider */
        .iabamrr-hero {
            position: relative;
            height: 80vh;
            overflow: hidden;
        }

        .iabamrr-hero-slider {
            height: 100%;
            position: relative;
        }

        .iabamrr-hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
        }

        .iabamrr-hero-slide.active {
            opacity: 1;
        }

        .iabamrr-slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .iabamrr-slide-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .iabamrr-slide-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 56, 101, 0.30), rgba(128, 0, 0, 0.25));

            z-index: -1;
        }

        .iabamrr-hero-content {
            max-width: 800px;
            padding: 0 20px;
            transform: translateY(30px);
            opacity: 0;
            transition: transform 1s ease, opacity 1s ease;
            z-index: 1;
        }

        .iabamrr-hero-slide.active .iabamrr-hero-content {
            transform: translateY(0);
            opacity: 1;
        }

        .iabamrr-hero h1 {
            font-size: 38px;
            color: var(--white);
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .iabamrr-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .iabamrr-hero-btn {
            display: inline-block;
            background: var(--gold);
            color: var(--primary-blue);
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(249, 178, 51, 0.3);
        }

        .iabamrr-hero-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(249, 178, 51, 0.4);
            background: #ffc107;
        }

        .iabamrr-hero-controls {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 2;
        }

        .iabamrr-hero-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .iabamrr-hero-dot.active {
            background: var(--gold);
            transform: scale(1.2);
        }

        .iabamrr-hero-dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

        /* Stats Section */
        .iabamrr-stats {
            padding: 100px 0;
            position: relative;
            background: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') fixed;
            background-size: cover;
            color: var(--white);
        }

        .iabamrr-stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 56, 101, 0.9), rgba(128, 0, 0, 0.85));
        }

        .iabamrr-stats-content {
            position: relative;
            z-index: 1;
        }

        .iabamrr-section-title {
            text-align: center;
            margin-bottom: 20px;
            position: relative;
        }

        .iabamrr-section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            position: relative;
            color: var(--white);
        }

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

        .iabamrr-section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 60px;
            line-height: 1.6;
        }

        .iabamrr-stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .iabamrr-stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px 20px;
            border-radius: 12px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .iabamrr-stat-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .iabamrr-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gold);
        }

        .iabamrr-stat-icon {
            font-size: 2.5rem;
            color: var(--gold);
            margin-bottom: 15px;
            transition: var(--transition);
        }

        .iabamrr-stat-card:hover .iabamrr-stat-icon {
            transform: scale(1.1);
        }

        .iabamrr-stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .iabamrr-stat-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
        }

        /* About Section */
        .iabamrr-about {
            padding: 100px 0;
            background: var(--white);
        }

        .iabamrr-about .iabamrr-section-title h2 {
            color: var(--maroon);
        }

        .iabamrr-about .iabamrr-section-subtitle {
            color: var(--text-light);
        }

        .iabamrr-about-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .iabamrr-about-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .iabamrr-about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .iabamrr-about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 56, 101, 0.03), rgba(128, 0, 0, 0.03));
            z-index: -1;
        }

        .iabamrr-about-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .iabamrr-about-card:hover h3 {
            color: var(--primary-blue);
        }

        .iabamrr-about-card h3 i {
            color: var(--gold);
            transition: var(--transition);
        }

        .iabamrr-about-card:hover h3 i {
            transform: rotate(10deg);
        }

        .iabamrr-about-points {
            list-style: none;
        }

        .iabamrr-about-points li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .iabamrr-about-points li.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .iabamrr-about-points li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 12px;
            height: 12px;
            background: var(--gold);
            border-radius: 50%;
            transition: var(--transition);
        }

        .iabamrr-about-points li:hover::before {
            background: var(--maroon);
            transform: scale(1.2);
        }

        .iabamrr-about-points li:nth-child(1) {
            transition-delay: 0.1s;
        }

        .iabamrr-about-points li:nth-child(2) {
            transition-delay: 0.2s;
        }

        .iabamrr-about-points li:nth-child(3) {
            transition-delay: 0.3s;
        }

        .iabamrr-about-points li:nth-child(4) {
            transition-delay: 0.4s;
        }

        .iabamrr-about-points li:nth-child(5) {
            transition-delay: 0.5s;
        }

        /* Leadership Section */
        .iabamrr-leadership {
            padding: 100px 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .iabamrr-leadership::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 56, 101, 0.02), rgba(128, 0, 0, 0.02));
            z-index: 0;
        }

        .iabamrr-leadership-content {
            position: relative;
            z-index: 1;
        }

        .iabamrr-leadership .iabamrr-section-title h2 {
            color: var(--maroon);
        }

        .iabamrr-leadership .iabamrr-section-subtitle {
            color: var(--text-light);
        }

        .iabamrr-leadership-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
        }

        .iabamrr-leader-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .iabamrr-leader-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .iabamrr-leader-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--maroon));
        }

        .iabamrr-leader-img {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .iabamrr-leader-img img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: var(--transition);
        }

        .iabamrr-leader-card:hover .iabamrr-leader-img img {
            transform: scale(1.1);
        }

        .iabamrr-leader-info {
            padding: 20px;
        }

        .iabamrr-leader-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 5px;
            transition: var(--transition);
        }

        .iabamrr-leader-card:hover .iabamrr-leader-name {
            color: var(--maroon);
        }

        .iabamrr-leader-role {
            color: var(--maroon);
            font-size: 0.9rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .iabamrr-leader-card:hover .iabamrr-leader-role {
            color: var(--primary-blue);
        }

        /* ========================================
           EVENTS & NOTIFICATIONS SECTION - NEW DESIGN
           ======================================== */

        .events-notifications-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            position: relative;
            overflow: hidden;
        }

        .events-notifications-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(249, 178, 51, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .events-notifications-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 56, 101, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        /* Section Header */
        .section-header-new {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .section-title-new {
            font-size: 3rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            position: relative;
            display: inline-block;
        }

        .section-title-new::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--maroon));
            border-radius: 3px;
        }

        .section-subtitle-new {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Tab Navigation */
        .tab-navigation {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .tab-btn {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 35px;
            background: var(--white);
            border: 2px solid transparent;
            border-radius: 50px;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .tab-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--gold), var(--maroon));
            transition: left 0.4s ease;
            z-index: -1;
        }

        .tab-btn i {
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .tab-count {
            background: rgba(0, 56, 101, 0.1);
            color: var(--primary-blue);
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .tab-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 56, 101, 0.15);
        }

        .tab-btn:hover i {
            transform: scale(1.1);
        }

        .tab-btn.active {
            background: linear-gradient(135deg, var(--gold), #f9c74f);
            color: var(--primary-blue);
            border-color: var(--gold);
            box-shadow: 0 8px 30px rgba(249, 178, 51, 0.3);
        }

        .tab-btn.active .tab-count {
            background: rgba(0, 56, 101, 0.2);
            color: var(--primary-blue);
        }

        /* Tab Content */
        .tab-content-wrapper {
            position: relative;
            z-index: 1;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Cards Grid */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 35px;
        }

        /* Event & Notification Card Base */
        .event-notification-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 2px solid transparent;
        }

        .event-notification-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 56, 101, 0.15);
            border-color: var(--gold);
        }

        /* Card Badge */
        .card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            z-index: 10;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .event-badge {
            background: rgba(249, 178, 51, 0.95);
            color: var(--primary-blue);
        }

        .notification-badge {
            background: rgba(0, 56, 101, 0.95);
            color: var(--white);
        }

        /* Event Card Specific */
        .event-card-new .card-image-wrapper {
            height: 280px;
            position: relative;
            overflow: hidden;
        }

        .event-card-new .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .event-card-new .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
            display: flex;
            align-items: flex-end;
            padding: 25px;
        }

        .event-date-badge {
            background: var(--white);
            border-radius: 12px;
            padding: 12px 18px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .date-day {
            font-size: 2rem;
            font-weight: 800;
            color: var(--maroon);
            line-height: 1;
            font-family: 'Poppins', sans-serif;
        }

        .date-month {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-top: 4px;
        }

        /* Notification Card Specific */
        .notification-card-new .notification-icon-wrapper {
            padding: 40px 30px 20px;
            display: flex;
            justify-content: center;
        }

        .notification-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(249, 178, 51, 0.2), rgba(0, 56, 101, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--maroon);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        /* Card Body */
        .card-body-new {
            padding: 30px;
        }

        .card-title-new {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
            line-height: 1.4;
            font-family: 'Poppins', sans-serif;
            transition: color 0.3s ease;
        }

        .event-notification-card:hover .card-title-new {
            color: var(--maroon);
        }

        .card-description-new {
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        /* Card Footer */
        .card-footer-new {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 2px solid rgba(0, 56, 101, 0.1);
        }

        .card-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .card-meta i {
            color: var(--gold);
            font-size: 1.1rem;
        }

        .card-link-new {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: linear-gradient(135deg, var(--maroon), #a00000);
            color: var(--white);
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(128, 0, 0, 0.2);
        }

        .card-link-new:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 18px rgba(128, 0, 0, 0.3);
            color: var(--white);
        }

        .card-link-new i {
            transition: transform 0.3s ease;
        }

        .card-link-new:hover i {
            transform: translateX(5px);
        }

        .deadline-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: rgba(255, 0, 0, 0.1);
            color: #d32f2f;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .deadline-badge i {
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .cards-grid {
                grid-template-columns: 1fr;
            }

            .section-title-new {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .tab-navigation {
                flex-direction: column;
                gap: 15px;
            }

            .tab-btn {
                width: 100%;
                justify-content: center;
            }

            .section-title-new {
                font-size: 2rem;
            }

            .section-subtitle-new {
                font-size: 1rem;
            }

            .card-footer-new {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
            }
        }

        @media (max-width: 576px) {
            .events-notifications-section {
                padding: 60px 0;
            }

            .section-header-new {
                margin-bottom: 40px;
            }

            .card-body-new {
                padding: 20px;
            }

            .event-card-new .card-image-wrapper {
                height: 200px;
            }

            .notification-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
        }

        /* Footer */
        .iabamrr-footer {
            background: linear-gradient(135deg, #001a33, #000d1a);
            color: var(--white);
            padding: 70px 0 0;
            position: relative;
            overflow: hidden;
        }

        .iabamrr-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1550684848-fac1c5b4e853?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover fixed;
            opacity: 0.1;
        }

        .iabamrr-footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .iabamrr-footer-about h3,
        .iabamrr-footer-links h3,
        .iabamrr-footer-contact h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }

        .iabamrr-footer-about h3::after,
        .iabamrr-footer-links h3::after,
        .iabamrr-footer-contact h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--gold);
        }

        .iabamrr-footer-about p {
            margin-bottom: 20px;
            opacity: 0.8;
            line-height: 1.7;
        }

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

        .iabamrr-footer-links li {
            margin-bottom: 12px;
        }

        .iabamrr-footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .iabamrr-footer-links a:hover {
            color: var(--gold);
            transform: translateX(5px);
        }

        .section-title {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 2rem;
            text-align: center;
        }

        .iabamrr-footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            opacity: 0.8;
        }

        .iabamrr-footer-contact i {
            color: var(--gold);
            width: 20px;
        }

        .iabamrr-footer-map {
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 10px;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }

        .iabamrr-footer-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .iabamrr-footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .iabamrr-footer-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: var(--transition);
        }

        .iabamrr-footer-social a:hover {
            background: var(--gold);
            color: var(--primary-blue);
            transform: translateY(-3px);
        }

        /* Footer Bottom with Designed By Section */
        .iabamrr-footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px 0;
            position: relative;
            z-index: 1;
        }

        .iabamrr-footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .iabamrr-footer-bottom p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.7;
            color: var(--white);
        }

        .iabamrr-designed-by {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.85rem;
            opacity: 0.7;
            color: var(--white);
        }

        .iabamrr-designed-by span {
            opacity: 0.8;
        }

        .designer-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
        }

        .designer-brand:hover {
            color: var(--white);
            transform: translateY(-1px);
        }

        .designer-logo {
            height: 20px;
            width: auto;
            border-radius: 3px;
        }

        .designer-name {
            font-weight: 600;
        }

        /* Animation Classes */
        .iabamrr-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .iabamrr-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .iabamrr-leadership-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 992px) {
            .iabamrr-stats-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .iabamrr-about-cards {
                grid-template-columns: 1fr;
            }

            .iabamrr-leadership-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .iabamrr-footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .iabamrr-nav-menu {
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
            .iabamrr-mobile-toggle {
                display: block;
            }

            .iabamrr-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--white);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                z-index: 1001;
                padding: 80px 20px 20px;
                overflow-y: auto;
            }

            .iabamrr-nav.active {
                right: 0;
            }

            .iabamrr-nav-menu {
                flex-direction: column;
                gap: 0;
            }

            .iabamrr-nav-menu li {
                width: 100%;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }

            .iabamrr-nav-menu a {
                padding: 15px 0;
            }

            .iabamrr-nav-menu .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                min-width: 100%;
                display: none;
                background: rgba(0, 0, 0, 0.02);
            }

            .iabamrr-nav-menu .dropdown.active {
                display: block;
            }

            .iabamrr-nav-menu .dropdown a {
                padding-left: 20px;
                font-size: 14px;
            }

            .iabamrr-hero h1 {
                font-size: 2.5rem;
            }

            .iabamrr-hero p {
                font-size: 1rem;
            }

            .iabamrr-stats-container {
                grid-template-columns: 1fr;
            }

            .iabamrr-leadership-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .iabamrr-footer-content {
                grid-template-columns: 1fr;
            }

            .iabamrr-topbar-content {
                flex-direction: column;
                gap: 10px;
            }

            .iabamrr-topbar-links {
                justify-content: center;
            }

            .iabamrr-footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .iabamrr-designed-by {
                justify-content: center;
            }

            .iabamrr-leader-img {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .iabamrr-leadership-grid {
                grid-template-columns: 1fr;
            }

            .iabamrr-hero {
                height: 70vh;
            }

            .iabamrr-hero h1 {
                font-size: 2rem;
            }

            .iabamrr-section-title h2 {
                font-size: 2rem;
            }

            .iabamrr-leader-img {
                height: 300px;
            }

            .event-card {
                margin-bottom: 20px;
            }

            .event-title {
                font-size: 1.1rem;
            }

            .event-description {
                font-size: 0.95rem;
            }

            .notification-card {
                padding: 20px;
            }

            .notification-title {
                font-size: 1.1rem;
            }

            .hero-banner h1 {
                font-size: 2rem;
            }

            .hero-banner p {
                font-size: 1rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .message-card {
                padding: 25px;
            }

            .message-card h3 {
                font-size: 1.5rem;
            }

            .message-card p {
                font-size: 1rem;
            }
        }

        /* editorial */

        .hero-banner {
            background: linear-gradient(135deg, rgba(0, 56, 101, 0.9), rgba(128, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }

        .hero-banner h1 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }

        .hero-banner p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.95;
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
        }

        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }

        .section-title h2 {
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--secondary);
            font-size: 2.5rem;
            line-height: 1.3;
            text-align: center;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .message-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 40px;
            transition: var(--transition);
            height: 100%;
            border-top: 5px solid var(--accent);
            display: flex;
            flex-direction: column;
        }

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

        .message-card h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.8rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
            text-align: center;
        }

        .message-card p {
            color: var(--text-dark);
            margin-bottom: 20px;
            font-size: 1.05rem;
            font-family: 'Open Sans', sans-serif;
            line-height: 1.8;
            text-align: left;
        }

        .message-card .signature {
            font-weight: 600;
            color: var(--primary);
            margin-top: auto;
            padding-top: 15px;
            font-style: italic;
            font-family: 'Open Sans', sans-serif;
            font-size: 1.1rem;
        }

        .profile-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--accent);
            margin: 0 auto;
            display: block;
        }

        .profile-img-lg {
            width: 220px;
            height: 220px;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary), #00294e);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .cta-section p {
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
            opacity: 0.9;
            font-family: 'Open Sans', sans-serif;
        }

        .btn-custom {
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            margin: 0 10px 15px;
            font-family: 'Open Sans', sans-serif;
            text-decoration: none;
            display: inline-block;
            color: #eee;
        }

        .btn-primary-custom {
            background: var(--accent);
            color: var(--primary);
            border: 2px solid var(--accent);
        }

        .btn-primary-custom:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-3px);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline-custom:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .illustration-img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--shadow);
            object-fit: cover;
            display: block;
            margin: 0 auto;
        }

        .bg-light {
            background-color: var(--light-bg) !important;
        }

        .py-5 {
            padding: 100px 0;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero-banner {
                padding: 70px 0;
            }

            .hero-banner h1 {
                font-size: 2.2rem;
            }

            .message-card {
                padding: 30px 25px;
            }

            .profile-img {
                width: 150px;
                height: 150px;
                margin-bottom: 25px;
            }

            .profile-img-lg {
                width: 180px;
                height: 180px;
            }

            .py-5 {
                padding: 70px 0;
            }
        }

        @media (max-width: 576px) {
            .hero-banner h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .btn-custom {
                display: block;
                margin: 10px auto;
                width: 200px;
            }
        }

        /*------------------------officials----------------------*/
        :root {
            --primary: #003865;
            --secondary: #800000;
            --accent: #f9b233;
            --light-bg: #f8f9fa;
            --white: #ffffff;
            --text-dark: #333333;
            --text-light: #6c757d;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        .officials-hero {
            background: linear-gradient(135deg, rgba(0, 56, 101, 0.9), rgba(128, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
        }

        .officials-hero h1 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 1rem;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        .officials-hero p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
            font-family: 'Open Sans', sans-serif;
        }

        .officials-section {
            background: var(--white);
        }

        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }

        .section-title h2 {
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--secondary);
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .official-card {
            background: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 30px;
            transition: var(--transition);
            border-left: 4px solid var(--accent);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

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

        .official-badge {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
            font-family: 'Open Sans', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .official-badge.president {
            background: linear-gradient(135deg, var(--accent), #e6a022);
            color: var(--primary);
        }

        .official-badge.vice-president {
            background: linear-gradient(135deg, var(--primary), #00294e);
            color: var(--white);
        }

        .official-badge.secretary {
            background: linear-gradient(135deg, var(--secondary), #660000);
            color: var(--white);
        }

        .official-badge.joint-secretary {
            background: linear-gradient(135deg, #800080, #4b0082);
            color: var(--white);
        }

        .official-badge.treasurer {
            background: linear-gradient(135deg, #008080, #006666);
            color: var(--white);
        }

        .official-badge.ec-member {
            background: linear-gradient(135deg, #228B22, #006400);
            color: var(--white);
        }

        .official-name {
            color: var(--primary);
            margin-bottom: 8px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1.3rem;
            line-height: 1.3;
            text-align: center;
        }

        .official-country {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 15px;
            font-family: 'Open Sans', sans-serif;
            font-style: italic;
            font-size: 1rem;
            text-align: center;
        }

        .official-bio {
            color: var(--text-dark);
            line-height: 1.8;
            font-family: 'Open Sans', sans-serif;
            font-size: 0.95rem;
            text-align: left;
        }

        .official-img-container {
            position: relative;
            display: inline-block;
        }

        .official-img {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid var(--accent);
            box-shadow: var(--shadow);
        }

        .official-img-sm {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent);
            box-shadow: var(--shadow);
        }

        .py-5 {
            padding: 100px 0;
        }

        .bg-light {
            background-color: var(--light-bg) !important;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .officials-hero {
                padding: 70px 0;
            }

            .officials-hero h1 {
                font-size: 2.2rem;
            }

            .official-card {
                padding: 25px 20px;
            }

            .official-img {
                width: 200px;
                height: 200px;
            }

            .official-img-sm {
                width: 120px;
                height: 120px;
            }

            .py-5 {
                padding: 70px 0;
            }
        }

        @media (max-width: 576px) {
            .officials-hero h1 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .official-bio {
                font-size: 0.9rem;
            }
        }

        /*---------------------member ---------------------------*/
        /* Custom CSS with unique class names */
        .membership-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        /* Hero Section Styles */
        .membership-hero-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
        }

        .membership-hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #2c3e50;
        }

        .membership-hero-description {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: #5a6c7d;
        }

        .membership-hero-cta .membership-scroll-btn {
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }

        .membership-hero-visual {
            text-align: center;
        }

        .membership-hero-image img {
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }

        .membership-hero-image:hover img {
            transform: scale(1.03);
        }

        /* Categories Section */
        .membership-categories-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .membership-section-header {
            margin-bottom: 60px;
        }

        .membership-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .membership-section-subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }

        .membership-card-item {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .membership-card-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .membership-card-image-container {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .membership-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .membership-card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
        }

        .membership-card-body {
            padding: 25px;
        }

        .membership-card-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .membership-card-text {
            color: #5a6c7d;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        .membership-card-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #27ae60;
            text-align: center;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 8px;
        }

        .membership-card-free {
            color: #e74c3c;
        }

        /* Payment Section */
        .membership-payment-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .membership-bank-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .membership-bank-card-header {
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            color: white;
            padding: 20px;
            border: none;
        }

        .membership-bank-title {
            margin: 0;
            font-size: 1.5rem;
        }

        .membership-bank-detail-row {
            display: flex;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .membership-bank-detail-row:last-child {
            border-bottom: none;
        }

        .membership-bank-label {
            font-weight: 600;
            color: #2c3e50;
            width: 180px;
        }

        .membership-bank-value {
            color: #5a6c7d;
            font-family: monospace;
            flex: 1;
        }

        .membership-cta-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            background: white;
        }

        .membership-cta-icon {
            font-size: 3rem;
            color: #3498db;
            margin-bottom: 20px;
        }

        .membership-cta-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .membership-cta-text {
            color: #5a6c7d;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .membership-join-btn {
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 50px;
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            border: none;
            transition: all 0.3s ease;
        }

        .membership-join-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }

        /* Animation Classes */
        .animate-fade-in {
            opacity: 0;
            animation: membershipFadeIn 1s ease forwards;
        }

        .animate-fade-in-delay {
            opacity: 0;
            animation: membershipFadeIn 1s ease 0.3s forwards;
        }

        .animate-slide-up {
            opacity: 0;
            transform: translateY(30px);
            animation: membershipSlideUp 0.8s ease 0.6s forwards;
        }

        .animate-zoom-in {
            opacity: 0;
            transform: scale(0.9);
            animation: membershipZoomIn 1s ease 0.9s forwards;
        }

        .animate-card-enter {
            opacity: 0;
            transform: translateY(30px);
        }

        .animate-slide-left {
            opacity: 0;
            transform: translateX(-50px);
            animation: membershipSlideLeft 0.8s ease forwards;
        }

        .animate-slide-right {
            opacity: 0;
            transform: translateX(50px);
            animation: membershipSlideRight 0.8s ease forwards;
        }

        /* Keyframes */
        @keyframes membershipFadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes membershipSlideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes membershipZoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes membershipSlideLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes membershipSlideRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .membership-hero-title {
                font-size: 2.5rem;
            }

            .membership-section-title {
                font-size: 2rem;
            }

            .membership-payment-content {
                flex-direction: column;
            }

            .membership-cta-sidebar {
                margin-top: 30px;
            }
        }

        @media (max-width: 768px) {
            .membership-hero-section {
                padding: 60px 0;
            }

            .membership-hero-title {
                font-size: 2rem;
            }

            .membership-categories-section,
            .membership-payment-section {
                padding: 60px 0;
            }

            .membership-section-title {
                font-size: 1.8rem;
            }

            .membership-bank-detail-row {
                flex-direction: column;
            }

            .membership-bank-label {
                width: 100%;
                margin-bottom: 5px;
            }
        }

        @media (max-width: 576px) {
            .membership-hero-title {
                font-size: 1.8rem;
            }

            .membership-hero-description {
                font-size: 1rem;
            }
        }

        /*------------------------ membership ------------------*/
        :root {
            --primary-color: #004a8f;
            --secondary-color: #0a6fb8;
            --accent-color: #e8f3ff;
            --text-dark: #1a1a1a;
            --text-light: #555;
            --font-primary: 'Poppins', sans-serif;
            --success-color: #28a745;
            --gold-color: #ffc107;
        }

        .membership-container {
            font-family: var(--font-primary);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Hero Section */
        .membership-hero {
            background: linear-gradient(135deg, var(--accent-color) 0%, #ffffff 100%);
            padding: 100px 0;
            position: relative;
        }

        .membership-hero-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: membership-fadeInUp 1s ease forwards;
        }

        .membership-hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: membership-fadeInUp 1s ease 0.3s forwards;
        }

        /* Cards Section - IMPROVED */
        .membership-cards-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .membership-cards-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .membership-cards-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .membership-cards-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .membership-cards-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .member-card-box {
            border: none;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
        }

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

        .member-card-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 25px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .member-card-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: block;
        }

        .member-card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0;
        }

        .member-card-body {
            padding: 30px 25px;
            position: relative;
        }

        .member-card-text {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .member-card-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--gold-color);
            color: var(--text-dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }

        /* Fees Section */
        .membership-fees-section {
            padding: 80px 0;
            background-color: var(--accent-color);
        }

        .fees-box {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 30px 25px;
            text-align: center;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .fees-box:nth-child(even) {
            transform: translateX(30px);
        }

        .fees-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }

        .fees-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .fees-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .fees-free {
            color: var(--success-color);
        }

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

        /* Bank Details Section */
        .membership-bank-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .bank-details-box {
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            padding: 40px 35px;
            background: white;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
        }

        .bank-details-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }

        .bank-details-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 30px;
            text-align: center;
        }

        .bank-detail-row {
            display: flex;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            align-items: center;
        }

        .bank-detail-row:last-child {
            border-bottom: none;
        }

        .bank-detail-label {
            font-weight: 600;
            color: var(--text-dark);
            width: 200px;
            display: flex;
            align-items: center;
        }

        .bank-detail-icon {
            margin-right: 10px;
            color: var(--primary-color);
            width: 20px;
            text-align: center;
        }

        .bank-detail-value {
            color: var(--text-light);
            flex: 1;
            font-family: monospace;
            font-size: 1.05rem;
        }

        /* CTA Section - IMPROVED */
        .membership-cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .membership-cta-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .membership-cta-content {
            position: relative;
            z-index: 2;
        }

        .membership-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1.5rem;
        }

        .membership-cta-text {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            line-height: 1.6;
        }

        .join-btn-main {
            background: white;
            color: #fff;
            border: none;
            padding: 18px 50px;
            font-size: 1.3rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .join-btn-main:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }

        .join-btn-main:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            color: var(--secondary-color);
        }

        .join-btn-main:hover:before {
            left: 100%;
        }

        .join-btn-icon {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .join-btn-main:hover .join-btn-icon {
            transform: translateX(5px);
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

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

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Animations */
        @keyframes membership-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes membership-fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes membership-fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .membership-hero-title {
                font-size: 2.5rem;
            }

            .membership-cards-title,
            .membership-cta-title,
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .membership-hero {
                padding: 70px 0;
            }

            .membership-hero-title {
                font-size: 2rem;
            }

            .membership-cards-section,
            .membership-fees-section,
            .membership-bank-section,
            .membership-cta-section {
                padding: 60px 0;
            }

            .membership-cards-title,
            .membership-cta-title,
            .section-title {
                font-size: 1.8rem;
            }

            .bank-detail-row {
                flex-direction: column;
                align-items: flex-start;
            }

            .bank-detail-label {
                width: 100%;
                margin-bottom: 5px;
            }

            .join-btn-main {
                padding: 15px 40px;
                font-size: 1.2rem;
            }
        }

        @media (max-width: 576px) {
            .membership-hero-title {
                font-size: 1.8rem;
            }

            .membership-hero-subtitle {
                font-size: 1rem;
            }

            .member-card-header {
                padding: 20px 15px;
            }

            .member-card-body {
                padding: 25px 20px;
            }

            .bank-details-box {
                padding: 30px 20px;
            }

            .membership-cta-title {
                font-size: 1.8rem;
            }

            .membership-cta-text {
                font-size: 1rem;
            }
        }

        /*-----------------------collaborators ------------------------------------*/
        :root {
            --primary-color: #004a8f;
            --secondary-color: #0a6fb8;
            --accent-color: #eef7ff;
            --text-dark: #1a1a1a;
            --text-light: #555;
            --font-primary: 'Poppins', sans-serif;
        }

        .initiatives-container {
            font-family: var(--font-primary);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Hero Section */
        .initiatives-hero {
            background: linear-gradient(135deg, var(--accent-color) 0%, #ffffff 100%);
            padding: 100px 0;
            position: relative;
        }

        .initiatives-hero-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: initiatives-fadeInUp 1s ease forwards;
        }

        .initiatives-hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: initiatives-fadeInUp 1s ease 0.3s forwards;
        }

        /* Initiatives Section */
        .initiatives-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .initiative-card {
            border: none;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            overflow: hidden;
        }

        .initiative-card:nth-child(odd) {
            transform: translateX(-30px);
        }

        .initiative-card:nth-child(even) {
            transform: translateX(30px);
        }

        .initiative-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .initiative-card-body {
            padding: 40px;
        }

        .initiative-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .initiative-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .initiative-text {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .initiative-link-btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            padding: 12px 25px;
            font-weight: 500;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            margin-right: 15px;
            margin-bottom: 15px;
        }

        .initiative-link-btn:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 74, 143, 0.3);
        }

        .initiative-link-icon {
            margin-right: 8px;
        }

        .read-more-btn {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 10px 25px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin-bottom: 15px;
        }

        .read-more-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 74, 143, 0.2);
        }

        /* Animations */
        @keyframes initiatives-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes initiatives-fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes initiatives-fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .initiatives-hero-title {
                font-size: 2.5rem;
            }

            .initiative-card-body {
                padding: 30px;
            }
        }

        @media (max-width: 768px) {
            .initiatives-hero {
                padding: 70px 0;
            }

            .initiatives-hero-title {
                font-size: 2rem;
            }

            .initiatives-section {
                padding: 60px 0;
            }

            .initiative-card:nth-child(odd),
            .initiative-card:nth-child(even) {
                transform: translateY(30px);
            }

            .initiative-card-body {
                padding: 25px;
            }

            .initiative-title {
                font-size: 1.6rem;
                text-align: center;
            }

            .initiative-title:after {
                left: 50%;
                transform: translateX(-50%);
            }

            .initiative-text {
                text-align: center;
            }

            .initiative-buttons {
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .initiatives-hero-title {
                font-size: 1.8rem;
            }

            .initiatives-hero-subtitle {
                font-size: 1rem;
            }

            .initiative-title {
                font-size: 1.4rem;
            }
        }

        /*--------------------contact---------------------*/
        :root {
            --primary-color: #004a8f;
            --secondary-color: #0a6fb8;
            --accent-color: #e8f3ff;
            --text-dark: #1a1a1a;
            --text-light: #555;
            --font-primary: "Poppins", sans-serif;
            --success-color: #28a745;
            --warning-color: #ffc107;
        }

        .contact-container {
            font-family: var(--font-primary);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Hero Section */
        .contact-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .contact-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .contact-hero-content {
            position: relative;
            z-index: 2;
        }

        .contact-hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: contact-fadeInUp 1s ease forwards;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .contact-hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: contact-fadeInUp 1s ease 0.3s forwards;
        }

        /* Contact Info Cards */
        .contact-info-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .contact-info-card {
            border: none;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            padding: 40px 30px;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            background: white;
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .contact-info-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .contact-info-card:hover .contact-info-icon {
            transform: scale(1.2);
            color: var(--secondary-color);
        }

        .contact-info-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .contact-info-value {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .contact-form-box {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            padding: 50px;
            opacity: 0;
            transform: translateX(-50px);
            animation: contact-slideInLeft 1s ease 0.6s forwards;
            position: relative;
            overflow: hidden;
        }

        .contact-form-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }

        .contact-form-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
            text-align: center;
        }

        .contact-form-subtitle {
            color: var(--text-light);
            text-align: center;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .form-floating {
            margin-bottom: 25px;
        }

        .form-control {
            border-radius: 12px;
            padding: 16px 20px;
            border: 2px solid #e9ecef;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(0, 74, 143, 0.25);
        }

        .form-floating>label {
            padding: 16px 20px;
            color: var(--text-light);
        }

        .form-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            z-index: 5;
        }

        .contact-submit-btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border: none;
            color: white;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s ease;
            width: 100%;
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }

        .contact-submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 74, 143, 0.3);
        }

        .contact-submit-btn:active {
            transform: translateY(-1px);
        }

        .contact-submit-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }

        .contact-submit-btn:hover:before {
            left: 100%;
        }

        /* Map Section */
        .contact-map-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .contact-map-box {
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            opacity: 0;
            transform: translateX(50px);
            animation: contact-slideInRight 1s ease 0.8s forwards;
            height: 500px;
        }

        .contact-map-box iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Social Media Section */
        .contact-social-section {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        }

        .contact-social-title {
            color: white;
            text-align: center;
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .contact-social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transition: all 0.4s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-5px) rotate(10deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* CTA Section */
        .contact-cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .contact-cta-box {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            color: white;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: translateY(30px);
            animation: contact-fadeInUp 1s ease 1s forwards;
            position: relative;
            overflow: hidden;
        }

        .contact-cta-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .contact-cta-content {
            position: relative;
            z-index: 2;
        }

        .contact-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .contact-cta-text {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-cta-btn {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            color: var(--secondary-color);
        }

        /* Animations */
        @keyframes contact-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes contact-slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes contact-slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes contact-zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .contact-hero-title {
                font-size: 2.8rem;
            }

            .contact-form-box {
                padding: 40px 30px;
            }

            .contact-map-box {
                height: 400px;
                margin-top: 40px;
            }
        }

        @media (max-width: 767px) {
            .contact-hero {
                padding: 100px 0 60px;
            }

            .contact-hero-title {
                font-size: 2.2rem;
            }

            .contact-hero-subtitle {
                font-size: 1.1rem;
            }

            .contact-info-section,
            .contact-form-section,
            .contact-map-section,
            .contact-cta-section {
                padding: 60px 0;
            }

            .contact-form-box {
                padding: 30px 20px;
            }

            .contact-cta-box {
                padding: 40px 25px;
            }

            .contact-cta-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 575px) {
            .contact-hero-title {
                font-size: 2rem;
            }

            .contact-hero-subtitle {
                font-size: 1rem;
            }

            .contact-form-title {
                font-size: 1.8rem;
            }

            .contact-cta-title {
                font-size: 1.8rem;
            }

            .contact-cta-text {
                font-size: 1rem;
            }

            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }

        /*------------------------------------gallery ---------------------------------*/
        :root {
            --primary-color: #004a8f;
            --secondary-color: #0a6fb8;
            --accent-color: #eef7ff;
            --text-dark: #1a1a1a;
            --text-light: #555;
            --font-primary: 'Poppins', sans-serif;
            --gold-color: #ffd700;
            --silver-color: #c0c0c0;
        }

        .gallery-container {
            font-family: var(--font-primary);
            color: var(--text-dark);
            overflow-x: hidden;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        /* Hero Section */
        .gallery-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .gallery-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .gallery-hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: gallery-fadeInUp 1s ease forwards;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .gallery-hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: gallery-fadeInUp 1s ease 0.3s forwards;
        }

        .gallery-hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: gallery-fadeInUp 1s ease 0.6s forwards;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Gallery Grid Section */
        .gallery-section {
            padding: 80px 0;
            background: transparent;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .gallery-card {
            border: none;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            cursor: pointer;
            background: white;
        }

        .gallery-card.featured {
            border: 3px solid var(--gold-color);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
        }

        .gallery-card.featured:before {
            content: 'Featured';
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold-color);
            color: var(--text-dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        .gallery-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .gallery-img-container {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        .gallery-card:hover .gallery-img {
            transform: scale(1.15);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 74, 143, 0.9) 0%, rgba(10, 111, 184, 0.7) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            opacity: 0;
            transition: all 0.3s ease;
            padding: 20px;
            text-align: center;
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay-icon {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 15px;
            transform: scale(0.8);
            transition: all 0.3s ease;
        }

        .gallery-card:hover .gallery-overlay-icon {
            transform: scale(1);
        }

        .gallery-overlay-title {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .gallery-overlay-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        .gallery-card-content {
            padding: 20px;
        }

        .gallery-card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 8px;
        }

        .gallery-card-date {
            color: var(--text-light);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* Modal Styles */
        .gallery-modal .modal-dialog {
            max-width: 1000px;
            transition: all 0.4s ease;
        }

        .gallery-modal .modal-content {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            background: white;
        }

        .gallery-modal-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 25px 30px;
            border-bottom: none;
            position: relative;
        }

        .gallery-modal-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .gallery-modal-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 0;
        }

        .gallery-modal .btn-close {
            position: absolute;
            top: 25px;
            right: 25px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .gallery-modal .btn-close:hover {
            opacity: 1;
            transform: scale(1.1) rotate(90deg);
        }

        .gallery-modal-img-container {
            position: relative;
            height: 500px;
            overflow: hidden;
            background: #f8f9fa;
        }

        .gallery-modal-img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .gallery-modal-body {
            padding: 30px;
        }

        .gallery-modal-text {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .gallery-modal-meta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .meta-icon {
            color: var(--primary-color);
        }

        /* Animations */
        @keyframes gallery-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes gallery-zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes gallery-slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 1199px) {
            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 991px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-modal-img-container {
                height: 400px;
            }

            .gallery-hero-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 767px) {
            .gallery-hero {
                padding: 100px 0 60px;
            }

            .gallery-hero-title {
                font-size: 2.2rem;
            }

            .gallery-hero-subtitle {
                font-size: 1.1rem;
            }

            .gallery-section {
                padding: 60px 0;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .gallery-img-container {
                height: 220px;
            }

            .gallery-modal-img-container {
                height: 300px;
            }

            .gallery-modal-body {
                padding: 25px;
            }

            .gallery-hero-stats {
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 575px) {
            .gallery-hero-title {
                font-size: 2rem;
            }

            .gallery-hero-subtitle {
                font-size: 1rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .gallery-img-container {
                height: 250px;
            }

            .gallery-hero-stats {
                flex-direction: column;
                gap: 15px;
            }
        }

        /*----------------------------event1--------------------*/

        .conference-page-wrapper {
            --primary-blue: #0066cc;
            --deep-blue: #004a8f;
            --electric-blue: #0099ff;
            --teal-accent: #00ccb1;
            --purple-accent: #8a2be2;
            --dark-bg: #0a0f2d;
            --card-bg: rgba(255, 255, 255, 0.95);
            --text-dark: #1a1a1a;
            --text-light: #6c757d;
            --font-main: 'Inter', sans-serif;

            font-family: var(--font-main);
            color: var(--text-dark);
            overflow-x: hidden;
            background: linear-gradient(135deg, #f8faff 0%, #eef2ff 100%);
        }

        /* Hero Section with Animated Background */
        .conference-hero-section {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a237e 50%, var(--deep-blue) 100%);
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .conference-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.1;
            background-image:
                radial-gradient(circle at 20% 30%, var(--teal-accent) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, var(--purple-accent) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, var(--electric-blue) 0%, transparent 50%);
            animation: conference-hero-pulse 8s ease-in-out infinite alternate;
        }

        .conference-hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .conference-hero-badge {
            background: linear-gradient(135deg, var(--teal-accent), var(--electric-blue));
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 30px;
            animation: conference-badge-float 3s ease-in-out infinite;
        }

        .conference-hero-title {
            font-size: 4rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: conference-fadeInUp 1s ease 0.2s forwards;
            line-height: 1.1;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .conference-hero-subtitle {
            font-size: 1.8rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
            animation: conference-fadeInUp 1s ease 0.4s forwards;
            font-weight: 500;
        }

        .conference-hero-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: conference-fadeInUp 1s ease 0.6s forwards;
        }

        .conference-hero-date,
        .conference-hero-time {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: white;
            padding: 15px 25px;
            border-radius: 12px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .conference-hero-cta {
            margin-top: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: conference-fadeInUp 1s ease 0.8s forwards;
        }

        .conference-register-btn {
            background: linear-gradient(135deg, var(--teal-accent), var(--electric-blue));
            border: none;
            color: white;
            padding: 18px 50px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 204, 177, 0.4);
            position: relative;
            overflow: hidden;
        }

        .conference-register-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 204, 177, 0.6);
        }

        .conference-register-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: 0.5s;
        }

        .conference-register-btn:hover:before {
            left: 100%;
        }

        /* About Section with Glass Morphism */
        .conference-about-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
            position: relative;
        }

        .conference-about-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230066cc' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .conference-about-card {
            background: var(--card-bg);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            padding: 60px 50px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            opacity: 0;
            transform: translateY(30px);
            animation: conference-fadeInUp 1s ease 0.5s forwards;
        }

        .conference-about-title {
            font-size: 3rem;
            font-weight: 800;
            color: var(--deep-blue);
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--deep-blue), var(--electric-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .conference-about-text {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .conference-about-stats {
            display: flex;
            gap: 30px;
            margin-top: 40px;
        }

        .conference-stat {
            text-align: center;
        }

        .conference-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--electric-blue);
            display: block;
            line-height: 1;
        }

        .conference-stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 5px;
        }

        /* Scope Section with Gradient Cards */
        .conference-scope-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a0f2d 0%, #1a237e 100%);
            position: relative;
            overflow: hidden;
        }

        .conference-scope-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 10% 20%, rgba(0, 204, 177, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
        }

        .conference-section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .conference-section-title {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
        }

        .conference-section-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin: 0 auto;
        }

        .conference-scope-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .conference-scope-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .conference-scope-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .conference-scope-icon {
            font-size: 3rem;
            margin-bottom: 25px;
            background: linear-gradient(135deg, var(--teal-accent), var(--electric-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .conference-scope-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
        }

        .conference-scope-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        /* Highlights Section */
        .conference-highlights-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
        }

        .conference-highlights-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .conference-highlight-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            padding: 40px 30px;
            transition: all 0.4s ease;
            border-left: 5px solid var(--electric-blue);
            opacity: 0;
            transform: translateY(30px);
            height: 100%;
        }

        .conference-highlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        }

        .conference-highlight-icon {
            font-size: 2.5rem;
            color: var(--electric-blue);
            margin-bottom: 20px;
        }

        .conference-highlight-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 15px;
        }

        .conference-highlight-text {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Registration Section */
        .conference-registration-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #0a0f2d 0%, #1a237e 100%);
            position: relative;
        }

        .conference-registration-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 70% 30%, rgba(0, 204, 177, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
        }

        .conference-registration-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 24px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            padding: 60px 50px;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateY(30px);
            animation: conference-fadeInUp 1s ease 0.7s forwards;
        }

        .conference-registration-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--deep-blue);
            margin-bottom: 1rem;
            text-align: center;
        }

        .conference-registration-subtitle {
            color: var(--text-light);
            text-align: center;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .conference-pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 40px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .conference-pricing-table thead {
            background: linear-gradient(135deg, var(--deep-blue), var(--electric-blue));
        }

        .conference-pricing-table th {
            padding: 20px;
            color: white;
            font-weight: 600;
            text-align: center;
        }

        .conference-pricing-table td {
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #eee;
        }

        .conference-pricing-table tbody tr {
            transition: all 0.3s ease;
        }

        .conference-pricing-table tbody tr:hover {
            background-color: #f8f9fa;
            transform: scale(1.01);
        }

        .conference-price {
            font-weight: 700;
            color: var(--deep-blue);
            font-size: 1.1rem;
        }

        /* Venue Section */
        .conference-venue-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
        }

        .conference-venue-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            padding: 50px;
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(30px);
            animation: conference-fadeInUp 1s ease 0.9s forwards;
        }

        .conference-venue-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--deep-blue);
            margin-bottom: 2rem;
            background: linear-gradient(135deg, var(--deep-blue), var(--electric-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .conference-venue-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .conference-venue-detail {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: #f8faff;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .conference-venue-detail:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .conference-venue-icon {
            font-size: 2.5rem;
            color: var(--electric-blue);
        }

        .conference-venue-info h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--deep-blue);
            margin-bottom: 5px;
        }

        .conference-venue-info p {
            color: var(--text-light);
            margin: 0;
        }

        .conference-map-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            height: 400px;
        }

        .conference-map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Animations */
        @keyframes conference-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes conference-hero-pulse {
            0% {
                opacity: 0.1;
            }

            100% {
                opacity: 0.2;
            }
        }

        @keyframes conference-badge-float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 1199px) {
            .conference-hero-title {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 991px) {
            .conference-hero-title {
                font-size: 3rem;
            }

            .conference-about-card {
                padding: 40px 30px;
            }

            .conference-about-title {
                font-size: 2.5rem;
            }

            .conference-section-title {
                font-size: 2.5rem;
            }

            .conference-scope-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 767px) {
            .conference-hero-section {
                padding: 120px 0 80px;
                min-height: auto;
            }

            .conference-hero-title {
                font-size: 2.5rem;
            }

            .conference-hero-subtitle {
                font-size: 1.5rem;
            }

            .conference-hero-meta {
                flex-direction: column;
                gap: 15px;
            }

            .conference-about-section,
            .conference-scope-section,
            .conference-highlights-section,
            .conference-registration-section,
            .conference-venue-section {
                padding: 80px 0;
            }

            .conference-about-title,
            .conference-section-title {
                font-size: 2rem;
            }

            .conference-about-stats {
                flex-direction: column;
                gap: 20px;
            }

            .conference-registration-card {
                padding: 40px 25px;
            }

            .conference-venue-card {
                padding: 30px 25px;
            }
        }

        @media (max-width: 575px) {
            .conference-hero-title {
                font-size: 2rem;
            }

            .conference-hero-subtitle {
                font-size: 1.2rem;
            }

            .conference-about-title,
            .conference-section-title {
                font-size: 1.8rem;
            }

            .conference-registration-title {
                font-size: 2rem;
            }

            .conference-venue-title {
                font-size: 2rem;
            }

            .conference-pricing-table th,
            .conference-pricing-table td {
                padding: 15px 10px;
                font-size: 0.9rem;
            }
        }

        /*-----------------------------------------event2-------------------------*/
        :root {
            --primary-color: #0066cc;
            --secondary-color: #00a8a8;
            --accent-color: #e6f7ff;
            --dark-color: #0f172a;
            --light-color: #f8fafc;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --font-primary: "Inter", sans-serif;
            --success-color: #10b981;
            --gradient-1: linear-gradient(135deg, #0066cc 0%, #00a8a8 100%);
            --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        .conf2026-container {
            font-family: var(--font-primary);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Hero Section */
        .conf2026-hero {
            background: var(--gradient-1);
            padding: 160px 0 120px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .conf2026-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.15) 0%, transparent 50%);
        }

        .conf2026-hero-content {
            position: relative;
            z-index: 2;
        }

        .conf2026-hero-title {
            font-size: 3.2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: conf2026-fadeInUp 1s ease forwards;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .conf2026-hero-subtitle {
            font-size: 1.8rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(30px);
            animation: conf2026-fadeInUp 1s ease 0.3s forwards;
            font-weight: 500;
        }

        .conf2026-hero-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: conf2026-fadeInUp 1s ease 0.6s forwards;
        }

        .conf2026-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-size: 1.2rem;
            font-weight: 500;
        }

        .conf2026-meta-icon {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
        }


        /* Who Can Attend Section */
        .conf2026-attend-section {
            padding: 100px 0;
            background: var(--gradient-3);
            position: relative;
            overflow: hidden;
        }

        .conf2026-attend-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .conf2026-attend-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            padding: 60px 50px;
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateY(30px);
            animation: conf2026-fadeInUp 1s ease 1s forwards;
            position: relative;
            z-index: 2;
        }

        .conf2026-attend-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 2.5rem;
            text-align: center;
        }

        .conf2026-attend-badges {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .conf2026-attend-badge {
            background: var(--accent-color);
            color: var(--primary-color);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .conf2026-attend-badge:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
        }

        .conf2026-badge-icon {
            font-size: 1.2rem;
        }

        /* Main Theme Section */
        .conf2026-theme-section {
            padding: 120px 0;
            background: var(--gradient-2);
            position: relative;
            overflow: hidden;
        }

        .conf2026-theme-content {
            text-align: center;
            color: white;
            position: relative;
            z-index: 2;
            opacity: 0;
            transform: translateX(-50px);
            animation: conf2026-fadeInLeft 1s ease 1.2s forwards;
        }

        .conf2026-theme-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

        .conf2026-theme-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Highlights Section */
        .conf2026-highlights-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }

        .conf2026-section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }

        .conf2026-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .conf2026-highlights-card {
            border: none;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            padding: 40px 30px;
            text-align: center;
            background: white;
            opacity: 0;
            transform: translateY(30px);
        }

        .conf2026-highlights-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }

        .conf2026-highlights-icon {
            font-size: 3.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .conf2026-highlights-card:hover .conf2026-highlights-icon {
            transform: scale(1.2);
            color: var(--secondary-color);
        }

        .conf2026-highlights-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .conf2026-highlights-text {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Key Themes Section */
        .conf2026-keythemes-section {
            padding: 100px 0;
            background: var(--gradient-4);
            position: relative;
            overflow: hidden;
        }

        .conf2026-keythemes-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .conf2026-keythemes-content {
            position: relative;
            z-index: 2;
        }

        .conf2026-keythemes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .conf2026-theme-pill {
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary-color);
            padding: 18px 25px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateY(20px);
        }

        .conf2026-theme-pill:hover {
            background: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        /* Committee Section */
        .conf2026-committee-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }

        .conf2026-committee-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            padding: 60px 50px;
            opacity: 0;
            transform: translateX(50px);
            animation: conf2026-fadeInRight 1s ease 1.4s forwards;
            position: relative;
            overflow: hidden;
        }

        .conf2026-committee-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-1);
        }

        .conf2026-committee-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 2.5rem;
        }

        .conf2026-committee-item {
            margin-bottom: 25px;
            padding-bottom: 25px;
            border-bottom: 1px solid #eee;
        }

        .conf2026-committee-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .conf2026-committee-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .conf2026-committee-contact {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 15px;
        }

        .conf2026-contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .conf2026-contact-item:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        .conf2026-contact-icon {
            font-size: 1.2rem;
        }

        /* CTA Section */
        .conf2026-cta-section {
            padding: 100px 0;
            background: var(--gradient-1);
            position: relative;
            overflow: hidden;
        }

        .conf2026-cta-box {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            padding: 80px 60px;
            text-align: center;
            backdrop-filter: blur(10px);
            opacity: 0;
            transform: translateY(30px);
            animation: conf2026-fadeInUp 1s ease 1.6s forwards;
            position: relative;
            z-index: 2;
        }

        .conf2026-cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        .conf2026-cta-text {
            font-size: 1.3rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .conf2026-cta-btn {
            background: var(--gradient-1);
            border: none;
            color: white;
            padding: 18px 50px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
        }

        .conf2026-cta-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 102, 204, 0.6);
        }

        /* Animations */
        @keyframes conf2026-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes conf2026-fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes conf2026-fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Organized By Section */
        .conf2026-organized-section {
            padding: 80px 0;
            background-color: var(--light-color);
        }

        .conf2026-organized-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            padding: 40px 35px;
            position: relative;
            overflow: hidden;
        }

        .conf2026-organized-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-1);
        }

        .conf2026-organized-content {
            opacity: 0;
            transform: translateX(-50px);
            animation: conf2026-fadeInLeft 1s ease 0.8s forwards;
        }

        .conf2026-organized-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
        }

        .conf2026-organized-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .conf2026-organized-text {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 1rem;
            margin-bottom: 0;
        }

        .conf2026-logos {
            opacity: 0;
            transform: translateX(50px);
            animation: conf2026-fadeInRight 1s ease 0.8s forwards;
            text-align: center;
        }

        .conf2026-logo-container {
            width: 100%;
            max-width: 180px;
            height: 90px;
            background: var(--accent-color);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            padding: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .conf2026-logo-container:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .conf2026-logo-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            filter: grayscale(0.3);
            transition: all 0.3s ease;
        }

        .conf2026-logo-container:hover .conf2026-logo-img {
            filter: grayscale(0);
            transform: scale(1.03);
        }

        /* Animations */
        @keyframes conf2026-fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes conf2026-fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 1199px) {
            .conf2026-hero-title {
                font-size: 2.8rem;
            }

            .conf2026-keythemes-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .conf2026-logo-container {
                max-width: 160px;
                height: 80px;
            }
        }

        @media (max-width: 991px) {
            .conf2026-hero-title {
                font-size: 2.3rem;
            }

            .conf2026-hero-subtitle {
                font-size: 1.5rem;
            }

            .conf2026-organized-card {
                padding: 35px 25px;
            }

            .conf2026-theme-title {
                font-size: 2.2rem;
            }

            .conf2026-keythemes-grid {
                grid-template-columns: 1fr;
            }

            .conf2026-attend-badges {
                grid-template-columns: 1fr;
            }

            .conf2026-logo-container {
                max-width: 150px;
                height: 75px;
                padding: 12px;
            }

            .conf2026-organized-content {
                text-align: center;
                margin-bottom: 30px;
            }

            .conf2026-organized-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 767px) {
            .conf2026-hero {
                padding: 100px 0 60px;
                min-height: 70vh;
            }

            .conf2026-hero-title {
                font-size: 2rem;
            }

            .conf2026-hero-subtitle {
                font-size: 1.3rem;
            }

            .conf2026-hero-meta {
                flex-direction: column;
                gap: 15px;
            }

            .conf2026-organized-section {
                padding: 60px 0;
            }

            .conf2026-section-title,
            .conf2026-organized-title,
            .conf2026-attend-title,
            .conf2026-committee-title {
                font-size: 1.6rem;
            }

            .conf2026-theme-title {
                font-size: 1.6rem;
            }

            .conf2026-cta-title {
                font-size: 1.8rem;
            }

            .conf2026-cta-box {
                padding: 40px 25px;
            }

            .conf2026-logo-container {
                max-width: 140px;
                height: 70px;
                padding: 10px;
            }

            .conf2026-organized-card {
                padding: 30px 20px;
            }
        }

        @media (max-width: 575px) {
            .conf2026-hero-title {
                font-size: 1.7rem;
            }

            .conf2026-hero-subtitle {
                font-size: 1.1rem;
            }

            .conf2026-section-title,
            .conf2026-organized-title,
            .conf2026-attend-title,
            .conf2026-committee-title {
                font-size: 1.5rem;
            }

            .conf2026-theme-title {
                font-size: 1.5rem;
            }

            .conf2026-cta-title {
                font-size: 1.7rem;
            }

            .conf2026-cta-text {
                font-size: 1rem;
            }

            .conf2026-cta-btn {
                padding: 12px 35px;
                font-size: 1rem;
            }

            .conf2026-committee-contact {
                flex-direction: column;
                gap: 10px;
            }

            .conf2026-logo-container {
                max-width: 130px;
                height: 65px;
                padding: 10px;
            }

            .conf2026-organized-card {
                padding: 25px 20px;
            }

            .conf2026-organized-title {
                font-size: 1.4rem;
                margin-bottom: 1rem;
            }

            .conf2026-organized-text {
                font-size: 0.95rem;
            }
        }

        /* For very small screens */
        @media (max-width: 400px) {
            .conf2026-logo-container {
                max-width: 120px;
                height: 60px;
                padding: 8px;
            }

            .conf2026-organized-card {
                padding: 20px 15px;
            }
        }

        /* ----------------floating apply membership-------------------- */
        /* ===== mship floating button (unique selectors) ===== */
        .mship-floating-btn {
            position: fixed !important;
            right: 22px;
            bottom: 52px;
            display: inline-flex !important;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: linear-gradient(135deg, #003865 0%, #8b0000 100%);
            color: #fff !important;
            text-decoration: none !important;
            border-radius: 48px !important;
            box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35) !important;
            z-index: 2147483647 !important;
            /* highest safe z-index */
            font-weight: 600;
            font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            transform: translateZ(0);
            /* avoid subpixel issues */
            -webkit-tap-highlight-color: transparent;
            transition: transform .18s ease, box-shadow .18s ease;
        }

        /* Icon */
        .mship-icon {
            font-size: 20px !important;
            line-height: 1 !important;
            display: inline-block;
        }

        /* Text */
        .mship-text {
            font-size: 13px;
            line-height: 14px;
            display: inline-block;
            white-space: nowrap;
        }

        /* Hover / focus */
        .mship-floating-btn:hover,
        .mship-floating-btn:focus {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 34px rgba(0, 0, 0, 0.42) !important;
            outline: none;
        }

        /* Small screens: shrink to icon-only if needed */
        @media (max-width: 520px) {
            .mship-floating-btn {
                padding: 10px 12px;
                right: 12px;
                bottom: 12px;
                border-radius: 40px;
            }

            .mship-text {
                display: none;
            }

            /* show icon only on very small screens */
            .mship-icon {
                font-size: 18px !important;
            }
        }

        /* If any parent has transform/overflow styles that hide fixed children, try this helper.
   Add class 'mship-force-container-fix' to <body> if you see the button hidden. */
        .mship-force-container-fix {
            transform: none !important;
            perspective: none !important;
            overflow: visible !important;
        }

        /*---------------------apply membership -----------------------*/
        :root {
            --primary-blue: #004a8f;
            --secondary-blue: #0a6fb8;
            --accent-color: #e8f3ff;
            --text-dark: #1a1a1a;
            --text-light: #555;
            --success-color: #28a745;
            --font-main: 'Inter', sans-serif;
        }

        .membership-application-wrapper {
            font-family: var(--font-main);
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 100vh;
            padding: 40px 0;
        }

        /* Hero Section */
        .membership-hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            padding: 80px 0 40px;
            color: white;
            text-align: center;
            margin-bottom: 40px;
        }

        .membership-hero-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #fff;
        }

        .membership-hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
            color: #fff;
        }

        /* Form Container */
        .membership-form-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .membership-form-header {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            color: white;
            padding: 30px 40px;
            text-align: center;
        }

        .membership-form-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .membership-form-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .membership-form-body {
            padding: 40px;
        }

        /* Form Sections */
        .form-section {
            margin-bottom: 40px;
            padding: 30px;
            border-radius: 16px;
            background: #f8f9fa;
            border-left: 5px solid var(--primary-blue);
        }

        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i {
            font-size: 1.3rem;
        }

        /* Form Controls */
        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .form-label i {
            color: var(--primary-blue);
        }

        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 0.25rem rgba(0, 74, 143, 0.25);
        }

        .form-select {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 1rem;
        }

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

        /* Multi-select Styling */
        .multi-select-wrapper {
            position: relative;
        }

        .multi-select-display {
            border: 2px solid #e9ecef;
            border-radius: 12px;
            padding: 12px 16px;
            min-height: 46px;
            background: white;
            cursor: pointer;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }

        .multi-select-tag {
            background: var(--accent-color);
            color: var(--primary-blue);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .multi-select-tag i {
            cursor: pointer;
            font-size: 0.8rem;
        }

        .multi-select-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 12px;
            margin-top: 5px;
            max-height: 200px;
            overflow-y: auto;
            z-index: 1000;
            display: none;
        }

        .multi-select-option {
            padding: 12px 16px;
            cursor: pointer;
            border-bottom: 1px solid #f1f3f4;
            transition: background-color 0.2s ease;
        }

        .multi-select-option:hover {
            background: var(--accent-color);
        }

        .multi-select-option.selected {
            background: var(--primary-blue);
            color: white;
        }

        /* Success Message */
        .success-message {
            background: linear-gradient(135deg, var(--success-color), #34ce57);
            color: white;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 30px;
            animation: slideInUp 0.5s ease;
        }

        .success-message i {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        /* Submit Button */
        .submit-btn {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            border: none;
            color: white;
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.4s ease;
            display: block;
            margin: 40px auto 0;
            box-shadow: 0 10px 25px rgba(0, 74, 143, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 74, 143, 0.4);
        }

        /* Membership Types Info */
        .membership-types {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .membership-type-card {
            background: white;
            border-radius: 12px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-top: 4px solid var(--primary-blue);
        }

        .membership-type-icon {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .membership-type-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .membership-type-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .membership-type-desc {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-section {
            animation: slideInUp 0.6s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .membership-hero-title {
                font-size: 2.2rem;
            }

            .membership-form-title {
                font-size: 1.8rem;
            }

            .membership-form-body {
                padding: 25px;
            }

            .form-section {
                padding: 20px;
            }

            .section-title {
                font-size: 1.3rem;
            }

            .membership-types {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .membership-hero {
                padding: 60px 0 30px;
            }

            .membership-hero-title {
                font-size: 1.8rem;
            }

            .membership-form-header {
                padding: 25px 20px;
            }

            .membership-form-body {
                padding: 20px;
            }
        }

        /*----------event1------*/
        .phage-conf-body {
            background-color: #f8fbff;
            padding: 40px 0;
        }

        .phage-conf-section {
            padding: 60px 0;
        }

        .phage-conf-section-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            text-align: center;
            color: #0a3d62;
        }

        .phage-conf-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(45deg, #0a3d62, #1e88e5);
            border-radius: 2px;
        }

        .phage-conf-table-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 50px;
        }

        .phage-conf-table {
            width: 100%;
            border-collapse: collapse;
            margin: 0;
        }

        .phage-conf-table thead {
            background: linear-gradient(45deg, #0a3d62, #1e88e5);
            color: white;
        }

        .phage-conf-table th {
            padding: 18px 15px;
            text-align: center;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            border: none;
        }

        .phage-conf-table td {
            padding: 16px 15px;
            text-align: center;
            border-bottom: 1px solid #eef2f7;
            font-family: 'Poppins', sans-serif;
        }

        .phage-conf-table tbody tr:nth-child(even) {
            background-color: #f8fbff;
        }

        .phage-conf-table tbody tr:hover {
            background-color: #e3f2fd;
            transform: scale(1.01);
            transition: all 0.2s ease;
        }

        .phage-conf-highlight-cell {
            background-color: #e3f2fd;
            font-weight: 600;
            color: #0a3d62;
        }

        .phage-conf-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: none;
            height: 100%;
            margin-bottom: 30px;
        }

        .phage-conf-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .phage-conf-card-header {
            background: linear-gradient(45deg, #0a3d62, #1e88e5);
            color: white;
            padding: 20px;
            text-align: center;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            font-size: 1.2rem;
        }

        .phage-conf-card-body {
            padding: 25px;
        }

        .phage-conf-feature-list {
            list-style-type: none;
            padding-left: 0;
        }

        .phage-conf-feature-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #e0e0e0;
            font-family: 'Poppins', sans-serif;
        }

        .phage-conf-feature-list li:last-child {
            border-bottom: none;
        }

        .phage-conf-feature-list i {
            color: #1e88e5;
            margin-right: 12px;
            font-size: 1.1rem;
        }

        .phage-conf-notes-section {
            background: linear-gradient(135deg, #f8fbff 0%, #e3f2fd 100%);
            border-left: 5px solid #1e88e5;
            padding: 30px;
            border-radius: 10px;
            margin-top: 40px;
        }

        .phage-conf-notes-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #0a3d62;
        }

        .phage-conf-notes-list {
            list-style-type: none;
            padding-left: 0;
        }

        .phage-conf-notes-list li {
            padding: 10px 0;
            font-family: 'Poppins', sans-serif;
        }

        .phage-conf-notes-list i {
            color: #1e88e5;
            margin-right: 15px;
            font-size: 1.1rem;
        }

        .phage-conf-price-badge {
            background: linear-gradient(45deg, #ff6b6b, #ff8e53);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-left: 5px;
        }

        .phage-conf-category-name {
            font-weight: 500;
            color: #0a3d62;
        }

        @media (max-width: 768px) {
            .phage-conf-section {
                padding: 40px 0;
            }

            .phage-conf-section-title {
                font-size: 2rem;
            }

            .phage-conf-table-container {
                overflow-x: auto;
            }
        }

        /* ============================================
   EVENT CONFERENCE PAGE STYLES (event1.php)
   ============================================ */

        /* Event Page Variables */
        .iabamr-page {
            --iabamr-primary: #52C0D8;
            --iabamr-primary-dark: #3A9DB5;
            --iabamr-primary-light: #6DD4E8;
            --iabamr-secondary: #2B5B6E;
            --iabamr-accent: #FF6B9D;
            --iabamr-dark: #1a1a2e;
            --iabamr-light: #f8f9fa;
            --iabamr-white: #ffffff;
            --iabamr-gray: #6c757d;
            --iabamr-gray-light: #e9ecef;
            --iabamr-shadow: rgba(0, 0, 0, 0.1);
            --iabamr-shadow-lg: rgba(0, 0, 0, 0.15);
        }

        .iabamr-page {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        /* Hero Section */
        .iabamr-hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--iabamr-primary) 0%, var(--iabamr-secondary) 100%);
            overflow: hidden;
            padding: 80px 20px 60px;
        }

        .iabamr-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .iabamr-floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .iabamr-shape {
            position: absolute;
            opacity: 0.15;
            background: white;
        }

        .iabamr-shape-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            right: 10%;
            border-radius: 50%;
            animation: iabamr-float 20s infinite ease-in-out;
        }

        .iabamr-shape-2 {
            width: 200px;
            height: 200px;
            bottom: 20%;
            left: 5%;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            animation: iabamr-float 15s infinite ease-in-out reverse;
        }

        .iabamr-shape-3 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 20%;
            border-radius: 50%;
            animation: iabamr-float 18s infinite ease-in-out;
        }

        @keyframes iabamr-float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-30px) rotate(10deg);
            }
        }

        .iabamr-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            animation: iabamr-fadeInUp 1s ease-out;
        }

        /* Professional Badge - NO ROTATION */
        .iabamr-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--iabamr-accent), #ff8fab);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
            animation: iabamr-pulse 2s infinite;
        }

        @keyframes iabamr-pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .iabamr-hero-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 5vw, 4rem);
            font-weight: 800;
            color: white;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .iabamr-hero-subtitle {
            font-size: clamp(1.2rem, 3vw, 2rem);
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            font-weight: 300;
        }

        .iabamr-hero-meta {
            display: flex;
            gap: 40px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .iabamr-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-size: 18px;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 30px;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .iabamr-meta-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .iabamr-meta-icon {
            font-size: 24px;
        }

        /* Hero Actions */
        .iabamr-hero-actions {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .iabamr-sponsorship-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 20px 50px;
            background: linear-gradient(135deg, var(--iabamr-accent), #ff8fb3);
            color: white;
            font-size: 20px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(255, 107, 157, 0.4);
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .iabamr-sponsorship-btn:hover {
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 15px 50px rgba(255, 107, 157, 0.6);
            background: linear-gradient(135deg, #ff8fb3, var(--iabamr-accent));
            border-color: white;
            color: white;
        }

        .iabamr-sponsorship-btn i {
            font-size: 24px;
        }


        .iabamr-scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: iabamr-bounce 2s infinite;
        }

        .iabamr-scroll-indicator i {
            color: white;
            font-size: 32px;
            opacity: 0.7;
        }

        @keyframes iabamr-bounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(10px);
            }
        }

        @keyframes iabamr-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Overview Section */
        .iabamr-overview {
            padding: 100px 20px;
            background: var(--iabamr-white);
        }

        .iabamr-section-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            color: var(--iabamr-secondary);
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .iabamr-section-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--iabamr-primary), var(--iabamr-accent));
            margin: 20px auto 0;
            border-radius: 2px;
        }

        .iabamr-glass-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 60px var(--iabamr-shadow-lg);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .iabamr-glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px var(--iabamr-shadow-lg);
        }

        .iabamr-overview-text {
            font-size: 18px;
            line-height: 1.8;
            color: var(--iabamr-gray);
            margin-bottom: 30px;
        }

        /* Key Themes Section Styles */
        .iabamr-themes-title {
            color: var(--iabamr-secondary);
            margin-bottom: 25px;
            font-family: 'Poppins', sans-serif;
            text-align: center;
            font-size: 24px;
            font-weight: 600;
        }

        .iabamr-themes-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            justify-items: center;
            align-items: stretch;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Responsive Grid Layout */
        @media (max-width: 1024px) {
            .iabamr-themes-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .iabamr-themes-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .iabamr-themes-container {
                grid-template-columns: 1fr;
            }
        }

        .iabamr-theme-pill {
            background: linear-gradient(135deg, var(--iabamr-primary), var(--iabamr-primary-dark));
            color: white;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 500;
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(82, 192, 216, 0.2);
            width: 100%;
            min-height: 48px;
        }

        .iabamr-theme-pill:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(82, 192, 216, 0.4);
            background: linear-gradient(135deg, var(--iabamr-primary-light), var(--iabamr-primary));
        }


        .iabamr-feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .iabamr-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(82, 192, 216, 0.05), rgba(43, 91, 110, 0.05));
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .iabamr-feature-item:hover {
            background: linear-gradient(135deg, rgba(82, 192, 216, 0.1), rgba(43, 91, 110, 0.1));
            transform: translateX(5px);
        }

        .iabamr-feature-icon {
            font-size: 28px;
            color: var(--iabamr-primary);
            min-width: 40px;
        }

        .iabamr-feature-text {
            font-size: 16px;
            color: var(--iabamr-dark);
            line-height: 1.6;
        }

        /* Speakers Section */
        .iabamr-speakers {
            padding: 100px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
        }

        .iabamr-speakers::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
            opacity: 0.3;
        }

        .iabamr-speakers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }

        .iabamr-speaker-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0;
            transform: translateY(30px);
        }

        .iabamr-speaker-card.iabamr-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .iabamr-speaker-card:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .iabamr-speaker-img-wrapper {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid rgba(255, 255, 255, 0.3);
            position: relative;
            transition: all 0.3s ease;
        }

        .iabamr-speaker-card:hover .iabamr-speaker-img-wrapper {
            border-color: var(--iabamr-accent);
            box-shadow: 0 0 30px rgba(255, 107, 157, 0.5);
        }

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

        .logo-wrapper img {
            height: 70px;
            width: auto;
            transition: transform 0.3s ease;
        }

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

        .iabamr-speaker-name {
            font-family: 'Poppins', sans-serif;
            font-size: 20px;
            font-weight: 600;
            color: white;
            margin-bottom: 8px;
        }

        .iabamr-speaker-location {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
        }

        .iabamr-speakers-category {
            text-align: center;
            margin: 80px 0 40px;
            position: relative;
            z-index: 1;
        }

        .iabamr-speakers-category:first-child {
            margin-top: 0;
        }

        .iabamr-category-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 24px;
            font-weight: 700;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        /* Registration Section */
        .iabamr-registration {
            padding: 100px 20px;
            background: var(--iabamr-white);
        }

        .iabamr-table-wrapper {
            overflow-x: auto;
            border-radius: 20px;
            box-shadow: 0 20px 60px var(--iabamr-shadow-lg);
            margin-bottom: 50px;
        }

        .iabamr-pricing-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            font-size: 15px;
        }

        .iabamr-pricing-table thead {
            background: linear-gradient(135deg, var(--iabamr-primary), var(--iabamr-secondary));
            color: white;
        }

        .iabamr-pricing-table th {
            padding: 20px;
            text-align: left;
            font-weight: 600;
            font-size: 16px;
        }

        .iabamr-pricing-table tbody tr {
            transition: all 0.3s ease;
        }

        .iabamr-pricing-table tbody tr:hover {
            background: rgba(82, 192, 216, 0.05);
            transform: scale(1.01);
        }

        .iabamr-pricing-table td {
            padding: 20px;
            border-bottom: 1px solid var(--iabamr-gray-light);
        }

        .iabamr-pricing-table .iabamr-category-cell {
            font-weight: 600;
            color: var(--iabamr-secondary);
        }

        .iabamr-pricing-table .iabamr-highlight-cell {
            background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 139, 171, 0.1));
            font-weight: 700;
            color: var(--iabamr-accent);
        }

        .iabamr-info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .iabamr-info-card {
            background: linear-gradient(135deg, rgba(82, 192, 216, 0.1), rgba(43, 91, 110, 0.1));
            border-radius: 20px;
            padding: 40px;
            border-left: 5px solid var(--iabamr-primary);
            transition: all 0.3s ease;
        }

        .iabamr-info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px var(--iabamr-shadow);
        }

        .iabamr-info-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 22px;
            color: var(--iabamr-secondary);
            margin-bottom: 20px;
        }

        .iabamr-info-list {
            list-style: none;
            padding: 0;
        }

        .iabamr-info-list li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--iabamr-gray);
            line-height: 1.6;
        }

        .iabamr-info-list i {
            color: var(--iabamr-primary);
            font-size: 18px;
            min-width: 20px;
        }

        /* Contact Section */
        .iabamr-contact {
            padding: 100px 20px;
            background: linear-gradient(135deg, var(--iabamr-secondary) 0%, var(--iabamr-primary) 100%);
        }

        .iabamr-contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .iabamr-contact-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .iabamr-contact-card:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .iabamr-contact-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 24px;
            color: white;
            margin-bottom: 25px;
        }

        .iabamr-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .iabamr-contact-item:hover {
            color: white;
            transform: translateX(5px);
        }

        .iabamr-contact-item i {
            font-size: 20px;
            color: var(--iabamr-accent);
        }

        .iabamr-contact-item a {
            color: inherit;
            text-decoration: none;
        }

        /* Professional Deadline Banners - NO ROTATION */
        .iabamr-deadline-banner {
            background: linear-gradient(135deg, var(--iabamr-accent), #ff8fab);
            color: white;
            padding: 25px 30px;
            border-radius: 12px;
            text-align: center;
            font-size: 20px;
            font-weight: 700;
            margin-top: 40px;
            box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        /* CTA Section */
        .iabamr-cta {
            padding: 80px 20px;
            background: var(--iabamr-dark);
            text-align: center;
        }

        .iabamr-cta h2 {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2rem, 4vw, 3rem);
            color: white;
            margin-bottom: 25px;
        }

        .iabamr-cta p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }

        .iabamr-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--iabamr-primary), var(--iabamr-accent));
            color: white;
            padding: 18px 50px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(82, 192, 216, 0.3);
        }

        .iabamr-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(82, 192, 216, 0.5);
        }

        /* Organizers Section */
        .iabamr-organizers {
            padding: 80px 20px;
            background: var(--iabamr-light);
        }

        .iabamr-organizers-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .iabamr-logo-wrapper {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px var(--iabamr-shadow);
            transition: all 0.3s ease;
        }

        .iabamr-logo-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px var(--iabamr-shadow-lg);
        }

        .iabamr-logo-wrapper img {
            max-width: 200px;
            height: auto;
        }

        /* Responsive Design for Event Page */
        @media (max-width: 768px) {
            .iabamr-hero {
                min-height: 80vh;
                padding: 60px 15px 40px;
            }

            .iabamr-hero-meta {
                flex-direction: column;
                gap: 15px;
            }

            .iabamr-glass-card {
                padding: 30px 20px;
            }

            .iabamr-speakers-grid {
                grid-template-columns: 1fr;
            }

            .iabamr-pricing-table {
                font-size: 13px;
            }

            .iabamr-pricing-table th,
            .iabamr-pricing-table td {
                padding: 12px 8px;
            }

            .iabamr-deadline-banner {
                font-size: 16px;
                padding: 20px 15px;
            }
        }

        /* Animation Classes */
        .iabamr-fade-in {
            animation: iabamr-fadeIn 0.8s ease-out forwards;
        }

        @keyframes iabamr-fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .iabamr-slide-up {
            animation: iabamr-slideUp 0.8s ease-out forwards;
        }

        @keyframes iabamr-slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========================================
   Event Page Sidebar Styles
   ======================================== */

        /* Event Page Wrapper */
        .event-page-wrapper {
            display: flex;
            min-height: 100vh;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
        }

        /* Sidebar Styles */
        .event-sidebar {
            position: fixed;
            left: 0;
            top: 0;
            width: 280px;
            height: 100vh;
            background: linear-gradient(180deg, #003865 0%, #001f3f 100%);
            box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            overflow-y: auto;
            transition: transform 0.3s ease;
        }

        .sidebar-header {
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .sidebar-header h3 {
            color: #fff;
            font-size: 1.5rem;
            margin: 0;
            font-weight: 600;
        }

        .sidebar-close {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
            transition: transform 0.3s ease;
        }

        .sidebar-close:hover {
            transform: rotate(90deg);
        }

        .sidebar-nav {
            padding: 20px 0;
        }

        .sidebar-menu {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .sidebar-item {
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }

        .sidebar-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 25px;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .sidebar-link::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: #f9b233;
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .sidebar-link:hover::before,
        .sidebar-item.active .sidebar-link::before {
            transform: scaleY(1);
        }

        .sidebar-link i {
            font-size: 1.2rem;
            color: #f9b233;
            transition: all 0.3s ease;
        }

        .sidebar-link span {
            font-size: 0.95rem;
            font-weight: 500;
        }

        .sidebar-link:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            padding-left: 30px;
        }

        .sidebar-item.active .sidebar-link {
            background: rgba(249, 178, 51, 0.2);
            color: #fff;
            font-weight: 600;
        }

        .sidebar-item.active .sidebar-link i {
            transform: scale(1.2);
        }

        /* Sidebar Toggle Button (Mobile) */
        .sidebar-toggle {
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 999;
            background: linear-gradient(135deg, #003865, #001f3f);
            color: #fff;
            border: none;
            padding: 12px 20px;
            border-radius: 50px;
            display: none;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 56, 101, 0.3);
            transition: all 0.3s ease;
        }

        .sidebar-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 56, 101, 0.4);
        }

        .sidebar-toggle i {
            font-size: 1.2rem;
        }

        /* Main Content Area */
        .event-content {
            margin-left: 280px;
            flex: 1;
            padding: 40px;
            min-height: 100vh;
        }

        /* Content Sections */
        .content-section {
            display: none;
            animation: fadeInUp 0.5s ease;
        }

        .content-section.active {
            display: block;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Header */
        .section-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            color: #003865;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .title-underline {
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #f9b233, #ffc107);
            margin: 0 auto;
            border-radius: 2px;
        }

        /* Glass Card Effect */
        .glass-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

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

        /* Conference Hero Section */
        .conference-hero {
            background: linear-gradient(135deg, #003865 0%, #800000 100%);
            color: #fff;
            padding: 60px;
            border-radius: 20px;
            margin-bottom: 40px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        .hero-badge {
            display: inline-block;
            background: rgba(249, 178, 51, 0.2);
            color: #f9b233;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(249, 178, 51, 0.3);
        }

        .conference-title {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 25px;
            line-height: 1.3;
            font-weight: 700;
        }

        .conference-dates,
        .conference-location {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.9);
        }

        .conference-dates i,
        .conference-location i {
            color: #f9b233;
            font-size: 1.3rem;
        }

        .conference-tagline {
            margin: 30px 0;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            backdrop-filter: blur(5px);
        }

        .conference-tagline h3 {
            color: #fff;
            font-size: 1.5rem;
            margin: 0;
            font-weight: 600;
        }

        .hero-actions {
            margin-top: 30px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #f9b233;
            color: #003865;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(249, 178, 51, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(249, 178, 51, 0.5);
            background: #ffc107;
        }

        /* Conference Overview */
        .conference-overview {
            margin-top: 40px;
        }

        .overview-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            text-align: center;
            margin-bottom: 0;
        }

        /* Info Grid */
        .info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

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

        .info-card h3 {
            color: #003865;
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-card h3 i {
            color: #f9b233;
            font-size: 1.5rem;
        }

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

        .feature-list li {
            padding: 10px 0;
            color: #555;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .feature-list li:hover {
            color: #003865;
            transform: translateX(5px);
        }

        .feature-list li i {
            color: #f9b233;
            font-size: 1rem;
        }

        /* Themes Section */
        .themes-section {
            margin: 40px 0;
        }

        .themes-section h3 {
            color: #003865;
            font-size: 1.8rem;
            text-align: center;
            margin-bottom: 25px;
        }

        .theme-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
        }

        .theme-pill {
            display: inline-block;
            background: linear-gradient(135deg, #003865, #001f3f);
            color: #fff;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 56, 101, 0.2);
        }

        .theme-pill:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 56, 101, 0.3);
            background: linear-gradient(135deg, #f9b233, #ffc107);
            color: #003865;
        }

        /* Organized By Section */
        .organized-by {
            margin: 40px 0;
            text-align: center;
        }

        .organized-by h3 {
            color: #003865;
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

        .organizers-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .logo-wrapper {
            background: #fff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .logo-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .logo-wrapper img {
            max-width: 280px;
            height: auto;
            display: block;
        }

        /* Placeholder Text */
        .placeholder-text {
            font-size: 1.1rem;
            color: #666;
            text-align: center;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .placeholder-text i {
            color: #f9b233;
            font-size: 2rem;
        }

        /* Speakers Grid */
        .speakers-category {
            margin: 40px 0 30px;
            text-align: center;
        }

        .category-badge {
            display: inline-block;
            background: linear-gradient(135deg, #003865, #800000);
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .speakers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .speaker-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .speaker-card.animate-in {
            opacity: 1;
            transform: translateY(0);
        }

        .speaker-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .speaker-img-wrapper {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .speaker-img-wrapper::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
        }

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

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

        .speaker-name {
            color: #003865;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 15px 20px 5px;
            margin: 0;
        }

        .speaker-location {
            color: #800000;
            font-size: 0.95rem;
            padding: 0 20px 15px;
            margin: 0;
        }

        /* Pricing Table */
        .table-wrapper {
            overflow-x: auto;
            margin: 40px 0;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .pricing-table {
            width: 100%;
            background: #fff;
            border-collapse: collapse;
            border-radius: 15px;
            overflow: hidden;
        }

        .pricing-table thead {
            background: linear-gradient(135deg, #003865, #001f3f);
            color: #fff;
        }

        .pricing-table th {
            padding: 20px;
            text-align: center;
            font-weight: 600;
            font-size: 1rem;
        }

        .pricing-table td {
            padding: 18px 20px;
            text-align: center;
            border-bottom: 1px solid #f0f0f0;
        }

        .pricing-table tbody tr:hover {
            background: rgba(249, 178, 51, 0.05);
        }

        .category-cell {
            text-align: left;
            font-weight: 600;
            color: #003865;
        }

        .category-cell small {
            display: block;
            font-weight: 400;
            color: #666;
            font-size: 0.85rem;
            margin-top: 5px;
        }

        .highlight-cell {
            background: rgba(249, 178, 51, 0.1);
            color: #800000;
            font-weight: 700;
        }

        /* Info Cards */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .info-card h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

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

        .info-list li {
            padding: 10px 0;
            color: #555;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            line-height: 1.6;
        }

        .info-list li i {
            color: #f9b233;
            margin-top: 3px;
        }

        /* Contact Section */
        .contact-section {
            margin: 50px 0;
        }

        .contact-section h3 {
            color: #003865;
            font-size: 1.8rem;
            text-align: center;
            margin-bottom: 30px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-card h4 {
            color: #003865;
            font-size: 1.3rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-card h4 i {
            color: #f9b233;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            color: #555;
        }

        .contact-item i {
            color: #f9b233;
            width: 20px;
        }

        .contact-item a {
            color: #003865;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-item a:hover {
            color: #800000;
            text-decoration: underline;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            margin-top: 30px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .event-sidebar {
                transform: translateX(-100%);
            }

            .event-sidebar.active {
                transform: translateX(0);
            }

            .sidebar-close {
                display: block;
            }

            .sidebar-toggle {
                display: flex;
            }

            .event-content {
                margin-left: 0;
                padding: 80px 20px 40px;
            }

            .conference-hero {
                padding: 40px 30px;
            }

            .conference-title {
                font-size: 1.8rem;
            }

            .info-grid {
                grid-template-columns: 1fr;
            }

            .speakers-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .conference-title {
                font-size: 1.5rem;
            }

            .conference-hero {
                padding: 30px 20px;
            }

            .glass-card {
                padding: 25px;
            }

            .info-cards {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .organizers-logos {
                gap: 30px;
            }

            .logo-wrapper img {
                max-width: 150px;
            }
        }

        @media (max-width: 576px) {
            .event-content {
                padding: 70px 15px 30px;
            }

            .section-title {
                font-size: 1.6rem;
            }

            .conference-title {
                font-size: 1.3rem;
            }

            .theme-pills {
                gap: 10px;
            }

            .theme-pill {
                padding: 8px 18px;
                font-size: 0.85rem;
            }

            .speakers-grid {
                grid-template-columns: 1fr;
            }

            .pricing-table {
                font-size: 0.85rem;
            }

            .pricing-table th,
            .pricing-table td {
                padding: 12px 8px;
            }
        }

        /* Scrollbar Styling for Sidebar */
        .event-sidebar::-webkit-scrollbar {
            width: 6px;
        }

        .event-sidebar::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
        }

        .event-sidebar::-webkit-scrollbar-thumb {
            background: rgba(249, 178, 51, 0.5);
            border-radius: 3px;
        }

        .event-sidebar::-webkit-scrollbar-thumb:hover {
            background: rgba(249, 178, 51, 0.7);
        }

        /* Additional fixes for event page integration with site header */
        .event-page-wrapper .iabamrr-topbar,
        .event-page-wrapper .iabamrr-header {
            position: relative;
            z-index: 100;
        }

        /* Adjust sidebar to account for header */
        body:has(.event-page-wrapper) .event-sidebar {
            top: 0;
            padding-top: 20px;
        }

        /* Ensure event page wrapper starts below header */
        .event-page-wrapper {
            margin-top: 0;
            padding-top: 0;
        }
/* ============================================
   EVENT1 PAGE STYLES
   ============================================ */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Event page specific styles */
.event-hero {
    background: linear-gradient(135deg, #003865 0%, #800000 100%);
    color: #fff;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.event-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/conference-flyer-1.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.event-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.event-badge {
    display: inline-block;
    background: rgba(249, 178, 51, 0.2);
    color: #f9b233;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(249, 178, 51, 0.3);
}

.event-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.event-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
    font-size: 1.2rem;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-meta-item i {
    color: #f9b233;
    font-size: 1.4rem;
}

.event-tagline {
    font-size: 1.3rem;
    margin: 30px auto;
    max-width: 900px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.event-cta {
    margin-top: 35px;
}

.event-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f9b233;
    color: #003865;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 178, 51, 0.3);
}

.event-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(249, 178, 51, 0.5);
    background: #ffc107;
}

/* Sticky Navigation - FIXED POSITIONING */
.event-nav-wrapper {
    position: sticky;
    top: 110px; /* Fixed: Changed from 70px to match header height */
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #f9b233;
}

.event-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

.event-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: auto;
    scrollbar-color: #f9b233 #f0f0f0;
}

.event-nav-list::-webkit-scrollbar {
    height: 12px;
}

.event-nav-list::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 6px;
}

.event-nav-list::-webkit-scrollbar-thumb {
    background: #f9b233;
    border-radius: 6px;
    border: 2px solid #f0f0f0;
}

.event-nav-list::-webkit-scrollbar-thumb:hover {
    background: #e09f1f;
}

.event-nav-item {
    flex-shrink: 0;
}

.event-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 25px;
    color: #003865;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.event-nav-link:hover,
.event-nav-link.active {
    background: rgba(249, 178, 51, 0.1);
    border-bottom-color: #f9b233;
    color: #800000;
}

.event-nav-link i {
    color: #f9b233;
    font-size: 1.1rem;
}

/* Content Sections */
.event-section {
    padding: 80px 20px;
    scroll-margin-top: 80px;
}

.event-section:nth-child(even) {
    background: #f5f7fa;
}

.event-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.event-section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #003865;
    margin-bottom: 15px;
    font-weight: 700;
}

.event-section-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f9b233, #ffc107);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.event-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

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

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.info-card h3 {
    color: #003865;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card h3 i {
    color: #f9b233;
    font-size: 1.5rem;
}

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

.feature-list li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-list li i {
    color: #f9b233;
}

/* Theme Pills */
.theme-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.theme-pill {
    background: linear-gradient(135deg, #003865, #001f3f);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 56, 101, 0.2);
}

.theme-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 56, 101, 0.3);
    background: linear-gradient(135deg, #f9b233, #ffc107);
    color: #003865;
}

/* Speakers Grid */
.speakers-category {
    margin: 50px 0 30px;
    text-align: center;
}

.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #003865, #800000);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Two-column layout for speakers */
.speakers-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.speakers-column {
    display: flex;
    flex-direction: column;
}

/* Add vertical separator between columns */
.speakers-column:first-child {
    border-right: 2px solid #e0e0e0;
    padding-right: 20px;
}

.speakers-column:last-child {
    padding-left: 20px;
}

.speakers-column-header {
    text-align: center;
    margin-bottom: 30px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.speaker-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.speaker-img-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
}

.speaker-card:hover .speaker-img-wrapper img {
    transform: scale(1.05);
}

.speaker-name {
    color: #003865;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 20px 5px;
    margin: 0;
}

.speaker-location {
    color: #800000;
    font-size: 0.95rem;
    padding: 0 20px 15px;
    margin: 0;
}

/* Pricing Table */
.table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.pricing-table {
    width: 100%;
    background: #fff;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
    min-width: 800px;
}

.pricing-table thead {
    background: linear-gradient(135deg, #003865, #001f3f);
    color: #fff;
}

.pricing-table th {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.pricing-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-table tbody tr:hover {
    background: rgba(249, 178, 51, 0.05);
}

.category-cell {
    text-align: left;
    font-weight: 600;
    color: #003865;
}

.category-cell small {
    display: block;
    font-weight: 400;
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
}

.highlight-cell {
    background: rgba(249, 178, 51, 0.1);
    color: #800000;
    font-weight: 700;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-card h4 {
    color: #003865;
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-card h4 i {
    color: #f9b233;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #555;
}

.contact-item i {
    color: #f9b233;
    width: 20px;
}

.contact-item a {
    color: #003865;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #800000;
    text-decoration: underline;
}

/* Organizers Logos */
.organizers-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 40px 0;
}

/* Placeholder Text */
.placeholder-text {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-direction: column;
}

.placeholder-text i {
    color: #f9b233;
    font-size: 3rem;
}

/* Place Images */
.place-image-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.place-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.place-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.place-image-wrapper:hover img {
    transform: scale(1.1);
}

/* Responsive Design for Event1 Page */
@media (max-width: 768px) {
    /* Fixed: Adjusted for mobile header height */
    .event-nav-wrapper {
        top: 90px;
    }
    
    .event-hero {
        padding: 60px 15px 50px;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .event-section {
        padding: 50px 15px;
    }
    
    .glass-card {
        padding: 25px;
    }
    
    .info-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .speakers-two-column {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Remove separator on mobile */
    .speakers-column:first-child {
        border-right: none;
        padding-right: 0;
    }
    
    .speakers-column:last-child {
        padding-left: 0;
    }
    
    .pricing-table {
        font-size: 0.85rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
    }
}
