/********** Template CSS **********/
:root {
    --primary: #19902c;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Oxanium', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    height: 266px;
    transition: .5s;
    object-fit: cover;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 9;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}


/* New changes made by BS */
.video-background-container {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen height */
    overflow: hidden;
    display: flex;
    /* Use flexbox */
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the entire container */
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent overlay */
    z-index: 2;
    /* Layer it above the video */
}

.content-overlay {
    position: relative;
    z-index: 3;
    /* Ensures content is above both the video and overlay */
    color: white;
    /* Text color for visibility */
    text-align: center;
    padding: 20px;
}

.content-overlay h1 {
    color: white;
}

.whatsapp-float img {
    width: 50px;
    position: fixed;
    bottom: 100px;
    right: 40px;
    border-radius: 10px;
    z-index: 1;
}

.icon img {
    width: 50px;
    height: 50px;
}

.media {
    display: flex;
    gap: 25px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px #00000029;
}

.media:hover {
    box-shadow: 0px 0px 10px 2px #0909099c;
}

/* .featured-donate.overlay-color, .featured-donate.overlay-color-2, .featured-section.overlay-color, .featured-section.overlay-color-2 {
    position: relative;
}
.featured-section.overlay-color-2:before {
    position: absolute;
    content: "";
    background: #28a745;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: .9;
}
.featured-section.overlay-color-2:before {
    background: #f7ca44;
} */

.btn.btn-white {
    background: #fff;
    color: #000;
}

.btn {
    cursor: pointer;
    border-radius: 0px;
    border: 2px solid transparent;
    font-size: 14px;
    letter-spacing: .2em;
    text-transform: uppercase;
    /* color: #999999; */
    -webkit-box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 20px -5px rgba(0, 0, 0, 0.5);
}

.form-volunteer .form-control {
    border: 2px solid #fff;
    background: none !important;
    margin-bottom: 10px;
    color: #fff !important;
}

.blog-img a {
    font-size: 10px;
}

.bg1 {
    background: linear-gradient(rgb(208 126 84 / 94%), rgb(23 146 42 / 64%)), url(../NEWIMAGES/volunteerbg.jpg) center center no-repeat;
    background-size: cover;
}

.bg2 {
    background: linear-gradient(rgb(208 126 84 / 94%), rgb(23 146 42 / 64%)), url(../NEWIMAGES/volunteerbg.jpg) center center no-repeat;
    background-size: cover;

}

.bg2 input::placeholder,
.bg2 textarea::placeholder {
    color: #f8f8f8;
    /* Change this to your desired color */
    opacity: 1;
    /* Ensure full opacity */
}

