 @font-face {
    font-family: "Mortend";
    src: url("mortendbold.otf") format("opentype"),
        url("Mortend Bold.ttf") format("ttf");
    font-weight: 400;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f1c40f;
    --secondary-color: #1e40af;
    --accent-color: #60a5fa;
    --success-color: #10b981;
    --warning-color: #c83d0b;
    --danger-color: #ef4444;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --gradient-primary: linear-gradient(135deg, #014d40 0%, #2ecc71 100%);
    --gradient-secondary: linear-gradient(135deg, #2ecc71 0%, #d97706 100%);
    --gradient-hero: linear-gradient(135deg, #014d40 0%, #2ecc71 45%, #f1c40f 100%);
    --gold: #93c200;
    --green: #2ecc71;
    --section-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================
   2. BASE STYLES
   ============================================ */
html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

/* ============================================
   3. LOADER
   ============================================ */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader img {
    width: 120px;
    height: 150px;
    transform-origin: center;
    animation: pulseZoom 2s ease-in-out infinite;
}

@keyframes pulseZoom {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* ============================================
   4. SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* ==========================
   SCROLL DOWN INDICATOR
   ========================== */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 1;
    z-index: 10;
    pointer-events: none;
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    opacity: 0.8;
}

/* Arrow */
.scroll-arrow {
    width: 18px;
    height: 18px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    animation: bounceArrow 1.8s infinite ease-in-out;
}

/* Animation */
@keyframes bounceArrow {
    0% {
        transform: translateY(0) rotate(-45deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(8px) rotate(-45deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(-45deg);
        opacity: 0.4;
    }
}


h1, h2 {font-family:Arial, Helvetica, sans-serif; font-weight: bold;}
/* ============================================
   5. NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 20;
    left: 50%;
    width: 99%;
    transform: translateX(-50%);
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    
    padding: 0.2rem 0.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
}

.team-photo img{
    width: auto;
    object-fit: contain;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

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

.nav-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.2rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background-image: url('img/hero1.png');
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    inset: 0;
    background: rgba(0, 0, 0, 0.5); /* darkness level */
    z-index: 1;

}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    margin-top: 4rem;
}   

.hero-content h1 {
    text-align: center;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-mantra {
    font-size: 1.6rem;
    color: white;
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* ============================================
   7. SECTION COMMON STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
}

/* ============================================
   8. ABOUT/MISSION SECTION
   ============================================ */
.mission {
    padding: 6rem 2rem;
    background: white;
    box-shadow: var(--section-shadow);
}

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

.mission-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    flex: 0 1 300px;
    max-width: 350px;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: center;  
    display: flex;
}
.mission-icon img {
    border-radius: 50%;
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}
.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* ============================================
   9. SERVICES SECTION
   ============================================ */
.services {
    padding: 6rem 2rem;
    background: linear-gradient(20deg, #ddf9e5 12%, #f2fbf7 50%, #dcf3e8 100%);
    box-shadow: var(--section-shadow);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    flex: 0 1 350px;
    max-width: 400px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-header {
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    position: relative;
}

.service-header h3 {
    padding: 0.8rem;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-content {
    padding: 2rem;
}

.service-content p {
    text-align: center;
    padding: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.carousels-containers {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        }

        .carousels-tracks {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousels-slides {
            min-width: 100%;
            height: 500px;
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousels-slides::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
        }

        .slides-contentss {
            position: relative;
            z-index: 2;
            color: white;
            text-align: center;
            padding: 40px;
            max-width: 800px;
        }

        .slides-contentss h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .slides-contentss p {
            font-size: 1.2rem;
            line-height: 1.8;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }

        /* Navigation Buttons */
        .carousels-btns {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .carousels-btns:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .carousels-btns.prev {
            left: 20px;
        }

        .carousels-btns.next {
            right: 20px;
        }

        /* Dots Indicator */
        .carousel-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

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

        .dot.active {
            background: white;
            width: 30px;
            border-radius: 6px;
        }

        /* Background images for each slide */
        .slide-1 {
            background-image: url('img/care_staff.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide-2 {
            background-image: url('img/kitchen_staff.avif');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide-3 {
            background-image: url('img/slide3.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide-4 {
            background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1200');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        @media (max-width: 768px) {
            .carousels-slides {
                height: 400px;
            }

            .slides-contentss h3 {
                font-size: 1.8rem;
            }

            .slides-contentss p {
                font-size: 1rem;
            }

            .carousels-btns {
                font-size: 0.7rem;
                width: 20px;
                height: 20px;
            }
        }

/* ============================================
10. TESTIMONIALS SECTION
============================================ */
.testimonials-section {
    padding: 6rem 2rem;
    background: white;
    box-shadow: var(--section-shadow);
}

/* Carousel Container */
.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Track Slides Horizontally */
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-out;
}

/* Each Slide */
.testimonial-card {
    min-width: 100%;
    padding: 30px 18px;
    text-align: center;
    opacity: 0.4;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================
Image Styling
========================== */
.testimonial-photo {
    display: none;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 14px;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    opacity: 1;
    transform: scale(0.95);
    transition: transform 0.5s ease;
}

.testimonial-card.active .testimonial-photo {
    transform: scale(1);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================
Text Styles
========================== */
.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: black;
    margin-bottom: 4px;
    line-height: 1.6;
    min-height: 120px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==========================
Stars
========================== */
.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}

.star {
    color: #FCD34D;
    font-size: 20px;
    opacity: 1;
    transform: scale(0.8);

    transition: all 0.3s ease;
}

/* Animate stars only on active slide */
.testimonial-card.active .star {
    opacity: 1;
    transform: scale(1);
}

.testimonial-card.active .star:nth-child(1) { transition-delay: 0.05s; }
.testimonial-card.active .star:nth-child(2) { transition-delay: 0.10s; }
.testimonial-card.active .star:nth-child(3) { transition-delay: 0.15s; }
.testimonial-card.active .star:nth-child(4) { transition-delay: 0.20s; }
.testimonial-card.active .star:nth-child(5) { transition-delay: 0.25s; }

/* ==========================
Dots
========================== */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.dot.active {
    background: var(--green);
    width: 32px;
    border-radius: 5px;
    animation: none;
}

/* ============================================
   11. TEAM/ECOSYSTEM SECTION
   ============================================ */
.content-ecosystem {
    padding: 6rem 2rem;
    background: linear-gradient(20deg, #ddf9e5 12%, #f2fbf7 50%, #dcf3e8 100%);
    box-shadow: var(--section-shadow);
}

.ecosystem-container {
    max-width: 100%;
    margin: 0 auto;
}

.ecosystem-carousel-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.ecosystem-carousel {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1.5rem;
    padding: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.ecosystem-carousel::-webkit-scrollbar {
    display: none;
}

.ecosystem-card {
    flex: 0 0 280px;
    min-width: 280px;
    scroll-snap-align: start;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    background: white;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ecosystem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-color);
    background: linear-gradient(135deg, #076f28 0%, #5d9b109a 100%);
    border-radius: 50%;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ecosystem-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ecosystem-card .role {
    font-weight: 600;
    color: var(--green);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.ecosystem-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.carousel-nav {
    display: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.carousel-btn:hover {
    background: var(--green);
    color: white;
    border-color: var(--green);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -1px;
}

.carousel-btn.next {
    right: -1px;
}

/* ============================================
   12. CONTACT SECTION
   ============================================ */
.contact {
    padding: 6rem 2rem;
    background: white;
    box-shadow: var(--section-shadow);
}

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

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

.contact-info {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

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

.contact-details h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

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

.partnership-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.partnership-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.partnership-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    border: none;
    border-radius: 20px;
    padding: 0.75rem;
    font-size: 1rem;
}

.cta-button {
    background: white;
    color: var(--green);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================
   13. FOOTER
   ============================================ */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section {
    margin-inline: 1rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

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

/* ============================================
   14. UTILITY CLASSES
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   15. ACCESSIBILITY
   ============================================ */
.keyboard-navigation *:focus {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .hero::before {
        animation: none;
    }
}

@media (prefers-contrast: high) {
    .mission-card,
    .service-card,
    .ecosystem-card {
        border: 2px solid var(--text-primary);
    }
}

/* ============================================
   16. MOBILE RESPONSIVENESS
   ============================================ */
@media (min-width: 768px) {
    .carousel-nav {
        display: block;
    }
}

@media (min-width: 1024px) {
    .ecosystem-card {
        flex: 0 0 350px;
        min-width: 350px;
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        align-items: center;
        background: rgba(0, 0, 0, 0.30);
        backdrop-filter: blur(3px);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .navbar {
        background: transparent;
        backdrop-filter: none;
        overflow: visible;
    }

    .nav-cta{
        padding: 0.8rem 0.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        min-height: calc(100vh - 20px);
        background-image: url('img/hero_mobile.png');
        background-size: cover;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 1rem;
    }

    .hero-content {
    margin-top: 1rem;
    } 

    .hero-content h1 {
        transform: translateY(10px);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-mantra {
        transform: translateY(10px);
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .mission,
    .services,
    .testimonials-section,
    .content-ecosystem,
    .contact {
        padding: 4rem 1rem;
    }

    .mission-card,
    .service-card {
        max-width: 100%;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    ecosystem-carousel-wrapper {
        display: flex;
        justify-content: center;
    }

    .ecosystem-carousel {
        padding-left: calc(50vw - 150px); 
    }

    .ecosystem-card {
        scroll-snap-align: center;
        flex: 0 0 280px;
        min-width: 280px;
    }

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

    .contact-info {
        padding: 2rem;
        order: 1;
    }

    .partnership-cta {
        padding: 2rem;
        order: -1;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .footer {
        padding: 3rem 1rem 2rem;
    }

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

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-cta{
        margin-right: 1.7rem;
        padding: 0.8rem 0.5rem;
    }

    .scroll-indicator {
        bottom: 100px;
    }       

    .hero {
        padding-top: 120px;
    }

    .hero-content h1 {
        transform: translateY(-80px);
        font-size: 1.7rem;
    }

    .hero-mantra {
        transform: translateY(-80px);
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .mission-card,
    .service-card,
    .ecosystem-card {
        padding: 1.5rem;
    }
}