@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

main {
    background: #FFF;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: bisque;
    border-color: var(--main-color);
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background-color: var(--second-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-color: 10px;
}

:root {
    --main-color: #ffc107;
    --second-color: #2f2222ea;
    --title-color: #db1e4a;
    --subtitle-color: #8d8d8d;
}

body {
    font-family: "Lexend", sans-serif;
    min-height: 100vh;
    height: auto;
    overflow-x: hidden;
    position: relative;
    font-size: 14px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.section {
    padding: 90px 0 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 50px;
}

.btn {
    background-color: var(--main-color);
    border: 2px solidv var(--main-color);
    padding: 10px 15px;
    color: #fff;
    font-size: 16px;
    border-radius: 10px;
    transition: .4s;
}

.btn:hover {
    background-color: transparent;
    color: var(--main-color);
}

.btn i {
    font-size: 20px;
    margin-left: 10px;
}

.section_title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: .8;
    color: #222;
    position: relative;
    margin-bottom: 100px;
    padding-bottom: 20px;
}

.section_title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    border-color: var(--main-color);
}

.section_title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border-color: var(--main-color);
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
}

/* Header Section */
header {
    position: fixed;
    width: 100%;
    /* padding: 20px 0; */
    z-index: 1000;
}

header.active {
    background-color: #fff;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    border: 1px solid #eee;
    margin-top: 25px;
}

.logo {
    width: 150px;
    height: auto;
    display: flex;
    align-items: center;
}

.menu {
    white-space: nowrap;
    transition: .5s;
    z-index: 999;
    position: relative;
}

.menu_item {
    display: inline-block;
}

.menu_link {
    padding: 5px 10px;
    position: relative;
    transition: .4s;
    color: var(--second-color);
    font-weight: 500;
}

.menu_link::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    transform: scale(0);
    transition: .4s;
}

.menu_link:hover {
    color: var(--main-color);
}

.drop_link {
    padding: 5px 10px;
    position: relative;
    transition: .4s;
    color: var(--second-color);
    font-weight: 500;
}

.drop_link::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--main-color);
    transform: scale(0);
    transition: .4s;
}

.drop_link:hover {
    color: var(--main-color);
}

.active-link {
    color: var(--main-color);
}

.menu_link.active-link::before,
.menu_link:hover:before {
    transform: scale(1);
}

.close_icon {
    font-size: 25px;
    position: absolute;
    top: 30px;
    right: 250px;
    z-index: 1000;
    color: var(--main-color);
    cursor: pointer;
    display: none;
}

.toggle_icon {
    font-size: 32px;
    display: none;
    cursor: pointer;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    header .container{
        border-radius: 0;
        border: 0;
        margin-top: 10px;
    }
    .hero {
        padding-top: 85px !important;
    }
    .grid {
        grid-template-columns: 1fr;
    }

    header {
        padding: 10px 0;
    }

    .container {
        padding: 0 30px;
    }

    .menu {
        position: absolute;
        right: 0;
        top: 0;
        background-color: #eee;
        height: 100vh;
        padding-top: 100px;
        width: 300px;
        text-align: center;
        transform: translateX(110%);
        box-shadow: -10px 0 20px rgba(0, 0, 0, .15);
    }

    .menu.active {
        transform: translateX(0);
    }

    .menu_item {
        display: block;
        margin: 20px 0;
    }

    .menu_link {
        color: var(--second-color);
    }

    .toggle_icon {
        display: block;
    }

    .close_icon {
        display: block;
    }

    .map-section {
        padding: 0;
    }

}

/* hero section */
.hero {
    padding-top: 140px;
    position: relative;
    display: block;
}

.hero_container {
    align-items: center;
}

.hero_container h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    /* text-transform: uppercase; */
}

.hero_container h1 {
    font-size: 40px;
    font-weight: 500;
    font-family: "Lexend", sans-serif;
    white-space: nowrap;
    margin-bottom: 10px;
    color: var(--title-color);
}

.hero_container p {
    margin: 10px 0 40px;
    color: var(--second-color);
    font-size: 16px;
}

.hero_container .btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
}

.hero_social {
    display: flex;
    column-gap: 20px;
}

.hero_social a {
    font-size: 22px;
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    transition: 50%;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.hero_social a:hover {
    color: var(--main-color);
    box-shadow: 0 0 10px var(--main-color);
}

.hero_img {
    text-align: right;
}

@media screen and (max-width: 768px) {
    .hero_content h4 {
        font-size: 16px;
    }

    .hero_content h1 {
        font-size: 32px;
    }

    .hero_content p {
        font-size: 15px;
    }
}

@media sreen and (max-width: 576px) {
    .hero_container {
        grid-template-columns: 1fr;
        row-gap: 2rem;
        justify-content: center;
    }

    .hero_content {
        order: 2;
        text-align: center;
    }

    .hero_social {
        justify-content: center;
    }

    .hero_img {
        text-align: center;
    }
}

/* SLider====================== */

/* Container for the slides */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    overflow: hidden;
    border-radius: 25px;
}

