/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #ec4899;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.hindi-title {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-weight: 700;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #c53030;
    color: white;
    box-shadow: var(--shadow-md);
    padding: 15px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #a02626;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text h2 {
    font-family: 'Noto Sans Devanagari', sans-serif;
    color: #2d3748;
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.logo-text span {
    font-size: 12px;
    color: var(--text-secondary);
    display: block;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    background: #ffffff;
    color: #333;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}



.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 80vh;
}

.hero-content {
    padding: 40px 0;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #333;
}

.highlight-text {
    color: #ff6b35;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
    animation: float 6s ease-in-out infinite;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-info h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.service-info p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.card-1 {
    top: 10%;
    right: 20%;
    background: linear-gradient(135deg, #e8f5e8, #f0fff0);
    animation-delay: 0s;
}

.card-2 {
    top: 45%;
    right: 0%;
    background: linear-gradient(135deg, #e8f0ff, #f0f8ff);
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    right: 15%;
    background: linear-gradient(135deg, #fff5e8, #fffaf0);
    animation-delay: 4s;
}



@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 3px solid white;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-45deg); }
    40% { transform: translateY(-10px) rotate(-45deg); }
    60% { transform: translateY(-5px) rotate(-45deg); }
}

/* Section Styles */
section {
    padding: 60px 0;
}

section:not(.hero) {
    background: white;
}

section:nth-child(even):not(.hero) {
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* About Section */
.about {
    background: white;
}

.about-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-description {
    padding-right: 20px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 18px;
    font-weight: 700;
}

.about-text h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 25px 0 12px 0;
    font-weight: 600;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 1rem;
}

.about-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}




/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Schedule Section */
.schedule {
    background: var(--bg-secondary);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-time {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin: 0 30px;
    flex: 1;
    max-width: 300px;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-family: 'Noto Sans Devanagari', sans-serif;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

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

.social-link {
    color: #9ca3af;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #374151;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: white;
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .logo-image {
        height: 35px;
    }
    
    .logo-text h2 {
        font-size: 20px;
    }
    
    .logo-text span {
        font-size: 10px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        min-height: auto;
        padding: 30px 20px;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-main-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 300px;
    }

    .service-card {
        min-width: 200px;
        padding: 15px;
    }

    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin: 10px auto;
        display: block;
    }

    .success-gallery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .success-triangle-layout {
        gap: 20px;
        padding: 10px 0;
    }

    .triangle-row {
        gap: 25px;
    }

    .bottom-row {
        max-width: 220px;
    }

    .success-circle-card {
        width: 90px;
        height: 90px;
    }

    .success-circle-card .stat-icon {
        font-size: 1.4rem;
        margin-bottom: 3px;
    }

    .success-circle-card .stat-number {
        font-size: 1.1rem;
    }

    .success-circle-card .stat-label {
        font-size: 0.65rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-description {
        padding-right: 0;
    }

    .about-video {
        height: auto;
    }

    .video-container {
        max-width: 100%;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }


    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 70px;
    }

    .timeline-time {
        position: absolute;
        left: 0;
        min-width: 100px;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin: 0;
        max-width: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-main-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .stats-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Hero Supporting Text */
.hero-supporting-text {
    margin-top: 30px;
    text-align: center;
}

.hero-supporting-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Features Boxes */
.features-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background: white;
    padding: 20px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
}

.feature-box:hover h4 {
    color: var(--primary-color);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-box h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

/* Why Trisarg Section */
.why-trisarg {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.why-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.benefits-heading {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 40px 0 50px 0;
}

.benefits-grid-structured {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.benefits-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.benefits-row-three {
    justify-content: center;
}

.benefits-row-two {
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-color: var(--primary-color);
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2);
}

.benefit-card:hover h4 {
    color: var(--primary-color);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.benefit-card h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.3;
    font-size: 0.75rem;
    margin: 0;
    padding: 0 10px;
}

/* Benefits Section */
.benefits {
    background: white;
    padding: 80px 0;
}

.benefits-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-secondary);
}

.main-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.main-benefit {
    text-align: center;
    padding: 30px;
}

.main-benefit .benefit-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.main-benefit h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.main-benefit p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Rewards Section */
.rewards-section {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.rewards-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.reward-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-5px);
}

.reward-card.gold {
    border-top: 5px solid #ffd700;
}

.reward-card.silver {
    border-top: 5px solid #c0c0c0;
}

.reward-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.reward-card h4 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.reward-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.rewards-note {
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 20px;
}

/* How It Works Section */
.how-it-works {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.step-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.process-note {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 40px;
    font-size: 1.1rem;
}

/* MGC & MGE Section */
.mgc-mge {
    background: white;
    padding: 80px 0;
}

.mgc-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.mgc-card, .mge-card {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mgc-card h3, .mge-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.mgc-card p, .mge-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.inauguration-info {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
    border-left: 5px solid var(--secondary-color);
}

.inauguration-info h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Ecosystem Section */
.ecosystem {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.ecosystem-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pillar {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
}

.pillar-icon {
    font-size: 4rem;
    margin-bottom: 25px;
}

.pillar h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.pillar p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Sponsors Section */
.sponsors {
    background: white;
    padding: 80px 0;
}

.sponsors-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.sponsor-category {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
}

.sponsor-category h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.sponsor-logo {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.sponsor-logo h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
}

/* FAQ Section */
.faq {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.faq-content {
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.cta .section-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    font-size: 2.5rem;
}

.cta blockquote {
    font-size: 1.8rem;
    font-style: italic;
    margin: 30px 0;
    color: var(--primary-color);
    font-weight: 600;
}

.cta-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin: 30px 0;
    color: var(--text-primary);
    font-weight: 500;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    margin-top: 40px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.2rem;
    border-radius: 50px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    border-radius: 25px;
    margin-top: 15px;
    display: inline-block;
}

/* Registration Section */
.register {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 80px 0;
}

.register-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: center;
}

.register-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.register-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.register-benefits {
    list-style: none;
    padding: 0;
}

.register-benefits li {
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.register-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.register-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

.register-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.register-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.register-buttons {
    margin: 30px 0;
}

.register-note {
    margin-top: 20px;
}

.register-note small {
    color: var(--text-secondary);
    font-style: italic;
}

/* Additional responsive styles for new sections */
@media (max-width: 768px) {
    .features-boxes,
    .benefits-grid,
    .main-benefits,
    .rewards-grid,
    .process-steps,
    .mgc-content,
    .ecosystem-pillars,
    .sponsors-grid,
    .register-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .benefits-row-two {
        max-width: 100%;
    }
    
    .benefit-card {
        width: 160px;
        height: 160px;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit-card h4 {
        font-size: 0.85rem;
    }
    
    .benefit-card p {
        font-size: 0.7rem;
    }
    
    .hero-supporting-text p {
        font-size: 0.8rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pillar-icon,
    .main-benefit .benefit-icon {
        font-size: 3rem;
    }
    
    .rewards-section {
        padding: 30px 20px;
    }
    
    .mgc-card, .mge-card,
    .pillar {
        padding: 25px;
    }
    
    .register-card {
        padding: 30px 20px;
    }
    
    .register-content {
        gap: 40px;
    }
    
    .features-boxes {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-box {
        padding: 15px 12px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .feature-box h4 {
        font-size: 0.9rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .contact-form,
    .footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}
