@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --theme-color: #ec2544;
    --primary-color: rgba(236, 37, 68, 0.16);
}

#search-results {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-top: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 0;
    transition: all 0.2s ease-in-out;
    border-radius: 0 0 8px 8px;
}

#search-results .dropdown-header {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 10px 16px;
    color: #495057;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

#search-results .dropdown-item {
    padding: 10px 16px;
    font-size: 0.9rem;
    color: #212529;
    text-decoration: none;
    display: block;
    transition: background-color 0.2s;
}

#search-results .dropdown-item:hover {
    background-color: #f1f1f1;
    color: #000;
}

#search-results .dropdown-item.disabled {
    color: #adb5bd;
    cursor: not-allowed;
}

form[role='search'] {
    position: relative;
    width: 300px;
}

@media (max-width: 576px) {
    form[role='search'] {
        width: 100%;
    }
    #wa-btn-wrapper span {
        display: none;
    }
}

section:first-of-type {
    padding-top: 0 !important;
    margin-top: 0 !important;
}


/* COMMON CSS */

body {
    font-family: 'Figtree', sans-serif;
}

p,
a {
    color: #161616;
}

a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--theme-color);
}


/* Preloader full screen */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Loading dots container */

.loading {
    display: flex;
    gap: 8px;
}


/* Each dot */

.loading span {
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--theme-color);
    border-radius: 50%;
    animation: bounce 1s infinite ease-in-out;
}


/* Delays for bounce timing */

.loading span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading span:nth-child(3) {
    animation-delay: 0.4s;
}

.loading span:nth-child(4) {
    animation-delay: 0.6s;
}


/* Bouncing animation */

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-12px);
        opacity: 1;
    }
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.video-btn {
    background: none;
    border: none;
}

.tiny-heading img {
    vertical-align: middle;
    margin: 0 5px;
}

.section-gap {
    padding: 40px 0;
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
}

