/* GES Website Styles - Modern, Dark Theme, Responsive */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Realistic Starry Night Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Milky Way-like gradient */
        radial-gradient(ellipse at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%),
        /* Dense starfield */
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 15% 35%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 25% 15%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 35% 45%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 45% 25%, rgba(255, 255, 255, 0.5), transparent),
        radial-gradient(1px 1px at 55% 55%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 65% 35%, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 75% 65%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 85% 45%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 95% 75%, rgba(255, 255, 255, 0.5), transparent),
        /* Brighter stars */
        radial-gradient(2px 2px at 30% 70%, rgba(255, 255, 255, 1), transparent),
        radial-gradient(2px 2px at 70% 30%, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1.5px 1.5px at 50% 80%, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1.5px 1.5px at 20% 60%, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(2px 2px at 80% 80%, rgba(255, 255, 255, 0.9), transparent);
    background-color: #0a0a0a;
    animation: starTwinkle 8s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes starTwinkle {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Subtle Nebula Effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 60% 40%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(255, 119, 198, 0.03) 0%, transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(120, 219, 255, 0.04) 0%, transparent 45%);
    animation: nebulaShift 15s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes nebulaShift {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.05) rotate(1deg); }
}

h1, h2, h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #00aaff;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #00aaff;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Hero Section */
#hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

#globe-container {
    flex: 1;
    height: 500px;
    max-width: 500px;
    margin-left: 2rem;
    animation: fadeIn 2s ease-out;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    margin: 1rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.card h3 {
    margin-bottom: 1rem;
}

/* Team Cards */
.member-card {
    perspective: 1000px;
    width: 300px;
    height: 400px;
    margin: 1rem;
}

.member-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.member-card:hover .member-card-inner {
    transform: rotateY(180deg);
}

.member-card-front, .member-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.member-card-front {
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.member-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #00d4ff;
}

.member-card h3 {
    margin-bottom: 0.5rem;
}

.member-card p {
    color: #b0b0b0;
}

.member-card-back {
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    color: #000;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.member-card-back p {
    margin-bottom: 1rem;
    color: #000;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #000;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* Event Cards */
.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1rem 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

/* Forms */
form {
    max-width: 600px;
    margin: 2rem auto;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 1rem;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Footer */
footer {
    background: rgba(10, 10, 10, 0.9);
    text-align: center;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp 0.8s ease-out;
}

/* Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    padding: 2rem;
    border-radius: 0 0 15px 15px;
}

.nav-links.active li {
    margin: 1rem 0;
}

/* Contact Page Styles */
#contact-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 170, 255, 0.1));
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

#contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    display: block;
}

.stat span {
    font-weight: bold;
    color: #00aaff;
}

#contact-info {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

#contact-info h2 {
    margin-bottom: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00aaff, #0080ff);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.contact-card h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.contact-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

#contact-form-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    margin-bottom: 1rem;
}

.form-header p {
    color: #b0b0b0;
    font-size: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #00d4ff;
}

.form-group label i {
    margin-right: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    border-color: #00d4ff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.submit-btn i {
    margin-right: 0.5rem;
}

#faq-preview {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.faq-item h4 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.faq-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Membership Page Styles */
#membership-hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 170, 255, 0.1));
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
}

#membership-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.membership-hero-content {
    position: relative;
    z-index: 2;
}

.membership-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.membership-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.membership-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.membership-highlights .highlight {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.membership-highlights .highlight i {
    font-size: 2rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    display: block;
}

.membership-highlights .highlight span {
    font-weight: bold;
    color: #00aaff;
}

#membership-types {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

#membership-types h2 {
    margin-bottom: 3rem;
}

.membership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.membership-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00aaff, #0080ff);
}

.membership-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.membership-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    margin-bottom: 0.5rem;
    color: #00d4ff;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #00aaff;
    margin-bottom: 0.5rem;
}

.badge {
    display: inline-block;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.membership-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.membership-card li {
    padding: 0.5rem 0;
    color: #b0b0b0;
}

.membership-card li i {
    color: #00d4ff;
    margin-right: 0.5rem;
}

.membership-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #666, #888);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.membership-btn.primary {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
}

