* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #E8E8E8;
    background: #0A0A0A;
    overflow-x: hidden;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

header.scrolled {
    background: rgba(10, 10, 10, 0);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
    padding: 0.8rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 3px 12px rgba(241, 196, 15, 0.5));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 5px 18px rgba(241, 196, 15, 0.7));
    transform: scale(1.05);
}

/* Adjust logo size when header is scrolled */
header.scrolled .logo-img {
    height: 45px;
}

.logo h1 {
    font-family: 'Fredoka One', cursive;
    color: #F1C40F;
    font-size: 2rem;
    text-shadow: 2px 2px 8px rgba(241, 196, 15, 0.4);
    margin-bottom: -5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #E8E8E8;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F1C40F, #F39C12);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: #F1C40F;
    background: rgba(241, 196, 15, 0.1);
}

.nav-links a:hover::before {
    width: 80%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.75) 50%, rgba(15, 15, 15, 0.85) 100%),
        url('images/flat-background.svg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(241, 196, 15, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(241, 196, 15, 0.15) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(241, 196, 15, 0.03) 100px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(241, 196, 15, 0.03) 100px
        );
    pointer-events: none;
    z-index: 1;
}

.sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #F1C40F, #F39C12);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: sparkle 3s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(241, 196, 15, 0.5));
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 0.5s;
}

.sparkle:nth-child(3) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.sparkle:nth-child(4) {
    top: 70%;
    right: 25%;
    animation-delay: 1.5s;
}

.sparkle:nth-child(5) {
    top: 15%;
    left: 60%;
    animation-delay: 2s;
}

.sparkle:nth-child(6) {
    top: 80%;
    left: 70%;
    animation-delay: 2.5s;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.welcome-text {
    font-family: 'Fredoka One', cursive;
    margin-bottom: 1rem;
}

.saisups {
    max-width: 450px;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    filter:
        drop-shadow(0 0 15px rgba(241, 196, 15, 0.35))
        drop-shadow(0 0 30px rgba(241, 196, 15, 0.25))
        drop-shadow(0 0 45px rgba(241, 196, 15, 0.15))
        drop-shadow(0 0 60px rgba(241, 196, 15, 0.1));
    transition: all 0.3s ease;
}

.saisups:hover {
    filter:
        drop-shadow(0 0 20px rgba(241, 196, 15, 0.5))
        drop-shadow(0 0 40px rgba(241, 196, 15, 0.4))
        drop-shadow(0 0 60px rgba(241, 196, 15, 0.3))
        drop-shadow(0 0 80px rgba(241, 196, 15, 0.2));
    transform: scale(1.05);
}

.welcomes {
    display: block;
    font-size: 3rem;
    color: #F1C40F;
    text-shadow: 3px 3px 0px #E67E22, 6px 6px 10px rgba(0,0,0,0.3);
    animation: bounce 2s infinite ease-in-out 0.2s;
}

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

.subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: linear-gradient(45deg, #F1C40F, #F39C12);
    color: #1A1A1A;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 15px rgba(241, 196, 15, 0.3),
        0 0 20px rgba(241, 196, 15, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 6px 25px rgba(241, 196, 15, 0.4),
        0 0 30px rgba(241, 196, 15, 0.2);
    background: linear-gradient(45deg, #F39C12, #E67E22);
}

.cta-button:hover::before {
    left: 100%;
}

/* About Section - Theme A (Darker with Green Accent) */
.about {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%),
        radial-gradient(circle at 70% 30%, rgba(241, 196, 15, 0.08) 0%, transparent 60%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(241, 196, 15, 0.03) 102px
        );
    pointer-events: none;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #E8E8E8;
    background: linear-gradient(135deg, #F1C40F, #F39C12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.about p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(241, 196, 15, 0.2);
    border-radius: 15px;
    box-shadow:
        0 5px 25px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 196, 15, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow:
        0 15px 35px rgba(0,0,0,0.4),
        0 0 25px rgba(241, 196, 15, 0.2);
    border-color: rgba(241, 196, 15, 0.4);
}

.feature:hover::before {
    left: 100%;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #F1C40F;
}

/* Founders Section - Theme B (Lighter with Gold Accent) */
.founders {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(25, 25, 25, 0.9) 0%, rgba(18, 18, 18, 0.95) 100%),
        radial-gradient(circle at 20% 80%, rgba(241, 196, 15, 0.12) 0%, transparent 60%);
    position: relative;
}

.founders::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(241, 196, 15, 0.03) 82px
        );
    pointer-events: none;
}

.founders h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F1C40F, #F39C12, #E67E22);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.founders-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

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

.founder-card {
    text-align: center;
    padding: 2rem;
    background:
        linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(241, 196, 15, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 25px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(241, 196, 15, 0.1), transparent);
    transition: left 0.6s ease;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 15px 35px rgba(0,0,0,0.4),
        0 0 25px rgba(241, 196, 15, 0.2);
    border-color: rgba(241, 196, 15, 0.4);
}

.founder-card:hover::before {
    left: 100%;
}

.founder-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(241, 196, 15, 0.3);
    transition: all 0.3s ease;
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-card:hover .avatar-img {
    transform: scale(1.1);
}

.founder-card:hover .founder-image {
    border-color: rgba(241, 196, 15, 0.6);
    box-shadow: 0 0 20px rgba(241, 196, 15, 0.3);
}

