@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');


* {
    font-family: "Mulish", sans-serif;
}


a {
    text-decoration: none !important;
}



.navbar-custom {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}



.sticky {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    background: #fff;
    animation: sticky 2s;
    box-shadow: 0px -1px 4px 0px;
}


.navbar-brand {
    font-weight: bold;
    color: #fe4400 !important;
    font-size: 1.5rem;
}



.nav-link:hover {
    color: #fe4400 !important;
}




img.header-logo {
    width: 82px;
}


.navbar-custom ul.navbar-nav {
    gap: 30px;
}


.navbar-custom .nav-link {
    color: #000 !important;
    font-weight: 600;
    font-size: 18px;
}



marquee.brd {
    font-size: 16px;
    font-weight: 700;
    color: #fe4400;
    padding: 7px 0px 4px;
    text-shadow: 0px 1px 0px;
}







.about-us-section {
    padding: 60px 0 10px;
}

.about-us-section .about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fe4400;
}


.about-us-section h5 {
    font-size: 22px;
    font-weight: bold;
    color: #9e0e0b !important;
    margin-bottom: 10px !important;
}

.about-us-section .about-text {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px !important;
}

.about-us-section .btn-learn {
    margin-top: 10px;
    font-weight: 600;
    background: #fff;
    border: 1px solid #fe4400;
    color: #fe4400;
    font-size: 16px;
}

.about-us-section img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-us-section .about-title {
        font-size: 2rem;
        text-align: center;
    }

    .about-us-section .about-text {
        text-align: center;
    }

    .about-us-section .btn-learn {
        margin: 20px auto 0;
    }
}









.our-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.our-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fe4400 !important;
}

.our-section p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 0px !important;
}

.services-section .service-card {
    background: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
}

.services-section .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.services-section .service-card img {
    height: 230px;
    margin-bottom: 20px;
    transition: 0.3s;
    width: 100%;
    object-fit: cover;
}

.services-section .service-card:hover img {
    filter: none;
}

.services-section .service-card h5 {
    font-weight: bold;
    color: #555555;
    margin-bottom: 5px;
}

.services-section .service-card .btn {
    font-weight: 500;
    border: 1px solid #fe4400;
    color: #fe4400;
    font-size: 16px;
    background-color: #fff !important;
}


@media (max-width: 768px) {
    .our-section h2 {
        font-size: 2rem;
    }

    .services-section .service-card {
        text-align: center;
    }
}





.hero-section {
    position: relative;
    background-image: url(../img/hero-img.jpg);
    background-size: cover;
    background-position: center;
    height: 750px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 15px;
}

.hero-section .hero-title {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 1px;
}

.hero-section .hero-subtitle {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 30px;
    color: #fff;
}

.hero-section .hero-buttons .btn {
    margin: 0 10px;
    padding: 10px 25px;
    font-size: 1rem;
    border-radius: 30px;
}



.hero-section .btn-learn:hover {
    background: #ffffff;
    color: #000;
}

@media (max-width: 768px) {
    .hero-section .hero-title {
        font-size: 2.2rem;
    }

    .hero-section .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 70%;
    }
}





.how-we-do {
    padding: 60px 0;
    background: linear-gradient(45deg, black, transparent), url(../img/how-bg.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.how-we-do h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fe4400;
}

.how-we-do p.section-description {
    text-align: center;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #fff;
}

.how-we-do .how-card {
    background: #ffffff2e;
    border-radius: 4px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    backdrop-filter: blur(4px);
}


.how-we-do .how-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.how-we-do .how-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
}

.how-we-do .how-card h5 {
    font-size: 22px;
    font-weight: 600;
    color: #fe4400;
    margin-bottom: 8px;
}

.how-we-do .how-card p {
    font-size: 0.95rem;
    color: #fff;
}

@media (max-width: 767px) {
    .how-we-do .how-card {
        margin-bottom: 30px;
    }
}





.support-section {
    padding: 60px 0 40px;
}

.support-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fe4400;
}

.support-section p.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 1.1rem;
}

.support-card {
    background: #fff;
    border-radius: 4px;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 20%);
    transition: transform 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
}

.support-card .card-front,
.support-card .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    backface-visibility: hidden;
    border-radius: 4px !important;
}

.support-card .card-front {
    z-index: 2;
    background: #fff;
}

.support-card .card-back {
    z-index: 1;
    transform: translateY(100%);
}

.support-card:hover .card-front {
    transform: translateY(-100%);
}

.support-card:hover .card-back {
    transform: translateY(0);
}

.support-card img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
    object-fit: cover;
}

.support-card h5 {
    font-size: 20px;
    font-weight: bold;
    color: #555555;
    margin-bottom: 0px;
}

