/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

.container {
    width: 98%;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    
    position: relative;
}

h1, h2, h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

p {
    margin-bottom: 15px;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: #e67e22;
    transition: all 0.3s ease;
}

a:hover {
    color: #d35400;
}

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

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.zoom-in.active {
    opacity: 1;
    transform: scale(1);
}

/* Header Styles */
/* Header Styles - Light Theme */
header {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4f0ff 100%);
    color: #2d3748;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgb(255 255 255);
    padding: 60px 0;
}

header .container {
    position: relative;
    z-index: 1;
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 16px;
    display: inline-block;
    box-shadow: 0 15px 35px rgba(50, 130, 250, 0.1);
    animation: fadeSlideIn 1s ease forwards;
    max-width: 200%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    top: 40px;
}

/* Neon Ring Effects */
.neon-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 2px solid rgba(255, 213, 79, 0.3);
    box-shadow: 0 0 20px rgba(255, 213, 79, 0.5),
                inset 0 0 20px rgba(255, 213, 79, 0.3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 6s infinite ease-in-out;
    z-index: 0;
}

.neon-ring.smaller {
    width: 200px;
    height: 200px;
    animation-delay: 2s;
    border-color: rgba(255, 235, 59, 0.3);
    box-shadow: 0 0 15px rgba(255, 235, 59, 0.4),
                inset 0 0 15px rgba(255, 235, 59, 0.2);
}

@keyframes pulseRing {
    0% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.95); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
    100% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.95); }
}

/* Logo Styles */
.logo-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 300%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 213, 79, 0.7));
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
    bottom: -5%;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 213, 79, 0.2);
    box-shadow: 0 0 30px rgba(255, 213, 79, 0.5);
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% { opacity: 0.5; transform: scale(0.9); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

.logo-container:hover .logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 213, 79, 0.9));
}

.logo-container:hover .logo-glow {
    animation: pulseGlow 1s infinite alternate;
    opacity: 0.9;
}

/* Enhanced Button with Shine Effect (keeping same class names) */
.btn-glow {
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    color: #2d3748;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4),
                0 0 10px rgba(255, 235, 59, 0.6);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.6),
                0 0 15px rgba(255, 235, 59, 0.8);
    color: #1a365d;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0) 45%,
        rgba(255,255,255,0.8) 48%,
        rgba(255,255,255,0) 52%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    animation: shine 3s infinite;
    opacity: 0.7;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

/* Rest of your existing styles remain the same */
@keyframes fadeSlideIn {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

header h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #1a365d;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
    background: linear-gradient(90deg, #ffbf37, #ffda8b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease forwards;
    line-height: 1.2;
}

header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 25px;
    color: #4a5568;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    animation: fadeInUp 1.5s ease forwards;
    line-height: 1.6;
}

header p:first-of-type {
    font-weight: 600;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

/* Floating effect for button */
.floating {
    animation: floating 3s ease-in-out infinite;
}

/* Why Join Section */
/* Why Join Section - Enhanced */
.why-join {
    background-color: #f9fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-join .container {
    position: relative;
    z-index: 2;
}

.why-join h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 60px;
    color: #1a365d;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, #ff8a00, #ffb347);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.why-join h2.animate {
    opacity: 1;
    transform: translateX(0);
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1200px;
}

.benefit-item {
     position: relative;
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.6), 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
    overflow: hidden;
}

/* Shiny gradient overlay */
.benefit-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 60%);
    transform: rotate(25deg);
    animation: shine 3s infinite;
}

.benefit-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.benefit-item:hover {
        transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.2), 0 0 15px rgba(255, 179, 71, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.icon-3d {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,214,0,0.1) 0%, rgba(255,214,0,0.2) 100%);
    border-radius: 50%;
    position: relative;
    transition: all 0.5s ease;
}

.icon-3d img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(255, 193, 7, 0.4));
}

.benefit-item:hover .icon-3d {
    transform: scale(1.1) ;
    background: linear-gradient(135deg, rgba(255,214,0,0.2) 0%, rgba(255,214,0,0.3) 100%);
    box-shadow: 0 0 20px rgba(255, 214, 0, 0.3);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3748;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.benefit-item p {
    color: #4a5568;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

.btn{
        background: linear-gradient(45deg, #ffc107, #ffeb3b);
    color: #2d3748;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4), 0 0 15px rgba(255, 235, 59, 0.6);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

/* Button with Neon Effect */
/* .btn-glow {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
} */

.btn-glow.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Neon Background Elements */
.why-join::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,214,0,0.1) 0%, rgba(255,214,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.why-join::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,214,0,0.1) 0%, rgba(255,214,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .benefits {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    .icon-3d {
        width: 70px;
        height: 70px;
    }
    
    .icon-3d img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .why-join {
        padding: 60px 0;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
}

/* Highlights Section */
/* Highlights Section - Enhanced */
.highlights {
    background-color: #f9fafc;
    position: relative;
    overflow: hidden;
}

.highlights .container {
    position: relative;
    z-index: 2;
}

.highlights h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 60px;
    color: #1a365d;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, #ff8a00, #ffb347);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.highlights h2.animate {
    opacity: 1;
    transform: translateX(0);
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1200px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.highlight-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.highlight-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.2),
                0 0 15px rgba(255, 179, 71, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,140,0,0.1) 0%, rgba(255,179,71,0.2) 100%);
    border-radius: 50%;
    position: relative;
    transition: all 0.5s ease;
}

.highlight-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(255, 140, 0, 0.4));
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255,140,0,0.2) 0%, rgba(255,179,71,0.3) 100%);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.highlight-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2d3748;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.highlight-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #ff8a00, #ffb347);
    border-radius: 3px;
}