.placeholder-image {
    font-size: 3rem;
}

.founder-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #E8E8E8;
}

.founder-role {
    color: #F1C40F;
    font-weight: 600;
    margin-bottom: 1rem;
}

.founder-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Gallery Section - Theme A (Darker with Purple Accent) */
.gallery {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%),
        radial-gradient(circle at 30% 70%, rgba(155, 89, 182, 0.1) 0%, transparent 60%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 90px,
            rgba(155, 89, 182, 0.03) 92px
        );
    pointer-events: none;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #9B59B6, #F1C40F, #E74C3C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.gallery-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

/* Carousel Styles */

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Blackish Overlay */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Carousel Caption */
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.carousel-caption h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.carousel-caption p {
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .carousel-image-wrapper {
        height: 400px;
    }

    .carousel-caption h3 {
        font-size: 1.4rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .carousel-caption {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .carousel-image-wrapper {
        height: 300px;
    }

    .carousel-caption h3 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.85rem;
    }
}

/* Owl Carousel Custom Navigation */
.owl-carousel {
    border-radius: 20px;
    overflow: hidden;
}
.owl-carousel .owl-nav {
    margin: 0;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(155, 89, 182, 0.3) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    color: white !important;
    font-size: 2rem !important;
    line-height: 1 !important;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0 !important;
    margin: 0 !important;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background: rgba(155, 89, 182, 0.6) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

.owl-carousel .owl-nav button.owl-prev:active,
.owl-carousel .owl-nav button.owl-next:active {
    transform: translateY(-50%) scale(0.95);
}

.owl-carousel .owl-nav button span {
    line-height: 1;
    display: block;
}

/* Owl Carousel Dots */
.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.owl-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3) !important;
    border: 2px solid rgba(155, 89, 182, 0.5) !important;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 !important;
    margin: 0 !important;
}

.owl-carousel .owl-dot span {
    display: none !important;
}

.owl-carousel .owl-dot.active {
    background: rgba(155, 89, 182, 0.8) !important;
    border-color: rgba(155, 89, 182, 0.8) !important;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(155, 89, 182, 0.6);
}

.owl-carousel .owl-dot:hover {
    background: rgba(155, 89, 182, 0.5) !important;
    transform: scale(1.1);
}

/* Mobile Responsive for Owl Navigation */
@media (max-width: 768px) {
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem !important;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: -20px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 35px;
        height: 35px;
        font-size: 1.2rem !important;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: -15px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: -15px;
    }
}

/* Contact Section - Theme B (Lighter with Orange Accent) */
.contact {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(25, 25, 25, 0.9) 0%, rgba(18, 18, 18, 0.95) 100%),
        radial-gradient(circle at 80% 30%, rgba(230, 126, 34, 0.12) 0%, transparent 60%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 85px,
            rgba(230, 126, 34, 0.03) 87px
        );
    pointer-events: none;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #E67E22, #F39C12, #F1C40F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.contact > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1px solid rgba(230, 126, 34, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 25px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.15), transparent);
    transition: left 0.6s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(0,0,0,0.4),
        0 0 25px rgba(230, 126, 34, 0.3);
    border-color: rgba(230, 126, 34, 0.5);
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #E67E22;
}

/* Footer */
footer {
    background:
        linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(20, 20, 20, 1) 100%),
        radial-gradient(circle at 50% 50%, rgba(241, 196, 15, 0.1) 0%, transparent 70%);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(241, 196, 15, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(241, 196, 15, 0.02) 42px
        );
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
    }

    header.scrolled .logo-img {
        height: 36px;
    }

    .saisups {
        max-width: 300px;
        filter:
            drop-shadow(0 0 15px rgba(241, 196, 15, 0.9))
            drop-shadow(0 0 30px rgba(241, 196, 15, 0.6))
            drop-shadow(0 0 50px rgba(241, 196, 15, 0.4));
    }

    .welcomes {
        font-size: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

@media (max-width: 480px) {
    .logo-img {
        height: 35px;
        max-width: 120px;
    }

    header.scrolled .logo-img {
        height: 32px;
    }

    .saisups {
        max-width: 250px;
        filter:
            drop-shadow(0 0 12px rgba(241, 196, 15, 0.9))
            drop-shadow(0 0 25px rgba(241, 196, 15, 0.6))
            drop-shadow(0 0 40px rgba(241, 196, 15, 0.4));
    }
}

/* MVP Section - Alternating Theme */
.mvp {
    padding: 80px 0;
    background:
        linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(25, 25, 25, 0.9) 100%),
        radial-gradient(circle at 30% 50%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    position: relative;
}

.mvp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 50px,
            rgba(52, 152, 219, 0.02) 52px
        );
    pointer-events: none;
}

.mvp h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3498DB, #F1C40F, #E74C3C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.mvp-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

/* MVP Grid - Max 3 per row with centered last row */
.mvp .founders-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.mvp .founder-card {
    flex: 0 1 300px;
    max-width: 350px;
}

@media (min-width: 900px) {
    .mvp .founders-grid {
        justify-content: center;
    }

    .mvp .founder-card {
        flex: 0 1 calc(33.333% - 1.5rem);
        max-width: calc(33.333% - 1.5rem);
    }
}

@media (max-width: 899px) and (min-width: 600px) {
    .mvp .founder-card {
        flex: 0 1 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
}

@media (max-width: 599px) {
    .mvp .founder-card {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}