:root {
    --primary-color: #0f4c81;
    --primary-light: #1f6baf;
    --primary-dark: #092e50;
    --secondary-color: #f7931e;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8fafc;
    --bg-dark: #1e293b;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding {
    padding: 80px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--white); }
.bg-primary { background-color: var(--primary-color); color: var(--white); }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: inherit;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 800px;
}
.bg-primary .lead-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}
.btn-primary:hover {
    background-color: #e68212;
    border-color: #e68212;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}
.event-actions .btn-outline {
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.event-actions .btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-block {
    display: flex;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(15, 76, 129, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.badge-light {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
}
.bg-light .section-heading h2 { color: var(--primary-dark); }
.bg-dark .section-heading h2 { color: var(--white); }

.heading-line {
    height: 4px;
    width: 60px;
    background: var(--secondary-color);
    margin: 15px auto 30px;
    border-radius: 2px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    padding: 8px 0;
    color: var(--white);
    font-size: 0.875rem;
}
.top-bar-content {
    display: flex;
    justify-content: flex-end;
}
.top-contact {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-contact:hover {
    color: var(--secondary-color);
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-logo {
    display: flex;
    flex-direction: column;
}
.brand-logo .logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 1;
}
.brand-logo .logo-subtext {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
}
.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}
.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
    color: var(--primary-color);
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
}
.heroSwiper {
    width: 100%;
    height: 600px;
}
.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}
.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    max-width: 800px;
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 20px;
}

.slide-1, .slide-2, .slide-3 {
    background-size: cover;
    background-position: center;
    position: relative;
}
.slide-1::before, .slide-2::before, .slide-3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(9, 46, 80, 0.9) 0%, rgba(9, 46, 80, 0.4) 100%);
    z-index: 1;
}
/* Fallback colors for slides if no image */
.slide-1 { background-color: var(--primary-color); }
.slide-2 { background-color: #2c3e50; }
.slide-3 { background-color: #1a252f; }

/* Swiper custom */
.swiper-button-next, .swiper-button-prev {
    color: var(--white) !important;
    transform: scale(0.7);
}
.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
}

/* Event Section */
.event-card {
    display: flex;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}
.event-date {
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 150px;
}
.event-date .day {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}
.event-date .month-year {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 5px;
}
.event-details {
    padding: 40px;
    flex: 1;
}
.event-badge {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}
.event-details h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
}
.event-details .location {
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 15px;
}
.event-actions {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    border-left: 1px solid var(--border-color);
    background-color: #fcfcfc;
}

/* Stats */
.stats-section {
    background: var(--primary-dark);
    padding: 60px 0;
    color: var(--white);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-number {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}
.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How It Works */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.step-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(15, 76, 129, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}
.step-card:hover .step-icon {
    background: var(--primary-color);
    color: var(--white);
}
.step-card h3 {
    color: var(--primary-dark);
}

/* Why Join Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.feature-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}
.feature-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}
.feature-icon {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}
.feature-item h4 {
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Membership */
.membership-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}
.membership-content {
    flex: 1;
}
.membership-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}
.membership-pricing {
    flex: 1;
    max-width: 450px;
}
.pricing-card {
    background: var(--white);
    color: var(--text-main);
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.pricing-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.subtitle {
    color: var(--text-muted);
    margin-bottom: 25px;
}
.price {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 30px;
}
.price span {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-features {
    margin-bottom: 40px;
}
.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.pricing-features li i {
    color: var(--secondary-color);
    margin-top: 5px;
}

/* App Section */
.app-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}
.app-content {
    flex: 1;
}
.app-content h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}
.app-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.app-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.app-features li i {
    color: var(--primary-light);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}
.app-buttons {
    display: flex;
    gap: 15px;
}
.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-main);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}
.app-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.app-btn i {
    font-size: 1.5rem;
}
/* AI Section Visuals */
.ai-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--bg-light) 100%);
}
.badge-ai {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}
.ai-visual-container {
    position: relative;
    width: 350px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.ai-glow-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139,92,246,0.4) 0%, rgba(139,92,246,0) 70%);
    border-radius: 50%;
    animation: pulseOrb 4s infinite alternate ease-in-out;
    z-index: 0;
}
@keyframes pulseOrb {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}
.ai-glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 25px 50px rgba(139,92,246,0.15);
    width: 100%;
    z-index: 1;
    position: relative;
}
.ai-card-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}
.ai-connection-nodes {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}
.user-node {
    background: var(--primary-color);
    color: white;
}
.match-node {
    background: var(--secondary-color);
    color: white;
}
.node-line {
    flex: 1;
    height: 4px;
    background: var(--border-color);
    margin: 0 15px;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}
.line-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: flowLine 2s infinite linear;
}
@keyframes flowLine {
    0% { left: -50%; }
    100% { left: 100%; }
}
.ai-match-stats .stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
}
.ai-match-stats .stat-row:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonialSwiper {
    padding-bottom: 50px;
}
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin: 15px;
    height: calc(100% - 30px);
    display: flex;
    flex-direction: column;
}
.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 25px;
    color: var(--text-main);
}
.member-info h4 {
    color: var(--primary-dark);
    margin-bottom: 2px;
    font-size: 1.1rem;
}
.member-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

/* Blog Cards */
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}
.blog-card:hover .blog-img img {
    transform: scale(1.05);
}
.blog-card:hover .read-more {
    color: var(--secondary-color);
}
.blog-card:hover .read-more i {
    transform: translateX(5px);
    transition: var(--transition);
}

