    /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            overflow-x: hidden;
        }
/* Mobile first - hide sidebar */
.sidebar {
  display: none;
}
#formPreviewModal {
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
#formPreviewModal ul li {
  margin-bottom: 10px;
}


.mobile-menu-btn {
  position: fixed;
  top: 65px;
  right: 40px;
  font-size: 2rem;
  color: #ffc400;
  cursor: pointer;
  z-index: 1001;
  display: block;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: white;
  transition: left 0.4s ease;
  z-index: 1000;
  padding: 20px;
}

.mobile-sidebar.active {
  left: 0;
}

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-sidebar-header img {
  width: 100px;
  height: auto;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  padding: 30px 0 0;
}

.mobile-nav-links li {
  margin: 15px 0;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #e0e0e0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.mobile-nav-links a i {
  margin-right: 12px;
  color: #00e5ff;
}

/* Desktop view */
@media screen and (min-width: 768px) {
  .sidebar {
    display: flex;
  }

  .mobile-menu-btn,
  .mobile-sidebar {
    display: none;
  }

  .main-content {
    margin-left: 280px;
  }

  .sidebar:hover ~ .main-content {
    margin-left: 300px;
  }
}

        /* Sidebar styles */
        .sidebar {
            position: fixed;
            top: 0;
            left: 0;
            height: 100vh;
            width: 280px;
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 25px;
            box-shadow: 5px 0 30px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        .sidebar:hover {
            width: 300px;
            box-shadow: 8px 0 40px rgba(0, 0, 0, 0.3);
        }

        .sidebar .logo img {
            width: 160px;
            height: auto;
            margin-bottom: 60px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            border: 2px solid rgba(0, 229, 255, 0.3);
        }

        .sidebar:hover .logo img {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 229, 255, 0.2);
        }

        .nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }

        .nav-links li {
            margin-bottom: 15px;
            position: relative;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            color: #e0e0e0;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            border-radius: 10px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(to bottom, #00e5ff, #00b8d4);
            transition: all 0.4s ease;
            opacity: 0;
        }

        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-links a:hover::before {
            opacity: 1;
            width: 100%;
            background: linear-gradient(to right, rgba(0, 229, 255, 0.1), transparent);
        }

        .nav-links i {
            margin-right: 15px;
            font-size: 1.2rem;
            color: #00e5ff;
            transition: all 0.3s ease;
        }

        .nav-links a:hover i {
            transform: scale(1.2);
            color: #fff;
        }

        /* Main content area */
        .main-content {
            margin-left: 280px;
            transition: all 0.4s ease;
        }

        .sidebar:hover ~ .main-content {
            margin-left: 300px;
        }

        /* Banner styles */
        .banner {
            background: linear-gradient(135deg, #0c3483, #1a4b8c);
            color: white;
            padding: 8rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
            opacity: 0.3;
        }

        .banner-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            animation: fadeInUp 1s ease;
        }

        .banner h1 {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .banner h1 span {
            color: #ffeb3b;
            position: relative;
            display: inline-block;
        }

        .banner h1 span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(255, 235, 59, 0.3);
            z-index: -1;
            border-radius: 4px;
        }

        .banner p {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #ffeb3b, #fbc02d);
            color: #0d47a1;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 8px 25px rgba(251, 192, 45, 0.3);
            animation: fadeIn 1s ease 0.6s both;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(251, 192, 45, 0.4);
        }

        .btn:active {
            transform: translateY(0);
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .btn:hover::after {
            transform: translateX(100%);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
            filter: blur(1px);
            transition: all 0.5s ease;
        }

        .floating-element:nth-child(odd) {
            background: rgba(255, 235, 59, 0.15);
        }

        /* Why Join Section */
        .why-join {
            padding: 8rem 2rem;
            background: #f8f9fa;
            position: relative;
            overflow: hidden;
        }

        .section-header {
            text-align: center;
            margin-bottom: 6rem;
            position: relative;
        }

        .section-header h2 {
            font-size: 3.5rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 5px;
            background: linear-gradient(to right, #ffeb3b, #fbc02d);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }

        .section-header p {
            font-size: 1.3rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Benefits Cards */
        .benefits-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 5rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .benefit-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, #00e5ff, #00b8d4);
            transition: all 0.4s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .benefit-card:hover::before {
            width: 100%;
            opacity: 0.1;
            background: linear-gradient(135deg, #1a237e, #00b8d4);
        }

        .benefit-card h3 {
            color: #1a237e;
            margin-bottom: 1.5rem;
            font-size: 1.6rem;
            font-weight: 600;
            position: relative;
            padding-bottom: 10px;
        }

        .benefit-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #ffeb3b;
            border-radius: 3px;
        }

        .benefit-card p {
            color: #555;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .benefit-icon {
            font-size: 3rem;
            color: #1a237e;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1);
            color: #00b8d4;
        }

        /* Stats Counter */
        .stats-section {
            background: linear-gradient(135deg, #1a237e, #283593);
            color: white;
            padding: 6rem 2rem;
            margin-top: 6rem;
            text-align: center;
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            box-shadow: 0 20px 50px rgba(26, 35, 126, 0.3);
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
            opacity: 0.2;
        }

        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            gap: 30px;
        }

        .stat-item {
            padding: 2rem;
            min-width: 220px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(5px);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #ffeb3b;
            font-family: 'Poppins', sans-serif;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .stat-label {
            font-size: 1.3rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        @keyframes floatUp {
            0% { transform: translateY(30px); opacity: 0; }
            100% { transform: translateY(0); opacity: 1; }
        }

        /* Responsive styles */
        @media (max-width: 1024px) {
            .sidebar {
                width: 250px;
            }
            
            .sidebar:hover {
                width: 250px;
            }
            
            .main-content {
                margin-left: 250px;
            }
            
            .sidebar:hover ~ .main-content {
                margin-left: 250px;
            }
        }

        @media (max-width: 768px) {
            .sidebar {
                width: 100%;
                height: auto;
                position: relative;
                padding: 20px;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
            }
            
            .sidebar .logo {
                margin-bottom: 0;
            }
            
            .sidebar .logo img {
                width: 120px;
                margin-bottom: 0;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: #1a1a2e;
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            }
            
            .nav-links.active {
                display: block;
            }
            
            .nav-links li {
                margin-bottom: 10px;
            }
            
            .nav-links a {
                padding: 12px 20px;
            }
            
            .mobile-menu-btn {
                display: block;
                font-size: 1.5rem;
                /* color: #fff; */
                cursor: pointer;
            }
            
            .main-content {
                margin-left: 0;
            }
            
            .banner {
                padding: 6rem 1rem;
                min-height: auto;
            }
            
            .banner h1 {
                font-size: 2.5rem;
            }
            
            .banner p {
                font-size: 1.2rem;
            }
            
            .section-header h2 {
                font-size: 2.5rem;
            }
            
            .benefits-cards {
                grid-template-columns: 1fr;
            }
            
            .stats-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .stat-item {
                min-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .banner h1 {
                font-size: 2rem;
            }
            
            .btn {
                padding: 0.8rem 1.8rem;
                font-size: 1rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .section-header p {
                font-size: 1.1rem;
            }
            
            .benefit-card {
                padding: 1.5rem;
            }
        }
         :root {
            --primary: #2c3e50;
            --secondary: #e74c3c;
            --accent: #3498db;
            --light: #ecf0f1;
            --dark: #2c3e50;
            --success: #27ae60;
            --warning: #f39c12;
            --gradient: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f5f7fa;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            z-index: -1;
        }

        header {
            background: var(--gradient);
            color: white;
            padding: 2rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: pulse 15s infinite linear;
            z-index: 0;
        }

        @keyframes pulse {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .header-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            animation: fadeInDown 1s ease;
        }

        .tagline {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 2rem;
            animation: fadeIn 1.5s ease;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
        }

        .cta-button:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
        }

        .container {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem;
        }

        .section-title-membership {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title-membership h2 {
            font-size: 2.2rem;
            color: var(--primary);
            display: inline-block;
            padding-bottom: 0.5rem;
        }

        .section-title-membership h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary);
        }

        .benefits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 5rem;
        }

        .benefit-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .benefit-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .benefit-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .tab-button {
            padding: 0.8rem 2rem;
            background: white;
            border: none;
            cursor: pointer;
            font-weight: bold;
            color: var(--dark);
            transition: all 0.3s ease;
            border-radius: 5px 5px 0 0;
            margin: 0 0.2rem;
            box-shadow: 0 -3px 5px rgba(0, 0, 0, 0.05);
        }

        .tab-button.active {
            background: var(--primary);
            color: white;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 3rem;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .pricing-table th {
            background: var(--primary);
            color: white;
            padding: 1.2rem;
            text-align: left;
        }

        .pricing-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        .pricing-table td {
            padding: 1rem 1.2rem;
            border-bottom: 1px solid #eee;
        }

        .pricing-table tr:last-child td {
            border-bottom: none;
        }

        .price {
            font-weight: bold;
            color: var(--secondary);
        }

        .note {
            font-size: 0.9rem;
            color: #666;
            margin-top: 1rem;
        }

        .membership-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .feature-item {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .feature-item i {
            color: var(--accent);
            margin-right: 0.5rem;
        }

        .apply-section {
            background: var(--gradient);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            margin-top: 4rem;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }

        .apply-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .apply-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .apply-steps {
            display: flex;
            justify-content: space-between;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .step {
            flex: 1;
            min-width: 150px;
            margin: 0.5rem;
            position: relative;
            padding-top: 50px;
        }

        .step-number {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        footer {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from { 
                opacity: 0;
                transform: translateY(-20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            
            .benefits-container {
                grid-template-columns: 1fr;
            }
            
            .pricing-table {
                font-size: 0.9rem;
            }
            
            .apply-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .step {
                margin-bottom: 2rem;
            }
        }

         :root {
            --primary-color: #0056b3;
            --secondary-color: #f8f9fa;
            --accent-color: #ffc107;
            --text-color: #333;
            --border-color: #ddd;
            --error-color: #dc3545;
            --success-color: #28a745;
        }

        /* * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        } */

        /* body {
            background-color: #f5f5f5;
            color: var(--text-color);
            line-height: 1.6;
        } */

        .container-form {
            max-width: 900px;
            margin: 30px auto;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        .header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--primary-color);
        }

        .header h1 {
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .header p {
            color: #666;
            font-size: 1.1em;
        }

        .required-field::after {
            content: " *";
            color: var(--error-color);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }

        .form-col {
            flex: 1;
            padding: 0 10px;
            min-width: 250px;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #555;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="date"],
        input[type="number"],
        select,
        textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        input:focus,
        select:focus,
        textarea:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
        }

        .section-title {
            background-color: var(--primary-color);
            color: #ffffff;
            padding: 10px 15px;
            margin: 25px 0 15px;
            border-radius: 4px;
            font-size: 1.2em;
        }

        .file-upload {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 20px;
        }

        .file-upload-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .file-upload-item label {
            margin-bottom: 0;
            flex-grow: 1;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            text-align: center;
            transition: background-color 0.3s, transform 0.2s;
        }

        .btn:hover {
            background-color: #004494;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: #6c757d;
        }

        .btn-secondary:hover {
            background-color: #5a6268;
        }

        .form-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }

        .checkbox-group input {
            margin-right: 10px;
        }

        .error-message {
            color: var(--error-color);
            font-size: 0.9em;
            margin-top: 5px;
            display: none;
        }

        .success-message {
            display: none;
            padding: 15px;
            background-color: var(--success-color);
            color: white;
            border-radius: 4px;
            margin-bottom: 20px;
            text-align: center;
        }

        @media (max-width: 768px) {
            .form-col {
                flex: 100%;
                margin-bottom: 15px;
            }

            .form-actions {
                flex-direction: column;
                gap: 10px;
            }

            .btn {
                width: 100%;
            }
        }

        /* Animation for form sections */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .form-section {
            animation: fadeIn 0.5s ease-out forwards;
        }
          .payment-details {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f7fa;
        }
        .header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
        }
        .header h1 {
            color: #0056b3;
            margin-bottom: 10px;
        }
        .header p {
            color: #666;
        }
        .toggle-container {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            background: white;
            border-radius: 50px;
            padding: 5px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
        .toggle-option {
            padding: 12px 30px;
            cursor: pointer;
            font-weight: 600;
            color: #555;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .toggle-option.active {
            background: linear-gradient(135deg, #0056b3, #0083ff);
            color: white;
            box-shadow: 0 2px 8px rgba(0,86,179,0.3);
        }
        .payment-section {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            display: none;
            animation: fadeIn 0.5s ease;
        }
        .payment-section.active {
            display: block;
        }
        .payment-section h2 {
            color: #0056b3;
            border-bottom: 2px solid #e1e5eb;
            padding-bottom: 15px;
            margin-top: 0;
            font-size: 24px;
        }
        .bank-details {
            background-color: #f0f7ff;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #0056b3;
        }
        .bank-details h3 {
            margin-top: 0;
            color: #003366;
            font-size: 18px;
        }
        .form-field {
            margin-bottom: 20px;
        }
        .form-field label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #444;
        }
        .form-field input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            transition: border 0.3s;
        }
        .form-field input:focus {
            border-color: #0056b3;
            outline: none;
            box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
        }
        .note {
            font-style: italic;
            color: #666;
            margin: 25px 0;
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 6px;
            border-left: 3px solid #0056b3;
        }
        .signature {
            text-align: right;
            margin-top: 30px;
        }
        .payment-instructions {
            background-color: #fff8e6;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            border-left: 4px solid #ffa500;
        }
        .payment-instructions h3 {
            margin-top: 0;
            color: #d35400;
            font-size: 18px;
        }
        .payment-methods {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }
        .payment-method {
            flex: 1;
            min-width: 250px;
        }
        .payment-instructions p {
            position: relative;
            padding-left: 25px;
        }
        .payment-instructions p:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #0056b3;
            font-weight: bold;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 768px) {
            .payment-method {
                width: 100%;
            }
            .toggle-option {
                padding: 10px 20px;
                font-size: 14px;
            }
        }
        .video-section {
  max-width: min(900px, 90%);
  margin: 2.5rem auto;
  padding: 1.25rem;
  text-align: center;
}

.video-container {
  position: relative;
  padding-top: 56.25%;
  background-color: #000;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 16/9;
}

.video-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.video-container iframe,
.video-container .video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumbnail {
  transition: opacity 0.3s ease;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: none;
  padding: 0;
}

.play-button:hover {
  background-color: rgba(230, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.play-button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.play-button svg {
  transition: transform 0.2s ease;
}

.play-button:hover svg {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-section {
    margin: 1.5rem auto;
    padding: 1rem;
  }
  
  .play-button {
    width: 4rem;
    height: 4rem;
  }
  
  .play-button svg {
    width: 36px;
    height: 36px;
  }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .video-container,
  .play-button,
  .play-button svg,
  .video-thumbnail {
    transition: none !important;
  }
}
   body {
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                line-height: 1.6;
                color: #333333;
                background-color: #ffffff;
                margin: 0;
                padding: 0;
            }

            .membership-highlights {
                max-width: 1200px;
                margin: 40px auto;
                padding: 0 20px;
            }

            .section-header {
                text-align: center;
                margin-bottom: 50px;
            }

            .section-header h2 {
                font-size: 2.5rem;
                color: #2c5f8b;
                margin-bottom: 15px;
                position: relative;
                display: inline-block;
            }

            .section-header h2:after {
                content: '';
                position: absolute;
                width: 60%;
                height: 4px;
                background: #e8b015;
                ;
                bottom: -10px;
                left: 20%;
                border-radius: 2px;
            }

            .section-header p {
                font-size: 1.1rem;
                color: #666;
                max-width: 700px;
                margin: 0 auto;
            }

            .highlights-container {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 30px;
            }

            .highlight-card {
                background: white;
                border-radius: 10px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                width: 350px;
                padding: 30px;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
                position: relative;
                overflow: hidden;
            }

            .highlight-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
            }

            .highlight-card:before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 5px;
                height: 100%;
                background: linear-gradient(to bottom, #2c5f8b, #e8b015);
            }

            .card-icon {
                width: 70px;
                height: 70px;
                background-color: #e1e9f0;
                ;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 25px;
                color: #2c5f8b;
                font-size: 30px;
            }

            .card-icon i {
                /* If using font-awesome or similar */
            }

            .highlight-card h3 {
                font-size: 1.5rem;
                margin-bottom: 15px;
                color: #2c5f8b;
            }

            .highlight-card p {
                color: #555;
                margin-bottom: 20px;
            }

            .learn-more {
                display: inline-block;
                color: #e8b015;
                font-weight: 600;
                text-decoration: none;
                position: relative;
                padding-bottom: 3px;
            }

            .learn-more:after {
                content: '';
                position: absolute;
                width: 0;
                height: 2px;
                bottom: 0;
                left: 0;
                background-color: #e8b015;
                transition: width 0.3s ease;
            }

            .learn-more:hover:after {
                width: 100%;
            }

            /* Animation */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .highlight-card {
                opacity: 0;
                animation: fadeInUp 0.6s ease forwards;
            }

            .highlight-card:nth-child(1) {
                animation-delay: 0.1s;
            }

            .highlight-card:nth-child(2) {
                animation-delay: 0.3s;
            }

            .highlight-card:nth-child(3) {
                animation-delay: 0.5s;
            }

            /* Responsive */
            @media (max-width: 768px) {
                .highlights-container {
                    flex-direction: column;
                    align-items: center;
                }

                .highlight-card {
                    width: 100%;
                    max-width: 350px;
                }
                .left-section{
                    margin-left: 0px;
                }
                
            }
      .left-section{
        margin-left: 240px;
      }      

             /* Global Styles */
            :root {
                --primary: #0056b3;
                /* WASME Blue */
                --secondary: #f8b400;
                /* Gold accent */
                --dark: #222;
                --light: #f8f9fa;
                --success: #28a745;
            }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
                font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            }

            body {
                background-color: #f5f7fa;
                color: #333;
            }

            /* Membership Section */
            .membership-section {
                max-width: 1200px;
                margin: 50px auto;
                padding: 0 20px;
                position: relative;
                overflow: hidden;
            }

            .membership-container {
                background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 248, 255, 0.9) 100%);
                border-radius: 15px;
                box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1);
                padding: 40px;
                position: relative;
                overflow: hidden;
                z-index: 1;
                border: 1px solid rgba(0, 86, 179, 0.1);
            }

            .membership-container::before {
                content: '';
                position: absolute;
                top: -50%;
                left: -50%;
                width: 200%;
                height: 200%;
                background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, transparent 70%);
                z-index: -1;
                animation: pulse 8s infinite alternate;
            }

            @keyframes pulse {
                0% {
                    transform: scale(0.8);
                    opacity: 0.5;
                }

                100% {
                    transform: scale(1.2);
                    opacity: 0.8;
                }
            }

            .section-header {
                text-align: center;
                margin-bottom: 40px;
                position: relative;
            }

            .section-header h2 {
                font-size: 2.5rem;
                color: var(--primary);
                margin-bottom: 15px;
                font-weight: 700;
                position: relative;
                display: inline-block;
            }

            .section-header h2::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background: var(--secondary);
                border-radius: 2px;
            }

            .section-header p {
                font-size: 1.1rem;
                color: #555;
                max-width: 700px;
                margin: 0 auto;
                line-height: 1.6;
            }

            .testimonial-highlight {
                background: linear-gradient(135deg, var(--primary) 0%, #003366 100%);
                color: white;
                padding: 25px;
                border-radius: 10px;
                margin-bottom: 40px;
                position: relative;
                box-shadow: 0 10px 20px rgba(0, 86, 179, 0.2);
                transform: translateY(0);
                transition: transform 0.3s ease;
            }

            .testimonial-highlight:hover {
                transform: translateY(-5px);
            }

            .testimonial-highlight::before {
                content: '"';
                position: absolute;
                top: 10px;
                left: 20px;
                font-size: 5rem;
                color: rgba(255, 255, 255, 0.1);
                font-family: Georgia, serif;
            }

            .testimonial-highlight p {
                font-size: 1.3rem;
                font-style: italic;
                position: relative;
                z-index: 1;
                line-height: 1.6;
                margin-bottom: 15px;
            }

            .testimonial-highlight .author {
                font-weight: 600;
                text-align: right;
                font-style: normal;
            }

            .benefits-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 25px;
                margin-bottom: 40px;
            }

            .benefit-card {
                background: white;
                border-radius: 10px;
                padding: 30px 25px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
                text-align: center;
                border-top: 4px solid var(--secondary);
            }

            .benefit-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1);
            }

            .benefit-card i {
                font-size: 2.5rem;
                color: var(--primary);
                margin-bottom: 20px;
                background: rgba(0, 86, 179, 0.1);
                width: 70px;
                height: 70px;
                line-height: 70px;
                border-radius: 50%;
                text-align: center;
            }

            .benefit-card h3 {
                font-size: 1.3rem;
                margin-bottom: 15px;
                color: var(--primary);
            }

            .benefit-card p {
                color: #666;
                line-height: 1.6;
            }

            .cta-container {
                text-align: center;
                margin-top: 30px;
            }

            .cta-title {
                font-size: 1.5rem;
                color: var(--primary);
                margin-bottom: 20px;
                font-weight: 600;
            }

            .cta-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;
                flex-wrap: wrap;
            }

            .btn {
                padding: 12px 30px;
                border-radius: 50px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                font-size: 0.9rem;
                transition: all 0.3s ease;
                cursor: pointer;
                border: none;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }

            .btn-primary {
                background: var(--primary);
                color: white;
                box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
            }

            .btn-primary:hover {
                background: #004494;
                transform: translateY(-3px);
                box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
            }

            .btn-secondary {
                background: white;
                color: var(--primary);
                border: 2px solid var(--primary);
            }

            .btn-secondary:hover {
                background: var(--primary);
                color: white;
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
            }

            .globe-animation {
                position: absolute;
                width: 200px;
                height: 200px;
                right: -50px;
                top: -50px;
                opacity: 0.1;
                z-index: -1;
                animation: rotate 30s linear infinite;
            }

            @keyframes rotate {
                0% {
                    transform: rotate(0deg);
                }

                100% {
                    transform: rotate(360deg);
                }
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .section-header h2 {
                    font-size: 2rem;
                }

                .testimonial-highlight p {
                    font-size: 1.1rem;
                }

                .benefits-grid {
                    grid-template-columns: 1fr;
                }

                .cta-buttons {
                    flex-direction: column;
                    align-items: center;
                }

                .btn {
                    width: 100%;
                    max-width: 300px;
                }
            }

            /* Animation Classes */
            .fade-in {
                opacity: 0;
                transform: translateY(20px);
                transition: opacity 0.6s ease, transform 0.6s ease;
            }

            .fade-in.active {
                opacity: 1;
                transform: translateY(0);
            }

            .delay-1 {
                transition-delay: 0.2s;
            }

            .delay-2 {
                transition-delay: 0.4s;
            }

            .delay-3 {
                transition-delay: 0.6s;
            }

            .delay-4 {
                transition-delay: 0.8s;
            }