/* New Modern Blue & Indigo Color Palette */
:root {
    --primary: #2563eb;
    --secondary: #6366f1;
    --accent: #f59e42;
    --background: #f8fafc;
    --card: #ffffff;
    --text: #1e293b;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    width: 100vw;
    min-width: 0;
    overflow-x: hidden;
}

/* Card-like Section Styles */
.section-card, .features, .stats, .testimonials, .faq-section, .additional-features, .contact-info-section, .contact-form-section, .team, .values, .about-story, .mission-vision {
    background: var(--card) !important;
    box-shadow: 0 3px 16px rgba(0,0,0,0.07);
    border-radius: 12px;
    margin: 3rem auto;
    padding: 3rem 5%;
    max-width: 100vw;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    box-sizing: border-box;
}

/* Remove background from these sections if previously set */
.features, .stats, .testimonials, .faq-section, .additional-features, .contact-info-section, .contact-form-section, .team, .values, .about-story, .mission-vision {
    background: #fff !important;
}

/* Section Headings */
h2, .features-hero h1, .about-hero h1, .contact-hero h1, .cta-section h2, .faq-section h2, .additional-features h2 {
    color: #1e293b !important;
    text-shadow: none;
}

/* Main background for hero sections remains gradient or as previously set */
.features-hero, .about-hero, .contact-hero {
    /* keep their gradient backgrounds */
}

/* Remove extra padding from body for card sections */
@media (max-width: 768px) {
    .section-card, .features, .stats, .testimonials, .faq-section, .additional-features, .contact-info-section, .contact-form-section, .team, .values, .about-story, .mission-vision {
        padding: 2rem 2%;
        margin: 2rem 0;
    }
}

/* Header and Navigation */
header {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo h1 {
    color: #ffffff !important;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(34,34,59,0.18), 0 1px 0 #0002;
    letter-spacing: 1px;
    font-size: 2rem;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.hamburger-line {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background-color: #ffffff;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff !important;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-links a:hover {
    color: var(--accent) !important;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s ease;
        z-index: 99;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hamburger.active .hamburger-line:nth-child(1) {
        transform: translateY(0.375rem) rotate(45deg);
    }

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

    .hamburger.active .hamburger-line:nth-child(3) {
        transform: translateY(-0.375rem) rotate(-45deg);
    }
}

.download-btn, .primary-btn {
    background-color: var(--primary);
    color: #fff !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

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

.primary-btn:hover, .secondary-btn:hover {
    background-color: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.accent-btn, .submit-btn.accent {
    background-color: var(--accent) !important;
    color: #fff !important;
    border: none;
}

.accent-btn:hover, .submit-btn.accent:hover {
    background-color: #d97706 !important;
}

/* Full Width Hero Section & Advanced Styles */
.fullwidth-hero {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    left: 50%;
    right: 50%;
    transform: translateX(-50%);
    border-radius: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: none;
}

.fullwidth-hero .hero-content {
    max-width: 37.5rem;
    margin-left: 8vw;
    z-index: 2;
    text-align: left;
}

.fullwidth-hero .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: #4364ed;
    text-shadow: none;
}

.fullwidth-hero .hero-content p {
    font-size: clamp(1.125rem, 2.5vw, 1.35rem);
    color: #4565ee;
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-shadow: none;
}

.fullwidth-hero .cta-buttons {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.fullwidth-hero .hero-image {
    flex: 1;
    text-align: right;
    z-index: 2;
    margin-right: 8vw;
}

.fullwidth-hero .hero-image img {
    max-width: 26.25rem;
    width: 90%;
    min-width: 13.75rem;
    border-radius: 1.5rem;
    box-shadow: 0 0.75rem 3rem rgba(25,229,230,0.13), 0 0.125rem 0.5rem rgba(108,126,225,0.10);
    background: #fff;
    position: relative;
    z-index: 2;
}

.fullwidth-hero .hero-bg-overlay {
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.15) 0%, rgba(99, 102, 241, 0.15) 100%);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.fullwidth-hero .hero-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100vw;
    z-index: 3;
    line-height: 0;
}

.fullwidth-hero .hero-wave svg {
    display: block;
    width: 100vw;
    height: 120px;
}

/* Floating Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
    filter: blur(1px);
}
.hero-shape-1 {
    width: 220px; height: 220px;
    background: var(--primary);
    top: -60px; left: 5vw;
    animation: float1 8s ease-in-out infinite alternate;
}
.hero-shape-2 {
    width: 140px; height: 140px;
    background: var(--secondary);
    bottom: 60px; right: 10vw;
    animation: float2 10s ease-in-out infinite alternate;
}
.hero-shape-3 {
    width: 90px; height: 90px;
    background: var(--accent);
    top: 30%; right: 20vw;
    animation: float3 12s ease-in-out infinite alternate;
}
@keyframes float1 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(30px) scale(1.08); }
}
@keyframes float2 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-24px) scale(1.05); }
}
@keyframes float3 {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(18px) scale(1.12); }
}

@media (max-width: 1100px) {
    .fullwidth-hero .hero-content {
        margin-left: 4vw;
    }
    .fullwidth-hero .hero-image {
        margin-right: 4vw;
    }
}
@media (max-width: 900px) {
    .fullwidth-hero {
        flex-direction: column;
        text-align: center;
        min-height: 60vh;
        padding-top: 6rem;
    }
    .fullwidth-hero .hero-content {
        margin-left: 0;
        text-align: center;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .fullwidth-hero .hero-image {
        margin-right: 0;
        text-align: center;
    }
    .fullwidth-hero .hero-image img {
        max-width: 320px;
    }
}
@media (max-width: 600px) {
    .fullwidth-hero .hero-content h1 {
        font-size: 2rem;
    }
    .fullwidth-hero .hero-wave svg {
        height: 40px;
    }
    .hero-shape-1, .hero-shape-2, .hero-shape-3 {
        display: none;
    }
}

/* Stats Section */
.stats {
    background-color: var(--card);
    padding: 4rem 5%;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background-color: #fff;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background-color: #f8fafc;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #64748b;
}

.testimonial-author h4 {
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background-color: #fff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item i {
    color: #2563eb;
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form textarea {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
}

#contact-form textarea {
    height: 150px;
    resize: vertical;
}

#contact-form button {
    background-color: #2563eb;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

#contact-form button:hover {
    background-color: #1d4ed8;
}

/* Footer */
footer {
    background-color: #1e293b;
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

    .nav-links {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.9)), url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 5%;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 5%;
}

