body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    font-size: 40px;
    /* Adjust as needed, corresponds to original image height */
    color: #FFC107;
    /* Yellow color for the plus icon */
}

.menu-icon {
    font-size: 24px;
    color: #333;
    margin-left: 15px;
}

.donate-button {
    background-color: #FFC107;
    color: #000000;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.statistics-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 15px;
    text-align: center;
    background-color: #ffffff;
    margin: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.statistic-item {
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.statistic-item:hover {
    transform: translateY(-5px);
}

.statistic-icon {
    font-size: 40px;
    margin-bottom: 8px;
    color: #333;
}

.statistic-value {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    margin: 4px 0;
}

.statistic-label {
    font-size: 0.85em;
    color: #777;
}

@media screen and (max-width: 480px) {
    .statistics-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
        margin: 10px;
    }

    .statistic-item {
        padding: 10px;
    }

    .statistic-icon {
        font-size: 35px;
    }

    .statistic-value {
        font-size: 1.2em;
    }

    .statistic-label {
        font-size: 0.8em;
    }
}

.Categories-section {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.Categories-section h2 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.8em;
}

.Categories-section p {
    color: #777;
    margin-top: 0;
    margin-bottom: 20px;
}

.search-bar {
    position: relative;
    width: 60%;
    max-width: 400px;
    margin: 0 auto 20px auto;
}

.search-bar input {
    width: 100%;
    padding: 8px 35px 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.9em;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-bar input:focus {
    border-color: #0d47a1;
}

.search-bar .search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #777;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .search-bar {
        width: 80%;
    }
}

