/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: white;
    background: black;
}



/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
    padding: 0.625rem 1.25rem;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
}

nav .logo {
    width: 20.375rem;
    height: auto;
    margin-right: 20rem;
}
/* logo size */
/* Medium screens (tablets) */
@media (max-width: 1024px) {
    nav .logo {
        width: 16rem; /* Reduce logo size */
    }
}

/* Small screens (mobile) */
@media (max-width: 768px) {
    nav .logo {
        width: 12rem; /* Smaller size for mobile */
    }
}

/* Very small screens */
@media (max-width: 480px) {
    nav .logo {
        max-width: 1200px; /* Resize but keep aspect ratio */
        height: auto;
        width: 80%;
       margin-right: 1rem;
    
    }
}
/* Navbar List Items */
nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    position: relative;
}

/* Style Dropdown Parent */
nav ul .dropdown {
    position: relative;
}

/* Hide Dropdown Menu Initially */
nav ul .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    list-style: none;
    padding: 10px 0;
    width: 150px;
    display: none;
    text-align: left;
    border-radius: 5px;
}

/* Style Dropdown Links */
nav ul .dropdown-menu li a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    transition: all 0.3s ease-in-out;
    position: relative;
}

/* Hover Effect - White Underline */
nav ul .dropdown-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: red ;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

nav ul .dropdown-menu li a:hover::after {
    transform: scaleX(1);
}

/* Show Dropdown on Hover */
nav ul .dropdown:hover .dropdown-menu {
    display: block;
}

/* drop down box arrow */
.nav-link i {
    color: white;
    font-size: 12px;
    margin-left: 5px;
}

nav ul  li{
    padding-top: 10px;
}
nav ul li {
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
    
}
/* Navbar Ticket Button (3D Red to White Gradient) */
nav .btn {
    background: red; /* Red to White gradient */
    border: none;
    color: black;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 6px 12px rgba(211, 210, 210, 0.3); /* 3D Shadow Effect */
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
    display: inline-block;
}