/* Donate preloader Start */
.popup-image {
    position: fixed;
    bottom: 20px;
    left: 10px;
    display: block;
    z-index: 1000;
    background-color: #ffffffa1;
    padding: 10px;
    border-radius: 8px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.popup-image img {
    max-width: auto;
    height: auto;
}

.close-btn {
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #17922a;
}

/* Donate preloader End */

/* Make World Happier Start */
.container32 {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.card32 {
    position: relative;
    width: 31%;
    background: radial-gradient(#111 50%, #000 100%);
    overflow: hidden;
    cursor: pointer;
}

.img32 {
    max-width: 100%;
    display: block;
    height: 300px;
    object-fit: cover;
}

.card32 img {
    transform: scale(1.3);
    transition: 0.3s ease-out;
}

.card32:hover img {
    transform: scale(1.1) translateY(-20px);
    opacity: 0.3;
}

.overlay32 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    padding: 15px;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-h1 {
    transform: translateY(30px);
    opacity: 0;
    transition: all .3s ease-out;
}

.text-p {
    transform: translateY(30px);
    opacity: 0;
    transition: all .3s ease-out 0.2s;
}

.link-a {
    display: inline-block;
    background: #17922a;
    color: #fff;
    padding: 5px 20px;
    border-radius: 5px;
    transform: translateY(30px);
    opacity: 0;
    transition: all .3s ease-out 0.4s;
}

.overlay32 .link-a:hover {
    background: #cd764a;
    color: white;
}

.card32:hover .overlay32 .text-h1 {
    opacity: 1;
    transform: translateY(0);
    color: white;
    font-size: 37px;
}

.card32:hover .overlay32 .text-p {
    opacity: 1;
    transform: translateY(0);
}

.card32:hover .overlay32 .link-a {
    opacity: 1;
    transform: translateY(0);
}

/* Make World Happier End */

/* Gallery Start */
.gallery {
    margin: auto;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.gallery-item {
    flex: 1 1 calc(33% - 20px);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    opacity: 1;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item:hover img {
    opacity: 0.6;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    display: flex;
    flex-direction: row;
    margin: 10% auto;
    padding: 20px;
    background: #fff;
    max-width: 70%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}


.modal-left img {
    max-width: 100%;
    height: auto;
    float: left;
    border-radius: 10px;
}

.modal-right {
    margin-left: 20px;
    padding: 0 2em;
    width: 40%;
}

.modal-right p {
    margin: 0;
}

.close {
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 40px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.nav-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.nav-btn:hover {
    background-color: #555;
}

@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 calc(50% - 20px);
    }

    .modal-content {
        flex-direction: column;
    }

    .modal-right {
        margin-left: 0;
        margin-top: 20px;
        width: 80%;
        padding: 0;
    }

    .nav-btn {
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 1 1 100%;
    }
}

/* Gallery End */

.logoheader {
    /* width: 110px;
    height: 97px; */
    width: 112px;
    height: 108px;
    /* margin-bottom: -17px; */


}

.bgfooter {
    background: linear-gradient(45deg, #202d21e0, #181310);
}

.logofooter {
    /* width: 110px;
    height: 97px; */
    width: 131px;
    height: 122px;
    margin-bottom: -35px;

}

.navbar {
    background: linear-gradient(45deg, black, #00000000);
}

.navbar-brand h3 {
    font-size: 12px !important;
    color: #09d51f;
    position: relative;
    left: 15px;
    top: 7px;
}

.navbar-dark .navbar-brand {
    color: #fff;
    display: flex;
    align-items: center;
}


/* mission start */

.grid-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* Default to a single column */
    gap: 30px;
    margin: 70px auto;
    max-width: 1000px;
}

@media (min-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns on larger screens */
    }
}

@media (min-width: 1024px) {
    .grid-container {
        grid-template-columns: repeat(3,
                1fr);
        /* 3 columns on even larger screens */
    }
}

.grid-item {
    text-align: center;
    border-radius: 10px;
    border: 2px solid #fbb03b;
    padding: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
}

.circle-icon {
    display: flex;
    background-color: white;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    overflow: hidden;
    margin: -40px auto 0 auto;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border: 2px solid #fbb03b;
}

.circle-icon img {
    width: 80%;
    height: auto;
}

h3 {
    margin-bottom: 10px;
}

p {
    font-size: 16px;
}

/* cool hover effect */
.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* lift up effect */
.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.grid-item:hover::before {
    opacity: 1;
}

.aboutbg {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../NEWIMAGES/aboutmainbg.jpg) center center no-repeat;
    background-size: cover;
}

.missionicon {
    width: 80px;
    height: 80px;
}

.privacybg {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../NEWIMAGES/privacybg.jpg) center center no-repeat;
    background-size: cover;
}

.pcontainer {
    width: 85%;
    position: relative;
    left: 100px;
}

.pcontainer p {
    text-align: justify;
}

.disclaimerbg {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../NEWIMAGES/discailmerbg.jpg) center center no-repeat;
    background-size: cover;
}

.contactbg {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../NEWIMAGES/contactbg.jpg) center center no-repeat;
    background-size: cover;
}



/* donation start */

.donation-form-container {

    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    margin-top: 171px;
    position: relative;

}

