/*!
Theme Name: Angel Survivors_devyarn
Theme URI: https://www.devyarn.com
Author: devyarn
Author URI:  https://www.devyarn.com
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: angel-survivors
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Angel Survivors is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


/* ------------------------------------------------------- Root  */
:root {
    --primary-color: #003324;
    --secondary-color: #7aa948;
    --color-3: #00ffb3;
    --text-color: #fff;
    --hover-primary-color: #00533a;
    --hover-secondary-color: #8EC454;
}

@media screen and (max-width: 782px) {
    html {
        margin-top: 0 !important;
    }
}

body {
    font-family: "Lato", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
li,
button,
input,
textarea,
input,
select,
optgroup,
option,
textarea {
    font-family: "Lato", sans-serif;
}

/* Loader wrapper */
.page-loader {
  position: fixed;
  inset: 0;
  background: #000;
  /* background color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Loader animation (spinning circle) */
.page-loader .loader {
  width: 50px;
  height: 50px;
  border: 4px solid #fff;
  border-top: 4px solid transparent;
  /* accent color */
  border-radius: 50%;
   animation: 1s linear 0s infinite normal none running spin;
}

/* Hide loader when page is loaded */
body{ overflow: hidden; }
body.loaded { overflow-y: auto; }
body.loaded .page-loader{ display: none; }

.bg-cover {
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-center {
    background-position: center;
}

.object-fit-cover {
    object-fit: cover;
}

.btn {
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-size: 18px;
    font-weight: 400;
    padding: 12px 20px;
    letter-spacing: normal;
    line-height: 1;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn>i {
    font-size: 14px;
}

.btn:hover {
    background: var(--hover-secondary-color);
    border: 2px solid var(--hover-secondary-color);
}

.btn::before {
    display: none;
}

.btn.btn-2 {
    background-color: transparent;
    color: var(--hover-secondary-color);
    border-color: var(--hover-secondary-color);
}

.btn.btn-2:hover {
    color: #fff;
    border-color: #fff;
}

@media screen and (max-width: 782px) {
    html #wpadminbar {
        display: none !important;
    }
}

/* ------------------------------------------------ popup */
/* === Popup Overlay === */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    /* always flex — no display none flicker */
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* === Popup Box === */
.popup-box {
    height: auto;
    max-height: calc(100vh - 90px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    width: 90%;
    padding: 30px 25px;
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.35s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* === Active States === */
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.popup-overlay.active .popup-box {
    transform: translateY(0);
    opacity: 1;
}

/* === Close Button === */
.close-popup-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    color: #444;
    cursor: pointer;
    z-index: 10;
}

.close-popup-btn:hover {
    color: #000;
}

.close-popup-btn>i {
    pointer-events: none;
}

/* === Popup Item === */
.popup-item {
    display: none;
    flex-direction: column;
    height: 100%;
}

.popup-item.active {
    display: flex;
    flex-direction: column;
}

.popup-item>.popup-content {
    overflow-y: auto;
    padding-right: 12px;
    margin-right: -12px;
}

.popup-item>.popup-content::-webkit-scrollbar {
    width: 6px;
}

.popup-item>.popup-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.popup-item>.popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.open-popup {
    cursor: pointer;
}

/* === Headings === */
.popup-item h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* === Success Message === */
.donation-thankyou {
    text-align: center;
}

.donation-thankyou h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 10px;
}
.donation-thankyou p{
    font-size: 18px;
    line-height: 1.6;
}

/* ----------------------------------------------- CF7 form styling */
.wpcf7 label,
.wpcf7-form-control-wrap {
    display: block;
}

.wpcf7 label {
    font-size: 14px;
    margin-bottom: 4px;
}

.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: all 0.3s;
}

.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.form-submit {
    position: relative;
}

.wpcf7 .wpcf7-submit {
    background: #003324;
    color: #fff;
    border: none;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.wpcf7 .wpcf7-submit:hover {
    background: #00533a;
}

.wpcf7 form.submitting .wpcf7-submit {
    background: #8f8f8f;
}

.wpcf7-spinner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    background-color: #fff;
    opacity: 1;
}

.wpcf7-spinner:before {
    background-color: #003324;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    text-align: center;
}
.wpcf7-response-output {
    text-align: center;
}

.wpcf7-not-valid-tip {
    color: #e55a5a;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-top: 2px;
    /* padding: 0 16px; */
}

.wpcf7 form .wpcf7-response-output {
    margin: 14px 0 4px 0;
    padding: 10px 20px;
    border: 2px solid #00a0d2;
    border-radius: 8px;
    line-height: 1.3;
}

/* --------------------------------------------------- Service Form  */
.service-booking-form {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
}

/* -------------------------------------------- Contact Form  */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    gap: 20px;
}

.contact-form-grid .form-full {
    grid-column: 1 / 3;
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-grid .form-full {
        grid-column: 1;
    }
}

/* -------------------------------------------- Owl Slider  */
.owl-carousel .owl-stage {
    display: flex;
}

/* --- Owl Slider --- */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background: var(--secondary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.owl-dot.active,
.owl-dot:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* --- Custom Nav Arrows --- */
.owl-carousel .owl-nav>div {
    background: var(--secondary-color);
    width: 36px;
    height: 36px;
    line-height: 1;
    font-size: 18px;
    color: var(--text-color);
    position: absolute;
    top: calc(50% - 20px);
    transform: translateY(-50%);
    left: 0;
    pointer-events: all;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    z-index: 99;
}
.owl-carousel .owl-nav>div.disabled{
    pointer-events: none;
    background-color: #b8b8b8;
}

.owl-carousel .owl-nav div.owl-prev,
.owl-carousel .owl-nav div.owl-prev:hover {
    left: -16px;
    right: auto;
    transform: translateY(-50%);
}

.owl-carousel .owl-nav div.owl-next,
.owl-carousel .owl-nav div.owl-next:hover {
    left: auto;
    right: -16px;
    transform: translateY(-50%);
}

.owl-carousel .owl-nav div.owl-prev:hover,
.owl-carousel .owl-nav div.owl-next:hover {
    background: var(--hover-secondary-color);
}

/* --------------------------------------------- SLick LightBox  */
.slick-lightbox-close {
    position: absolute;
    top: 15%;
    right: 5%;
    height: 30px;
    width: 30px;
    display: block;
    cursor: pointer;
    background-color: #222;
    color: #DEB257;
}

/* ---------------------------------------------- Section Titles  */
.section-title {
    margin-bottom: 44px;
}

.section-title span {
    margin-bottom: 16px;
}

@media (max-width: 575px) {
    .section-title {
        margin-bottom: 40px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .section-title span {
        margin-bottom: 12px;
    }
}

/* -------------------------------------------- Header  */
.site-logo>a {
    display: block;
}

.site-logo>a>img {
    height: 50px;
    width: auto;
}

.site-header {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 10px 0;
}

.site-header::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: -1;
}

@media screen and (max-width: 782px) {
    .site-header {
        top: 0;
    }
}

.site-header nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .nav-menu {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.site-header .nav-menu a {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    transition: all 0.3s ease-in-out;
    display: block;
}

.site-header .nav-menu a:hover {
    color: var(--hover-secondary-color);
}

.site-header .nav-menu .current_page_item a, 
.site-header .nav-menu .current-menu-item a  {
    color: var(--hover-secondary-color);
    font-weight: 600;
}

.header-btn-wrapper {
    display: flex;
    gap: 16px;
}

.nav-bg-overly {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    display: none;
}

.close-nav {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
    color: #fff;
    outline: none;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.hamburger-menu {
    font-size: 28px;
    line-height: 1;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

@media (max-width: 991px) {
    .site-header nav {
        flex-direction: column;
        align-items: normal;
        justify-content: flex-start;
        gap: 40px;
        position: fixed;
        left: 0%;
        transform: translateX(-120%);
        top: 0;
        width: 100%;
        max-width: 340px;
        height: 100vh;
        background-color: #000;
        padding: 60px 30px 60px 30px;
        text-align: center;
        overflow-y: auto;
        z-index: 9;
        transition: all 0.3s ease-in-out;
    }

    .site-header .nav-menu {
        flex-direction: column;
        gap: 10px;
        flex: none;
    }

    .site-header .nav-menu a {
        padding: 14px 24px;
        color: #fff;
        border-radius: 99px;
        line-height: 1;
    }


    .site-header .nav-menu a:hover {
        background-color: #202020;
    }

    .header-btn-wrapper {
        flex-direction: column;
        gap: 16px;
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }

    .mobile-menu-active .nav-bg-overly {
        display: block;
        z-index: 8;
    }

    .mobile-menu-active .site-header nav {
        transform: translateX(0%);
    }

    .donate-mob-btn {
        padding: 12px 18px;
        font-size: 16px;
    }
}


@media (max-width: 575px) {
    .site-logo>a>img {
        height: 40px;
        width: auto;
    }

    .donate-mob-btn {
        padding: 12px 12px;
    }
}

.site-logo-nav>a>img {
    height: 110px;
    width: auto;
}


/* ---------------------------- Hero section--------------------------- */
.slider-area2{
    background-image: none;
    background-color: #222;
}
.slider-area2 .hero-cap h2 {
    color: #fff;
    font-size: 50px;
    font-weight: 900;
    text-transform: capitalize;
}
.slider-height {
    height: 100vh;
    min-height: 560px;
}

.video-icon a {
    background: var(--text-color);
    width: 60px;
    height: 60px;
    display: inline-block;
    text-align: center;
    line-height: 60px;
    border-radius: 50%
}

.video-icon a i {
    color: #000000
}

.slider-area .hero__caption span,
.slider-area .hero__caption h1,
.slider-area .hero__caption p {
    color: var(--text-color) !important;
}

.slider-area .hero__caption h1 {
    margin-top: 10px;
}

.slider-area .hero__caption p {
    line-height: 1.6;
}

.slider-area .hero__caption a i {
    position: static;
    left: auto;
    top: auto;
}

.slider-area .hero__caption span {
    margin-bottom: 0;
}

.slider-area .hero__caption a.btn {
    display: inline-block;
    border-radius: 99px;
    color: var(--text-color);
    font-weight: 400;
    font-size: 18px;
}

.button-text span {
    color: var(--text-color);
}


@media (max-width: 767px) {
    .slider-area {
        background-image: url('/wp-content/uploads/2025/11/as_MOB.png') !important;
        position: relative;
    }

    .slider-area:after {
        content: "";
        inset: 0;
        position: absolute;
        background-color: #000;
        opacity: 0.5;
    }

    .slider-area>div {
        position: relative;
        z-index: 3;
    }

    .slider-area .hero__caption h1 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .slider-area {
        padding-top: 0 !important;
    }

    .slider-area .hero__caption h1 {
        font-size: 36px;
        line-height: 1.2;
    }
}

/* ---------------------------- Home - Services Section --------------------------- */
.section-title span {
    color: var(--secondary-color);
    display: block;
    font-weight: 600;
}

.section-title h2 {
    color: var(--primary-color);
    display: block;
}

.our-services .single-services {
    border: none;
    background: var(--primary-color);
    border-radius: 0;
    padding: 60px 30px;
}

.our-services .single-services .services-cap {
    padding: 0px;
}

.our-services .single-services .services-cap h3,
.our-services .single-services .services-cap p {
    color: var(--text-color);
}

.our-services .single-services .services-cap h3 {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 20px;
}

.our-services .single-services .services-cap p {
    font-size: 18px;
    line-height: 1.5;
}

.our-services .single-services .services-ion span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1;
}

.our-services .single-services .services-ion span img {
    height: 37px;
    width: auto;
}

/* .our-services .single-services:hover .services-ion span {
    color: var(--hover-primary-color);
} */

.our-services .single-services:hover {
    border: none;
    background: var(--hover-primary-color);
}

.our-services .services-wrap {
    padding: 0 20px;
}



/* ------------------ Home - About Section --------------------------- */
.about-area {
    align-items: normal;
}

.about-area .about-details {
    background-color: var(--primary-color);
    background-image: none;
    padding: 60px 60px;
    height: auto;
}

.about-area .about-img {
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    height: auto;
    min-height: 600px;
}

.about-area .about-details .right-caption {
    max-width: 526px;
    width: 100%;
}

.about-area .about-details .right-caption .section-title h2,
.about-area .about-details .right-caption .about-more p.pera-top,
.about-area .about-details .right-caption .about-more p.pera-bottom {
    color: var(--text-color);
}

.about-area .about-img .info-man h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.about-area .about-img .info-man p {
    line-height: 1.5;
}

.about-area .about-img .info-man {
    color: var(--text-color);
    padding: 50px 30px;
    min-width: 260px;
}

.about-area .about-img .info-man:nth-child(1) {
    background: var(--primary-color);
}

.about-area .about-img .info-man:nth-child(2) {
    background: var(--secondary-color);
}

@media (max-width: 991px) {
    .about-area .about-details .right-caption {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .about-area .about-img .info-man {
        color: var(--text-color);
        padding: 20px 20px;
        min-width: auto;
        flex: 1;
    }

    .about-area .about-img .info-man h3 {
        font-size: 32px;
    }

    .about-area .about-img .info-man p {
        font-size: 16px;
    }

    .about-area .about-details {
        padding: 40px 20px 60px 20px;
    }

    .about-area .section-title {
        margin-bottom: 30px;
    }

    .about-area .about-details .right-caption .about-more .pera-bottom.mb-65 {
        margin-bottom: 30px;
    }
}

/* ------------------ Home - Gallery Section --------------------------- */
.gallery-btn {
    margin-top: 20px;
    text-align: center;
}

.single-gallery {
    cursor: pointer;
}

/* ------------------ Home - contact Section --------------------------- */
.contact-form-main .form-title {
    /* background-image: url(../img/gallery/contact_bg.png); */
    background-image: none;
    background-color: var(--primary-color);
}

.contact-form-main .form-title .section-title h2 {
    color: var(--text-color);
    display: block;
    margin-bottom: 0;
    line-height: 1.3;
}

.contact-form-main .form-title .section-title {
    max-width: 526px;
}

.contact-form-main .contact-form-wrapper>.wpcf7 {
    max-width: 526px;
}

@media (max-width: 991px) {
    .contact-form-main .form-title .section-title {
        max-width: 100%;
        margin-bottom: 0;
        text-align: center;
    }

    .contact-form-main .contact-form-wrapper>.wpcf7 {
        max-width: 100%;
    }
}

/* ------------------ Home - donation Section --------------------------- */

.contact-animal-owner {
    background-color: var(--primary-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-animal-owner .contact_text .section_title p {
    font-size: 24px;
    color: var(--text-color);
    line-height: 1.5;
    margin-top: 30px;
    margin-bottom: 40px;
}

.contact-animal-owner .contact_text .section_title h3 {
    font-size: 38px;
}

@media (max-width: 991px) {
    .contact-animal-owner .contact_text .section_title p {
        font-size: 20px;
        color: var(--text-color);
        line-height: 1.5;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .contact-animal-owner .contact_text .section_title h3 {
        font-size: 30px;
    }
}




/* ------------------ Footer-section --------------------------- */
footer {
    background-color: #f2f2f2;
}

.footer-area .footer-pera p {
    color: var(--primary-color);
    padding-right: 0;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.8;
}

.footer-social a {
    color: var(--primary-color);
    font-size: 30px;
}

.footer-area .footer-title h4 {
    color: var(--primary-color);

}

.footer-area .footer-title ul li a {
    color: var(--primary-color);
    font-weight: 400;
}

.footer-menu .current_page_item a, 
.footer-menu .current-menu-item a  {
    color: var(--hover-secondary-color)!important;
    font-weight: 600!important;
}

.footer-bottom-area .footer-copy-right p a {
    color: var(--primary-color);
    font-weight: 500;
}

.footer-area .footer-title ul li a:hover {
    padding-left: 0;
}

.footer-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.footer-bottom-area .footer-copy-right p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-bottom-area .footer-border {
    padding: 30px 0;
    border-top: 1px solid #dbdbdb;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-list li {
    margin-bottom: 8px;
    display: flex;
    gap: 12px;
}

.contact-list i {
    color: var(--secondary-color);
    width: 20px;
    line-height: 1;
    margin-top: 4px;
}

@media (max-width: 991px) {
    .footer-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .footer-area .footer-title h4 {
        margin-bottom: 20px;
    }

    .contact-list li {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }

    .contact-list li i{
        font-size: 30px;
        margin: 0;
    }

    .contact-list {
        align-items: center;
    }
}

/* ------------------------- Donation  */
.as-donation .as-card {
    width: 100%;
    max-width: 480px;
    background: rgba(234, 234, 234, 0.8);
    backdrop-filter: blur(10px);
    padding: 28px;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-left: auto;
}

.as-donation .as-title {
    font-size: 32px;
    margin: 0 0 6px 0;
    color: var(--primary-color);
    font-weight: 700;
}

.as-donation .as-sub {
    margin: 0 0 18px 0;
    color: #47524f;
    font-size: 16px;
    line-height: 1.5;
}

/* ------------------------ Form  */
.as-donation-form .as-alert {
    background: #e6f4ea;
    color: var(--hover-primary-color);
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 12px;
}

.as-donation-form.as-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.as-donation-form .as-full {
    grid-column: 1 / -1;
}

.as-donation-form label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #24302d;
    font-weight: 600;
}


.as-donation-form input[type="text"],
.as-donation-form input[type="email"],
.as-donation-form input[type="number"],
.as-donation-form input[type="tel"],
.as-donation-form textarea,
.as-donation-form select {
    height: 46px;
    width: 100%;
    padding: 0 16px;
    border: 0;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #bfc7c4;
    transition: all 0.3s ease-in-out;
}

.as-donation-form .as-amounts {
    display: flex;
    gap: 6px;
    align-items: center;
}

.as-donation-form .as-amt-radio {
    display: none;
}

.as-donation-form .amount-label {
    padding: 6px;
    height: 36px;
    border-radius: 99px;
    margin: 0;
    background: #f7f7f7;
    border: 1px solid #bfc7c4;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    flex: 1;
    text-align: center;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
}

.as-donation-form .amount-label.active {
    background: var(--primary-color);
    color: var(--text-color);
    border-color: var(--primary-color);
}

.as-donation-form .amount-label:hover {
    background: var(--primary-color);
    color: var(--text-color);
    border-color: var(--primary-color);
}

.as-custom-wrap {
    position: relative;
    margin-top: 20px;
}

.as-custom {
    padding-left: 26px !important;
}

.as-input-prefix {
    content: "₹";
    position: absolute;
    left: 16px;
    top: 16px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
}

/* Always show number input spinner arrows */
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
    display: inline;
    -webkit-appearance: inner-spin-button !important;
}

.as-donation-form .as-check-label {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 0;
    font-weight: 400;
    color: #24302d;
}

.as-donation-form .as-check-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.as-donation-form .as-submit {
    background: var(--primary-color);
    color: var(--text-color);
    border: 0;
    height: 48px;
    border-radius: 99px;
    cursor: pointer;
    width: 100%;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    transition: all 0.3s ease-in-out;
}

.as-donation-form .as-submit:hover {
    background: var(--hover-primary-color);
}

/* fix focus selector and add visible outline for accessibility */
.as-donation-form input:not(.as-certificate):focus,
.as-donation-form textarea:focus,
.as-donation-form select:focus,
.as-donation-form .amount-label:focus {
    border-color: var(--primary-color);
}

.as-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.as-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loader spinner */
.as-submit .loader {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .as-donation .as-card {
        padding: 30px;
        box-shadow: none !important;
        margin: 0 auto;
    }

    .as-donation .as-title {
        font-size: 28px;
    }

    /* ------------------------ Form  */
    .as-donation-form.as-grid {
        grid-template-columns: 1fr;
    }

    .as-donation-form .as-custom {
        width: 100%;
    }

    .as-donation-form .amount-label {
        padding: 20px 6px;
    }

    .as-custom-wrap {
        margin-top: 0px;
    }

    .as-donation-form {
        width: 100%;
    }

    .donation-bg {
        background-image: none !important;
    }
}

@media (max-width: 575px) {
    .as-donation-form .as-card {
        padding: 20px;
    }
}

/* ---------------------------------------------------- Verify Donations */
/* Verifying Overlay (full-page loader) */
.verifying-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.verifying-box {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
}

.verifying-box p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 0;
}

.donation-loader {
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top-color: #3498db;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ----------------------------------- All Inner Page Banner  */
.slider-height2 {
    height: 300px;
}