.section-heading h3 {
    color: var(--theme-color);
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

.section-heading a {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
    color: rgb(0, 0, 0, 0.4);
    text-transform: uppercase;
    flex: 0 0 auto;
}

.section-heading a.dark {
    color: var(--theme-color);
}

.section-heading a:hover {
    color: #161616;
}

.primary-btn {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #ffffff;
    padding: 14px 30px;
    font-size: 14px;
    line-height: 1.3;
    font-size: 22px;
    line-height: 1.3;
    display: inline-block;
}

.primary-btn:hover {
    background-color: #ffffff;
    color: var(--theme-color);
}

.section-info .tiny-heading {
    color: var(--theme-color);
    font-size: 24px;
    line-height: 1.3;
}

.section-info h3 {
    font-size: 60px;
    line-height: 1.3;
    color: #252b42;
    font-weight: 700;
}

.section-info p {
    color: #737373;
    font-size: 30px;
    line-height: 1.4;
}

.section-img img {
    width: 100%;
}


/* HEADER */

header {
    border-top: 12px solid var(--theme-color);
    position: relative;
}

header nav {
    background-color: var(--primary-color);
}

header .navbar-brand {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 36px;
    line-height: 1.3;
    color: var(--theme-color);
    font-weight: 700;
}

header .navbar-brand img {
    width: 68px;
}

header form {
    position: relative;
}

header form .form-control {
    border-radius: 0;
    padding: 12px 54px 12px 12px;
    border-bottom: none !important;
}

header form button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

header .others {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

header .navbar-nav {
    column-gap: 20px;
}

header .nav-link {
    color: #161616;
}

header .nav-link:hover {
    color: var(--theme-color);
}

header .navbar-toggler {
    outline: none !important;
    box-shadow: none !important;
}


/* FOOTER */

footer {
    margin-top: 80px;
}

footer .footer-section {
    background-color: rgb(236, 37, 68, 0.16);
    padding: 20px 0 !important;
}

footer .navbar-brand img {
    width: 170px;
}

footer .socials {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    column-gap: 20px;
}

footer .links-section h5 button {
    color: var(--theme-color) !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none;
    outline: none;
    box-shadow: none;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    padding: 0;
    pointer-events: none;
}

footer .links-section h5 {
    margin-bottom: 10px;
}

footer .links-section h5 button:after {
    display: none;
}

footer .accordion-item {
    background-color: transparent;
    border: none;
}

footer .collapse:not(.show) {
    display: flex;
}

footer .linkblock {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.swiper-bundle {
    position: relative;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 30px;
    color: #000000;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}


/* UPCOMING EVENTS SECTION */

.events-section .swiper {
    width: calc(100% - 100px);
    margin: 0 auto;
}

.events-section .event-card {
    width: 100%;
    border: 1px solid #dbdbdb;
}

.events-section .event-card img {
    width: 100%;
}

.events-section .event-card .event-name {
    background-color: var(--theme-color);
    padding: 16px 24px;
}

.events-section .event-card .event-name h5 {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 0;
}

.events-section .event-card .event-info {
    padding: 16px 24px 24px;
}

.events-section .event-card .event-info ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    margin-bottom: 20px;
}

.events-section .event-card .event-info ul li {
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
    font-size: 14px;
    line-height: 1.3;
}

.events-section .event-card .event-info ul li div {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.events-section .event-card .event-info ul li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
    flex: 0 0 auto;
}

.events-section .event-card .event-info a {
    background-color: var(--theme-color);
    color: #ffffff;
    border: 1px solid var(--theme-color);
    padding: 8px 20px;
    font-size: 14px;
    line-height: 1.3;
}

.events-section .event-card .event-info a:hover {
    background-color: #ffffff;
    color: var(--theme-color);
}


/* LETS GROW TOGETHER SECTION */

.grow-section .grow-card {
    width: 100%;
    position: relative;
}

.grow-section .grow-card img {
    width: 100%;
}

.grow-section .grow-card h5 {
    font-size: 20px;
    line-height: 1.3;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* SIGNUP SECTION */

.signup-section .signup-wrapper {
    background-color: var(--theme-color);
    padding: 20px;
}

.signup-section .signup-wrapper h5 {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.3;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
}

.signup-section .signup-wrapper a {
    color: #ffffff;
    text-decoration: underline;
    letter-spacing: 2px;
}

.signup-section .signup-wrapper a:hover {
    color: #161616;
}


/* TESTIMONIALS SECTION */

.testimonials-section .swiper-bundle {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-section .swiper {
    width: calc(100% - 100px);
    margin: 0 auto;
}

.testimonials-section .testimonial-card {
    text-align: center;
}

.testimonials-section .testimonial-card img {
    margin-bottom: 30px;
}

.testimonials-section .testimonial-card .testimonial-info {
    max-width: 760px;
    margin: 0 auto;
}


/* OUR STORY SECTION */

.story-section {
    margin: 40px 0;
    background-size: cover;
    background-position: center;
    padding: 250px 16px;
    text-align: center;
}

.story-section .story-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    color: #ffffff;
}

.story-section .story-wrapper h3 {
    font-size: 60px;
    line-height: 1.3;
    margin-bottom: 0;
}

.story-section .story-wrapper p {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.3;
}


/* FEATURES SECTION */

.features-section .feature-card {
    background-color: #f9f9f9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    height: 100%;
}

.features-section .feature-card h6 {
    margin-bottom: 0;
}

.features-section .feature-card p {
    margin-bottom: 0;
}


/* CONTACT SECTION */

.contact-section {
    margin: 40px 0;
}

.contact-section .contact-heading {
    height: 100%;
    background-color: var(--theme-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    row-gap: 10px;
    padding: 20px 50px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-section .contact-heading::after {
    content: '';
    width: 400px;
    aspect-ratio: 1;
    background-color: rgb(255, 255, 255, 0.09);
    border-radius: 50%;
    position: absolute;
    bottom: -200px;
    right: -200px;
    z-index: 1;
}

.contact-section .contact-heading::before {
    content: '';
    width: 200px;
    aspect-ratio: 1;
    background-color: rgb(255, 255, 255, 0.09);
    border-radius: 50%;
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 1;
}

.contact-section .contact-heading p {
    margin-bottom: 0;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.3;
}

.contact-section .contact-heading h3 {
    font-size: 60px;
    line-height: 1.3;
}


/* FORM CSS */

.form-label {
    color: #8d8d8d;
    font-size: 18px;
    line-height: 1.3;
}

.form-control {
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none !important;
    border-bottom: 1px solid #8d8d8d !important;
}

.form-check-input {
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}


/* -- RESPONSIVE ACCORDING BOOTSTRAP BREAKPOINTS -- */


/* BREAKPOINT: 1399px */

@media screen and (max-width: 1399px) {
    .section-info .tiny-heading {
        font-size: 20px;
    }
    .section-info h3,
    .story-section .story-wrapper h3,
    .contact-section .contact-heading h3 {
        font-size: 50px;
    }
    .section-info p,
    .contact-section .contact-heading p {
        font-size: 22px;
    }
}


/* BREAKPOINT: 1199px */

@media screen and (max-width: 1199px) {
    .section-info .tiny-heading {
        font-size: 18px;
    }
    .section-info h3,
    .story-section .story-wrapper h3,
    .contact-section .contact-heading h3 {
        font-size: 40px;
    }
    .section-info p,
    .contact-section .contact-heading p {
        font-size: 20px;
    }
}


/* BREAKPOINT: 991px */

@media screen and (max-width: 991px) {
    footer .navbar-brand img {
        margin: 0 auto;
        display: block;
    }
    .section-heading h3 {
        font-size: 28px;
    }
    .section-heading a {
        font-size: 20px;
    }
    .section-info {
        text-align: center;
    }
    .section-info .tiny-heading {
        font-size: 16px;
    }
    .section-info h3,
    .story-section .story-wrapper h3,
    .contact-section .contact-heading h3 {
        font-size: 32px;
    }
    .section-info p,
    .contact-section .contact-heading p {
        font-size: 18px;
    }
    .section-img {
        display: block;
        max-width: 400px;
        margin: 0 auto;
    }
    .primary-btn {
        padding: 10px 20px;
        font-size: 18px;
    }
    .signup-section .signup-wrapper h5 {
        font-size: 18px;
    }
    .contact-section .contact-heading {
        align-items: center;
        text-align: center;
        padding: 20px 16px;
    }
}


/* BREAKPOINT: 767px */

@media screen and (max-width: 767px) {
    footer .links-section h5 button {
        pointer-events: all;
        font-size: 20px;
    }
    footer .links-section h5 button:after {
        display: block;
    }
    footer .collapse:not(.show) {
        display: none;
    }
    .events-section .event-card {
        max-width: 300px;
        margin: 0 auto;
    }
    .events-section .event-card .event-name h5 {
        font-size: 16px;
    }
    .story-section {
        padding: 100px 0;
    }
}


/* BREAKPOINT: 575px */

@media screen and (max-width: 575px) {
    header .navbar-brand span {
        display: none;
    }
    .section-heading {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .section-heading h3 {
        font-size: 24px;
        text-align: center;
    }
    .section-heading a {
        font-size: 18px;
    }
    .section-info .tiny-heading {
        font-size: 14px;
    }
    .section-info h3,
    .story-section .story-wrapper h3,
    .contact-section .contact-heading h3 {
        font-size: 26px;
    }
    .section-info p,
    .contact-section .contact-heading p {
        font-size: 16px;
    }
    .events-section .swiper {
        width: calc(100% - 50px);
    }
    .events-section .swiper-button-prev::after,
    .events-section .swiper-button-next::after {
        font-size: 20px;
    }
    .events-section .swiper-button-prev {
        left: -10px;
    }
    .events-section .swiper-button-next {
        right: -10px;
    }
    .grow-section .grow-card {
        max-width: 300px;
        margin: 0 auto;
    }
    .testimonials-section .swiper {
        width: calc(100% - 50px);
    }
    .story-section {
        padding: 70px 0;
    }
}

.category-card {
    border-radius: 1.25rem !important;
    overflow: hidden;
}

.category-img {
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 1.25rem 1.25rem 0 0;
    height: 400px;
}

.large-card .category-img {
    height: 400px;
}

.category-card:hover .category-img {
    transform: scale(1.03);
}

.category-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    border-radius: 1.25rem 1.25rem 0 0;
}

.category-overlay h5 {
    color: #fff;
    margin: 0;
    font-size: 25px;
    padding: 8px;
    background: #0000006b;
}

.btnsCard {
    bottom: 0;
    left: 0;
    right: 0;
}