/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Navigation */
.nav-tabs {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-tabs li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-tabs li a:hover {
    background-color: #e8f4ff;
    color: #4a90e2;
}

.nav-tabs li a.active {
    background-color: #4a90e2;
    color: white;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .nav-tabs li a:hover,
    .nav-tabs li a.active {
        background-color: #4a90e2;
        color: #4a90e2;
    }
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    height: 80vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
}

.video-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.05);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.8) 0%, rgba(135, 206, 235, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Mission, Vision & Values Section */
.mv-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.mv-title {
    text-align: center;
    color: #4a90e2;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.mv-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4a90e2;
    border-radius: 2px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.mission-card::before {
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
}

.vision-card::before {
    background: linear-gradient(90deg, #4a90e2 0%, #4a90e2 100%);
}

.values-card::before {
    background: linear-gradient(90deg, #4a90e2 0%, #4a90e2 100%);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mv-icon {
    margin-bottom: 1.5rem;
    color: #4a90e2;
}

.mv-card h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.mv-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.values-list p {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Problem & Solution Section */
.problem-solution-section {
    padding: 80px 0;
    background-color: #f8fbff;
    color: #333;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #4a90e2;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #4a90e2;
    border-radius: 2px;
}

.problem-solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
}

.problem-statement,
.solution-approach {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #e8f4ff;
    position: relative;
    transition: transform 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.problem-statement::before,
.solution-approach::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.problem-statement::before {
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
}

.solution-approach::before {
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
}

.problem-statement:hover,
.solution-approach:hover {
    transform: translateY(-5px);
    background: #f8fbff;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.section-header h3 {
    font-size: 1.8rem;
    margin: 0;
    color: #4a90e2;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.icon-circle i {
    color: white;
}

.problem-statement p,
.solution-approach p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #666;
}

.problem-statement ul,
.solution-approach ul {
    list-style: none;
    margin-top: 1.5rem;
}

.problem-statement li,
.solution-approach li {
    padding: 0.8rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.problem-statement li:last-child,
.solution-approach li:last-child {
    border-bottom: none;
}

.problem-statement li:before {
    content: "!";
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: #4a90e2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.solution-approach li:before {
    content: "✓";
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: #4a90e2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Modern Partnership Section */
.modern-partnership-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
}

.partnership-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.partnership-header h2 {
    color: #4a90e2;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.partnership-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.tiers-section {
    margin-bottom: 60px;
}

.tiers-section h3 {
    color: #4a90e2;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 600;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.tier-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8f4ff;
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(74, 144, 226, 0.15);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.tier-header h4 {
    color: #333;
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.tier-badge {
    background: #e8f4ff;
    color: #4a90e2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tier-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.tier-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.tier-card li::before {
    content: "✓";
    color: #4a90e2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.details-btn {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
}

.details-btn:hover {
    background-color: #357abd;
}

/* Perks & Benefits Section - 3 Cards in One Row */
.benefits-section {
    margin-bottom: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    border-radius: 15px;
    position: relative;
}

.benefits-section h3 {
    text-align: center;
    color: #4a90e2;
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.benefits-section h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #4a90e2;
    margin: 15px auto 0;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 equal columns */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.benefit-item {
    text-align: left;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease;
    width: 100%;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-content {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #4a90e2;
    transition: all 0.3s ease;
    height: 100%;
    width: 100%;
}

.benefit-item:hover .benefit-content {
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
    border-left-color: #357abd;
}

.benefit-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f7ff;
}

.benefit-header .mv-icon {
    color: #4a90e2;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-header .mv-icon {
    transform: scale(1.1);
}

.benefit-header h5 {
    color: #333;
    font-size: 1.4rem;
    margin: 0;
    font-weight: 600;
}

.benefit-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f8f9fa;
}

.benefit-features li:last-child {
    border-bottom: none;
}

.benefit-features li::before {
    content: "✓";
    color: #4a90e2;
    font-weight: bold;
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: #e8f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Responsive Design for Benefits Section */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 40px 0;
    }
    
    .benefits-section h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 20px;
        padding: 0 20px;
    }
    
    .benefit-content {
        padding: 25px 20px;
    }
    
    .benefit-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .benefit-header h5 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .benefit-content {
        padding: 20px 15px;
    }
}

.collaborated-with {
    padding: 80px 0;
    background-color: #f8fbff;
}

/* Testimonials Section */
.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 3rem auto;
    max-width: 1200px;
}

.testimonials-container {
    flex: 1;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem); /* 3 cards with gap */
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.testimonial-author p {
    color: #888;
    font-size: 0.9rem;
    margin: 0;
}
/* Testimonial Profile Images */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #4a90e2;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: #357abd;
    transform: scale(1.05);
}

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.1);
}

.testimonial-author {
    flex: 1;
}

.testimonial-author h4 {
    color: #4a90e2;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.8;
}

.testimonial-content {
    margin-top: 15px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-header {
        gap: 12px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-author h4 {
        font-size: 1rem;
    }
    
    .testimonial-author p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-author h4 {
        font-size: 1.1rem;
    }
}

/* Carousel Navigation Buttons */
.carousel-btn {
    background: #4a90e2;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: #357abd;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.carousel-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design for Carousel */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem); /* 2 cards on tablet */
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        gap: 15px;
        margin: 2rem auto;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-card {
        flex: 0 0 100%; /* 1 card on mobile */
        padding: 1.5rem;
    }
    
    .testimonials-track {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel {
        gap: 10px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
}

/* Hide cloned cards from screen readers */
.testimonial-card.clone {
    visibility: visible; 
}

/* Ensure smooth transitions */
.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
}

/* FAQ Section */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e8f4ff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.15);
    border-color: #4a90e2;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-height: auto;
}

.faq-question:hover {
    background-color: #f8fbff;
}

.faq-question h3 {
    color: #4a90e2;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    color: #4a90e2;
    transition: transform 0.3s ease;
    margin-left: 1rem;
    font-size: 0.9rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.25rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Partnership CTA */
.partnership-cta {
    background: linear-gradient(135deg, #4a90e2 0%, white 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.partnership-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><circle cx="50" cy="50" r="2" fill="white"/></svg>');
    background-size: 50px 50px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #4a90e2;
    border: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Partnership Modal Styles */
.partnership-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partnership-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 0;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: #4a90e2;
    font-size: 1.8rem;
    margin: 0;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: #e74c3c;
    background: #f8f9fa;
}

.modal-body {
    padding: 0 30px 30px;
}

.modal-body p {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8fbff;
}

.form-control:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Department Details */
.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section h3 {
    color: #4a90e2;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.detail-section p {
    line-height: 1.7;
    color: #666;
}

.detail-section ul {
    list-style: none;
    padding-left: 0;
}

.detail-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.detail-section li:before {
    content: "✓";
    color: #4a90e2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.register-button {
    background-color: #4a90e2;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.register-button:hover {
    background-color: #357abd;
}

.close-button {
    background-color: #f8f9fa;
    color: #666;
    border: 1px solid #ddd;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex: 1;
}

.close-button:hover {
    background-color: #e9ecef;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: #357abd;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Center heading specifically in volunteer modal */
#volunteerModal .modal-header h3 {
    text-align: center;
    width: 100%;
}

/* Adjust volunteer modal header layout */
#volunteerModal .modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#volunteerModal .close-modal {
    position: absolute;
    right: 30px;
    top: 25px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mv-card {
        padding: 2rem;
    }
    
    .problem-solution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem-statement,
    .solution-approach {
        padding: 1.5rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .section-header h3 {
        font-size: 1.5rem;
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .modern-partnership-section {
        padding: 60px 0;
    }
    
    .partnership-header h2 {
        font-size: 2.2rem;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .benefit-content {
        padding: 25px 20px;
    }
    
    .benefit-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .benefit-header h5 {
        font-size: 1.3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item {
        padding: 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .partnership-cta {
        padding: 40px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .modal-content {
        margin: 10px;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .mv-title,
    .section-title {
        font-size: 2rem;
    }
    
    .partnership-header h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-content {
        padding: 20px 15px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Batch Notification Modal Styles */
.notification-content {
    text-align: center;
    padding: 20px 0;
}

.notification-icon {
    color: #4a90e2;
    margin-bottom: 20px;
}

.batch-message {
    background: #f8fbff;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #4a90e2;
}

/* Past Batches Section Styles */
.past-batches-section {
    padding: 80px 0;
    background-color: #f8fbff;
}

.batches-container {
    max-width: 1200px;
    margin: 0 auto;
}

.completed-batches-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.current-batch-row {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.batch-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8f4ff;
    position: relative;
    overflow: hidden;
}

.batch-card.large-card {
    min-height: 550px;
    display: flex;
    flex-direction: column;
}

.batch-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2 0%, #357abd 100%);
}

.batch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
}

.batch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f7ff;
}

.batch-header h3 {
    color: #333;
    font-size: 2rem;
    margin: 0;
    font-weight: 600;
}

.batch-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.batch-status.completed {
    background: #e8f5e8;
    color: #2e7d32;
}

.batch-status.current {
    background: #e3f2fd;
    color: #1565c0;
}

.batch-details {
    margin-bottom: 1.5rem;
}

.batch-details p {
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-size: 1.05rem;
}

.batch-moral {
    background: #f8fbff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #4a90e2;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.batch-moral p {
    color: #4a90e2;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

.rising-stars {
    margin-top: auto;
}

.rising-stars h4 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: 600;
}

.stars-grid {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.stars-grid::-webkit-scrollbar {
    height: 6px;
}

.stars-grid::-webkit-scrollbar-thumb {
    background: #4a90e2;
    border-radius: 10px;
}

.star-card {
    min-width: 30%;
    flex: 0 0 30%;
    scroll-snap-align: start;
}


.star-card:hover {
    transform: translateY(-3px);
}

.star-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 3px solid #4a90e2;
}

.star-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.star-info h5 {
    color: #333;
    margin: 0 0 0.3rem;
    font-size: 1rem;
    font-weight: 600;
}

.star-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.current-batch {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border: 2px solid #4a90e2;
    text-align: center;
    padding: 3rem 2.5rem;
}

.batch-cta {
    padding: 1rem 0;
}

.batch-cta p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .completed-batches-row {
        gap: 1.5rem;
    }
    
    .batch-card.large-card {
        min-height: 500px;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .completed-batches-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .batch-card {
        padding: 1.5rem;
    }
    
    .batch-card.large-card {
        min-height: auto;
    }
    
    .batch-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .batch-header h3 {
        font-size: 1.8rem;
    }
    
    .stars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .current-batch {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .stars-grid {
        grid-template-columns: 1fr;
    }
    
    .batch-header h3 {
        font-size: 1.6rem;
    }
    
    .star-image {
        width: 80px;
        height: 80px;
    }
}

.current-batch-row {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.batch-card.current-batch {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border: 2px solid #4a90e2;
    text-align: center;
    padding: 2rem 3rem;
    width: 100%;
    min-height: auto;
    height: auto;
}

.batch-info {
    margin: 1.5rem 0;
}

.batch-info p {
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-size: 1.05rem;
}

.batch-notice {
    background: #fff3cd;
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin-top: 1rem;
}

.batch-notice p {
    color: #856404;
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
    font-weight: 500;
}

.current-batch-row {
    display: flex;
    justify-content: center;
    align-items: stretch; /* This makes all items same height */
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.side-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center; /* Center images vertically */
}

.side-image img {
    width: 240px;
    height: 400;
    object-fit: cover;
    display: block;
}

.current-batch-row {
    align-items: stretch;
}

.current-batch-row .side-image img {
    object-fit: fill;
    height: 100%;
    width: 240PX;
}

.current-batch-row .side-image {
    height: auto;
    display: flex;
}


.batch-card.current-batch {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border: 2px solid #4a90e2;
    text-align: center;
    padding: 2rem 3rem;
    width: 100%;
    min-height: auto;
    height: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center content vertically */
}

/* Responsive for side images */
@media (max-width: 768px) {
    .current-batch-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .side-image {
        order: -1;
    }
    
    .side-image img {
        width: 150px;
        height: 100px; /* Fixed height on mobile */
    }
    
    .batch-card.current-batch {
        padding: 1.5rem 2rem;
    }
}

/* FAQ Section with Side Images */
.problem-solution-section {
    position: relative;
}

.faq-side-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.left-faq-image {
    left: 90px; /* Closer to content */
}

.right-faq-image {
    right: 90px; /* Closer to content */
}

.faq-side-image img {
    width: 160px;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Ensure FAQ content stays centered */
.faq-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive for FAQ side images */
@media (max-width: 1200px) {
    .faq-side-image img {
        width: 140px;
        height: 280px;
    }
    
    .left-faq-image {
        left: 10px;
    }
    
    .right-faq-image {
        right: 10px;
    }
}

@media (max-width: 1024px) {
    .faq-side-image {
        display: none; /* Hide side images on smaller screens */
    }
}

/* Success Stories Section */
.success-stories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8f4ff;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
}

.story-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-quote {
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    border-left: 3px solid #4a90e2;
    padding-left: 1rem;
}

.story-author {
    border-top: 1px solid #f0f7ff;
    padding-top: 1rem;
}

.story-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.story-author span {
    color: #4a90e2;
    font-size: 0.9rem;
}

/* Success Stories with Side Images */
.stories-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.side-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.side-image img {
    width: 80px; /* Very small width as requested */
    height: 300px; /* Same height as story cards */
    object-fit: cover;
    display: block;
    border-radius: 8px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.side-image img:hover {
    opacity: 1;
}

.stories-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Heart Donation Button - Option 3: Minimalist */
.heart-donation {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: visible;
    animation: heartbeat 3s infinite ease-in-out;
}

.donation-tooltip {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
    letter-spacing: 0.5px;
}

/* Arrow connecting tooltip to button */
.donation-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-left: 8px solid #333;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.heart-donation:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.heart-donation:hover .donation-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* Heartbeat animation not sure :} */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.1);
    }
    10% {
        transform: scale(1);
    }
    15% {
        transform: scale(1.1);
    }
    20% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive design for heart button */
@media (max-width: 768px) {
    .heart-donation {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .donation-tooltip {
        font-size: 0.8rem;
        padding: 6px 10px;
        right: 55px;
    }
    
    .donation-tooltip::after {
        right: -4px;
        border-width: 4px 0 4px 4px;
    }
}

/* Mobile Navigation Toggle Button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
    color: #4a90e2;
    z-index: 1001;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

/* Mobile Navigation Styles */
@media (max-width: 1024px) {
    /* Prevent horizontal scrolling */
    body, html {
        overflow-x: hidden;
        width: 100%;
    }
    
    header .container {
        position: relative;
        padding: 0.8rem 60px 0.8rem 20px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .nav-toggle {
        display: block !important;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        margin: 0;
    }
    
    .nav-tabs {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }
    
    .nav-tabs.active {
        right: 0;
    }
    
    .nav-tabs li {
        width: 100%;
    }
    
    .nav-tabs li a {
        display: block;
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        border-left: 3px solid transparent;
        transition: all 0.3s ease;
        white-space: nowrap; /* Prevent text wrapping */
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-tabs li a:hover,
    .nav-tabs li a.active {
        border-left: 3px solid #4a90e2;
        background-color: #e8f4ff;
    }
    
    /* Overlay when menu is open */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(3px);
        z-index: 999;
        display: none;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    /* Adjust header for mobile */
    .logo {
        position: relative;
        z-index: 1;
        max-width: calc(100% - 70px); /* Leave space for hamburger */
    }
    
    .logo img {
        max-width: 100%;
        height: auto;
    }
    
    /* Ensure container doesn't cause overflow */
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
}

/* Smaller screens adjustments */
@media (max-width: 768px) {
    .nav-tabs {
        width: 80%;
    }
    
    .nav-toggle {
        right: 15px;
        font-size: 1.4rem;
    }
    
    header .container {
        padding: 0.8rem 50px 0.8rem 15px;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .nav-toggle {
        right: 10px;
        font-size: 1.3rem;
    }
    
    header .container {
        padding: 0.8rem 45px 0.8rem 10px;
    }
}

/* Large laptop screens */
@media (min-width: 1025px) {
    .nav-toggle {
        display: none !important;
    }
    
    .nav-tabs {
        display: flex !important;
    }
    
    .nav-overlay {
        display: none !important;
    }
}