/* About Section */
.about-stat-item {
    padding-right: 20px;
    border-right: 1px solid var(--border-color);
}
.about-stat-item:last-child {
    border-right: none;
}
.about-image-wrapper:hover .image-overlay {
    background: linear-gradient(to top, rgba(9,46,80,0.9), transparent);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    font-family: var(--font-sans);
}

.faq-question i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fdfdfd;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px; /* arbitrary max-height to allow animation */
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* Premium App Buttons */
.premium-app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.store-badge {
    display: flex;
    align-items: center;
    background: #111;
    color: white;
    border-radius: 12px;
    padding: 10px 25px 10px 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.store-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
    color: white;
    background: #000;
    border-color: var(--secondary-color);
}

.store-icon {
    font-size: 2.2rem;
    margin-right: 15px;
}

.play-store-badge .store-icon {
    background: -webkit-linear-gradient(45deg, #FF3366, #FF9933, #33CC99, #33CCFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text .small-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.store-text .big-text {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* Premium Teams Showcase */
.teams-showcase {
    position: relative;
    padding: 20px 0;
}

/* Map Area */
.india-map-container {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    opacity: 0.05;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="45" fill="none" stroke="%230f4c81" stroke-width="2" stroke-dasharray="4"/></svg>');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.map-marker {
    position: absolute;
    z-index: 1;
}

.marker-pin {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.marker-pin i {
    transform: rotate(45deg);
    font-size: 12px;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(247, 147, 30, 0.4);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Premium Grid */
.premium-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.premium-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: block;
    text-align: left;
}

.premium-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 76, 129, 0.15);
    border-color: rgba(15, 76, 129, 0.2);
}

.premium-card-inner {
    position: relative;
    height: 100%;
}

.team-bg-gradient {
    height: 100px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 0;
}

.team-content {
    position: relative;
    z-index: 1;
    padding: 30px;
    padding-top: 60px;
}

.city-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    margin-bottom: 20px;
    transition: var(--transition);
}

.premium-card:hover .city-icon {
    transform: rotateY(180deg);
    background: var(--secondary-color);
    color: var(--white);
}

.highlight-icon {
    background: var(--primary-color);
    color: var(--white);
}

.premium-card h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.state-name {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.team-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.team-count {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-arrow {
    color: var(--text-muted);
    transition: var(--transition);
}

.premium-card:hover .team-arrow {
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Join Card Override */
.new-team .team-content {
    padding-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.new-team {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
    border: 2px dashed rgba(15, 76, 129, 0.3);
}

.new-team:hover {
    border-style: solid;
    border-color: var(--primary-color);
}

/* Footer */
.site-footer {
    background-color: var(--bg-dark);
    color: #cbd5e1;
    padding-top: 0;
    position: relative;
}

.footer-newsletter {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    padding: 60px 0;
    position: relative;
    top: -40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin: 0 20px 40px;
}

.newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
}

.newsletter-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 5px;
}

.newsletter-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: var(--font-sans);
}

.newsletter-form .btn {
    padding: 15px 30px;
    border-radius: 8px;
}

.footer-container {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
}
.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
}
.footer-desc {
    margin: 20px 0 25px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

.social-icon:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-heading {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #cbd5e1;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}
.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.icon-box {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    flex-shrink: 0;
}
.contact-info a {
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-info a:hover {
    color: var(--white);
}
.contact-info span {
    margin-top: 5px;
}

.footer-bottom {
    background-color: #08111d;
    padding: 25px 0;
    font-size: 0.9rem;
}
.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bottom-links a {
    color: #cbd5e1;
}
.bottom-links a:hover {
    color: var(--secondary-color);
}
.bottom-links .divider {
    margin: 0 10px;
    color: #334155;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid, .teams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
}
@media (max-width: 992px) {
    .event-card {
        flex-direction: column;
    }
    .event-date {
        flex-direction: row;
        gap: 15px;
        padding: 20px;
    }
    .event-actions {
        flex-direction: row;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .membership-flex, .app-flex {
        flex-direction: column;
        text-align: center;
    }
    .pricing-card {
        margin: 0 auto;
    }
    .pricing-features {
        text-align: left;
    }
    .app-features {
        text-align: left;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        box-shadow: var(--shadow-md);
    }
    .nav-links.active {
        left: 0;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .features-grid, .teams-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-lg {
        width: 100%;
    }
}

/* Custom Component Responsiveness */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .floating-stats {
        bottom: 20px !important;
        left: 20px !important;
        right: 20px !important;
        justify-content: center !important;
    }
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .india-map-container {
        width: 100%;
    }
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .newsletter-inner {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .premium-grid {
        grid-template-columns: 1fr;
    }
    .ai-visual-container {
        width: 100%;
        max-width: 300px;
        height: auto;
        padding-bottom: 30px;
    }
    .ai-glow-orb {
        width: 200px;
        height: 200px;
    }
    .node {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .faq-question {
        padding: 15px;
        font-size: 1rem;
    }
    .faq-item.active .faq-answer {
        padding: 0 15px 15px;
    }
    .premium-app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .store-badge {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .footer-newsletter {
        margin: 0 10px 40px;
        padding: 40px 20px;
    }
    .newsletter-content h3 {
        font-size: 1.5rem;
    }
}