.membership-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

#benefits {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

#benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.benefit-item h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.benefit-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

#join-process {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

#join-process h2 {
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.step h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.step p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* Events Page Specific Styles */

/* Geomatics Icons Animation */
.geomatics-icons {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-geomatics-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    animation: geomaticsFloat 8s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes geomaticsFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) rotate(180deg) scale(0.9);
        opacity: 0.9;
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.05);
        opacity: 1;
    }
}

/* Event Filters and Search */
#event-filters {
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(26, 26, 46, 0.9));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filters-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.search-bar input {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    color: #e0e0e0;
    font-size: 1rem;
    flex: 1;
    min-width: 200px;
}

.search-bar input:focus {
    outline: none;
}

.search-bar button {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-bar button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.filter-buttons, .view-toggle {
    display: flex;
    gap: 1rem;
}

.filter-btn, .view-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #e0e0e0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover, .view-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.filter-btn.active, .view-btn.active {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border-color: #00d4ff;
}

/* Enhanced Event Cards */
.event-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.event-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #00d4ff;
    font-weight: 600;
    font-size: 0.9rem;
}

.event-category i {
    font-size: 1rem;
}

.event-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.event-badge.upcoming {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
}

.event-badge.past {
    background: linear-gradient(45deg, #666, #888);
    color: #fff;
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content, .past-event-content {
    padding: 1.5rem;
}

.event-content h3, .past-event-content h3 {
    margin-bottom: 0.5rem;
    color: #00d4ff;
}

.event-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.event-tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-capacity, .event-deadline {
    background: rgba(255, 119, 198, 0.1);
    color: #ff77c6;
    padding: 0.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 119, 198, 0.2);
}

.event-description, .past-event-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-actions {
    display: flex;
    gap: 1rem;
}

.register-btn, .learn-more-btn, .view-details-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.register-btn {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.learn-more-btn, .view-details-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.learn-more-btn:hover, .view-details-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.past-event-image {
    height: 180px;
    overflow: hidden;
}

.past-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .past-event-image img {
    transform: scale(1.05);
}

.event-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
    margin: 1rem 0;
}

.event-photos img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.event-photos img:hover {
    transform: scale(1.05);
}

.past-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Spotlight Grid */
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Loading Placeholders */
.loading-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #b0b0b0;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 212, 255, 0.1);
    border-top: 3px solid #00d4ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Team Page Styles */

/* Board Section */
#board-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
    margin: 2rem 0;
    border-radius: 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Board Member Cards */
.board-member-card {
    height: 450px;
    perspective: 1000px;
}

.board-member-card .member-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.board-member-card:hover .member-card-inner {
    transform: rotateY(180deg);
}

.board-member-card .member-card-front,
.board-member-card .member-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.board-member-card .member-card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.member-image-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.member-image-container img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #00d4ff;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: transform 0.3s ease;
}

.board-member-card:hover .member-image-container img {
    transform: scale(1.1);
}

.member-role-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.board-member-card .member-card-front h3 {
    margin-bottom: 0.5rem;
    color: #00d4ff;
    font-size: 1.3rem;
}

.board-member-card .member-card-front .member-role {
    color: #b0b0b0;
    font-weight: 500;
}