.about-content h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.mission-card, .vision-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.mission-card i, .vision-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.team {
    padding: 5rem 5%;
    background-color: #f8fafc;
}

.team h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.team-member {
    background: var(--background);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.values {
    padding: 5rem 5%;
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.value-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.value-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Features Page Styles */
.features-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.9)), url('../images/features-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 5%;
    text-align: center;
    color: white;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: none;
    background: var(--background);
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary);
    color: #fff;
}

.tab-content {
    display: none;
    padding: 2rem 0;
}

.tab-content.active {
    display: block;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.feature-info h2 {
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-list i {
    color: #2563eb;
}

.feature-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(37, 99, 235, 0.9), rgba(37, 99, 235, 0.9)), url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 8rem 5%;
    text-align: center;
    color: white;
}

.contact-info-container {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 5%;
}

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

.contact-method {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.contact-method i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    background-color: #2563eb;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1d4ed8;
}

/* FAQ Section Styles */
.faq-section {
    padding: 5rem 5%;
    background-color: var(--background);
    text-align: center;
}

.faq-section h2 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.2rem;
}

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

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

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

/* Responsive Design for FAQ Section */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 5%;
    }

    .faq-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* CTA Section Styles */
.cta-section {
    padding: 5rem 5%;
    background-color: #f8fafc;
    text-align: center;
}

.cta-section h2 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-content .cta-buttons{
    justify-content: left;
}

.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

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

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

/* Feature Card Learn More Link */
.learn-more {
    display: inline-block;
    margin-top: 1rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #1d4ed8;
}

/* Responsive Design for CTA Section */
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 5%;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
}

/* Additional Features Section */
.additional-features {
    padding: 5rem 5%;
    background-color: #fff;
    text-align: center;
}

