 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: white;
            color: #333;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 60px;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav:hover {
            box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: bold;
            font-size: 18px;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo img {
            width: 50px;
            height: 50px;
            transition: transform 0.3s ease;
        }

        .logo:hover img {
            transform: rotate(360deg);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            position: relative;
            transition: color 0.3s;
            cursor: pointer;
            padding: 5px 10px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: #4A90E2;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #4A90E2;
        }

        .nav-links a.active {
            color: #4A90E2;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            min-width: 200px;
            z-index: 1;
            border-top: 3px solid #4A90E2;
            animation: fadeIn 0.3s;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: #333;
            border: none;
        }

        .dropdown-content a:hover {
            background: #f0f7ff;
            transform: translateX(5px);
        }

        .auth-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #357ABD 0%, #2868AB 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
        }

        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            display: flex;
            align-items: center;
            padding: 80px 60px;
            gap: 60px;
            animation: slideInUp 1s;
            background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
        }

        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-content {
            flex: 1;
        }

        .hero h1 {
            font-size: 56px;
            color: #4A90E2;
            margin-bottom: 20px;
            animation: fadeInLeft 1s;
        }

        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero h2 {
            font-size: 28px;
            color: #333;
            margin-bottom: 30px;
            font-weight: normal;
        }

        .hero-image {
            flex: 1;
            animation: fadeInRight 1s;
            position: relative;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
            border-radius: 20px;
            z-index: -1;
            opacity: 0.1;
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(30px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
            transition: all 0.4s ease;
        }

        .hero-image img:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 0 20px 60px rgba(74, 144, 226, 0.4);
        }

        /* Content Sections */
        .section {
            padding: 80px 60px;
            animation: fadeIn 1s;
        }

        .section h2 {
            font-size: 42px;
            color: #4A90E2;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #4A90E2, #357ABD);
            border-radius: 2px;
        }

        .section p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #555;
        }

        /* Feature Images */
        .feature-section {
            display: flex;
            align-items: center;
            gap: 50px;
            margin: 60px 0;
            padding: 40px;
            background: linear-gradient(135deg, #f9fbff 0%, #ffffff 100%);
            border-radius: 20px;
            transition: all 0.4s ease;
        }

        .feature-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .feature-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .feature-image img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 15px;
            transition: all 0.5s ease;
        }

        .feature-image:hover img {
            transform: scale(1.1) rotate(2deg);
        }

        .feature-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(53, 122, 189, 0.3));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .feature-image:hover::after {
            opacity: 1;
        }

        .feature-content {
            flex: 1;
            min-width: 300px;
        }

        .feature-content h3 {
            color: #4A90E2;
            font-size: 28px;
            margin-bottom: 15px;
        }

        /* Mission Values */
        .mission-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .value-card {
            padding: 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .value-card:hover::before {
            left: 100%;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
            border-color: #4A90E2;
        }

        .value-card h3 {
            color: #4A90E2;
            margin-bottom: 15px;
            font-size: 24px;
        }

        /* Purpose Items */
        .purpose-list {
            margin-top: 30px;
        }

        .purpose-item {
            margin-bottom: 30px;
            padding: 25px;
            border-left: 4px solid #4A90E2;
            background: linear-gradient(90deg, #f9fbff 0%, #ffffff 100%);
            border-radius: 0 10px 10px 0;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .purpose-item::before {
            content: '';
            position: absolute;
            left: -4px;
            top: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, #4A90E2, #357ABD);
            transition: height 0.3s ease;
        }

        .purpose-item:hover::before {
            height: 100%;
        }

        .purpose-item:hover {
            background: linear-gradient(90deg, #f0f7ff 0%, #ffffff 100%);
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(74, 144, 226, 0.15);
        }

        .purpose-item h4 {
            color: #4A90E2;
            margin-bottom: 10px;
            font-size: 20px;
        }

        /* Team Section */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .team-member {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .team-member::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #4A90E2, #357ABD);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .team-member:hover::before {
            transform: scaleX(1);
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
        }

        .team-member h3 {
            color: #4A90E2;
            font-size: 24px;
            margin-bottom: 10px;
        }

        .team-member p {
            color: #666;
            font-size: 16px;
        }

        /* Membership Section */
        .membership-hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1200');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 120px 60px;
            text-align: center;
            color: white;
            position: relative;
        }

        .membership-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(74, 144, 226, 0.3), rgba(53, 122, 189, 0.3));
        }

        .membership-hero h1 {
            font-size: 52px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }

        .membership-hero p {
            position: relative;
            z-index: 1;
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
        }

        .membership-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            padding: 80px 60px;
        }

        .membership-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            animation: fadeInUp 0.6s;
            border: 3px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .membership-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.6s ease;
        }

        .membership-card:hover::before {
            transform: scale(1);
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .membership-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(74, 144, 226, 0.3);
            border-color: #4A90E2;
        }

        .membership-number {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            color: white;
            margin: 0 auto 30px;
            font-weight: bold;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: all 0.4s ease;
        }

        .membership-card:hover .membership-number {
            transform: scale(1.1) rotate(360deg);
        }

        .blue { background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%); }
        .green { background: linear-gradient(135deg, #6BBF59 0%, #5AAD48 100%); }
        .yellow { background: linear-gradient(135deg, #F4D03F 0%, #E2BE2E 100%); }
        .red { background: linear-gradient(135deg, #E74C3C 0%, #D43A2B 100%); }
        .black { background: linear-gradient(135deg, #2C3E50 0%, #1B2836 100%); }

        .membership-card h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 22px;
            position: relative;
            z-index: 1;
        }

        .membership-card ul {
            list-style: none;
            text-align: left;
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }

        .membership-card li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            color: #555;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .membership-card li:hover {
            color: #4A90E2;
            transform: translateX(5px);
        }

        .membership-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4A90E2;
            font-weight: bold;
        }

        /* Forms */
        .form-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        .form-group:hover label {
            color: #4A90E2;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
            font-family: 'Arial', sans-serif;
            background: white;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #4A90E2;
            box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-group input[type="file"] {
            padding: 10px;
            border: 2px dashed #e0e0e0;
            cursor: pointer;
        }

        .form-group input[type="file"]:hover {
            border-color: #4A90E2;
            background: #f9fbff;
        }

        .checkbox-group {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .checkbox-group input[type="checkbox"],
        .checkbox-group input[type="radio"] {
            width: auto;
            margin-top: 4px;
            cursor: pointer;
        }

        .radio-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .radio-group label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: normal;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .radio-group label:hover {
            color: #4A90E2;
        }

        .form-help {
            font-size: 13px;
            color: #777;
            margin-top: 5px;
        }

        /* Job Listings */
        .job-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 60px;
        }

        .job-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            border-left: 4px solid #4A90E2;
            position: relative;
            overflow: hidden;
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.05), transparent);
            transition: right 0.6s ease;
        }

        .job-card:hover::before {
            right: 100%;
        }

        .job-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(74, 144, 226, 0.25);
            border-left-width: 6px;
        }

        .job-card h3 {
            color: #4A90E2;
            margin-bottom: 15px;
            font-size: 22px;
        }

        /* Testimonials */
        .testimonials {
            background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
            padding: 80px 60px;
            position: relative;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .testimonial-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            font-style: italic;
            animation: fadeIn 1s;
            transition: all 0.4s ease;
            border-top: 4px solid #4A90E2;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 15px;
            left: 20px;
            font-size: 80px;
            color: rgba(74, 144, 226, 0.1);
            font-family: Georgia, serif;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
        }

        .testimonial-author {
            margin-top: 20px;
            font-style: normal;
            font-weight: bold;
            color: #4A90E2;
        }

        /* Contact Info Cards */
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .contact-item {
            padding: 15px;
            transition: all 0.3s ease;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #2C3E50 0%, #1B2836 100%);
            color: white;
            padding: 50px 60px;
            text-align: center;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4A90E2, #357ABD, #4A90E2);
        }

        footer p {
            margin: 10px 0;
            transition: color 0.3s ease;
        }

        footer p:hover {
            color: #4A90E2;
        }

        /* Hide sections by default */
        .page-section {
            display: none;
        }

        .page-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        /* Submit Button Enhancement */
        .btn-submit {
            background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
            color: white;
            padding: 16px 50px;
            font-size: 18px;
            font-weight: bold;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.4s;
            box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-submit:hover::before {
            width: 400px;
            height: 400px;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
        }

        /* Info Box */
        .info-box {
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
            padding: 40px;
            border-radius: 15px;
            margin: 40px 0;
            border-left: 5px solid #4A90E2;
            transition: all 0.3s ease;
        }

        .info-box:hover {
            transform: translateX(10px);
            box-shadow: 0 5px 20px rgba(74, 144, 226, 0.2);
        }

        .info-box h3 {
            color: #4A90E2;
            margin-bottom: 20px;
            font-size: 24px;
        }

        .info-box p {
            margin-bottom: 15px;
            line-height: 1.8;
        }

        /* Media Queries */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 20px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .section h2 {
                font-size: 36px;
            }

            .membership-cards,
            .job-grid {
                padding: 40px 20px;
            }

            .feature-section {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            nav {
                flex-wrap: wrap;
                padding: 15px 20px;
            }

            .menu-toggle {
                display: flex;
                order: 3;
            }

            .logo {
                order: 1;
            }

            .auth-buttons {
                order: 2;
                gap: 10px;
            }

            .auth-buttons .btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 0;
                order: 4;
                margin-top: 15px;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                width: 100%;
                text-align: center;
                padding: 12px 0;
                border-top: 1px solid #eee;
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                border: none;
                background: #f9f9f9;
                display: block;
            }

            .dropdown-content a {
                padding: 10px 20px;
                border-top: 1px solid #eee;
            }

            .hero {
                flex-direction: column;
                padding: 40px 20px;
                gap: 30px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero h2 {
                font-size: 20px;
            }

            .section {
                padding: 40px 20px;
            }

            .section h2 {
                font-size: 28px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .form-container {
                padding: 40px 20px;
            }

            .membership-cards {
                grid-template-columns: 1fr;
                padding: 40px 20px;
            }

            .membership-hero {
                padding: 60px 20px;
            }

            .membership-hero h1 {
                font-size: 32px;
            }

            .job-grid {
                grid-template-columns: 1fr;
                padding: 40px 20px;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .testimonials {
                padding: 60px 20px;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .mission-values {
                grid-template-columns: 1fr;
            }

            footer {
                padding: 30px 20px;
            }

            .contact-info {
                grid-template-columns: 1fr;
            }

            .feature-section {
                padding: 20px;
            }

            .feature-image img {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 26px;
            }

            .hero h2 {
                font-size: 18px;
            }

            .section h2 {
                font-size: 24px;
            }

            .section p {
                font-size: 16px;
            }

            .membership-number {
                width: 120px;
                height: 120px;
                font-size: 60px;
            }

            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }

            .btn-submit {
                padding: 14px 40px;
                font-size: 16px;
            }
        }