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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #fffef7;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.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: 0.8rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f6e05e, #ecc94b);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3748;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(246, 224, 94, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text h2 {
    color: #2d3748;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
    line-height: 1;
}

.logo-tagline {
    color: #718096;
    font-size: 0.75rem;
    font-weight: 400;
    margin: 0;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #d69e2e;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #d69e2e;
}

.download-btn {
    background: linear-gradient(135deg, #f6e05e, #ecc94b);
    color: #2d3748 !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(246, 224, 94, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(246, 224, 94, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
    color: #2d3748;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2d3748, #4a5568);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #718096;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #f6e05e, #ecc94b);
    color: #2d3748;
    box-shadow: 0 4px 12px rgba(246, 224, 94, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(246, 224, 94, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #d69e2e;
    border-color: #d69e2e;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f6e05e, #ecc94b);
    color: #2d3748;
    box-shadow: 0 4px 12px rgba(246, 224, 94, 0.3);
}

/* Slider */
.slider-container {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(214, 158, 46, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.slider {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.slide-content {
    text-align: center;
    padding: 2rem;
}

.slide-icon {
    font-size: 3rem;
    color: #d69e2e;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(214, 158, 46, 0.3);
    filter: drop-shadow(0 4px 8px rgba(214, 158, 46, 0.2));
}

.slide h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.slide p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(214, 158, 46, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.indicator.active {
    background: linear-gradient(135deg, #f6e05e, #ecc94b);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(214, 158, 46, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Features Overview */
.features-overview {
    padding: 60px 0;
    background: white;
}

.features-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: #d69e2e;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(214, 158, 46, 0.3);
    filter: drop-shadow(0 4px 8px rgba(214, 158, 46, 0.2));
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 8px 20px rgba(214, 158, 46, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Statistics Section - Single Line Layout */
.statistics-section {
    padding: 60px 0;
    background: white;
}

.statistics-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.statistics-section .section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.statistics-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.statistics-card {
    background: #f8fafc;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
}

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

.statistics-icon {
    font-size: 2rem;
    color: #d69e2e;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(214, 158, 46, 0.3);
    filter: drop-shadow(0 4px 8px rgba(214, 158, 46, 0.2));
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    box-shadow: 0 8px 20px rgba(214, 158, 46, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.statistics-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-weight: 700;
}

.statistics-card p {
    color: #64748b;
    line-height: 1.4;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #6366f1;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6366f1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6366f1;
    transform: translateY(-2px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-container {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
    color: #2d3748;
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Additional page styles */
.detailed-features, .our-story, .join-us {
    padding: 80px 0 100px;
    background: white;
    text-align: center;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.feature-detail.reverse {
    direction: rtl;
}

.feature-detail.reverse > * {
    direction: ltr;
}

.feature-icon-large {
    font-size: 3rem;
    color: #d69e2e;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(214, 158, 46, 0.3);
    filter: drop-shadow(0 4px 8px rgba(214, 158, 46, 0.2));
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(214, 158, 46, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #374151;
}

.feature-list i {
    color: #10b981;
    margin-right: 0.8rem;
}

.mock-editor, .mock-index, .mock-search {
    background: #f8fafc;
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    width: 100%;
    max-width: 400px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(214, 158, 46, 0.1);
}

.contact-form-container h2 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
    font-size: 0.9rem;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 14px 18px;
    border: 1px solid #d3d3d3;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fefefe;
    width: 100%;
    font-family: 'Inter', sans-serif;
    color: #2d3748;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

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

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #f6e05e;
    box-shadow: 0 0 0 3px rgba(246, 224, 94, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Contact Information Styles */
.contact-info {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(214, 158, 46, 0.1);
}

.contact-info h2 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f6e05e, #ecc94b);
    color: #2d3748;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(214, 158, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
}

.contact-text h4 {
    color: #2d3748;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    font-weight: 600;
}

.contact-text p {
    color: #4a5568;
    margin: 0;
    font-size: 0.9rem;
}

/* Social Media Styles */
.social-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(214, 158, 46, 0.2);
}

.social-contact h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.social-link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(214, 158, 46, 0.1);
    aspect-ratio: 1;
}

.social-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 158, 46, 0.2);
    color: #2d3748;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f6e05e, #ecc94b);
    color: #2d3748;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(214, 158, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
}

.download-hero {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
    color: #2d3748;
    padding: 100px 0 60px;
    text-align: center;
}

.platform-selector {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(214, 158, 46, 0.1);
    border: 2px solid rgba(214, 158, 46, 0.3);
    border-radius: 15px;
    color: #d69e2e;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(214, 158, 46, 0.1);
}

.platform-btn:hover, .platform-btn.active {
    background: linear-gradient(135deg, #f6e05e, #ecc94b);
    color: #2d3748;
    border-color: #d69e2e;
    box-shadow: 0 8px 20px rgba(214, 158, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.download-section {
    display: none;
}

.download-section.active {
    display: block;
}

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

.download-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 158, 46, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: white;
    transition: background 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* About Page Enhanced Icon Styles */
.mv-icon {
    font-size: 3rem;
    color: #d69e2e;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(214, 158, 46, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(214, 158, 46, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(214, 158, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    color: #d69e2e;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 16px rgba(214, 158, 46, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(214, 158, 46, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(214, 158, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Join Our Journey Section Enhanced Spacing */
.join-us {
    padding: 80px 0 120px;
    background: white;
    text-align: center;
}

.join-us h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.join-us p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.join-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mission, Vision & Values Slider */
.mvv-slider-section {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
    text-align: center;
}

.mvv-slider-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.mvv-slider-section p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.mvv-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mvv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s ease;
}

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

.mvv-icon {
    font-size: 4rem;
    color: #d69e2e;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(214, 158, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(214, 158, 46, 0.3);
}

.mvv-slide h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.mvv-slide p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    max-width: 600px;
    margin: 0;
}

.mvv-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.mvv-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(214, 158, 46, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mvv-dot.active {
    background: #d69e2e;
    transform: scale(1.2);
}

/* Enhanced Our Story Section */
.our-story {
    padding: 80px 0 120px;
    background: white;
    text-align: center;
}

.our-story h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.story-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: left;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.story-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: rgba(246, 224, 94, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(214, 158, 46, 0.2);
}

.timeline-icon {
    font-size: 2.5rem;
    color: #d69e2e;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(214, 158, 46, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(214, 158, 46, 0.3);
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.timeline-content p {
    color: #4a5568;
    font-size: 1rem;
}

/* Enhanced Team Section */
.team-section {
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 50%, #fde68a 100%);
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.team-content {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #d69e2e;
    box-shadow: 0 8px 20px rgba(214, 158, 46, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(214, 158, 46, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover .member-avatar {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(214, 158, 46, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .feature-detail, .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platform-selector {
        flex-direction: column;
        align-items: center;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
}