.board-member-card .member-card-back {
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.board-member-card .member-card-back h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.board-member-card .member-message {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

/* Members Section */
#members-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.members-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.batch-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.batch-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.batch-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.batch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.batch-header h3 {
    color: #00d4ff;
    font-size: 1.8rem;
    margin: 0;
}

.batch-count {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.batch-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.batch-member-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.batch-member-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.batch-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.batch-member-card .member-image-container {
    margin-bottom: 1rem;
}

.batch-member-card .member-image-container img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d4ff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
    transition: transform 0.3s ease;
}

.batch-member-card:hover .member-image-container img {
    transform: scale(1.1);
}

.batch-member-card .member-info h4 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.batch-member-card .member-info p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Scroll Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Staggered animations for batch members */
.batch-members .batch-member-card:nth-child(odd) {
    animation: slideInLeft 0.8s ease-out forwards;
}

.batch-members .batch-member-card:nth-child(even) {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Performance Optimizations */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* GPU Acceleration for animations */
.board-member-card,
.batch-section,
.batch-member-card {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize animations */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateZ(0);
    }
    to {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
}

/* Reduce paint on scroll */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize social links hover */
.social-links a {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    #hero {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    #globe-container {
        margin-left: 0;
        margin-top: 2rem;
        height: 300px;
        max-width: 300px;
    }

    .member-card {
        width: 250px;
        height: 350px;
    }

    .card {
        margin: 0.5rem;
        padding: 1rem;
    }

    #contact-hero {
        padding: 2rem 1rem;
    }

    .contact-hero-content h1 {
        font-size: 2.5rem;
    }

    .contact-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    #globe-container {
        height: 250px;
        max-width: 250px;
    }

    .member-card {
        width: 200px;
        height: 300px;
    }

    .contact-hero-content h1 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .membership-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .membership-cards {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
#about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

#about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-title span {
    font-weight: bold;
    color: #00d4ff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 10%; left: 20%; }
.floating-icon:nth-child(2) { top: 30%; right: 10%; }
.floating-icon:nth-child(3) { top: 50%; left: 10%; }
.floating-icon:nth-child(4) { bottom: 20%; right: 20%; }
.floating-icon:nth-child(5) { bottom: 10%; left: 50%; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-40px) rotate(0deg); }
    75% { transform: translateY(-20px) rotate(-5deg); }
}

#mission-vision {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
    margin: 4rem 0;
    border-radius: 20px;
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00aaff, #0080ff);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.mv-card h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #00d4ff;
}

.mv-card p {
    line-height: 1.7;
    color: #e0e0e0;
    text-align: center;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    opacity: 0.6;
}

.motto-section {
    text-align: center;
    margin-top: 4rem;
}

.motto-container {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem 3rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.motto-container i {
    font-size: 2rem;
    color: #00d4ff;
}

.motto-container h2 {
    font-size: 1.8rem;
    color: #00d4ff;
    font-style: italic;
    margin: 0;
}

#expertise {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#expertise h2 {
    margin-bottom: 3rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    opacity: 0;
    transform: translateY(30px);
}

.expertise-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.expertise-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.expertise-item h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.expertise-item p {
    color: #b0b0b0;
    line-height: 1.6;
}

#timeline {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
    margin: 4rem 0;
    border-radius: 20px;
}

#timeline h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #00d4ff, #00aaff, #0080ff);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 60px;
    text-align: right;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.timeline-content h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #b0b0b0;
    line-height: 1.6;
}

#impact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#impact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-text {
    color: #e0e0e0;
}

.impact-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.impact-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.impact-highlights .highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.impact-highlights .highlight.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.impact-highlights .highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.impact-highlights .highlight i {
    font-size: 1.5rem;
    color: #00d4ff;
}

.impact-highlights .highlight span {
    color: #b0b0b0;
    font-weight: 500;
}

.impact-visual {
    text-align: center;
}

.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 170, 255, 0.2));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
}

.stat-circle.animate-in {
    opacity: 1;
    transform: scale(1);
}

.stat-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-circle .stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 0.25rem;
}

.stat-circle .stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    #about-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-elements {
        display: none;
    }

    .mv-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .timeline-container::before {
        left: 30px;
    }

    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 30px;
    }

    .impact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-highlights {
        grid-template-columns: 1fr;
    }
}

/* What We Do Page Styles */
#services-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

#services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-title span {
    font-weight: bold;
    color: #00d4ff;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.feature-item i {
    font-size: 1.5rem;
    color: #00d4ff;
}

.feature-item span {
    color: #b0b0b0;
    font-weight: 500;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

.tech-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
}

.tech-icon {
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    animation: techFloat 4s ease-in-out infinite;
}

.tech-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

@keyframes techFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