.highlight-card p {
    color: #4a5568;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 15px;
}

/* Button with Neon Effect */
.btn-glow {
    
    transition: all 0.8s ease;
    background: linear-gradient(45deg, #ff8a00, #ffb347);
}

.btn-glow.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Neon Background Elements */
.highlights::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,140,0,0.1) 0%, rgba(255,140,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.highlights::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,179,71,0.1) 0%, rgba(255,179,71,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .highlight-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .highlight-card {
        padding: 30px 20px;
    }
    
    .highlight-icon {
        width: 70px;
        height: 70px;
    }
    
    .highlight-icon img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .highlights {
        padding: 60px 0;
    }
    
    .highlight-cards {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
/* Testimonials Section - Enhanced */
.testimonials {
    background-color: #f9fafc;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 60px;
    color: #1a365d;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, #ff8a00, #ffb347);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.testimonials h2.animate {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px auto;
    max-width: 1200px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.7);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.testimonial.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.2),
                0 0 15px rgba(255, 179, 71, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255,140,0,0.1) 0%, rgba(255,179,71,0.2) 100%);
    border-radius: 50%;
    position: relative;
    transition: all 0.5s ease;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(255, 140, 0, 0.4));
}

.testimonial:hover .testimonial-avatar {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255,140,0,0.2) 0%, rgba(255,179,71,0.3) 100%);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.testimonial p {
    font-style: italic;
    color: #4a5568;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: bold;
    color: #ff8a00;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}

.testimonial::before {
    content: '"';
    font-size: 6rem;
    background: linear-gradient(45deg, #ff8a00, #ffb347);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0.1;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

/* Neon Background Elements */
.testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,140,0,0.1) 0%, rgba(255,140,0,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,179,71,0.1) 0%, rgba(255,179,71,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .testimonial {
        padding: 30px 20px;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-avatar img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 60px 0;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    animation: modalopen 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

@keyframes modalopen {
    from {
        opacity: 0;
        transform: perspective(1000px) translateY(-100px) rotateX(30deg);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) translateY(0) rotateX(0);
    }
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2rem;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    color: #e74c3c;
    transform: rotate(90deg);
    background: rgba(0,0,0,0.05);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
    font-size: 1.05rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    outline: none;
    border-color: #e67e22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
    background: white;
}

select.form-control {
    height: 55px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

/* Who Can Apply Section */
/* Who Can Apply Section - Enhanced */
.who-can-apply {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.who-can-apply::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.who-can-apply .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.who-can-apply h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: white;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.who-can-apply h2.animate {
    opacity: 1;
    transform: translateX(0);
}

.applicant-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 60px auto;
}

.applicant-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.applicant-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.applicant-card:hover {
    transform: translateY(-10px) !important;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(255, 255, 255, 0.3);
}

.applicant-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    position: relative;
    transition: all 0.5s ease;
}

.applicant-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(255, 255, 255, 0.4));
}

.applicant-card:hover .applicant-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.applicant-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.applicant-card p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

.cta-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 60px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.cta-box h3.animate {
    opacity: 1;
    transform: translateX(0);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.cta-box p.animate {
    opacity: 1;
}

/* Floating Button */
.floating {
    animation: floating 3s ease-in-out infinite;
    background: linear-gradient(45deg, #ffc107, #ffeb3b);
    color: #2d3748;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.4), 
                0 0 15px rgba(255, 235, 59, 0.6);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease 0.6s;
}

.floating.animate {
    opacity: 1;
    transform: translateX(0);
}

.floating:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.6),
                0 0 25px rgba(255, 235, 59, 1);
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .applicant-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .applicant-card {
        padding: 30px 20px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .who-can-apply {
        padding: 60px 0;
    }
    
    .applicant-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        margin-top: 30px;
    }
}

/* Footer */
/* Footer Styles - Enhanced */
footer {
    background: linear-gradient(135deg, #1a2a3a, #2c3e50);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3498db, #f39c12, #3498db);
    z-index: 2;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
   width: 172px;
    height: 33px;
    margin: 0 auto 30px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.footer-logo.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(255, 214, 0, 0.4));
}

footer h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, #3498db, #f39c12);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: all 0.8s ease 0.2s;
}

footer h2.animate {
    opacity: 1;
}

footer p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transition: all 0.8s ease 0.4s;
}

footer p.animate {
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.footer-links a.animate {
    opacity: 1;
    transform: translateY(0);
}

.footer-links a:hover {
    color: #f39c12;
    transform: translateY(-5px) !important;
}

.footer-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.footer-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-links a:hover .footer-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.footer-links a:hover .footer-icon img {
    filter: brightness(1) invert(0) drop-shadow(0 0 5px rgba(255, 193, 7, 0.8));
}

.copyright {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transition: all 0.8s ease 0.6s;
}

.copyright.animate {
    opacity: 1;
}

/* Decorative Elements */
.footer-neon-ring {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(52, 152, 219, 0.3);
    box-shadow: 0 0 30px rgba(52, 152, 219, 0.2);
    z-index: 1;
}

.footer-neon-dots {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.2) 0%, transparent 70%);
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    footer {
        padding: 60px 0 30px;
    }
    
    .footer-logo {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .footer-links {
        gap: 30px;
    }
    
    .footer-links a {
        font-size: 1rem;
    }
    
    .footer-icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-icon img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    footer {
        padding: 50px 0 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-logo {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    footer h2 {
        font-size: 1.5rem;
    }
    
    footer p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}