/* Hover Effect (Turns White) */
nav .btn:hover {
    background: white;
    color: black;
    transform: scale(1.05) translateY(-3px); /* Lift effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Click Effect (Press Down) */
nav .btn:active {
    transform: scale(1) translateY(2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Underline hover effect */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.125rem;
    width: 100%;
    height: 0.125rem;
    background-color: red;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

nav ul li a:hover {
    color: rgb(255, 147, 147);
}

/* Mobile Responsive Menu */
.icon {
    display: none;
    font-size: 1.5625rem;
    color: white;
    cursor: pointer;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    z-index: 1000;
}


/* navbar-checking */
/* Mobile Navigation Overrides (for screens 768px and below) */
/* Modified Mobile Responsive Menu */
/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px; /* Right-aligned hamburger */
        font-size: 32px;
        cursor: pointer;
        z-index: 1000;
        background: none;
        border: none;
        color: white;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 75%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 30px 20px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto; /* Allow scrolling if needed */
    }

    .nav-menu.show {
        left: 0;
    }

    .dropdown-menu {
        position: relative;
        background: transparent !important;
        padding: 10px;
        border-radius: 5px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px; /* Expand to fit content */
        opacity: 1;
        transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
    }

    .dropdown.active + li {
        margin-top: 8rem; /* Push down the next menu item */
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
        backdrop-filter: blur(5px);
        display: none;
        z-index: 998;
    }

    .menu-overlay.active {
        display: block;
    }

    .nav-menu .nav-item {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
   
    
}


/* main page */

.dabba {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, rgba(153, 27, 27, 0.2), black);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1533174072545-7a4b6ad7a6c3?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.icon-float {
    position: absolute;
    color: rgba(239, 68, 68, 0.2);
}

.icon-1 {
    top: 10%;
    left: 5%;
    width: 2rem;
    height: 2rem;
    animation: pulse 2s infinite;
}

.icon-2 {
    top: 20%;
    right: 8%;
    width: 1.5rem;
    height: 1.5rem;
    animation: bounce 3s infinite;
}

.icon-3 {
    bottom: 15%;
    left: 12%;
    width: 1.75rem;
    height: 1.75rem;
    animation: pulse 2.5s infinite;
}

.icon-4 {
    top: 40%;
    right: 15%;
    width: 1.25rem;
    height: 1.25rem;
    animation: bounce 2.5s infinite;
}

.icon-5 {
    bottom: 30%;
    right: 10%;
    width: 1.5rem;
    height: 1.5rem;
    animation: pulse 3s infinite;
}

.icon-6 {
    top: 60%;
    left: 8%;
    width: 1.25rem;
    height: 1.25rem;
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ef4444, #dc2626);
    -webkit-background-clip: text;
    color: transparent;
    text-align: center;
    transition: all 0.5s;
}

.hero-title:hover {
    background: linear-gradient(to right, #f87171, #ef4444);
    -webkit-background-clip: text;
}

.hero-description {
    font-size: 1.5rem;
    color: rgba(254, 226, 226, 0.8);
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
    transition: color 0.3s;
}

.hero-description:hover {
    color: rgba(254, 226, 226, 1);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-0.5rem);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    color: #ef4444;
    margin: 0 auto 1rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(12deg);
}

.feature-card h3 {
    color: rgba(254, 226, 226, 1);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.feature-card:hover h3 {
    color: #f87171;
}

.feature-card p {
    color: rgba(254, 226, 226, 0.6);
    transition: color 0.3s;
}

.feature-card:hover p {
    color: rgba(254, 226, 226, 0.8);
}

/* Stats Section */
.stats-section {
    background: rgba(0, 0, 0, 0.8);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-0.5rem);
}

.stat-number {
    font-size: 2.25rem;
    font-weight: bold;
    color: #ef4444;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.stat-card:hover .stat-number {
    color: #f87171;
}

.stat-label {
    color: rgba(254, 226, 226, 0.6);
    transition: color 0.3s;
}

.stat-card:hover .stat-label {
    color: rgba(254, 226, 226, 0.8);
}

/* Sponsors Section */
.sponsors-container {
    padding: 5rem 1rem;
}

.sponsor-section {
    position: relative;
    margin-bottom: 2rem;
}

.section-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.2), transparent, rgba(239, 68, 68, 0.2));
    border-radius: 1.5rem;
    filter: blur(1rem);
}

.section-content {
    position: relative;
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
     backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.4);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.icon-wrapper {
    position: relative;
}

.icon-ping {
    position: absolute;
    inset: 0;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    animation: ping 2s infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.section-icon {
    width: 3rem;
    height: 3rem;
    color: #ef4444;
    position: relative;
    z-index: 1;
}

.title-wrapper {
    position: relative;
    cursor: default;
}

.title-wrapper h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: rgba(254, 226, 226, 1);
    transition: all 0.5s;
}

