@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #4a90e2;
    --primary-dark: #357abd;
    --secondary: #fbb03b;
    --light: #f7fafc;
    --dark: #1a202c;
    --gray: #a0aec0;
    --light-gray: #4a5568;
    --success: #fbb03b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --radius: 8px;
    --transition: all 0.3s ease;
}

body {
    color: var(--light);
    line-height: 1.6;
    background-color: var(--dark);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    color: var(--light);
}

h2 {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--light);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--light);
    font-size: 1.05rem;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-secondary {
    background-color: var(--dark);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.highlight {
    color: var(--secondary);
}

.card {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

/* Header */
header {
    background-color: var(--dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    right: 0;
    z-index: 999;
    padding: 20px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.top-nav {
    display: none;
    align-items: center;
}

.top-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.top-nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.top-nav a:hover {
    color: var(--primary);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.mobile-menu-btn:hover {
    color: white;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('../images/education agency.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: white;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--light);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Trust Strip */
.trust-strip {
    background-color: var(--dark);
    padding: 30px 0;
    border-bottom: 1px solid var(--light-gray);
}

.trust-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.trust-item i {
    color: var(--success);
    font-size: 1.2rem;
}

/* Who We Support */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.support-card {
    text-align: center;
    padding: 40px 30px;
}

.support-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Differentiator Section */
.differentiator {
    background-color: var(--dark);
}

.diff-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
}

.diff-left {
    flex: 1;
}

.diff-right {
    flex: 2;
}

.diff-points {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 40px;
}

.diff-point {
    text-align: center;
    padding: 20px;
}

.diff-point i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Card Carousel Styles */
.cards-container {
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 440px;
    perspective: 1200px;
    margin: 0 0 0 auto;
}

.cards-container .card {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    transform-origin: center center;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2.5rem;
    color: white;
    will-change: transform, opacity, z-index;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Stacking effect with horizontal offset */
.cards-container .card:nth-child(1) {
    z-index: 40;
    transform: translateX(0) scale(1);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    filter: brightness(1) saturate(1.1);
}

.cards-container .card:nth-child(2) {
    z-index: 30;
    transform: translateX(-20px) scale(0.97);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    filter: brightness(0.95) saturate(1.05);
}

.cards-container .card:nth-child(3) {
    z-index: 20;
    transform: translateX(-40px) scale(0.94);
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    filter: brightness(0.9) saturate(1);
}

.cards-container .card:nth-child(4) {
    z-index: 10;
    transform: translateX(-60px) scale(0.91);
    box-shadow:
        0 5px 10px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.04);
    filter: brightness(0.85) saturate(0.95);
}

/* Card gradients */
.card-1 {
    background: linear-gradient(135deg, #8E2DE2 0%, #4A00E0 100%);
}

.card-2 {
    background: linear-gradient(135deg, #FF9966 0%, #FF5E62 100%);
}

.card-3 {
    background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
}

.card-4 {
    background: linear-gradient(135deg, #DA4453 0%, #89216B 100%);
}

/* Card content */
.card-content {
    text-align: center;
    transform: translateX(0);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-icon {
    font-size: 4.5rem;
    margin-bottom: 1.8rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 280px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Hover effect */
.cards-container .card:hover .card-content {
    transform: translateX(5px);
}

.cards-container .card:hover .card-icon {
    transform: scale(1.1);
}

.cards-container .card:hover .card-title {
    transform: translateX(3px);
}

.cards-container .card:hover .card-desc {
    transform: translateX(3px);
}

/* Animation for moving card to the back sideways */
.card-move-to-back {
    animation: moveToBackSideways 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes moveToBackSideways {
    0% {
        transform:
            translateX(0) scale(1) rotateY(0deg);
        z-index: 40;
        opacity: 1;
        filter: brightness(1) saturate(1.1);
    }

    20% {
        transform:
            translateX(-150px) scale(0.95) rotateY(-15deg);
        opacity: 0.9;
        filter: brightness(0.95) saturate(1.05);
    }

    40% {
        transform:
            translateX(-250px) scale(0.92) rotateY(-25deg);
        opacity: 0.7;
        filter: brightness(0.85) saturate(0.9);
    }

    60% {
        transform:
            translateX(-180px) scale(0.93) rotateY(-10deg);
        opacity: 0.8;
        filter: brightness(0.8) saturate(0.88);
    }

    80% {
        transform:
            translateX(-70px) scale(0.92) rotateY(-5deg);
        opacity: 0.9;
        filter: brightness(0.82) saturate(0.92);
    }

    100% {
        transform:
            translateX(-60px) scale(0.91) rotateY(0deg);
        z-index: 10;
        opacity: 1;
        filter: brightness(0.85) saturate(0.95);
    }
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
}

.step h4,
.step p {
    flex-grow: 1;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    border: 2px solid white;
}

/* Budget Options */
.budget-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.budget-card {
    border-top: 4px solid var(--primary);
    position: relative;
}

.budget-card.low {
    border-top-color: var(--success);
}

.budget-card.medium {
    border-top-color: var(--secondary);
}

.budget-card.flexible {
    border-top-color: #4a7fc9;
}

.budget-features {
    list-style: none;
    margin-top: 20px;
}

.budget-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.budget-features li i {
    color: var(--success);
}

/* Form Sticky Button */
.sticky-form-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: var(--primary);
    color: white;
    border-radius: 50px;
    padding: 18px 30px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
}

.sticky-form-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.4);
}

/* Form Modal */
.form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--dark);
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
}

.close-modal:hover {
    color: var(--light);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--light);
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.form-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 10px;
    transition: var(--transition);
}

.progress-step.active {
    background-color: var(--primary);
    color: white;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--dark);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.open {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Footer */
footer {
    background-color: var(--light);
    color: var(--dark);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    display: block;
}

.footer-message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
}

.footer-heading {
    color: var(--dark);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray);
    color: var(--light);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--gray);
    color: black !important;
    font-size: 0.9rem;
}

.copyright p {
    color: black;
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 80px 0;
    }

    /* Enhanced mobile header */
    header {
        padding: 15px 20px;
    }

    .header-container {
        padding: 0;
    }

    .logo {
        font-size: 1.6rem;
        padding: 8px 12px;
        border-radius: 6px;
    }

    .logo img {
        height: 40px;
        width: auto;
    }

    .mobile-menu-btn {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        order: 3;
    }
}

@media (max-width: 768px) {
    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--dark);
        padding: 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        display: none;
        z-index: 999;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: left;
        padding: 0;
        margin: 0;
    }

    .mobile-menu a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: left;
        color: white;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .mobile-menu a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 1.1rem;
        min-height: 48px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sticky-form-btn {
        bottom: 20px;
        right: 20px;
        padding: 15px 25px;
        font-size: 0.9rem;
    }

    .diff-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .diff-left {
        order: 1;
    }

    .diff-left h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .diff-left p {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .diff-right {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .cards-container {
        width: 100%;
        max-width: 350px;
        height: 400px;
        margin: 0 auto;
        perspective: 1000px;
    }

    .cards-container .card {
        width: 80%;
        height: 100%;
        padding: 2rem 1.5rem;
        border-radius: 16px;
        margin-left: 70px;
        align-items: center;

    }

    .cards-container .card:nth-child(1) {
        transform: translateX(0) scale(1);
        z-index: 40;
    }

    .cards-container .card:nth-child(2) {
        transform: translateX(-15px) scale(0.95);
        z-index: 30;
    }

    .cards-container .card:nth-child(3) {
        transform: translateX(-30px) scale(0.9);
        z-index: 20;
    }

    .cards-container .card:nth-child(4) {
        transform: translateX(-45px) scale(0.85);
        z-index: 10;
    }

    .card-icon {
        font-size: 3.5rem;
        margin-bottom: 1.8rem;
    }

    .card-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
        font-weight: 700;
    }

    .card-desc {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 280px;
    }

    .admission-text {
        text-align: center !important;
        font-size: 1.3rem;
        margin-top: 30px;
        padding: 20px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        max-width: 100%;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .hero {
        padding: 60px 0;
    }

    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Footer mobile enhancements */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        gap: 20px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 20px 15px;
    }

    .sticky-form-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Enhanced mobile footer */
    .footer-content {
        gap: 25px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Mobile header improvements */
    .logo {
        font-size: 1.5rem;
    }

    .mobile-menu-btn {
        font-size: 1.3rem;
    }

    /* Mobile hero section */
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    .cta-buttons {
        gap: 15px;
    }

    /* Mobile card carousel */
    .cards-container {
        width: 85vw;
        height: 320px;
        margin: 0 auto;
    }

    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }

    .card-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .card-desc {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Mobile process steps */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    /* Mobile budget options */
    .budget-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mobile support grid */
    .support-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .support-card {
        padding: 30px 20px;
    }

    .support-card i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    /* Mobile FAQ */
    .faq-container {
        margin: 30px auto 0;
    }

    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-answer.open {
        padding: 0 15px 15px;
    }
}

/* Marquee Styles */
.content {
    --gap: 0rem;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap);
    margin-top: 40px;
}

.content .marquee {
    flex-shrink: 0;
    display: flex;
    justify-content: flex-start;
    min-width: 100%;
    gap: 0rem;
    animation: scroll 32s linear infinite;
}


.content .marquee .text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    font-family: 'Raleway', sans-serif;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}



/* Marquee Mobile Responsiveness */
@media (max-width: 768px) {
    .content .marquee .text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content .marquee .text {
        font-size: 1.2rem;
    }
}

/* Ensure mobile menu is hidden on desktop */
@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .top-nav {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .hero {
        padding: 60px 0;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .budget-options {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}