#core-services {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#core-services h2 {
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #00aaff, #0080ff);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #00d4ff;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-tags {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

#advanced-apps {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(26, 26, 46, 0.8));
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

#advanced-apps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.apps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.app-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.app-category.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.app-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category-header i {
    font-size: 2rem;
    color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 170, 255, 0.2));
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.category-header h3 {
    color: #00d4ff;
    margin: 0;
}

.app-category p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.app-category ul {
    list-style: none;
    padding: 0;
}

.app-category li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 1.5rem;
}

.app-category li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

#work-process {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#work-process h2 {
    margin-bottom: 3rem;
}

.process-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 200px;
    opacity: 0;
    transform: translateY(30px);
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00aaff);
    transform: translateY(-50%);
}

.process-step:last-child .step-number::after {
    display: none;
}

.step-content {
    text-align: center;
}

.step-content h3 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
}

#services-cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 170, 255, 0.1));
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.cta-primary {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.cta-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.cta-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* Responsive Design for What We Do Page */
@media (max-width: 768px) {
    #services-hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .apps-container {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        gap: 1rem;
    }

    .process-step .step-number::after {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Resources Page Styles */

#resources-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60vh;
    padding: 6rem 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

#resources-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.resources-hero-content {
    flex: 1;
    max-width: 600px;
    animation: fadeInUp 1s ease-out;
}

.resources-hero-content .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.resources-hero-content .hero-title span {
    font-weight: bold;
    color: #00d4ff;
}

.resources-hero-content .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.resources-hero-content .hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.resources-hero-visual {
    flex: 1;
    position: relative;
    height: 350px;
}

/* Resources Grid */
#resources {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

/* Resource Card Styles */
.resource-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #00aaff, #0080ff);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
}

.resource-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.resource-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #00aaff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.resource-card h2 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
}

.resource-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.resource-list li {
    padding: 0.5rem 0;
    color: #e0e0e0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.4;
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list li:hover {
    color: #00d4ff;
    padding-left: 5px;
}

.resource-list .bullet {
    color: #00d4ff;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.resource-list strong {
    color: #00aaff;
    font-weight: 600;
    font-size: 0.85rem;
}

.resource-card .card-footer {
    text-align: left;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.explore-link {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.explore-link:hover {
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* Resources CTA Section */
#resources-cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 170, 255, 0.08));
    padding: 3rem 2rem;
    margin: 3rem auto;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
}

#resources-cta .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff, #0080ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#resources-cta .cta-content p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

#resources-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

#resources-cta .cta-primary {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(45deg, #00d4ff, #00aaff);
    color: #000;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

#resources-cta .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

#resources-cta .cta-secondary {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

#resources-cta .cta-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

/* Staggered animations for resource cards */
.resources-grid .resource-card:nth-child(1) { animation-delay: 0.1s; }
.resources-grid .resource-card:nth-child(2) { animation-delay: 0.15s; }
.resources-grid .resource-card:nth-child(3) { animation-delay: 0.2s; }
.resources-grid .resource-card:nth-child(4) { animation-delay: 0.25s; }
.resources-grid .resource-card:nth-child(5) { animation-delay: 0.3s; }
.resources-grid .resource-card:nth-child(6) { animation-delay: 0.35s; }
.resources-grid .resource-card:nth-child(7) { animation-delay: 0.4s; }

/* Responsive Design for Resources Page */
@media (max-width: 768px) {
    #resources-hero {
        flex-direction: column;
        text-align: center;
        padding: 5rem 1.5rem 3rem;
        min-height: auto;
    }

    .resources-hero-content .hero-title {
        font-size: 2.5rem;
    }

    .resources-hero-content .hero-subtitle {
        font-size: 1rem;
    }

    .resources-hero-content .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .resources-hero-visual {
        display: none;
    }

    #resources {
        padding: 1rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .resource-card {
        padding: 1.25rem;
    }

    #resources-cta {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem;
    }

    #resources-cta .cta-content h2 {
        font-size: 1.5rem;
    }

    #resources-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
