.elementor-32 .elementor-element.elementor-element-ebc080c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-32 .elementor-element.elementor-element-ebc080c.e-con{--flex-grow:0;--flex-shrink:0;}@media(max-width:767px){.elementor-32 .elementor-element.elementor-element-ebc080c{--width:314px;}}/* Start custom CSS for html, class: .elementor-element-ba4cb56 *//* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f4f4f4; /* Background just to highlight the white header */
    padding: 20px;
}

/* Header Container Design */
.main-header {
    background: #ffffff;
    border-radius: 50px; /* Pill shape as per design */
    padding: 10px 30px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    max-width: 1400px;
    margin: 0 auto;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo Styling */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    position: relative;
}

/* Small dot on top right of logo circle */
.logo-circle::after {
    content: '';
    position: absolute;
    top: 2px;
    right: -2px;
    width: 10px;
    height: 10px;
    background: #ffcc33;
    border-radius: 50%;
    border: 2px solid #fff;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 800;
    font-size: 20px;
    color: #111111;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-sub {
    font-weight: 600;
    font-size: 11px;
    color: #ff9900;
    letter-spacing: 3px;
    margin-top: 2px;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-list a {
    text-decoration: none;
    color: #444444;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-list a:hover, .nav-list a.active {
    color: #111111;
    font-weight: 600;
}

/* Donate Now Button */
.cta-button {
    background: linear-gradient(90deg, #ff7e15, #ffbc3b);
    color: white;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button :hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 126, 21, 0.3);
}

/* Mobile Toggle Styling */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .nav-list {
        gap: 15px;
    }
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .main-header {
        border-radius: 25px;
        padding: 12px 20px;
    }

    .mobile-menu-toggle {
        display: block; /* Hamburger icon visible on mobile */
    }

    .nav-menu {
        display: none; /* Hide standard menu */
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        z-index: 100;
    }

    .nav-menu.active {
        display: flex; /* Toggle classes via JS */
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-list a {
        display: block;
        padding: 8px 0;
    }

    .cta-button {
        justify-content: center;
        width: 100%;
    }
}/* End custom CSS */