.campaign-categories {
    display: flex;
    gap: 15px;
    padding: 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    max-width: 100%;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.campaign-categories::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.category-buttons {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto 30px auto;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
}

.category-button {
    flex: 0 0 auto;
    width: 140px;
    height: 140px;
    padding: 20px 12px;
    background-color: #f8f8f8;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    font-size: 1em;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.category-button i {
    font-size: 2.5em;
    color: #666;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.category-button span {
    background-color: transparent;
    padding: 6px 10px;
    border-radius: 8px;
    width: 90%;
    font-size: 0.9em;
    line-height: 1.3;
    border: none;
    transition: all 0.3s ease;
}

.category-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-button:hover i {
    color: #FFC107;
    transform: scale(1.1);
}

.category-button:hover span {
    background-color: transparent;
    color: #333;
}

.category-button.active {
    background-color: #FFC107;
}

.category-button.active i {
    color: #ffffff;
}

.category-button.active span {
    background-color: transparent;
    color: #ffffff;
}

@media screen and (max-width: 480px) {
    .category-button {
        width: 120px;
        height: 120px;
        padding: 15px 10px;
    }

    .category-button i {
        font-size: 2.2em;
        margin-bottom: 8px;
    }

    .category-button span {
        font-size: 0.85em;
        padding: 4px 8px;
    }
}

.get-in-touch-section {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.get-in-touch-section h2 {
    color: #333;
    margin-bottom: 5px;
}

.get-in-touch-section p {
    color: #777;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    font-size: 35px;
    margin-right: 20px;
    width: 50px;
    text-align: center;
}

/* WhatsApp icon color */
.fa-whatsapp {
    color: #25D366;
}

/* Email icon color */
.fa-envelope {
    color: #EA4335;
}

/* Phone icon color */
.fa-phone-alt {
    color: #34A853;
}

/* Location icon color */
.fa-map-marker-alt {
    color: #4285F4;
}

.contact-details {
    flex-grow: 1;
    text-align: left;
}

.contact-type {
    font-weight: bold;
    color: #333;
    margin: 0;
}

.contact-value {
    color: #555;
    font-size: 0.9em;
    margin: 0;
}

.arrow-icon {
    font-size: 20px;
    margin-left: 15px;
    color: #777;
    /* A subtle color for arrow icons */
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #777;
    font-size: 0.8em;
    text-decoration: none;
    cursor: pointer;
}

.nav-item.active {
    color: #FFC107;
    /* Yellow color from screenshot */
}

.nav-item .nav-icon {
    font-size: 25px;
    /* Adjust as needed, corresponds to original image height */
    margin-bottom: 5px;
}

.nav-item.active .nav-icon {
    color: #FFC107;
    /* Yellow color for active icon */
    filter: none;
    /* Remove previous filter as color is set directly */
}

.nav-item a {
    text-decoration: none;
    /* Remove underline from links */
    color: inherit;
    /* Inherit color from parent nav-item */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    /* Ensure link takes full width of its parent nav-item */
    height: 100%;
    /* Ensure link takes full height of its parent nav-item */
}

footer {
    background-color: #0d47a1;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    margin: 20px;
    margin-bottom: 70px;
    border-radius: 20px;
}

@media screen and (min-width: 1024px) {
    footer {
        max-width: 1100px;
        margin: 20px auto 40px;
        padding: 48px 80px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 80px;
        text-align: center;
        border-radius: 24px;
        margin-bottom: 40px !important;
    }
    .footer-section {
        margin-bottom: 0;
        flex: 0 1 250px;
        min-width: 200px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h3 {
    color: #FFC107;
    /* Yellow color for headings */
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 5px 0;
    display: block;
}

.footer-section ul li a:hover {
    text-decoration: underline;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    font-size: 30px;
    color: #ffffff;
    /* White color for social icons */
    filter: none;
    /* Remove previous filter as color is set directly */
}

.copyright {
    margin-top: 20px;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
}

.whatsapp-fab {
    position: fixed;
    bottom: 90px;
    /* Adjust based on bottom nav height */
    right: 20px;
    background-color: #25D366;
    /* WhatsApp green */
    color: #ffffff;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-weight: bold;
    z-index: 1000;
    /* Ensure it's above other content */
}

.whatsapp-fab .fab-icon {
    font-size: 25px;
    margin-right: 10px;
    color: #ffffff;
    /* White color for WhatsApp FAB icon */
    filter: none;
    /* Remove previous filter as color is set directly */
}

.header-left-logo {
    background-color: #FFC107;
    /* Yellow background */
    width: 50px;
    /* Square size */
    height: 50px;
    /* Square size */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    /* Slightly rounded corners */
}

.logo-icon-square {
    font-size: 30px;
    /* Size of the plus icon */
    color: #000000;
    /* Black color for the plus icon */
}

.cart-icon {
    font-size: 24px;
    color: #333;
}

.categories-section {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    margin: 0 20px 20px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.categories-section h2 {
    display: none;
    /* Hide duplicate heading */
}

.categories-section p {
    color: #666;
    margin: 0 0 25px 0;
    font-size: 1.2em;
    font-weight: 500;
}

.expert-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 15px 0;
}

.expert-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.expert-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    opacity: 1;
    transform: scale(1);
    will-change: transform, opacity;
}

.expert-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.expert-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #FFC107;
}

.expert-info {
    padding: 20px;
    position: relative;
}

.expert-name {
    font-size: 1.2em;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.expert-name::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, #FFC107, transparent);
}

.expert-category {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.expert-category i {
    color: #FFC107;
    font-size: 0.9em;
}

.expert-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.favorite-button {
    background-color: #f8f8f8;
    color: #777;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.favorite-button:hover {
    background-color: #FFC107;
    color: #ffffff;
    transform: scale(1.1);
}

.book-button {
    background-color: #FFC107;
    color: #000000;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.book-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: 0.5s;
}

.book-button:hover {
    background-color: #FFD54F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.book-button:hover::before {
    left: 100%;
}

.book-button i {
    font-size: 1.1em;
}

/* Booking Modal Styles */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #ffffff;
    width: 90%;
    max-width: 500px;
    margin: auto;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.booking-modal.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-size: 1.5em;
    color: #333;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5em;
    color: #666;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #FFC107;
    outline: none;
}

.submit-booking {
    background-color: #FFC107;
    color: #000000;
    border: none;
    padding: 14px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-booking:hover {
    background-color: #FFD54F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

@media screen and (max-width: 480px) {
    .modal-content {
        width: 95%;
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 1.3em;
    }

    .form-group input,
    .form-group select {
        padding: 10px;
    }

    .submit-booking {
        padding: 12px;
    }
}

.hero-section {
    background-color: #FFC107;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(45deg, #FFC107, #FFD54F);
    border-radius: 0 0 50% 50%;
    transform: scale(1, 0.6);
    z-index: 0;
}

.hero-title {
    font-size: 2.5em;
    color: #ffffff;
    z-index: 1;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    letter-spacing: 1px;
}

/* Bottom Up Registration Modal */
.bottom-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: flex-end;
    justify-content: center;
}

.bottom-modal.show {
    display: flex;
}

.bottom-modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 480px;
    padding: 30px;
    border-radius: 20px 20px 0 0;
    text-align: center;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    box-sizing: border-box;
}

.bottom-modal.show .bottom-modal-content {
    transform: translateY(0);
}

.bottom-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #666;
    cursor: pointer;
}

.bottom-modal-form .input-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
    background-color: #fff;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.bottom-modal-form .input-wrapper:focus-within {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

@font-face {
    font-family: 'Twemoji Country Flags';
    src: url('https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1.2/dist/TwemojiCountryFlags.woff2') format('woff2');
}

.bottom-modal-form .country-code {
    padding: 15px 10px 15px 15px;
    background-color: rgba(0, 0, 0, 0.05);
    border: none;
    border-right: 1px solid #ddd;
    outline: none;
    cursor: pointer;
    font-size: 1.1em;
    color: #333;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-family: 'Twemoji Country Flags', Arial, sans-serif !important;
}

.bottom-modal-form .country-code option {
    font-family: 'Twemoji Country Flags', Arial, sans-serif !important;
}

.bottom-modal-form input {
    width: 100%;
    padding: 15px;
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
    background: transparent;
    margin: 0;
}

.bottom-modal-btn {
    width: 100%;
    background-color: #FFC107;
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Drag handle for bottom modal */
.bottom-modal-handle {
    width: 40px;
    height: 4px;
    background-color: #ddd;
    border-radius: 2px;
    margin: 0 auto 15px auto;
    cursor: grab;
}

/* Registration Modal Styles */
.registration-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.registration-modal.show {
    display: flex;
}

.registration-modal .modal-content {
    background-color: #fefefe;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 400px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-subtitle {
    margin-top: 10px;
    color: #666;
    margin-bottom: 25px;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-button {
    background-color: #0d47a1;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.modal-button:hover {
    background-color: #1565c0;
}