/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e40af;
    --secondary-teal: #0d9488;
    --accent-green: #059669;
    --dark-blue: #1e3a8a;
    --light-blue: #dbeafe;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #475569;
    --white: #ffffff;
    /*--white: ##ff0000;*/
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-blue);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--secondary-teal);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #0c7c71;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-hero {
    padding: 14px 32px;
    font-size: 1rem;
    margin-top: 20px;
    border-radius: var(--radius-md);
}

/* ===== NAVIGATION ===== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    opacity: 0;
    animation: fadeInDown 0.5s ease-out 0.2s forwards;
}

/* Offset the first element after fixed navbar inside .main-content */
.navbar+* {
    padding-top: 70px;
}

/* Mobile CTA Button Row (inside mobile menu) */
.mobile-cta-row {
    display: flex;
    gap: 12px;
    padding: 12px 15px;
    flex-wrap: wrap;
}

.btn-mobile-cta {
    flex: 1;
    min-width: 110px;
    text-align: center;
    justify-content: center;
    font-size: 0.75rem !important;
    padding: 10px 16px !important;
}

.mobile-nav-links .btn-donate {
    color: #ffffff !important;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-stacked a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
}

.logo-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--secondary-teal);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 2px;
}

.desktop-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    padding: 8px 0;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    color: var(--dark-gray);
    text-transform: none;
    border-bottom: 1px solid var(--medium-gray);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-donate {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.65rem;
}

.btn-join {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 8px 20px;
    font-size: 0.65rem;
}

.btn-donate:hover {
    background-color: var(--dark-blue);
    transform: translateY(-1px);
}

.btn-join:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 5px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background-color: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu::-webkit-scrollbar {
    width: 5px;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 10px;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 10px;
}

.mobile-nav-links a {
    display: block;
    padding: 12px 15px;
    color: var(--dark-gray);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.mobile-nav-links a:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.mobile-dropdown-content {
    padding-left: 20px;
    margin-top: 5px;
    border-left: 2px solid var(--medium-gray);
}


/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    margin-top: 0;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.3s forwards;
}

.slider-container {
    /*position: relative;*/
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.active {
    opacity: 1;
}

/* Add these background images */
.slide:nth-child(1) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero1.jpg');
}

.slide:nth-child(2) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero2.jpg');
}

.slide:nth-child(3) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero3.jpg');
}

.slide-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    max-width: 800px;
    width: 90%;
    z-index: 2;
}

/* Slider Controls */
.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    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: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-content h2 {
    margin-bottom: 25px;
    color: var(--dark-blue);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--dark-gray);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    transition: var(--transition);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.6s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.7s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.8s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-item h3 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.9rem;
}

/* ===== GROWTH SECTION ===== */
.growth-section {
    padding: 100px 0;
    background-color: var(--light-gray);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.section-subtitle {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 60px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.chart-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    height: 500px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 100px 0;
    background-color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--light-blue), var(--white));
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.7s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.8s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.9s;
}

.stat-card:nth-child(4) {
    animation-delay: 1s;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #0f172a;
    color: var(--white);
    padding: 80px 0 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.footer-logo .logo-main {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.footer-logo .logo-tagline {
    color: #94a3b8;
    font-size: 0.75rem;
}

.footer-mission {
    color: #94a3b8;
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.social-links a:nth-child(1) {
    animation-delay: 0.8s;
}

.social-links a:nth-child(2) {
    animation-delay: 0.9s;
}

.social-links a:nth-child(3) {
    animation-delay: 1s;
}

.social-links a:nth-child(4) {
    animation-delay: 1.1s;
}

.social-links a:nth-child(5) {
    animation-delay: 1.2s;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-blue);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInLeft 0.5s ease-out forwards;
}

.footer-links li:nth-child(1) {
    animation-delay: 0.8s;
}

.footer-links li:nth-child(2) {
    animation-delay: 0.9s;
}

.footer-links li:nth-child(3) {
    animation-delay: 1s;
}

.footer-links li:nth-child(4) {
    animation-delay: 1.1s;
}

.footer-links li:nth-child(5) {
    animation-delay: 1.2s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer-links a {
    color: #94a3b8;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.contact-info p:nth-child(1) {
    animation-delay: 0.8s;
}

.contact-info p:nth-child(2) {
    animation-delay: 0.9s;
}

.contact-info p:nth-child(3) {
    animation-delay: 1s;
}

.contact-info i {
    color: var(--primary-blue);
    margin-top: 3px;
}

.newsletter h5 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    padding: 12px 25px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--dark-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 25px;
}

.footer-links-bottom a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--white);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #e2e8f0;
    border-top-color: #1e40af;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: #1e40af;
    font-weight: 600;
    font-size: 1rem;
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-top: 20px;
    overflow: hidden;
}

.loader-progress-bar {
    height: 100%;
    background: #1e40af;
    width: 0%;
    transition: width 0.3s ease;
}

/* Main Content */
.main-content {
    min-height: 100vh;
}


/* ===== LOGO STYLES - FIXED TAGLINE POSITION ===== */
/* Header Logo */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.9;
}

.logo-image {
    flex-shrink: 0;
}

.logo-image img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 2px;
    line-height: 1;
}

.logo-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--secondary-teal);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    line-height: 1;
}

/* Footer Logo */
.footer-logo-container {
    margin-bottom: 20px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.9;
}

.footer-logo-image {
    flex-shrink: 0;
}

.footer-logo-image img {
    height: 45px;
    width: auto;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.footer-logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    line-height: 1;
}

.footer-logo-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}


/* ===== FOOTER FIXES ===== */
.footer {
    background-color: #0f172a;
    color: white;
    padding: 80px 0 30px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    display: block;
    opacity: 1;
    visibility: visible;
}

.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 12px !important;
}

.footer-links a {
    color: #94a3b8 !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.footer-links a:hover {
    color: white !important;
}

.social-links {
    display: flex !important;
    gap: 15px !important;
    margin-top: 20px !important;
}

.social-links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    color: white !important;
    text-decoration: none !important;
}

.contact-info p {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
    color: #94a3b8 !important;
}

.newsletter-form {
    display: flex !important;
    margin-top: 15px !important;
}

.newsletter-form input {
    flex: 1 !important;
    padding: 12px 15px !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.newsletter-form button {
    padding: 12px 25px !important;
    background: #1e40af !important;
    color: white !important;
    border: none !important;
    cursor: pointer !important;
}

/* Ensure main content pushes footer down */
.main-content {
    min-height: calc(100vh - 400px);
    /* Adjust based on your footer height */
}

/* Fix footer display */
.footer {
    background-color: #0f172a !important;
    color: white !important;
    padding: 80px 0 30px !important;
    margin-top: auto !important;
    width: 100% !important;
    display: block !important;
}

/* Make sure footer sections are visible */
.footer-col {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fix any potential overlapping */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}