.title-wrapper:hover h2 {
    color: transparent;
    background: linear-gradient(to right, #ef4444, #f97316);
    -webkit-background-clip: text;
}

.title-underline {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #ef4444, #f97316);
    transition: width 0.5s;
}

.title-wrapper:hover .title-underline {
    width: 100%;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}



@media (min-width: 768px) {
    .sponsors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sponsor-card {
    position: relative;
    display: block;
    text-decoration: none;
}

.card-glow {
    position: absolute;
    inset: 2px;
    background: linear-gradient(to right, #ef4444, #f97316);
    border-radius: 0.75rem;
    opacity: 0.75;
    filter: blur(4px);
    transition: opacity 0.5s;
}

.sponsor-card:hover .card-glow {
    opacity: 1;
}

.card-content {
    position: relative;
    background: black;
    border-radius: 0.75rem;
    padding: 2px;
}

.card-inner {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-image {
    width: 100%;  /* Ensures the container takes full width */
    height: auto; /* Keeps natural aspect ratio */
    overflow: hidden; /* Prevents any overflow */
}

.card-image img {
    width: 100%; /* Scales width to fit */
    height: auto; /* Maintains aspect ratio */
    object-fit: cover; /* Ensures image covers the container */
    transition: transform 0.5s;
}

.sponsor-card:hover .card-image img {
    transform: scale(1.1);
}

.card-body {
    padding: 1.5rem;
}

.premium-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.premium-badge i {
    width: 1.25rem;
    height: 1.25rem;
    color: #ef4444;
}

.premium-badge span {
    font-size: 0.75rem;
    color: #ef4444;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(254, 226, 226, 1);
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.sponsor-card:hover .card-body h3 {
    color: #f87171;
}

.card-body p {
    color: rgba(254, 226, 226, 0.6);
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.sponsor-card:hover .card-body p {
    color: rgba(254, 226, 226, 0.8);
}

.visit-link {
    display: flex;
    align-items: center;
    color: #ef4444;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.visit-link i {
    width: 1rem;
    height: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s;
}



.sponsor-card:hover .visit-link {
    color: #f87171;
}

.sponsor-card:hover .visit-link i {
    transform: translateX(0.25rem);
}


/* divider */

.wave-divider {
    position: relative;
    width: 100%;
    top: 1rem;
}

/* Silver Sponsors Section */
/* Live Dark Background with Gradient */
.silver-sponsors {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a1a, #000000);
    color: white;
    position: relative;
    overflow: hidden;
}

/* Animated Background Effect */
.silver-sponsors::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.15) 10%, transparent 70%);
    animation: moveBackground 8s linear infinite;
    z-index: 0;
}

@keyframes moveBackground {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* Media Query for small screens */
/* Shimmer effect for dark theme on screens 468px or smaller */


@media (max-width: 768px) {
    /* Falling Red Particles */
    .falling-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 1;
    }

    .falling-particles span {
        position: absolute;
        display: block;
        width: 2px;
        height: 2rem;
        background: rgba(255, 50, 50, 0.8); /* Red particles */
        border-radius: 50%;
        animation: fall 2s linear infinite; /* Faster falling animation */
        opacity: 0;
    }

    @keyframes fall {
        0% {
            transform: translateY(-10%);
            opacity: 0;
        }
        10% {
            opacity: 1;
        }
        90% {
            opacity: 1;
        }
        100% {
            transform: translateY(110%);
            opacity: 0;
        }
    }


    /* Futuristic Background Effect with Red Gradient */
    .silver-sponsors::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: 
            radial-gradient(circle at 50% 50%, 
                rgb(155, 39, 39) 0%, /* Red gradient */
                rgba(134, 0, 0, 0.1) 30%,
                transparent 70%
            ),
            repeating-linear-gradient(
                45deg,
                transparent 0%,
                transparent 1px,
                rgba(243, 0, 0, 0.05) 2px, /* Red grid lines */
                transparent 3px
            );
        animation: darkOrbit 4s linear infinite; /* Faster rotation */
        filter: blur(20px);
        mix-blend-mode: screen;
        z-index: 1;
    }

    @keyframes darkOrbit {
        0% {
            transform: rotate(0deg) scale(1);
        }
        50% {
            transform: rotate(180deg) scale(1.1);
        }
        100% {
            transform: rotate(360deg) scale(1);
        }
    }

    /* Glowing Pulse Effect with Red */
    .silver-sponsors::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 70% 30%, 
                rgba(255, 86, 86, 0.15) 0%, /* Red glow */
                transparent 80%
            );
        animation: cyberPulse 1.5s ease-in-out infinite; /* Faster pulse */
        z-index: 1;
    }

    @keyframes cyberPulse {
        0%, 100% {
            opacity: 0.8;
            filter: drop-shadow(0 0 5px rgba(255, 50, 50, 0.3)); /* Red glow */
        }
        50% {
            opacity: 1;
            filter: drop-shadow(0 0 15px rgba(255, 50, 50, 0.5)); /* Stronger red glow */
        }
    }
}








