.top_section {
    background: linear-gradient(180deg, #ff8600, #ff860000);
    padding: 10px 0px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo a img {
    width: 100%;
    max-width: 90px;
    object-fit: cover;
}


.logo h4 {
    font-size: 28px;
    color: #003223;
    font-weight: 700;
    margin-bottom: 0;
}

.logo p {
    color: #ff8804;
    margin: 0;
    font-size: 19px;
}

.top_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search_bar {
    width: 60%;
    background: #ffffff;
    padding: 0px;
    display: flex;
    border: 1px solid #0032236b;
    border-radius: 34px;
}

.search_bar input {
    width: 100%;
    background: transparent;
    border: 0;
    outline: none;
    padding: 12px 0px 12px 20px;
    font-size: 15px;
}

.search_bar a {
    background: #003223;
    padding: 11px 25px;
    border-radius: 0px 23px 23px 0px;
    color: #ffffff;
}

.search_bar input::placeholder {
    font-size: 17px;
}

.login_btn a {
    background: #003223;
    padding: 12px 25px;
    border-radius: 38px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.login_btn a i {
    color: #ff8805;
    padding-right: 5px;
}

.menu_all ul {
    display: flex;
}

header {
    background: #003223;
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu_all ul a {
    color: #ffffff;
    font-size: 17px;
    width: 100%;
    display: flex;
    transition: 0.5s;
}

.menu_all ul li {
    position: relative;
    padding: 15px 15px;
}

.menu_all ul li:before {
    position: absolute;
    right: 0;
    height: 50%;
    width: 1px;
    background: #ffffff57;
    content: '';
    top: 0;
    bottom: 0;
    margin: auto;
}

.menu_all ul a:hover {
    color: #ff8702;
}

.menu_all ul li:last-child:before {
    content: none;
    padding-right: 0;
}

.menu_all ul li:first-child {
    padding-left: 0;
}

.hero_section {
    background: linear-gradient(0deg, #9c5200a6, #000000cc), url(../images/banner/banner-main.jpg);
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: 100% 60%;
    display: flex;
    align-items: center;
    padding: 30px 0;
    position: relative;
}

.hero-img img {
    width: 100%;
}

.hero_content h2 {
    color: #fff;
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 4px 6px 0px #003223;
}

.hero_content h6 {
    color: #fff;
    font-size: 17px;
    border-bottom: 1px solid #ff8805;
    width: fit-content;
    padding: 0px 0px 5px 0px;
}

.hero_content h6 span b {
    color: #ff8905;
}

.hero_content p {
    color: #ffffff;
    margin-top: 40px;
    font-size: 15px;
}


.hero_content .main_btn {
    margin-top: 40px;
}

.hero_content .main_btn a {
    padding: 11px 24px;
    border-radius: 44px;
    background: #003223;
    color: #ffffff;
    border: 1px solid #ffffff8c;
    font-size: 17px;
    font-weight: 400;
    transition: 0.5s;
}

.hero_content .main_btn a i {
    padding-right: 4px;
    transition: 0.5s;
}

.hero_content .main_btn a:hover {
    background: transparent;
    border-color: #003223;
}

.hero_content .main_btn a:hover i {
    color: #ff8905;
}

.hero_section .swiper-button-prev:after,
.hero_section .swiper-button-next:after {
    content: none;
}

.hero_section .swiper-button-prev,
.hero_section .swiper-button-next {
    width: 55px;
    height: 55px;
    background: #ffffff;
    border-radius: 50%;
    bottom: 0;
}

.hero_section .swiper-button-prev img,
.hero_section .swiper-button-next img {
    width: 70%;
}



.main_heading h3 {
    width: fit-content;
    margin: auto;
    font-size: 40px;
    font-weight: 700;
    position: relative;
    color: #000000;
}

.main_heading h3 img {
    width: 100%;
    max-width: 60px;
    object-fit: cover;
}



.main_heading p {
    color: #757575;
    font-size: 17px;
    margin-top: 10px;
}


.vision_heading h3 {
    font-size: 35px;
    font-weight: 700;
    color: #000;
}

.vision_heading h5 {
    font-size: 20px;
    font-weight: 700;
    color: #ff8600;
    margin-top: 25px;
    margin-bottom: 0;
}

.vision_heading li {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
    color: #686868;
}

.vision_heading li i {
    color: #003223;
    padding-right: 5px;
}

.vision_heading li b {
    color: #000;
}

.vision_heading h3 span {
    color: #ff8600;
}

.our-approach-image {
    position: relative;
    padding-right: 222px;
    margin-left: 15px;
}

.our-approach-img-1 {
    border-radius: 999px;
}

.our-approach-img-1 img {
    aspect-ratio: 1 / 1.696;
    border-radius: 999px;
    object-fit: cover;
}

.our-approach-img-2 {
    max-width: 364px;
    position: absolute;
    right: 0;
    bottom: 0;
    border: 10px solid #fff;
    border-radius: 999px;
    overflow: hidden;
    z-index: 1;
    animation: slideDas 5s infinite linear;
}

@keyframes slideDas {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-60px);
        /* move down */
    }

    100% {
        transform: translateY(0px);
        /* move back up */
    }
}

.our-approach-img-2 img {
    width: 100%;
    aspect-ratio: 1 / 1.291;
}

.list_vision {
    display: none;
    justify-content: space-between;
    background: linear-gradient(45deg, #ee891b00, #003223, transparent);
    padding: 10px 20px;
    border: 1px solid #ff860003;
    margin-top: 25px;
}

.list_vision h6 {
    margin: 0;
    font-size: 17px;
    color: #000;
}

.services_section {
    background: linear-gradient(0deg, #4d4d4deb, #ff8804e3), url(../images/about/services-bg.jpg);
    padding: 70px 0px;
    background-size: cover;
    background-position: center;
}


.services_box {
    background: #fff;
    text-align: center;
    padding: 20px 10px;
    border: 1px solid #ff8500;
    border-radius: 20px;
    height: 100%;
    transition: 0.5s;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.services_box img {
    width: 100%;
    max-width: 60px;
}

.services_box h5 {
    font-weight: 700;
    margin-top: 15px;
}

.services_box p {
    color: #5b5b5b;
    font-size: 14px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.services_box:before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 0%;
    width: 0%;
    content: '';
    background: #003223;
    z-index: -1;
    border-radius: 20px;
    right: 0;
    margin: auto;
    transition: 0.5s;
}

.services_box:hover:before {
    width: 100%;
    height: 100%;
}

.services_box:hover h5 {
    color: #fff;
}

.services_box:hover p {
    color: #949494;
}

.services_section .main_heading p {
    color: #fff;
}

.services_section .main_heading h3:before,
.services_section .main_heading h3:after {
    content: none;
}

.about_content p {
    margin-top: 15px;
    font-size: 19px;
    color: #2a2a2abf;
    margin-bottom: 0;
}

.about_content h3 {
    font-size: 25px;
    color: #003223;
}

.about_content h5 {
    margin-top: 0px;
}

.about_img img {
    width: 100%;
    animation: slideDas 5s infinite linear;
}

.hamesha_section {
    background: url(../images/about/brick-wall.png);
    padding: 80px 0px 40px 0px;
}

.gaushala-section {
    padding: 80px 0;
    position: relative;
}

.gaushala-section:before {
    position: absolute;
    right: 0;
    bottom: 0;
    content: '';
    width: 100%;
    height: 250px;
    background: url(../images/icons/donations.png);
    max-width: 200px;
    background-size: cover;
    animation: moveRightHand 2s ease-in-out infinite alternate;
}

.gaushala-section:after {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 180px;
    background: url(../images/icons/hand_remove.png);
    max-width: 200px;
    background-size: cover;
    animation: moveLeftHand 2s ease-in-out infinite alternate;
}

/* Keyframes for right-hand animation */
@keyframes moveRightHand {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50px);
    }
}

/* Keyframes for left-hand animation */
@keyframes moveLeftHand {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50px);
    }
}

.gaushala-section img {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    max-width: 550px;
    z-index: -1;
}


.card_dan h4 {
    color: #000;
    font-size: 25px;
    font-weight: 700;
}

.btn_gold {
    background: #ff8600;
    border-color: #ff8600;
    border-radius: 30px;
}

.btn_gold:hover {
    background: #e5790100;
    border-color: #e57901;
    color: #e57901;
}

.contact_modal .modal-title {
    font-size: 25px !important;
    font-weight: 700;
}

.contact_input {
    margin-bottom: 15px;
}

.contact_input label {
    font-size: 17px;
    color: #474747;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact_input .form-control {
    border: 1px solid #80808063;
    padding: 8px 15px;
}

.contact_modal .main_btn {
    margin-top: 20px;
}

.contact_modal .main_btn button {
    width: 100%;
    background: #ff8500;
    padding: 9px 10px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #ff8500;
    transition: 0.5s;
}

.contact_modal .main_btn button:hover {
    background: transparent;
}

.contact_input .form-control:focus {
    border-color: #ff8500;
    box-shadow: 0 0 0 .25rem #fe84002b;
}

.qr_imge img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: auto;
}

.quick_links h4 {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.quick_links h4:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 75px;
    height: 2px;
    background-color: #ff8600;
}

.quick_links h4:after {
    width: 16px;
    border: 2px solid #001b13;
    height: 7px;
    background-color: transparent;
    bottom: -3px;
    left: 40px;
    -webkit-animation: footerLine 7s linear infinite;
    animation: footerLine 7s linear infinite;
    position: absolute;
    content: '';
}

@-webkit-keyframes footerLine {
    0% {
        left: 40px
    }

    50% {
        left: 0
    }

    100% {
        left: 40px
    }
}

@keyframes footerLine {
    0% {
        left: 40px
    }

    50% {
        left: 0
    }

    100% {
        left: 40px
    }
}

.footer_lsit li a {
    color: #bcbcbc;
    font-size: 16px;
    margin-top: 17px;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: 0.5s;
}

.footer_lsit li a i {
    transform: rotate(315deg);
    transition: 0.5s;
}

.footer_lsit li a:hover {
    color: #ff8600;
}

.footer_lsit li a:hover i {
    transform: rotate(360deg);
}

footer {
    background: #001d14;
    position: relative;
    padding: 80px 0px 0px 0px;
    z-index: 1;
}

footer:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: url(../images/about/dot-shape.png);
    background-size: cover;
    z-index: -1;
}