/* Slides */
.mySlides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Each slide */
.slide {
    min-width: 100%;
    box-sizing: border-box;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    z-index: 1;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Dots */
.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot:hover {
    background-color: var(--main-color);
}

.dot.active {
    background-color: var(--main-color);
}

/* Hide the dots container initially */
.dot-container {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

/* Dropdown Menu Styling */
.dropdown {
    position: relative;
}

.dropdown_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 250px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s, transform 0.3s;
}

.dropdown:hover .dropdown_menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown_item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.dropdown_item:hover {
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown_icon {
    width: 24px;
    height: auto;
    margin-right: 10px;
}

.dropdown_link {
    text-decoration: none;
    color: var(--second-color);
    font-weight: 500;
    transition: color 0.3s;
}

.dropdown_link:hover {
    color: var(--main-color);
}

/* Icon Conatiner */
.extra-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.info-item {
    position: relative;
}

.image-container {
    position: relative;
}

.image-container img {
    width: 15%;
    height: auto;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    width: calc(75% - 20px);
    box-sizing: border-box;
}

.overlay-text p {
    margin: 0;
    font-size: 18px;
    text-align: left;
}

.span-name {
    color: var(--main-color);
    font-weight: 500;
}

.pt {
    padding: 50px 0;
}

.pb {
    padding-bottom: 50px;
}

.space-pb {
    padding-top: 60px;
}

.middle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.middle img {
    border-radius: 10px;
    width: 100%;
}

/*****************************
    Footer
*****************************/
.footer {
    background-color: #f8f9fa;
    padding: 40px 0;
    color: var(--second-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    max-width: 200px;
}

.footer-address,
.footer-phone,
.footer-email {
    margin-bottom: 10px;
    margin-top: 9px;
    font-size: 14px;
}

.footer-phone a,
.footer-email {
    color: var(--second-color);
    text-decoration: none;
    font-weight: normal;
}

.footer-phone a:hover,
.footer-email:hover {
    color: var(--main-color);
}

.footer-title {
    color: var(--main-color);
    margin-bottom: 15px;
    font-size: 17px;
}

.footer-link-group {
    display: flex;
    gap: 20px;
}

.footer-link-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-group ul li {
    margin-bottom: 10px;
}

.footer-link-group ul li a {
    color: var(--second-color);
    text-decoration: none;
    font-size: 15px;
}

.footer-link-group ul li a:hover {
    color: var(--main-color);
}

.badge {
    background-color: #28a745;
    color: white;
    padding: 2px 5px;
    border-radius: 3px;
}

.footer-bottom {
    background-color: #f1f1f1;
    padding: 20px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.footer-bottom-left {
    display: flex;
    gap: 10px;
}

.social-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.social-icons li {
    display: inline-block;
}

.social-icons li a {
    color: var(--second-color);
    font-size: 18px;
    text-decoration: none;
}

.social-icons li a:hover {
    color: var(--main-color);
}

.footer-bottom-right {
    text-align: right;
}

.footer-bottom-right p {
    margin: 0;
}

.footer-bottom-right a {
    color: #007bff;
    text-decoration: none;
}

.footer-bottom-right a:hover {
    color: var(--main-color);
}

/*************************
         Responsive
  *************************/
@media (max-width: 1024px) {
    .slider {
        width: 900px !important;
    }

    .hero_container h4 {
        font-size: 16px;
    }

    .hero_container h1 {
        font-size: 25px;
    }

    .hero_container p {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 25px !important;
    }

    .section-title {
        margin-bottom: 20px !important;
    }

    .section-title p {
        font-size: 14px !important;
    }

    .footer-address,
    .footer-phone,
    .footer-email {
        font-size: 12px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-link-group ul li a {
        font-size: 14px;
    }

    .footer-bottom-container {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .footer-row {
        flex-direction: column;
    }

    .footer-link-group {
        flex-direction: column;
    }

    .footer-link-group ul {
        margin-bottom: 20px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-right {
        text-align: center;
    }

    .slider {
        width: 600px !important;
    }
}

@media (max-width: 575px) {
    .footer-logo {
        max-width: 120px;
    }

    .footer-address,
    .footer-phone,
    .footer-email {
        font-size: 14px;
    }

    .footer-title {
        font-size: 16px;
    }

    .social-icons {
        gap: 5px;
    }

    .social-icons li a {
        font-size: 16px;
    }

    .slider {
        width: 350px !important;
    }

    .slider::after {
        background: none !important;
    }

    .feature-card {
        width: 100% !important;
    }
}

/* Clients */
.slider {
    /* background: white; */
    /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125); */
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 1150px;
}

.slider::before,
.slider::after {
    /* background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); */
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.client {
    height: 100px;
    width: 250px;
}

.client img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

@media (min-width: 575px) {
    .mid-pro-phone {
        display: none;
    }
}

@media (max-width: 575px) {
    .mid-pro {
        display: none;
    }
}

/* back to top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: var(--main-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.back-to-top:hover {
    background-color: #db1e4a;
}

.back-to-top.show {
    display: block;
    opacity: 1;
    transform: translateY(-10px);
}

.back-to-top i {
    margin: 0;
    line-height: 50px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Animation Effects */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    /* Start slightly lower */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* This class is applied when the element is in view */
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-20px);
    /* Start slightly to the left */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* This class is applied when the element is in view */
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* General styles for feature cards */
.feature-card {
    opacity: 0;
    transform: translateY(20px);
    /* Start slightly lower */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* This class is applied when the element is in view */
.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Apply staggered delay to each feature card */
.feature-card:nth-child(1) {
    transition-delay: 0s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.4s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.6s;
}

.feature-card:nth-child(5) {
    transition-delay: 0.7s;
}

.feature-card:nth-child(6) {
    transition-delay: 0.9s;
}


/* General styles for feature cards */
.faded {
    opacity: 0;
    transform: translateY(20px);
    /* Start slightly lower */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* This class is applied when the element is in view */
.faded.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Apply staggered delay to each feature card */
.faded:nth-child(1) {
    transition-delay: 0s;
}

.faded:nth-child(2) {
    transition-delay: 0.2s;
}

.faded:nth-child(3) {
    transition-delay: 0.4s;
}

.faded:nth-child(4) {
    transition-delay: 0.6s;
}

/* CARRER PAGE CSS */

.underline {
    display: inline-block;
    border-bottom: 2px solid black;
    padding-bottom: 2px;
    border-color: var(--main-color);
}

/* Banner Styles */
.banner {
    background-color: var(--main-color);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.banner p {
    font-size: 18px;
}

/* Job Listings Styles */
.job-openings {
    padding: 40px 20px;
    text-align: center;
}

.job-openings h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.job-listings {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.job-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    margin: 10px;
    padding: 20px;
}

.job-card h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

.job-card p {
    font-size: 15px;
    margin-bottom: 15px;
}

.apply-btn {
    background-color: var(--main-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.apply-btn:hover {
    background-color: #db1e4a;
}

/* Benefits Section */
.benefits {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}

.benefits h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.benefits ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    font-size: 16px;
}

/* How to Apply Section */
.how-to-apply {
    padding: 40px 20px;
    text-align: center;
}

.how-to-apply h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.close-btn {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    float: right;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

form .form-group {
    margin-bottom: 15px;
}

form .form-group label {
    display: block;
    margin-bottom: 5px;
}

form .form-group input {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

form .form-group input:focus {
    border-color: var(--main-color);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.submit-btn {
    background-color: var(--main-color);
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #db1e4a;
}

.heading-job {
    font-size: 17px !important;
    margin: 10px 0 !important;
}

/* REsponsive CARRER PAGE CSS */
@media screen and (max-width: 768px) {
    .banner h1 {
        font-size: 30px;
    }

    .banner p {
        font-size: 14px;
    }
}

/* END CARRER PAGE CSS */

/* Whatsapp Floating Icon */
a {
    text-decoration: none;
}

.floating_btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: "Lexend", sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}



/* login page  */

.login-container .logo {
    width: 200px;
    margin-bottom: 30px;
}

.login-container {
    max-width: 400px;
    margin: 80px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    border-color: #db1e4a;
    box-shadow: 0 0 5px rgba(41, 181, 115, 0.5);
}

.btn-login {
    background-color: var(--main-color);
    border: none;
}

.btn-login:hover {
    background-color: #db1e4a;
    color: #fff;
}

/* navbar btn css  */
.navbtn {
    font-family: "Lexend", sans-serif;
    padding: 5px 15px;
    font-size: 16px;
    cursor: pointer;
    background-color: var(--main-color);
    color: white;
    border: none;
    border-radius: 5px;
    margin: 20px 10px;
}

.navbtn a {
    text-decoration: none;
    color: white;
    display: block;
    /* Ensures full clickable area */
}

.navbtn:hover {
    background-color: #db1e4a;
}

@media (max-width: 768px) {
    .navbtn {
        display: block;
        margin: 5px auto;
        width: 100px !important;
        text-align: center;
    }
}

.text-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 50px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.subtitle {
    font-size: 16px;
    color: #6c757d;
}
.mission-vision {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 10px 5px;
    text-align: center;
    margin: 30px;
}
.mission-vision img{
    width: 60px;
    margin-bottom: 20px;

}
.box {
    flex: 1 1 40%; /* Flex-grow, flex-shrink, flex-basis */
    max-width: 40%; /* Ensures two in a row on large screens */
    padding: 20px;
    /* border: 2px solid #db1e4a; */
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.219);
    height: 260px;
    background-color: white;
}
.mt-2{
    margin-top: 10px;
}
/* Responsive Design: Stack vertically on smaller screens */
@media screen and (max-width: 768px) {
    .box {
        flex: 1 1 100%; /* Full width on small screens */
        max-width: 100%;
    }
}