.support-card p {
    font-size: 0.95rem;
    color: #444;
    margin-top: 10px;
    text-align: center;
}








.team-section {
    padding: 40px 0 60px;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fe4400;
}

.team-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
}

.team-section .team-card {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    transition: all 0.3s ease-in-out;
}

.team-section .team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.team-section .team-card:hover img {
    transform: scale(1.05);
}

.team-section .team-info {
    margin-top: 15px;
}

.team-section .team-info h5 {
    font-size: 20px;
    font-weight: 600;
    color: #555555;
}

.team-section .team-info span {
    font-size: 0.95rem;
    color: #777;
}

.team-section .social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.team-section .team-card:hover .social-overlay {
    opacity: 1;
}

.team-section .social-icons a {
    color: #fff;
    font-size: 18px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.team-section .social-icons a:hover {
    color: #fe4400;
}

@media (max-width: 767px) {
    .team-section .team-card {
        width: 150px;
        height: 150px;
    }

    .team-section .team-info h5 {
        font-size: 1rem;
    }

    .team-section .social-icons a {
        font-size: 16px;
        margin: 0 6px;
    }
}








.contact-section {
    padding: 40px 0;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fe4400;
    text-align: center;
}

.contact-section p.section-sub {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin: 0 auto 40px;
}

.contact-section .contact-box {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 26%);
    padding: 30px;
}

.contact-section .form-control {
    border-radius: 4px !important;
    box-shadow: none !important;
}

.contact-section .btn-submit {
    background: #fe4400 !important;
    color: #fff !important;
    border-radius: 4px;
    padding: 10px 20px;
}

.contact-section .btn-submit:hover {
    background: #5e2d11;
}

.contact-section .info-box {
    background: #fff;
    padding: 26px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 26%);
}

.contact-section .info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.contact-section .info-item i {
    font-size: 18px;
    color: #fe4400;
    margin-right: 10px;
}

.contact-section .social-icons a {
    font-size: 18px;
    color: #fe4400;
    margin-right: 12px;
}

.contact-section .map-embed {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-section iframe {
    width: 100%;
    height: 228px;
    border: 0;
}

@media (max-width: 767px) {
    .contact-section .map-embed {
        margin-top: 20px;
    }
}


.contact-box h5 {
    font-size: 22px;
    color: #555555;
}







.footer {
    background-color: #242424;
    color: #fff;
    padding: 60px 0 30px;
}

.footer h5 {
    font-size: 22px;
    color: #fe4400;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer a {
    color: #fff;
    text-decoration: none;
}



.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer .footer-logo img {
    width: 94px;
    margin-bottom: 15px;
}

.footer .social-icons img {
    width: 30px;
    margin-right: 4px;
    transition: 0.3s;
    padding: 5px;
    background: #fff;
    border-radius: 4px;
}

.footer .social-icons img:hover {
    transform: scale(1.1);
}

.footer .copyright {
    text-align: center;
    padding-top: 30px;
    font-size: 0.95rem;
    border-top: 1px solid #fe4400;
    color: #fff;
}

@media (max-width: 767px) {
    .footer .col-md-3 {
        margin-bottom: 30px;
    }

    .footer .social-icons img {
        margin-bottom: 10px;
    }
}


.footer i {
    color: #fe4400;
    width: 17px;
}









.breadcrumb-section .overlay {
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.breadcrumb-section h1 {
    font-size: 50px;
    font-weight: 700;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #ddd;
}


.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: #fe4400 !important;
    content: var(--bs-breadcrumb-divider, "/");
}








.gallery-section {
    padding: 60px 0;
}




.gallery-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #373435;
    display: block;
    margin: 4px auto 20px;
    border-radius: 10px;
}



.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 5px;
}

.gallery-item img {
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: 250px;
    object-fit: cover;
}

.gallery-item img:hover {
    transform: scale(1.01);
}


.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 30px;
    padding-bottom: 30px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 100%;
    animation: zoom 0.4s;
    border-radius: 4px;
    object-fit: cover;
}

@keyframes zoom {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.modal-prev,
.modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: white;
    user-select: none;
    padding: 10px;
    transform: translateY(-50%);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 1.8rem;
    }

    .modal-close {
        font-size: 30px;
        top: 20px;
        right: 25px;
    }

    .modal-prev,
    .modal-next {
        font-size: 30px;
    }
}