.footer_logo img {
    width: 100%;
    max-width: 90px;
}

.footer_logo p {
    color: #cbcbcb;
    font-size: 15px;
    margin-top: 20px;
}


.footer_logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer_logo a h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 22px;
    font-weight: 700;
}

.footer_logo a p {
    margin: 0;
    color: #ff8600;
}

.footer_contant h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.footer_contant li a {
    display: flex;
    gap: 10px;
    color: #bcbcbc;
    align-items: center;
    font-size: 14px;
}

.footer_contant li a i {
    background: #ff8600;
    color: #ffffff;
    border-radius: 40px;
    width: 33px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_contant li {
    margin-top: 16px;
}

.footer_logo ul {
    display: flex;
    gap: 20px;
}

.footer_logo ul li a {
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ff8600;
    font-size: 16px;
    border-radius: 50px;
    transition: 0.5s;
}

.footer_logo ul li a:hover {
    background: #003425;
    border-radius: 50%;
    color: #fff;
}

.copy_text {
    border-top: 1px solid #80808030;
    padding: 15px 0px;
    margin-top: 80px;
}

.copy_text p {
    color: #fff;
    font-size: 15px;
}

.logo_mobile {
    display: none;
}


.breacrumb_section {
    background: linear-gradient(45deg, #000000cc, #00000085), url(../images/breadcrumb/breadcrumb.jpg);
    width: 100%;
    padding: 90px 0;
    background-size: cover;
    background-position: 40% 44%;
}


.breacrumb_content h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

.breacrumb_content ul {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.breacrumb_content ul li {
    color: #fff;
    font-weight: 500;
}

.breacrumb_content ul li a {
    color: #ff8804;
    font-weight: 500;
}

.breacrumb_content ul li i {
    font-size: 13px;
}


.etihas_box {
    border-radius: 20px;
    padding: 0px;
    text-align: center;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 20px;
}

.itihas_img {
    border-radius: 20px;
    height: 400px;
    position: relative;
    z-index: -1;
}

.itihas_img img {
    width: 100%;
    border-radius: 20px;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.etihas_box h4 {
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.etihas_box p {
    margin: 0;
    color: #ff8600;
}

.itihas_content {
    position: absolute;
    bottom: 10px;
    text-align: center;
    left: 0;
    right: 0;
    transition: 0.5s;
}

.etihas_box:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(0deg, black, #00000069);
    content: '';
    border-radius: 20px;
    display: flex;
}

.etihas_box:hover .itihas_img img {
    transform: scale(1.2);
}

.etihas_box:hover .itihas_content {
    bottom: 40px;
}

.vision_heading p {
    font-size: 17px;
    color: #5a5858;
    line-height: 25px;
}

.history_img-1 {
    border: 1px dashed #b7b7b7;
    padding: 10px;
    border-radius: 10px;
}

.history_img-1 img {
    width: 100%;
    border-radius: 7px;
}

.ithis_main_img h4 {
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    margin-top: 10px;
}

.इतिहास_sections {
    background: #85858514;
    padding: 70px 0px 40px 0px;
    position: relative;
    z-index: 1;
}

.इतिहास_sections::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: url(../images/itihas/pettern.png);
    background-size: contain;
    z-index: -1;
    opacity: 0.1;
    background-position: right;
}

.timilein {
    border-left: 5px solid #ff8600;
    padding-left: 40px;
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
}

.timilein:before,
.timilein:after {
    position: absolute;
    top: -10px;
    width: 20px;
    height: 20px;
    background: #000000;
    content: '';
    border-radius: 50%;
    left: -13px;
}

.time_line_box {
    padding: 15px 0px;
    position: relative;
}

.time_line_box h4 {
    font-size: 23px;
    font-weight: 600;
    color: #000;
    margin-bottom: 3px;
}

.time_line_box p {
    font-size: 17px;
    color: #585858;
    margin: 0;
}

.time_line_box:before {
    position: absolute;
    left: -40px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 3px;
    background: #ff8600;
    content: '';
}

.time_line_box:after {
    position: absolute;
    left: -34px;
    height: 15px;
    width: 15px;
    background: #ff000000;
    content: '';
    bottom: 0;
    top: 0;
    margin: auto;
    border: 3px solid #ff8600;
    transform: rotate(-45deg);
    border-left: 0;
    border-top: 0;
}

.timilein:after {
    bottom: 0;
    top: initial;
}

.ayaam_box {
    border-radius: 10px;
    position: relative;
    text-align: center;
    margin-top: 15px;
}

.ayaam_Img {
    border-radius: 6px;
}

.ayaam_Img img {
    width: 100%;
    border-radius: 5px;
}

.ayaam_content {
    position: absolute;
    bottom: 0px;
    right: 0;
    left: 0;
    background: linear-gradient(90deg, #00000000, #ff8906, transparent);
    border-radius: 5px;
    padding: 8px 0px;
}

.ayaam_content h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 3px;
    color: #fff;
}

.ayaam_content p {
    margin: 0;
    color: #1e1e1e;
}


.main_heading_2 h3 {
    font-size: 35px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.note {
    background: #ff860038;
    padding: 16px 20px;
    border-radius: 15px;
    border-left: 5px solid #ff8600;
    border-right: 5px solid #ff8600;
    margin-bottom: 15px;
}

.note p {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    color: #000;
    text-align: center;
}

.note_2 {
    text-align: center;
}

.note_2 h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

.kusvaha_text li {
    margin-top: 6px;
}

.kusvaha_text p {
    margin-bottom: 0px;
}

.img_qqive img {
    width: 100%;
}

.kaleen_box {
    background: #000000;
    padding: 20px 20px;
    border: 1px solid #8080802e;
    margin-top: 20px;
}

.kaleen_box h1 {
    font-size: 50px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px #ff8600;
}

.kaleen_box h4 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
}

.kaleen_box p {
    color: #909090;
    margin: 0;
}

.kaleen_box_2 {
    background: #ff8600;
}

.kaleen_box_2 h1 {
    -webkit-text-stroke: 1px #ffffff;
}

.kaleen_box_2 p {
    color: #ffffff;
}

.kaleen_box_2 h4 {
    color: #000;
}

.rekha_box {
    background: #fff;
    padding: 15px;
    height: 100%;
}

.rekha_box img {
    width: 100%;
    max-width: 60px;
    margin-bottom: 15px;
}

.rekha_box h4 {
    font-size: 20px;
    font-weight: 600;
}

.rekha_box p {
    font-size: 15px;
    margin: 0;
    color: #6b6a6a;
}


.jude_section {
    margin-bottom: 70px;
}

.jude_section .container {
    background: linear-gradient(90deg, #ff8600, #ffffff, #ff8600);
    padding: 50px 0px;
    border-radius: 20px;
    border: 1px solid #3434345e;
}


.jude_box h3 {
    color: #000000;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 20px;
}

.jude_box p {
    color: #333333;
}

.jude_box button {
    background: #ff8600;
    border: 0;
    padding: 10px 30px;
    font-size: 18px;
    border-radius: 5px;
    color: #000000;
    margin-top: 20px;
}

.marrige_box {
    border: 1px solid #80808059;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.marrige_box img {
    width: 100%;
    border-radius: 6px 6px 0 0;
}

.marrige_box h4 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-top: 15px;
}

.marrige_box p {
    margin: 0;
    font-size: 15px;
    color: #6e6e6e;
}

.merrige_imgs img {
    border-radius: 10px;
    width: 100%;
}


/* Masonry Grid */
.gallery {
    column-count: 3;
    column-gap: 15px;
    max-width: 1200px;
    margin: auto;
    padding: 10px;
}

.gallery img {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border: 5px solid #fff;
    border-radius: 10px;
}

.lightbox:target {
    display: flex;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 35px;
    text-decoration: none;
    font-weight: bold;
}

.program-img img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #80808059;
    padding: 5px;
}

.program_content h3 {
    font-size: 25px;
    font-weight: 600;
    color: #000;
}

.program_content p {
    margin: 0;
    font-size: 17px;
    color: #5e5e5e;
}

.objective_section {
    background: #ff860012;
    padding: 80px 0px;
}

.prabhav_box {
    background: linear-gradient(0deg, #003223, #0b7454);
    text-align: center;
    padding: 15px 10px;
    border-radius: 10px;
}

.prabhav_box h3 {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.prabhav_box p {
    margin: 0;
    font-size: 17px;
    color: #ffffff;
}

.prabhav_box{
    margin-top: 15px;
}

.about_imge img {
    width: 100%;
    border-radius: 25px;
    border: 1px dashed gray;
    padding: 10px;
}


.faq_content h3 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 35px;
    color: #000;
}

.faq_content h5 {
    font-size: 20px;
    font-weight: 700;
    color: #ff8600;
    margin-bottom: 5px;
}


.faq_content .accordion {
    border: 0;
}

.faq_content .accordion .accordion-item {
    border-radius: 30px !important;
    border: 1px solid #80808026;
    margin-bottom: 15px;
}

.faq_content .accordion .accordion-item .accordion-header {
    border-radius: 30px;
}

.faq_content .accordion .accordion-item button {
    border-radius: 30px !important;
    font-size: 22px;
    font-weight: 500;
    color: #000;
}

.faq_content .accordion .accordion-item button:not(.collapsed) {
    background: #ff8600;
    color: #fff;
}

.faq_text {
    margin-top: 15px;
}

.faq_text p {
    font-size: 18px;
    color: #4d4d4d;
    line-height: 28px;
}

.faq_content .accordion .accordion-item button:focus {
    box-shadow: 0 0 0 0.25rem #ff860036;
}

.faq_img img {
    width: 100%;
    max-width: 500px;
    margin: auto;
    display: block;
}


.btnew {
    background: #003223;
    color: #fff;
    border-radius: 30px !important;
}

.btnew:hover {
    background: #00261b00;
    color: #00261b;
    border-color: #00261b;
}

.gallery a h6 {
    color: #ffffff;
    width: 100%;
    position: relative;
    bottom: 20px;
    margin-top: -40px;
    text-align: center;
    background: #003223;
    padding: 13px 0px;
    border-radius: 7px;
}

.child-adoption {
    background: linear-gradient(2deg, #ff8600c9, #0000007a), url(../images/services/smile-img1.webp);
    padding: 60px 20px;
    background-size: cover;
    background-position: 100% 50%;
}

.child-adoption .main_heading h3, .child-adoption .main_heading p {
    color: #fff;
}


.adopt-box {
    text-align: center;
    background: #fff;
    border: 2px solid #ff8600;
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 25px;
}

.adopt-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.adopt-box a {
    padding: 10px 30px;
    font-size: 17px;
    font-weight: 600;
}

.breacrumb_content p {
    color: #fff;
    margin: 20px 0px 35px 0px;
}

.heis_box {
    border: 2px solid #ff8e12;
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 25px 0px;
    background: #ff8e1236;
}

.heis_box h4 {
    font-weight: 700;
    font-size: 20px;
}

.heis_box p {
    margin: 0;
    color: #767676;
}

.respsoe_box .container {
    background: #ff8600;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
}

.respsoe_box .container h5 {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #000;
}

.news_box {
    border: 1px solid #80808040;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 14px;
    height: 100%;
    border-radius: 15px;
}

.news_img {
    width: 100%;
    height: 250px;
    border-radius: 10px;
}

.news_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0px 0px;
}

.news_box h6 {
    color: #ff8600;
    margin-top: 20px;
    font-size: 13px;
}

.news_box a {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_box p {
    margin: 0;
    font-size: 14px;
    color: #5c5b5b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news_multiple h3 {
    font-size: 30px;
    font-weight: 700;
}

.news_multiple .date_news {
    font-size: 14px;
    color: #ff8600;
}

.news_subheading {
    font-weight: 700;
}

.news_multiple p {
    color: #626262;
}

.multiple_img_news {
    margin-top: 30px;
}

.multiple_img_news h4 {
    font-size: 22px;
    font-weight: 600;
}

.multiple_img_news ul {
    list-style: disc;
    padding-left: 20px;
}

.news_sidebar {
    background: #003223;
    padding: 20px 15px;
    border-radius: 15px;
}

.news_sidebar h3 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
}

.side_box_news {
    border-bottom: 1px solid #80808063;
    padding: 15px 0px;
}

.side_box_news a {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    transition: 0.5s;
}

.side_box_news a img {
    width: 75px;
    border-radius: 7px;
    height: 50px;
    object-fit: cover;
}

.side_box_news a h5 {
    margin: 0;
    font-size: 15px;
}

.side_box_news a:hover {
    color: #ff8600;
}

.side_box_news:last-child {
    border: 0;
    padding-bottom: 0;
}

    
    .ayurvad_boxs h3 {
        font-size: 25px;
        font-weight: 700;
        color: #000;
    }
    
    .ayurvad_boxs p {
        color: #626262;
    }
    
    .ayurvad_section-2, .ayurvad_section-4, .ayurvad_section-6, .ayurvad_section-8, .ayurvad_section-10 {
        background: #fdf8f5;
        padding: 40px 0px;
    }
    
        .ayurvad_section-1, .ayurvad_section-3, .ayurvad_section-5, .ayurvad_section-7, .ayurvad_section-9 {
        background: #f0f8f5;
        padding: 40px 0px;
    }
    
    .ayurvad_boxs ul {
        list-style: disc;
        padding-left: 20px;
    }
    
    .ayurvad_boxs ul li {
        padding: 5px 0px;
    }

    #google_translate_element .goog-te-combo {
    padding: 10px 10px;
    border-radius: 38px;
    border: 0;
    outline: none;
}

#google_translate_element  span {
    display: none;
}

.goog-te-gadget {
    color: #ffe0bd !important;
    font-size: 0px !important;
}

.mobile{
    display: none !important;
}


.translated-ltr .logo h4 {
    font-size: 22px;
}

.translated-ltr .logo p {
    font-size: 13px;
}

.translated-ltr .menu_all ul a {
    font-size: 14px;
}

.translated-ltr .menu_all ul li {
    padding: 15px 6px;
}

.donation_btn {
    position: fixed;
    right: 10px;
    bottom: 30px;
    background: #ff8600;
    z-index: 1;
    padding: 10px 40px;
    border-radius: 30px;
    font-weight: 500;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.donation_btn a {
    color: #fff;
    position: relative;
}

.donation_btn a:before {
    width: 10px;
    height: 10px;
    background: #003223;
    content: '';
    position: absolute;
    left: -32px;
    top: -56px;
    border-radius: 50%;
    right: 0;
    margin: auto;
}

.donation_btn span {
    width: 2px;
    height: 65px;
    background: #ff8600;
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: -1;
}

.donation_btn span:before {
    position: absolute;
    left: -7px;
    top: -21px;
    height: 25px;
    background: #ff8600;
    content: '';
    width: 2px;
    transform: rotate(
323deg);
}

.donation_btn span:after {
    width: 25px;
    height: 25px;
    background: #003223;
    content: '';
    position: absolute;
    left: -27px;
    top: -32px;
    border-radius: 50%;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: 0.0;}
  }