.silver-sponsors h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgb(255, 255, 255);
    position: relative;
    z-index: 2;
}

/* Single Sponsor Centered */
.sponsor-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* Sponsor Box */
.sponsor-box {
    background: linear-gradient(to right, rgba(255, 75, 43, 0.15), rgba(255, 65, 108, 0.15));
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
    border: 3px solid rgba(180, 17, 17, 0.5);
    box-shadow: 0 5px 15px rgba(95, 1, 1, 0.3);
    position: relative;
    width: 320px; /* Fixed width to match sponsor image */
}

/* Sponsor Image - Large, Full Width */
.sponsor-box img {
    width: 100%;  /* Ensures full width */
    height: 300px;  /* Increase height as needed */
    object-fit: cover;  /* Ensures the image fills the space without distortion */
    max-height: 250px;  /* Prevents excessive stretching */
    object-fit: contain;  /* Ensures the whole image fits inside without cutting */
    border-radius: 20px 12px 0 0;  /* Rounded only at the top */
    transition: transform 0.3s ease-in-out;
}

/* Sponsor Title */
.sponsor-box h3 {
    margin-top: 12px;
    font-size: 20px;
    color: white;
    
}

/* Icon Overlay */
.icon-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 8px;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
}

/* Hover Effects */
@media (min-width: 769px) {
    .sponsor-box:hover {
        transform: scale(1.05);
        border-color: rgb(143, 5, 5);
        box-shadow: 0 8px 20px rgba(255, 0, 0, 0.5);
    }

    .sponsor-box:hover img {
        transform: scale(1.1);
    }
   
}

/* Clickable Effect for Mobile */
@media (max-width: 768px) {
    .sponsor-box:active {
        transform: scale(1.1);
        border-color: rgb(150, 9, 9);
        box-shadow: 0 6px 15px rgba(158, 4, 4, 0.5);
    }

    .sponsor-box:active img {
        transform: scale(1.05);
    }
    
    .silver-sponsors h2 {
        margin-top: 12px;
        font-size: 15px;  /* Adjust if needed */
        color: white;
        overflow: hidden;  /* Hides overflow */
        max-width: 100%;  /* Ensures it fits inside */
        display: block;  /* Makes sure it doesn’t wrap */
        text-align: center; /* Keeps it centered */
    }
    
    
}









/* CTA Section */
.cta-section {
    background: linear-gradient(to right, rgba(239, 68, 68, 0.2), black);
    padding: 5rem 1rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: bold;
    color: rgba(254, 226, 226, 1);
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.cta-section h2:hover {
    color: #f87171;
}

.cta-section p {
    color: rgba(254, 226, 226, 0.6);
    max-width: 32rem;
    margin: 0 auto 2rem;
    transition: color 0.3s;
}

.cta-section p:hover {
    color: rgba(254, 226, 226, 0.8);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ef4444;
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #dc2626;
    transform: scale(1.05);
}

.cta-button i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 1rem;
    text-align: center;
}

.footer-quote {
    font-size: 1.25rem;
    color: rgba(254, 226, 226, 0.8);
    font-style: italic;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.footer-quote:hover {
    color: rgba(254, 226, 226, 1);
}

.hashtags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hashtag {
    background: rgba(239, 68, 68, 0.2);
    color: rgba(254, 226, 226, 0.6);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.hashtag:hover {
    background: rgba(239, 68, 68, 0.4);
    color: rgba(254, 226, 226, 1);
}

.copyright {
    color: rgba(254, 226, 226, 0.4);
    transition: color 0.3s;
}

.copyright:hover {
    color: rgba(254, 226, 226, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
    }

    .title-wrapper h2 {
        font-size: 2rem;
    }
}