.gallery-button a {
    padding: 14px 32px;
    background: linear-gradient(45deg, #f58634, #ffcc29);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}







.who-we-are {
    padding: 60px 0 30px;
}

.who-we-are .content h2 {
    font-size: 2.5rem;
    color: #fe4400;
    margin-bottom: 20px;
    font-weight: 700;
}

.who-we-are .content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.who-we-are .image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .who-we-are .content {
        text-align: center;
        margin-bottom: 30px;
    }
}








.mission-section {
    padding: 50px 0 30px;
}

.mission-section .text-content h2 {
    font-size: 2.5rem;
    color: #fe4400;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-section .text-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.mission-section .image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .mission-section .text-content {
        text-align: center;
        margin-bottom: 30px;
    }
}






.vision-section {
    padding: 50px 0 30px;
}

.vision-section .text-content h2 {
    font-size: 2.5rem;
    color: #fe4400;
    font-weight: bold;
    margin-bottom: 20px;
}

.vision-section .text-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

.vision-section .image-content img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 767px) {
    .vision-section .text-content {
        text-align: center;
        margin-bottom: 30px;
    }
}



@media (max-width: 1024px) {

    .hero-section {
        height: 550px;
    }


    .about-us-section h5 {
        font-size: 20px;
    }


    .about-us-section .about-text {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 0px !important;
    }


    .our-section {
        padding-top: 40px;
        padding-bottom: 50px;
    }



    .how-we-do .how-card h5 {
        font-size: 20px;
    }


    .how-we-do .how-card p {
        font-size: 14px;
        font-weight: 400;
    }


    .support-card {
        height: 230px;
    }


    .support-card h5 {
        font-size: 18px;
        margin-bottom: 0px;
    }


    .support-section {
        padding: 50px 0 30px;
    }


    .team-section {
        padding: 30px 0 50px;
    }

    .footer p {
        font-size: 14px;
    }


    .who-we-are .content h2 {
        margin-bottom: 10px;
    }


    .who-we-are .content p {
        color: #555;
        line-height: 1.6;
        margin-bottom: 7px;
        font-size: 15px;
        font-weight: 400;
    }


    .mission-section .text-content h2 {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }


    .mission-section .text-content p {
        color: #555;
        line-height: 1.6;
        margin-bottom: 6px;
        font-size: 15px;
        font-weight: 500;
    }



    .vision-section .text-content h2 {
        font-size: 2.5rem;
        margin-bottom: 5px;
    }


    .vision-section .text-content p {
        color: #555;
        line-height: 1.6;
        margin-bottom: 10px;
        font-size: 15px;
        font-weight: 500;
    }


    .modal-content {
        height: 100%;
    }


    .modal-prev {
        left: 12px;
    }


    .modal-next {
        right: 14px;
    }


    .modal-close {
        position: absolute;
        top: 0px;
        right: 18px;
        color: #fff;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
    }
}



@media (max-width: 430px) {

    .hero-section {
        height: 500px;
    }


    .about-us-section .about-title {
        text-align: start;
    }


    .about-us-section .about-text {
        text-align: left;
    }


    .about-us-section {
        padding: 40px 0 10px;
    }


    .about-us-section .btn-learn {
        margin: 15px auto 20px;
    }

    .our-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .how-we-do .how-card {
        margin-bottom: 0px;
    }


    .support-section {
        padding: 40px 0 30px;
    }


    .support-section h2 {
        text-align: center;
        font-size: 30px;
    }


    .support-card {
        height: 250px;
    }


    .support-card .card-front,
    .support-card .card-back {
        padding: 30px 20px;
    }


    .team-section {
        padding: 20px 0 50px;
    }


    .navbar-custom ul.navbar-nav {
        gap: 0px;
        line-height: 15px;
    }

    button.navbar-toggler {
        border-radius: 0px !important;
        box-shadow: none !important;
    }


    .who-we-are {
        padding: 40px 0 30px;
    }


    .who-we-are .content {
        text-align: left;
        margin-bottom: 0px;
    }


    .who-we-are .content h2 {
        margin-bottom: 10px;
        font-size: 30px;
    }


    .mission-section .align-items-center {
        align-items: center !important;
        flex-direction: column-reverse;
    }


    .mission-section {
        padding: 20px 0 20px;
    }


    .mission-section .text-content {
        text-align: left;
        margin-bottom: 0px;
    }


    .vision-section {
        padding: 20px 0 30px;
    }


    .vision-section .content h2 {
        margin-bottom: 10px;
        font-size: 30px;
    }


    .mission-section .text-content h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    .vision-section .text-content {
        text-align: left;
        margin-bottom: 0px;
    }


    .vision-section .text-content h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }


    .team-section h2 {
        font-size: 30px;
    }


    .modal-content {
        height: 230px;
    }


    .modal-prev,
    .modal-next {
        top: 15%;
    }


    .modal-prev,
    .modal-next {
        font-size: 30px;
    }


    .modal-close {
        top: -10px;
        right: 8px;
    }


    .contact-section .contact-box {
        padding: 20px;
    }


    .contact-section .info-box {
        padding: 20px;
    }

}