.additional-features h2 {
    color: var(--secondary);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.additional-features .feature-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.additional-features .feature-card:hover {
    transform: translateY(-5px);
}

.additional-features .feature-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.additional-features .feature-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.additional-features .feature-card p {
    color: #64748b;
}

/* Responsive Design for Additional Features */
@media (max-width: 768px) {
    .additional-features {
        padding: 4rem 5%;
    }

    .additional-features h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .additional-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* === FULL WIDTH & RESPONSIVE LAYOUT === */
header, nav, footer, .footer-content, .footer-section {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Responsive Grids */
.feature-grid, .testimonial-grid, .stat-grid, .team-grid, .values-grid, .additional-features-grid, .contact-methods {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-left: 2vw;
    padding-right: 2vw;
}

/* Responsive Padding for Sections */
.section-card, .features, .stats, .testimonials, .faq-section, .additional-features, .contact-info-section, .contact-form-section, .team, .values, .about-story, .mission-vision {
    padding-left: 4vw;
    padding-right: 4vw;
}

@media (max-width: 1100px) {
    .feature-grid, .testimonial-grid, .stat-grid, .team-grid, .values-grid, .additional-features-grid, .contact-methods {
        padding-left: 1vw;
        padding-right: 1vw;
    }
    .section-card, .features, .stats, .testimonials, .faq-section, .additional-features, .contact-info-section, .contact-form-section, .team, .values, .about-story, .mission-vision {
        padding-left: 2vw;
        padding-right: 2vw;
    }
}
@media (max-width: 900px) {
    .feature-grid, .testimonial-grid, .stat-grid, .team-grid, .values-grid, .additional-features-grid, .contact-methods {
        grid-template-columns: 1fr !important;
        padding-left: 0.5vw;
        padding-right: 0.5vw;
    }
    .section-card, .features, .stats, .testimonials, .faq-section, .additional-features, .contact-info-section, .contact-form-section, .team, .values, .about-story, .mission-vision {
        padding-left: 1vw;
        padding-right: 1vw;
    }
}
@media (max-width: 600px) {
    .section-card, .features, .stats, .testimonials, .faq-section, .additional-features, .contact-info-section, .contact-form-section, .team, .values, .about-story, .mission-vision {
        padding-left: 0.5vw;
        padding-right: 0.5vw;
    }
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Navigation Responsive */
@media (max-width: 900px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 2vw;
    }
    .nav-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-left: 0;
        align-items: flex-start;
    }
    .nav-links a {
        margin-left: 0;
    }
}

/* Footer Responsive */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}
.footer-section {
    flex: 1 1 200px;
    min-width: 180px;
}

/* Ensure all images and videos are responsive */
img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

input, textarea, select {
    color: var(--text);
    border-color: var(--primary);
}
input:focus, textarea:focus, select:focus {
    border-color: var(--secondary);
}

/* --- Readability & Contrast Fixes --- */

/* Header, Nav, and Hero Area: Always white text with shadow */
header, .hero, .hero-content, .hero-content h1, .hero-content p, .cta-buttons a, nav .nav-links a {
    color: #4565ee;
    text-shadow: 0 2px 8px rgba(34,34,59,0.18), 0 1px 0 #0002;
}
nav .nav-links a:hover {
    color: var(--accent) !important;
}

/* Section Headings: Use dark color for readability on light backgrounds */
h2, .features-hero h1, .about-hero h1, .contact-hero h1, .cta-section h2, .faq-section h2, .additional-features h2 {
    color: #1e293b !important;
    text-shadow: none;
}

/* Body text: Always dark on light backgrounds */
body, .section-card, .features, .stats, .testimonials, .faq-section, .additional-features, .contact-info-section, .contact-form-section, .team, .values, .about-story, .mission-vision, .feature-card, .value-card, .team-member, .contact-method {
    color: #1e293b !important;
    text-shadow: none;
}

/* Buttons: White text on colored backgrounds, dark on light backgrounds */
.primary-btn, .secondary-btn, .download-btn, .tab-btn.active, .accent-btn, .submit-btn.accent {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(34,34,59,0.18);
}

.tab-btn {
    color: var(--primary) !important;
    background: var(--background);
    text-shadow: none;
} 