.donatebg {
    background: url(../NEWIMAGES/donatebg.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.helpbg {
    background: url(../NEWIMAGES/heplnow.gif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.forebg {
    background: url(../NEWIMAGES/formbg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.donation-form-title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #3f51b5;
}

.donation-form-description {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.donation-form {
    display: flex;
    flex-direction: column;
}

.donation-form-label {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.donation-form-input {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border 0.3s ease;
}

.donation-form-input:focus {
    border-color: #3f51b5;
    outline: none;
}

.donation-form-button {
    background-color: #17922a;
    color: white;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.donation-form-button:hover {
    background-color: #303f9f;
}

.donation-form-button:active {
    background-color: #283593;
}

/* service section start */
.container-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    background-color: #f4f4f9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.image-box {
    flex: 1;
    max-width: 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-box img:hover {
    transform: scale(1.05);
}

.content-box {
    flex: 1;
    max-width: 45%;
}

.heading {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.paragraph {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container-custom {
        flex-direction: column;
        align-items: center;
    }

    .image-box,
    .content-box {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* service section end */
.cookiesbg {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../NEWIMAGES/cookiesbg.jpg) center center no-repeat;
    background-size: cover;
}

.websitebg {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../NEWIMAGES/websitebg.jpg) center center no-repeat;
    background-size: cover;
}

.returnbg {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../NEWIMAGES/returnbg.jpg) center center no-repeat;
    background-size: cover;
}

/* .foot-abt{
    margin-bottom: 160px;
} */
.para {
    text-align: justify;
}

/* navbar section start */
.lasth1 {
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
    /* Prevents text from wrapping to the next line */
    animation: moveText 40s linear infinite;
    /* Slower movement */
    color: white;
}

@keyframes moveText {
    0% {
        transform: translateX(100%);
        /* Start from the right */
    }

    100% {
        transform: translateX(-100%);
        /* Move to the left */
    }
}

.lastsection {
    /* margin-top: -60px; */
    /* height: 230px; */
    display: flex;
    align-items: center;
    padding: 5px 5px;
}

/* navbar section end */

.footer-para {
    text-align: justify;
    word-spacing: normal;
    hyphens: auto;
    width: 291px !important;
}

p {
    text-align: left !important;
}

ul li {
    text-align: justify !important;
}

span {
    text-align: justify !important;
}

.paramob {
    text-align: center !important;
}

/* team slider start */
/* Style for the team slider */
/* Style for the team slider */
.carousel-item {
    padding: 20px;
}

.team-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
}

.team-img img {
    width: 100%;
    border-radius: 10px;
    height: auto;
}

.team-social {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.team-item:hover .team-social {
    display: block;
}

.team-social a {
    margin: 0 10px;
}

.team-social .fab {
    font-size: 20px;
    color: white;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #17922a;
    border-radius: 50%;
    display: none;
}

.carousel-indicators {
    bottom: -50px;
}

/* Flexbox for multiple items per slide */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-lg-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* team slider end */
/* quote starts here */
.left-box {
    text-align: center;
    border-radius: 33px;
    padding: 20px;
    background-color: #f5f7f9;
    border-right: 1px solid #dee2e6;
}

.left-box img {
    width: 100%;
    height: 80px;
    /* border-radius: 50%; */
    margin-bottom: 15px;
}

.left-box h4 {
    margin-top: 10px;
    font-size: 1.25rem;
}

.spacees {
    font-size: 19px;
}

/* quote ends here */
.spacee22 {
    position: relative;
    /* left: -90px; */
    /* width: 110%; */
}

.team-item .team-img img {
    height: 471px !important;
    transition: .5s;
    object-fit: cover;
}

.member {
    height: 500px !important;
}

.qoutebox {
    width: 30% !important;
    height: 338px !important;
}

.qoutecontainer {
    display: flex !important;
}

.teamq {
    width: 100% !important;
}




/* responsive part */
@media(max-width:768px) {
    .navbar .responsivenav {
        display: block !important;
        position: relative;
        left: -10px;
    }

    .team-item .team-img img {
        height: 292px !important;
        transition: .5s;
        object-fit: cover;
    }

    .logofooter {
        width: 131px;
        height: 122px;
        margin-bottom: 0px;
    }
}