@media (max-width: 412px) {

    .hero-section .hero-title {
        font-size: 28px;
    }


    .hero-section {
        height: 400px;
    }


    .about-us-section h5 {
        font-size: 19px;
    }


    .about-us-section .about-text {
        text-align: left;
        font-size: 14px;
    }


    .about-us-section img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        height: 250px;
        object-fit: cover;
    }


    .services-section .service-card {
        padding: 15px;
    }


    .our-section p {
        font-size: 15px;
    }


    .how-we-do h2 {
        font-size: 30px;
    }


    .support-section h2 {
        text-align: center;
        font-size: 28px;
    }


    .modal-prev,
    .modal-next {
        top: 30%;
    }

}




.body-thank {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(120deg, #f0f4ff, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.thank-you-container {
    background: #fff;
    padding: 30px 0px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 560px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
    border-radius: 4px !important;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.thank-you-container h1 {
    font-size: 36px;
    color: #555555;
    font-weight: 600;
    margin-bottom: 15px;
}

.thank-you-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 23px;
}

.thank-you-container a.btn {
    display: inline-block;
    background-color: #fe4400;
    color: #fff;
    padding: 10px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s ease;
}

.thank-you-container a.btn:hover {
    background-color: #fe4400;
}

.footer-message {
    margin-top: 20px;
    font-size: 14px;
    color: #777;
}

.footer-message a {
    color: #07025c;
    text-decoration: none;
    font-weight: 500;
}

.footer-message a:hover {
    text-decoration: underline;
}

.icon-check {
    font-size: 64px;
    color: #555555;
    margin-bottom: 0px;
}


.social-icons.d-flex.align-items-center {
    gap: 14px;
}


@media (max-width: 430px) {



    .body-thank {
        padding: 10px;
    }


    .icon-check {
        font-size: 50px;
        margin-bottom: 0px;
    }

    .thank-you-container p {
        font-size: 14px;
        color: #555;
        margin-bottom: 16px;
    }


    .thank-you-container {
        padding: 30px 7px;
        border-radius: 4px !important;
    }


    .contact-box h5 {
        font-size: 19px;
        color: #555555;
    }
}





input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}



.whatsapp-container {
    position: fixed;
    bottom: 130px;
    right: 20px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.whatsapp-text {
    background: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
}


.whatsapp-text.show {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-float {
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
    background-color: #20b954;
    transform: scale(1.1);
}



@media (max-width: 430px) {

    .whatsapp-container {
        position: fixed;
        bottom: 90px;
        right: 10px;
        display: flex;
        align-items: center;
        z-index: 1000;
    }


}








/* Member Form Section */
.member-form {
    padding: 60px 0;
    background: linear-gradient(135deg, #fdfcfb, #e2d1c3);
    font-family: "Poppins", sans-serif;
}

.member-form .form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 1110px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.member-form h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.member-form p.text-muted {
    font-size: 15px;
    margin-bottom: 25px;
    color: #6c757d !important;
}

.member-form .section-header {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #fe6a03;
    border-left: 5px solid #ff6704;
    padding-left: 12px;
    background: #ffcc001f;
    border-radius: 6px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.member-form .form-control,
.member-form textarea {
    border-radius: 4px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    font-size: 15px;
}

.member-form .form-control:focus,
.member-form textarea:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.3);
}

.member-form .btn-submit {
    background: linear-gradient(135deg, #ff6c02, #ffcc00);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
}


.member-form .btn-submit:hover {
    background: linear-gradient(135deg, #ffcc00, #ff6c02);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.4);
}

.member-form .form-check-label {
    font-size: 15px;
}



@media (max-width: 430px) {


    .member-form .form-wrapper {
        background: #fff;
        padding: 40px 10px;
        border-radius: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        max-width: 1000px;
        margin: 0 auto;
        transition: all 0.3s ease;
    }

    .member-form .form-control,
    .member-form textarea {
        padding: 8px 10px;
        border: 1px solid #ddd;
        transition: all 0.3s ease;
        font-size: 15px;
    }

    .member-bread h1 {
        font-size: 30px;
    }

}




@media (max-width: 412px) {


    .member-form .form-wrapper {
        padding: 40px 10px;
    }



    .member-form h2 {
        font-size: 19px;
    }


    .member-form .form-control,
    .member-form textarea {
        padding: 8px 10px;
        border: 1px solid #ddd;
        transition: all 0.3s ease;
        font-size: 15px;
    }


    .member-bread h1 {
        font-size: 30px;
    }

}