:root {
    --primary: #42A690;
    --primary-light: #58c4ac;
    --accent: #f5a623;
    --text-dark: #4a5568;

    --text-light: #666;
    --white: #ffffff;
    --bg-light: #e5f6f0;

    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

p {
    text-align: justify;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    color: var(--primary);
}


/* Featured Animals Slider Custom Styles */
.featured-animals {
    padding: 70px 0 !important;
}

.featured-animals-container {
    position: relative;
    padding: 0 10px;
}

.featured-animals-slider {
    padding: 10px 0 30px !important;
    /* Added bottom padding to prevent cutting */
}

.animal-next,
.animal-prev {
    width: 45px !important;
    height: 45px !important;
    background: var(--white) !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: var(--primary) !important;
    top: 35% !important;
    /* Positioned centered to cards */
}

.animal-next {
    right: -20px !important;
}

.animal-prev {
    left: -20px !important;
}

.animal-next:after,
.animal-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

.animal-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 0px !important;
}

.animal-pagination .swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    background-color: #ffbd59;
    color: #1a202c;
}

.btn-primary {
    background-color: #ffbd59;
    color: #1a202c;
}

.btn-primary:hover {
    background-color: #e5aa50;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
}

.btn-outline {
    background-color: #000000;
    border: 2px solid #000000;
    color: var(--white);
}

.btn-outline:hover {
    background-color: #ffbd59;
    color: #1a202c;
    border-color: #ffbd59;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    transition: all 0.3s ease;
}

.main-header.scrolled .navbar {
    height: 70px;
}

.navbar-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
}

.nav-links>li>a:hover {
    color: var(--primary);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown li a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.mobile-nav-header {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
}

@media (max-width: 1070px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 30px 0 20px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-nav-header {
        display: block;
        padding: 0 25px 25px;
        margin-bottom: 10px;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-logo-wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }

    .mobile-logo-wrap img {
        height: 40px;
    }

    .menu-close-btn {
        background: none;
        border: none;
        font-size: 24px;
        color: var(--text-dark);
        cursor: pointer;
        padding: 5px;
    }

    .mobile-nav-header .btn-primary {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--primary) !important;
        color: var(--white) !important;
        border-radius: 50px;
        font-size: 16px;
        padding: 14px 25px;
        font-weight: 700;
        width: 100%;
        text-align: center;
    }

    .menu-overlay {
        display: none !important;
    }

    .nav-links>li {
        width: 100%;
    }

    .nav-links>li>a {
        padding: 15px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f8f8f8;
        font-size: 16px;
    }

    .dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        display: none;
        background: #f9fdfc;
        border-radius: 0;
    }

    .has-dropdown.active .dropdown {
        display: block;
    }

    .dropdown li a {
        padding: 12px 50px;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar {
        height: 80px;
    }
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 90vh;
    margin-top: 80px;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: var(--white);
    max-width: 900px;
    z-index: 10;
}

/* Ensure overlays only apply to Hero Slider if needed */
.hero-slider .swiper-slide::after {
    display: none;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 1;
    color: #2b1511;
    font-weight: 500;
    text-transform: capitalize;

}

.slide-content h1 {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 60px;
    color: #2da394;

}

.slide-content h1 .spann {
    color: #2b1511;

}

.slide-actions {
    display: flex;
    gap: 15px;
}

.swiper-slide::after {
    display: none;
}

@media (max-width: 720px) {
    .hero-slider {
        height: 60vh;
        margin-top: 80px !important;
    }

    .hero-slider .swiper-slide::after {
        display: none;
    }

    .home-about-section {
        padding-top: 0px !important;
    }

    .slide-content {
        left: 5%;
        right: 5%;
        width: 90%;
        text-align: center;
        top: 55%;
    }

    .slide-content h1 {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        text-align: center;
    }

    .slide-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-bottom: 25px;
    }

    .slide-actions .btn {
        width: 60%;
        padding: 12px 20px;
        font-size: 14px;
    }

    .swiper-slide::after {
        display: none;
    }
}


/* Sections */
section {
    padding: 80px 0;
}

.page-header,
.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/about-breadcumb.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1,
.about-hero h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header p,
.about-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    max-width: 85%;
    margin: 0 auto;
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    display: block;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}


.card-img {
    height: 100%;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 25px;

}

/* FINAL OVERRIDE FOR ALL PAGE HEADERS AND HERO SECTIONS */
.page-header,
.about-hero,
.highlights-hero,
.volunteer-hero,
.food-hero-section,
.donation-hero {
    display: block !important;
    text-align: left !important;
    padding: 140px 0 120px !important;
}

.page-header .container,
.about-hero .container,
.highlights-hero .container,
.volunteer-hero .container,
.food-hero-section .container {
    text-align: left !important;
    display: block !important;
}

.page-header h1,
.about-hero h1,
.highlights-hero h1,
.volunteer-hero-title,
.hero-title,
.page-header p,
.about-hero p,
.highlights-hero p,
.volunteer-hero-sub {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.about-hero h1,
.about-hero p {
    color: var(--white) !important;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Join Our Cause Cards */

.cause-card {
    position: relative;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    color: var(--white);
    border: none;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.cause-card:hover .card-bg {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 1;
}

.cause-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--white);
}

.cause-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
    color: var(--white);
}

.cause-card .icon-box i {
    color: var(--primary-light);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cause-card .btn-primary {
    background-color: var(--white);
    color: var(--primary);
}

.cause-card .btn-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}


/* Impact Section */
.impact-section {
    background-color: var(--bg-light);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.longtime-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.our-longtime-supporters {
    background-color: var(--bg-light);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.our-longtime-supporters .section-header {
    margin-bottom: 20px;
}

.our-longtime-swiper {
    padding-bottom: 50px !important;
    position: relative;
}




/* The centered professional wavy shape */
.impact-wave-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 100%;
    /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1000 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%2342A690' fill-opacity='0.05' d='M0,200 C150,150 350,300 500,300 C650,300 850,150 1000,200 L1000,400 L0,400 Z' /%3E%3C/svg%3E"); */
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
    /* filter: blur(10px); */
}

.impact-section .container {
    position: relative;
    z-index: 1;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.impact-icon-box {
    width: 70px;
    height: 70px;
    background: var(--bg-light);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
    border: 1px solid #eee;
    /* Added a very subtle border since card is also white */
}

.impact-content h3 {
    font-size: 2.5rem;
    color: #42A690;
    margin-bottom: 5px;
    line-height: 1;
    font-weight: 800;
}

.impact-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

.impact-content span {
    display: block;
    font-size: 0.8rem;
    color: #999;
    font-weight: 400;
    margin-top: 2px;
}

@media (max-width: 1100px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .impact-section {
        padding: 0px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .impact-icon-box {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }

    .impact-content h3 {
        font-size: 1.9rem;
    }

    .section-header h2 {
        font-size: 40px;
    }
}


.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
}

/* Premium Footer */
.main-footer {
    background: linear-gradient(135deg, #42A690 0%, #348e7b 100%);
    color: var(--white);
    padding: 50px 0 0px;
    position: relative;
    overflow: hidden;
}

.main-footer h1,
.main-footer h2,
.main-footer h3,
.main-footer h4,
.main-footer h5,
.main-footer h6 {
    color: #fff !important;
}


.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm10 0c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-20 0c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm10 10c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-link {
    position: relative;
    color: var(--primary);
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-link:hover {
    color: #42a690;
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: #e53e3e;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    width: 80px;
    height: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.footer-logo:hover img {
    transform: rotate(-10deg);
}

.footer-logo h2 {
    font-size: 1.9rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -1px;
}

.footer-social-top {
    display: flex;
    gap: 15px;
}

.footer-social-top a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: var(--transition);
}

.footer-social-top a:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.footer-auth-row {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 29px;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.footer-auth-row h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0.8;
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.auth-item label {
    display: block;
    font-size: 0.85rem;
    /* opacity: 0.7;/ */
    margin-bottom: 5px;
    font-weight: 500;
}

.auth-item span {
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 15;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--white);
    opacity: 0.3;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 5px;
    opacity: 0.9;
}

.footer-col ul li {
    margin-bottom: 5px;
}

.footer-col ul li a {
    opacity: 0.8;
    font-size: 1.05rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    padding-left: 10px;
    opacity: 1;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 5px;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.footer-legal-links {
    display: flex;
    gap: 30px;
}

.footer-legal-links a {
    opacity: 0.6;
    transition: var(--transition);
}

.footer-legal-links a:hover {
    opacity: 1;
}


/* Programs Highlights */

.programs-highlights {
    position: relative;
    padding: 80px 0 80px;
    min-height: 800px;
    display: flex;
    align-items: center;
    background: url('../images/Check-outour-Programs.webp') no-repeat center center;
    background-size: cover;
    background-position: center;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 30px;
    width: 100%;
    align-items: start;
}

.program-card {
    background-color: #f0fefb;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    text-align: center;
    padding: 60px 45px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.program-card-top {
    grid-column: 9 / 12;
    grid-row: 1;
    margin-bottom: 20px;
}

.program-card-bottom {
    grid-column: 9 / 12;
    grid-row: 2;
    margin-top: -20px;
}

.card-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    color: #47505c;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.card-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary);
}

/* Premium Testimonials */
.testimonials-section {
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    overflow: hidden;
    /* padding-top: 40px; */
    /* padding-bottom: 20px; */
}

.testimonial-card-premium {
    background: var(--white);
    border-radius: 40px;
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 30px auto 70px;
    height: 550px;
    /* Fixed height for professional look */
    align-items: stretch;
    /* Make both sides equal height */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    /* Subtle premium shadow */
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(66, 166, 144, 0.05);
}

.t-image {
    width: 40%;
    height: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.t-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.t-image::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 30%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1));
    pointer-events: none;
}

.testimonial-card-premium:hover .t-image img {
    transform: scale(1.08);
}

.t-content {
    width: 60%;
    padding: 40px 60px;
    /* Balanced padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: var(--white);
}

.t-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.08;
    line-height: 1;
}

.t-content h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

.t-content h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.t-content p.quote {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.verified-badge {
    font-size: 1.2rem;
    color: #4299e1;
    margin-left: 10px;
    vertical-align: middle;
}

.t-content p.quote:last-of-type {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .testimonial-card-premium {
        flex-direction: column;
        max-width: 100%;
        height: auto !important;
        min-height: 0 !important;
        margin: 15px auto 30px;
    }

    .t-image {
        width: 100%;
        height: 280px;
    }

    .t-content {
        width: 100%;
        padding: 30px 20px !important;
        text-align: center;
    }

    .t-content h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        text-align: center;
    }

    .t-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .t-content::before {
        font-size: 40px;
        top: 10px;
        left: 10px;
    }
}


/* Swiper Navigation Customization */
.testimonials-slider {
    padding: 0 60px 60px;
}

@media (max-width: 720px) {
    .testimonials-slider {
        padding: 0 10px 50px;
    }
}

.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    width: 56px;
    height: 56px;
    background: #ffffff2b;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    color: var(--primary);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-slider .swiper-button-next::after,
.testimonials-slider .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 900;
}

.testimonials-slider .swiper-button-next:hover,
.testimonials-slider .swiper-button-prev:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(66, 166, 144, 0.2);
}

.testimonials-slider .swiper-button-next {
    right: 5px;
}

.testimonials-slider .swiper-button-prev {
    left: 5px;
}

.testimonials-slider .swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background: var(--primary) !important;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
    opacity: 1;
}

/* Social Media Section */
.social-section {
    padding: 60px 0 0px;
    /* Reduced top padding */
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
}

.social-section .section-header p {
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.social-item {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    height: 550px;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.social-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.social-item:hover video {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    pointer-events: none;
    transition: var(--transition);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.social-item:hover .play-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
}

/* Responsive */
@media (max-width: 992px) {
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .program-card-top,
    .program-card-bottom {
        grid-column: auto !important;
        grid-row: auto !important;
        margin: 0 auto !important;
        max-width: 450px;
    }

    .testimonial-card-premium {
        grid-template-columns: 1fr;
    }

    .t-image {
        height: 300px;
    }

    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .auth-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.pt-0 {
    padding-top: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

/* =============================================
   INDEX PAGE
   ============================================= */
.text-center {
    text-align: center;
}

.btn-block {
    display: block;
    width: 100%;
}

.icon-box {
    margin-bottom: 20px;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

/* =============================================
   DONATION PAGE
   ============================================= */
.page-header {
    background: var(--bg-light);

    padding: 100px 0 80px;
    /* margin-top: 80px; */
    text-align: center;
}

.page-header h1 {
    font-size: 64px;
    font-weight: 800;
    color: #42a690;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 18px;
    color: #718096;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-section {
    padding: 80px 0;
}

.page-header,
.about-hero {
    background-color: #f0fdfa;
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1,
.about-hero h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header p,
.about-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.work-item {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.work-item:hover {
    transform: translateY(-5px);
    border-color: #42a690;
    box-shadow: 0 10px 30px rgba(66, 166, 144, 0.1);
}

.work-item i {
    font-size: 32px;
    color: #42a690;
    margin-bottom: 20px;
}

.work-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.work-item p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}

.donate-now-section {
    background: #f0f7f6;
    padding: 60px 0;
    text-align: center;
    border-radius: 30px;
    margin: 40px 0;
}

.monetary-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.visual-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.visual-card img {
    width: 400px;
    height: 250px;
    border-radius: 24px;
    object-fit: cover;
}

.visual-card-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.visual-card-content p {
    color: #718096;
    line-height: 1.7;
}

.btn-outline-green {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #42a690;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
}

.in-kind-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.item-chip {
    background: #f8fbfa;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #2d3748;
}

.bank-section {
    background: #f8fafc;
    padding: 100px 0;
}

.bank-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    border: 2px solid #f1f5f9;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.bank-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.bank-card-header {
    color: #42a690;
    font-weight: 900;
    font-size: 24px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0fdfa;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bank-card-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    font-size: 17px;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px dashed #f0fdfa;
}

.bank-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.label,
.bank-label {
    color: #718096;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
    text-transform: none;
}

.value,
.bank-value {
    font-weight: 800;
    color: #1a3a3a;
    text-align: right;
    word-break: break-word;
    flex: 1;
}

/* Contact & Bank Section Responsive Styles */
.contact-bank-section {
    margin-top: 100px;
}

.contact-bank-header {
    text-align: left;
    margin-bottom: 60px;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    border: 1px solid #f1f5f9;
}

@media (max-width: 991.98px) {
    .contact-bank-section {
        margin-top: 60px;
    }

    .contact-bank-header {
        margin-bottom: 40px;
    }

    .contact-bank-header h2 {
        font-size: 32px !important;
    }
}

@media (max-width: 767.98px) {
    .contact-bank-section {
        margin-top: 40px;
    }

    .contact-bank-header {
        margin-bottom: 25px;
    }

    .contact-bank-header h2 {
        font-size: 26px !important;
    }

    .bank-section {
        padding: 50px 0;
    }

    .bank-card {
        padding: 24px 18px !important;
        border-radius: 20px !important;
    }

    .bank-card-header {
        font-size: 20px !important;
        margin-bottom: 20px !important;
        padding-bottom: 14px !important;
    }

    .bank-card-body {
        gap: 14px !important;
        font-size: 15px !important;
    }

    .bank-row {
        gap: 10px !important;
        padding: 8px 0 !important;
    }

    .label,
    .bank-label {
        font-size: 14px !important;
    }

    .value,
    .bank-value {
        font-size: 14px !important;
    }

    .contact-form-wrapper {
        padding: 25px 20px !important;
        border-radius: 20px !important;
    }
}

@media (max-width: 480px) {
    .bank-card {
        padding: 20px 14px !important;
    }

    .bank-card-body {
        font-size: 13.5px !important;
        gap: 12px !important;
    }

    .bank-row .label,
    .bank-row .bank-label {
        font-size: 13.5px !important;
    }

    .bank-row .value,
    .bank-row .bank-value {
        font-size: 13.5px !important;
    }
}

.donation-help-box {
    margin-top: 40px;
    background: var(--primary);
    padding: 40px;
    border-radius: 24px;
    color: #fff;
}

.donation-help-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.donation-help-box p {
    opacity: 0.8;
    font-size: 15px;
    line-height: 1.6;
}

/* =============================================
   ADOPTION FORM PAGE
   ============================================= */
.adoption-form-section {
    padding: 40px 0 80px;
    background-color: #f0f4f4;
    margin-top: 80px;
}

.form-container {
    max-width: 850px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.form-header {
    background: var(--primary);
    padding: 30px 40px;
    color: #fff;
    text-align: center;
}

.form-header h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff !important;
}

.form-header p {
    margin-top: 12px;
    opacity: 0.9;
    font-size: 16px;
    color: #42a690;
    font-weight: 600;
}

.stepper {
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    background: #fff;
    border-bottom: 1px solid #f0f4f4;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
    font-size: 15px;
    color: #a0aec0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 12px;
    font-weight: 700;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-item.active .step-circle {
    border-color: #42a690;
    background: #42a690;
    color: #fff;
    box-shadow: 0 0 0 5px rgba(66, 166, 144, 0.15);
}

.step-item.active .step-label {
    color: var(--primary);
}

.step-item.completed .step-circle {
    background: #42a690;
    border-color: #42a690;
    color: #fff;
}

.form-body {
    padding: 50px;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 30px;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 15px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 2px solid #edf2f7;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-control:focus {
    border-color: #42a690;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(66, 166, 144, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .stepper {
        padding: 30px 20px;
    }
}

.consent-box {
    background: #f0f7f6;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 35px;
    border: 1px solid #d1eae4;
}

.consent-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.consent-item:last-child {
    margin-bottom: 0;
}

.consent-item input {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #42a690;
}

.consent-item label {
    font-size: 14px;
    color: #2d3748;
    line-height: 1.6;
    cursor: pointer;
    font-weight: 500;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #f0f4f4;
}

.btn-step {
    padding: 16px 35px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-next {
    background: #42a690;
    color: #fff;
}

.btn-next:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(66, 166, 144, 0.2);
}

.btn-prev {
    background: #fff;
    color: #718096;
    border: 2px solid #e2e8f0;
}

.btn-prev:hover {
    background: #f8fafc;
    border-color: #cbd5e0;
    color: #2d3748;
}

.section-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 30px;
}

.success-container {
    text-align: center;
    padding: 80px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #f0f7f6;
    color: #42a690;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.success-message a {
    display: inline-block;
    padding: 15px 40px;
    background: #42a690;
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
}

/* =============================================
   ADOPT PAGE
   ============================================= */
.adopt-hero {
    position: relative;
    padding: 120px 0;
    background: var(--primary);
    overflow: hidden;
}

.adopt-listing-section {
    padding: 100px 0;
    background: #f4f8f8;
}

.adopt-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.adopt-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.adopt-header p {
    color: #718096;
    margin: 0;
}

.profiles-badge {
    padding: 10px 25px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    font-weight: 600;
    font-size: 14px;
    color: #42a690;
}

.adopt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

.adopt-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #edf2f2;
    display: flex;
    flex-direction: column;
}

.adopt-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.card-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.adopt-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.type-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    color: #42a690;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-details {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-details h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 10px;
}

.card-details p {
    color: #718096;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.adopt-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: #42a690;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.adopt-btn:hover {
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(66, 166, 144, 0.3);
}

.adopt-empty {
    grid-column: 1/-1;
    text-align: center;
    padding: 100px 0;
    background: #fff;
    border-radius: 20px;
    border: 2px dashed #e2e8f0;
}

.adopt-empty .paw-icon {
    font-size: 40px;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.adopt-empty h3 {
    color: #4a5568;
    margin-bottom: 10px;
}

.adopt-empty p {
    color: #a0aec0;
    margin: 0;
}

.adopt-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

/* =============================================
   VIRTUAL ADOPTION PAGE
   ============================================= */
.virtual-adoption-list {
    padding: 100px 0 60px;
}

.why-virtual {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.why-virtual-inner {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.why-virtual-img {
    flex: 1;
    min-width: 300px;
}

.why-virtual-img img {
    border-radius: 30px;
    box-shadow: var(--shadow);
    width: 100%;
}

.why-virtual-content {
    flex: 1;
    min-width: 300px;
}

.why-virtual-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.why-virtual-content p {
    margin-bottom: 20px;
}

.why-virtual-list {
    list-style: none;
    padding: 0;
}

.why-virtual-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-virtual-list li i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 5px;
}

.animal-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.animal-card .card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.animal-card .btn-block {
    margin-top: auto;
}

.animal-status-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.animal-meta {
    font-size: 0.9rem;
    color: var(--text-light);
}

.animal-meta i {
    margin-right: 5px;
    color: var(--primary);
}

/* =============================================
   HIGHLIGHTS HERO (shared: newsletters, case-studies, reports, programs, gallery)
   ============================================= */
.highlights-hero {
    background: var(--bg-light);

    padding: 120px 0 80px;

}

.highlights-hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #42a690;
    margin-bottom: 20px;
}

.highlights-hero p {
    font-size: 20px;
    color: #718096;
    line-height: 1.6;
}

.highlights-content {
    padding: 60px 0 100px;
    background: #fff;
}

/* Shared highlight-item list rows */
.highlight-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 20px;
    border-bottom: 1px solid #edf2f7;
    transition: all 0.3s ease;
    /* border-radius: 16px; */
}

.highlight-item:hover {
    padding-left: 15px;
    padding-right: 15px;
    background: #f8fafc;
    /* border-radius: 12px; */
    /* border-bottom-color: transparent; */
}

.highlight-item:hover h3 {
    color: #42a690;
}

.highlight-item .item-index {
    font-size: 16px;
    font-weight: 800;
    color: #cbd5e0;
    letter-spacing: 1px;
}

.highlight-item .item-title {
    flex: 1;
    text-align: right;
    padding-right: 40px;
}

.highlight-item .item-title h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
    transition: all 0.3s ease;
}

.view-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #42a690;
    transition: all 0.3s ease;
    background: #fff;
}

.highlight-item:hover .view-btn {
    background: #42a690;
    color: #fff;
    border-color: #42a690;
    transform: scale(1.1);
}

/* =============================================
   IMPORTANT REPORTS PAGE
   ============================================= */
.reports-content {
    padding: 60px 0 100px;
    background: #fff;
}

.reports-container {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.report-col {
    width: 100%;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.report-col:nth-child(3n),
.report-col:last-child {
    border-right: none;
}

.category-header {
    background: #42a690;
    padding: 20px;
    text-align: center;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-header h4 {
    color: #fff;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.reports-list {
    padding: 30px;
    flex-grow: 1;
}

@media (max-width: 991px) {
    .reports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .report-col {
        border-right: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }
    .report-col:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 767px) {
    .reports-grid {
        grid-template-columns: 1fr;
    }
    .report-col {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .report-col:last-child {
        border-bottom: none;
    }
}

.report-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 700;
    background: #f0f7f6;
    border: 1px solid #d1eae4;
    transition: all 0.3s ease;
}

.report-link:hover {
    background: #42a690;
    color: #fff;
    border-color: #42a690;
}

/* =============================================
   PROGRAMS PAGE
   ============================================= */
.programs-content {
    padding: 80px 0 100px;
    background: #fff;
}

.programs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.program-item {
    width: calc(50% - 15px);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.program-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(66, 166, 144, 0.1);
    border-color: #42a690;
}

.program-item .card-img {
    height: 240px;
    position: relative;
}

.program-item .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-item .card-body {
    padding: 30px;
}

.program-item .card-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.program-item .card-body p {
    color: #718096;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 0;
}

/* =============================================
   GALLERY PAGE
   ============================================= */
.gallery-content {
    padding: 80px 0 100px;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 350px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.gallery-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

/* =============================================
   ADOPTION FORM - selected animal preview
   ============================================= */
.selected-animal-preview {
    background: #f0f7f6;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #d1eae4;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.selected-animal-preview .animal-thumb {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.selected-animal-preview .animal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selected-animal-preview .animal-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #718096;
    margin: 0;
    font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.selected-animal-preview .animal-name {
    margin: 5px 0 0;
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
}

/* =============================================
   RESPONSIVE - additional pages
   ============================================= */
@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .in-kind-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .visual-card {
        flex-direction: column;
    }

    .visual-card img {
        width: 100%;
    }

    .adopt-grid {
        grid-template-columns: 1fr;
    }

    .report-col {
        width: 100%;
    }

    .program-item {
        width: 100%;
    }

    .highlights-hero h1 {
        font-size: 36px;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .adopt-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .why-virtual-inner {
        flex-direction: column;
    }

    .our-longtime-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

}

/* =============================================
   FEED A FRIEND PAGE
   ============================================= */
.feed-hero {
    padding: 140px 0 100px;
    background: linear-gradient(rgba(26, 58, 58, 0.9), rgba(26, 58, 58, 0.9)), url('https://www.allcreaturesgreatandsmall.in/static/media/hero-bg.46747185.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    margin-top: 80px;
}

.feed-tag {
    display: inline-block;
    background: rgba(66, 166, 144, 0.2);
    color: #42a690;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(66, 166, 144, 0.3);
}

.feed-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
}

.feed-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

.feed-intro-section {
    padding: 60px 0;
    background: var(--bg-light);
}


.feed-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feed-intro-card {
    background: #f8fbfb;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #edf2f7;
}

.feed-intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.feed-intro-card .icon-box {
    width: 70px;
    height: 70px;
    background: #42a690;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
}

.feed-intro-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.feed-intro-card p {
    color: #4a5568;
    line-height: 1.6;
}

.feed-callout {
    padding: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 20px;
}

.feed-callout h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.feed-products-section {
    padding: 100px 0;
    background: #f0f4f4;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.feed-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

/* =============================================
   FOOD SUPPLIES (FEED A FRIEND) PAGE
   ============================================= */
.feed-products-section {
    padding: 80px 0;
    background: #fff;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid #edf2f2;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(66, 166, 144, 0.12);
}

.product-img {
    width: 180px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 24px 24px;
    padding-top: 3px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding-top: 10px;
    padding-left: 10px;
    border-radius: 28px 28px 10px 28px;
}

.product-card .card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card .card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.product-card .card-price {
    font-size: 18px;
    font-weight: 900;
    color: #42a690;
    margin-bottom: 20px;
}

.cart-action-wrapper {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: #f8faf9;
    padding: 6px;
    border-radius: 12px;
    border: 1px solid #edf2f2;
    width: fit-content;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #ffbd59;
    border-radius: 10px;
    color: #1a202c;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    line-height: 1;
}

.qty-btn:hover {
    background: #e5aa50;
    transform: scale(1.05);
}

.qty-val {
    width: 40px;
    text-align: center;
    font-weight: 800;
    color: var(--primary);
    font-size: 16px;
}

.add-to-cart-final-btn {
    flex-grow: 1;
    padding: 10px 15px !important;
    border-radius: 10px !important;
    font-weight: 800 !important;
    font-size: 13px !important;
}

/* =============================================
   SHOPPING CART PAGE
   ============================================= */
.cart-section {
    padding: 140px 0 100px;
    background: #fdfdfd;
}

.cart-header-nav {
    margin-bottom: 30px;
}

.back-link {
    color: #42a690;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
    color: var(--primary);
}

.cart-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-count-badge {
    font-size: 14px;
    background: #edf2f2;
    color: #42a690;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
}

.clear-cart-link {
    color: #42a690;
    text-decoration: underline;
    font-weight: 600;
    font-size: 14px;
}

.cart-items-wrapper {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #edf2f7;
    overflow: hidden;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #edf2f7;
    gap: 20px;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex-grow: 1;
}

.item-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.item-cat {
    font-size: 13px;
    color: #718096;
    margin-bottom: 12px;
}

.item-qty-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.qty-dropdown {
    width: 80px;
    padding: 4px 10px;
    border-radius: 8px;
    border-color: #e2e8f0;
}

.item-price-action {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 80px;
}

.remove-item {
    background: transparent;
    border: none;
    color: #a0aec0;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #e53e3e;
}

.item-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

/* Bill Details Card */
.bill-details-card {
    background: #f8fbfb;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 120px;
}

.card-header-icon {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bill-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #4a5568;
}

.bill-row .value {
    font-weight: 700;
    color: var(--primary);
}

.small-note {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 400;
}

.bill-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
    border-top: 1px dashed #cbd5e0;
}

.grand-total {
    font-size: 18px;
}

.grand-total .label {
    font-weight: 800;
    color: var(--primary);
}

.grand-total .value {
    font-size: 22px;
    font-weight: 900;
    color: #42a690;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        text-align: center;
    }

    .item-price-action {
        text-align: center;
        height: auto;
        margin-top: 15px;
    }
}

.volunteer-hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--bg-light);

    overflow: hidden;
    margin-top: 80px;
    text-align: center;
}

.volunteer-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 30c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.volunteer-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    color: #42a690;
    background: rgba(66, 166, 144, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.volunteer-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #42a690;
    margin-bottom: 20px;
    line-height: 1.15;
}

.volunteer-hero-sub {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 40px;
}

.volunteer-info-cards {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.info-chip {
    background: #fff;
    border: 1px solid rgba(66, 166, 144, 0.2);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.info-chip i {
    color: #42a690;
}

.volunteer-form-section {
    padding: 60px 0 100px;
    background: #f0f4f4;
}

.volunteer-form-wrapper {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.vf-header {
    background: var(--primary);
    padding: 35px 50px;
    color: #fff;
}

.vf-header h2 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 6px;
}

.vf-header-sub {
    color: #42a690;
    font-weight: 600;
    font-size: 15px;
    margin: 0;
}

.vf-notice {
    margin-top: 18px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.vf-notice i {
    color: #42a690;
    flex-shrink: 0;
    margin-top: 2px;
}

.vf-intro {
    padding: 30px 50px;
    background: #f8fbfb;
    border-bottom: 1px solid #edf2f7;
    font-size: 14px;
    color: #4a5568;
    line-height: 1.7;
}

.vf-intro p {
    margin-bottom: 8px;
}

.vf-intro p:last-child {
    margin-bottom: 0;
}

.vf-field {
    padding: 28px 50px;
    border-bottom: 1px solid #f0f4f4;
    transition: background 0.2s ease;
}

.vf-field:hover {
    background: #fafcfc;
}

.vf-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 14px;
    line-height: 1.5;
}

.vf-num {
    font-weight: 800;
    color: #42a690;
    margin-right: 4px;
}

.req {
    color: #e53e3e;
    font-weight: 700;
    margin-left: 3px;
}

.vf-opt {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #a0aec0;
    margin-top: 4px;
}

.vf-input {
    width: 100%;
    padding: 13px 18px;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    font-family: inherit;
    font-size: 15px;
    color: #2d3748;
    background: #f8fafc;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.vf-input:focus {
    border-color: #42a690;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(66, 166, 144, 0.1);
}

.vf-input.is-invalid {
    border-color: #e53e3e;
}

.vf-textarea {
    resize: vertical;
    min-height: 100px;
}

.vf-error {
    font-size: 12px;
    color: #e53e3e;
    font-weight: 600;
    margin-top: 6px;
}

.vf-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vf-radio-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    transition: all 0.25s ease;
    user-select: none;
}

.vf-radio-item:hover {
    border-color: #42a690;
    background: #f0f7f6;
}

.vf-radio-item.selected {
    border-color: #42a690;
    background: #f0f7f6;
    color: var(--primary);
    font-weight: 700;
}

.vf-radio-item input[type="radio"] {
    display: none;
}

.vf-radio-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #cbd5e0;
    flex-shrink: 0;
    position: relative;
    transition: all 0.25s ease;
}

.vf-radio-item.selected .vf-radio-dot {
    border-color: #42a690;
    background: #42a690;
}

.vf-radio-item.selected .vf-radio-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.vf-submit-row {
    padding: 35px 50px 45px;
    background: #fafcfc;
    border-top: 1px solid #edf2f7;
}

.vf-submit-btn {
    padding: 16px 50px;
    background: #42a690;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.vf-submit-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 166, 144, 0.25);
}

.vf-privacy-note {
    margin-top: 14px;
    font-size: 12px;
    color: #a0aec0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vf-privacy-note i {
    color: #cbd5e0;
}

.volunteer-success {
    text-align: center;
    padding: 80px 50px;
}

.vs-icon {
    width: 80px;
    height: 80px;
    background: #f0f7f6;
    color: #42a690;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
}

.volunteer-success h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.volunteer-success p {
    font-size: 16px;
    color: #718096;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .volunteer-hero-title {
        font-size: 32px;
    }

    .vf-header,
    .vf-intro,
    .vf-field,
    .vf-submit-row {
        padding-left: 25px;
        padding-right: 25px;
    }

    .volunteer-info-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* Animations */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.animate-bounce {
    animation: bounce 0.5s ease infinite;
}



/* About Us Page Styles */
.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/about-breadcumb.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 144px 0 !important;
    text-align: center !important;
    margin-top: 80px !important;
    display: block !important;
}

.about-hero h1 {
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    text-align: left !important;
    width: 100% !important;
}

.about-hero p {
    font-size: 1.2rem !important;
    color: #ffffff !important;
    max-width: 1000px !important;
    line-height: 1.6 !important;
    text-align: left !important;
}

.about-section {
    padding: 150px 0 370px;
    background-image: url('../images/about-storie-banner.webp');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}

.mission-vission-section {
    padding: 80px 0;
    background-image: url('../images/about-mission.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header,
.about-hero {
    background-color: #f0fdfa;
    padding: 140px 0 60px;
    text-align: center;
}

.page-header h1,
.about-hero h1 {
    font-size: 3.5rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 20px;
}

.page-header p,
.about-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.text-began {
    color: #000;
    font-style: italic;
}

.about-section h2 {
    font-size: 60px;
    color: var(--primary);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;

}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.about-content {
    max-width: 800px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.mission-vision-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.mission-card {
    background-color: #edf9f5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.mission-card-top {
    grid-column: 9 / 12;
    grid-row: 1;
    margin-bottom: 20px;
    background-color: #f8fbf5;
}

.mission-card-bottom {
    grid-column: 9 / 12;
    grid-row: 2;
    margin-top: -20px;
}

.mission-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    color: #47505c;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.mission p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
    /* max-width: 320px; */
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.mv-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.mv-item-2 i {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
}

.mv-item h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-img {
    height: 350px;
    background: #f5f5f5;
    position: relative;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.team-info .designation {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.team-info .bio {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.staff-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.staff-section h2 {
    font-size: 60px;
    color: #000;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;

}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}




.staff-card {
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

.staff-img {
    background: #ffbd59;
    padding: 30px 20px 0;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid rgba(66, 166, 144, 0.05);
    width: 100%;
    max-width: 375px;
    height: 425px;
    margin: 0 auto;
}

.staff-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.staff-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #000;
    font-weight: 500;
    text-align: center;
    margin-top: 15px;
}

.staff-card p {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
    font-style: italic;
}

.patron-section {
    padding: 80px 0;
    background-image: url(../images/our-patrons-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.patron-section h2 {
    color: #000;
}

.patrons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    margin-top: 50px;
    padding-bottom: 40px;
}

.new-patron-card {
    background-color: #5ca393;
    border-radius: 80px;
    padding: 60px 50px 45px 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    min-height: 480px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.new-patron-bio {
    color: #ffffff !important;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 90px;
    text-align: justify !important;
    font-weight: 700;
}

.new-patron-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    position: relative;
}

.new-patron-meta {
    max-width: 55%;
    padding-bottom: 10px;
}

.new-patron-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000 !important;
    margin-bottom: 5px;
    line-height: 1.1;
    font-family: 'Open Sans', sans-serif !important;
}

.new-patron-designation {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    display: block;
    line-height: 1.4;
}

.new-patron-avatar-wrap {
    position: absolute;
    bottom: -46px;
    right: -93px;
    width: 300px;
    height: 270px;
    pointer-events: none;
}

.new-patron-circle {
    position: absolute;
    bottom: 0px;
    right: 4px;
    width: 296px;
    height: 238px;
    background-color: #f9bd5c;
    border-radius: 50%;
    z-index: 1;
}

.new-patron-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

.board-members {
    padding: 60px 0;
    background: var(--bg-light);
}

.board-members h2 {
    font-size: 60px;
    color: #000;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;

}


@media (max-width: 1024px) {
    .patrons-grid {
        grid-template-columns: 1fr;
        gap: 80px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .new-patron-card {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .new-patron-card {
        border-radius: 50px;
        padding: 40px 30px 30px 30px;
    }

    .new-patron-name {
        font-size: 1.8rem;
    }

    .new-patron-avatar-wrap {
        width: 180px;
        height: 180px;
        bottom: -45px;
        right: -10px;
    }

    .new-patron-circle {
        width: 140px;
        height: 140px;
        bottom: 15px;
        right: 15px;
    }



    .new-patron-meta {
        max-width: 50%;
    }
}

.about-hero h1 {
    font-size: 2.5rem !important;
}

.bg-custom {
    background-color: #e5f5ef;
}

/* ===== Contact Us Page ===== */
.contact-bullet-list {
    list-style: none;
    padding-left: 0;
    color: #718096;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-bullet-list li {
    margin-bottom: 15px;
}

.contact-bullet-icon {
    color: var(--primary);
    margin-right: 15px;
    font-size: 8px;
    vertical-align: middle;
}

.contact-intro-text {
    color: #718096;
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-info-card {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 12px;
}

.contact-info-card--last {
    margin-bottom: 0;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.contact-icon {
    color: var(--primary);
    margin-right: 10px;
}

.contact-info-text {
    color: #718096;
    margin-bottom: 5px;
}

.contact-info-text:last-child {
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
}

.contact-label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-input {
    width: 100%;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid #000;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    outline: none;
    font-family: inherit;
    font-size: 15px;
    color: var(--primary);
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-info-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #edf2f7;
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-textarea {
    resize: vertical;
}

.contact-submit-btn {
    width: 100%;
    padding: 15px;
    font-weight: 700;
    border-radius: 50px;
}

.contact-map {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: block;
}

.bank-section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 30px;
}

.bank-card-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Contact form validation styles */
.contact-input--error {
    border-bottom-color: #e53e3e !important;
}

.contact-field-error {
    display: none;
    color: #e53e3e;
    font-size: 12px;
    margin-top: 5px;
}

.fz-14 {
    font-size: 14px !important;
}


/* Newsletter Section Styles */
.newsletter-section {
    padding: 60px 0;
    background-color: #fff;
}

.newsletter-panel {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    min-height: 450px;
}

.newsletter-img-side {
    flex: 1;
    background-image: url('../images/stay-updated-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.newsletter-img-side::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.newsletter-content-side {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.newsletter-content-side h2 {
    font-family: 'Merriweather', serif;
    color: #42A690;
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.newsletter-form .form-group {
    margin-bottom: 20px;
}

.newsletter-form label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.newsletter-form .form-control {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid #eee;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.newsletter-form .form-control:focus {
    outline: none;
    border-color: #42A690;
    box-shadow: 0 0 0 4px rgba(66, 166, 144, 0.1);
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 25px 0;
    font-size: 15px;
    color: #444;
    cursor: pointer;
}

.newsletter-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #42A690;
}

.btn-subscribe {
    background-color: #42A690;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-subscribe:hover {
    background-color: #348e7b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 166, 144, 0.3);
}

@media (max-width: 991px) {
    .newsletter-panel {
        flex-direction: column;
        max-width: 600px;
        min-height: auto;
    }

    .newsletter-img-side {
        height: 300px;
    }

    .newsletter-img-side::after {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    }

    .newsletter-content-side {
        padding: 40px 30px;
    }

    .newsletter-content-side h2 {
        font-size: 2.2rem;
        text-align: center;
    }
}

/* Feed a Friend Section */
.feed-friend {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light) !important;
}

/* New Wave Pattern */
.feed-friend::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url('../images/wave_pattern_green.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.15;
    mix-blend-mode: multiply;
    z-index: 0;
}


/* Corner Decorations - Separate Classes */
.feed-decor-paw {
    position: absolute;
    top: 10%;
    left: 2%;
    width: 200px;
    height: 200px;
    background-image: url('../images/wheat-sack.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
}

.feed-decor-bowl {
    position: absolute;
    bottom: 0%;
    right: 4%;
    width: 250px;
    height: 250px;
    background-image: url('../images/decor_bowl_final.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none;
    transform: rotate(10deg);
}







/* Bottom Wave Effect */
.feed-friend::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background-image: url('../images/wave_pattern_green.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    opacity: 0.15;
    mix-blend-mode: multiply;
    transform: scaleX(-1);
    /* Flip to flow from right to left */
    z-index: 0;
}




.feed-friend .container {
    position: relative;
    z-index: 2;
}



.testimonial-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 10px !important;
    padding-bottom: 20px !important;
}

/* Global Button Color Override */
.btn-primary,
.btn-next,
.btn-prev,
.adopt-btn,
.view-btn,
.qty-btn,
.add-to-cart-final-btn,
.checkout-btn,
.vf-submit-btn,
.contact-submit-btn,
.btn-subscribe {
    background-color: #ffbd59 !important;
    color: #1a202c !important;
}

.btn-primary:hover,
.btn-next:hover,
.btn-prev:hover,
.adopt-btn:hover,
.view-btn:hover,
.qty-btn:hover,
.add-to-cart-final-btn:hover,
.checkout-btn:hover,
.vf-submit-btn:hover,
.contact-submit-btn:hover,
.btn-subscribe:hover {
    background-color: #e5aa50 !important;
}

/* Global Icon Color Override */
.contact-icon,
.success-icon,
.impact-icon-box,
.cause-card .icon-box i,
.vs-icon,
.contact-bullet-icon,
.mv-item i {
    color: #ffbd59 !important;
}

.home-about-section {
    padding: 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home-about-content-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
    /* padding-top: 60px; */
}

.home-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(66, 166, 144, 0.05) 2px, transparent 2px);
    background-size: 30px 30px;
    z-index: 0;
}

.home-about-section .container {
    position: relative;
    z-index: 1;
    height: auto;
}

.home-about-banner {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.home-about-img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    object-position: bottom;
    display: block;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.home-about-banner-title {
    max-width: 45%;
    margin-top: 15px;
    /* Slight offset */
}

.home-about-banner-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;

}

.home-about-banner-title h2 span.banner-highlight {
    color: var(--primary) !important;
}

.home-about-banner-text {
    max-width: 45%;
}

.home-about-banner-text p {
    font-size: 19px;
    line-height: 1.6;
    color: #1a1a1a;
    font-weight: 500;
    font-family: 'Merriweather', serif;
    margin: 0;
    text-align: justify;
}

.home-about-banner-text p span.banner-highlight {
    color: var(--primary) !important;
}

@media (max-width: 991px) {
    .home-about-content-wrapper {
        padding-top: 40px;
    }

    .home-about-banner {
        flex-direction: column;
        padding: 0;
        align-items: center;
        gap: 20px;
    }

    .home-about-banner-title,
    .home-about-banner-text {
        max-width: 100%;
        text-align: center;
        padding: 0 15px;
    }

    .home-about-img {
        max-height: 350px;
        object-fit: cover;
        margin-top: 20px;
    }

    .home-about-banner-title h2 {
        font-size: 1.9rem;
    }

    .home-about-banner-text p {
        font-size: 1rem;
    }
}

/* =============================================
   RESCUED LIVES REVAMP SECTION
   ============================================= */
.rescued-lives-section {
    background-color: #e5f5ef;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-image: url('../images/goat-1.webp');
    background-repeat: no-repeat;
    background-position: right;
    background-size: cover;
}



.rescued-lives-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rescued-lives-cards {
    flex: 1.1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    padding-left: 130px;
}

.rescued-lives-col-1 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.rescued-lives-col-2 {
    padding-top: 130px;
    /* Offset the middle card downwards */
}

.rescued-card {
    background: #f0fefb;
    border-radius: 20px;
    padding: 50px 30px 45px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.015);
    border: 1px solid rgba(66, 166, 144, 0.03);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rescued-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(66, 166, 144, 0.08);
}

.rescued-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.85rem;
    font-weight: 700;
    color: #47505c;
    margin-bottom: 20px;
    line-height: 1.35;
}

.rescued-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #556877;
    margin-bottom: 30px;
}

.rescued-card .btn-learn-more {
    display: inline-block;
    background-color: #ffb03a !important;
    color: #1a202c !important;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 11px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(255, 176, 58, 0.25);
}

.rescued-card .btn-learn-more:hover {
    background-color: #e59c2f !important;
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(255, 176, 58, 0.35);
}

.rescued-lives-info {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    padding-bottom: 630px;

}



.rescued-lives-info h2 {
    font-family: 'Merriweather', serif;
    font-size: 3.1rem;
    font-weight: 700;
    color: #52a693;
    margin-bottom: 25px;
    line-height: 1.25;

}

.rescued-lives-info p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #526b62;
    margin-bottom: 35px;
    padding-right: 50px;
}

.rescued-lives-image-wrap {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.rescued-lives-main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Responsive styles */

@media (max-width: 1600px) {
    .slide-content h1 {
        font-size: 60px;
    }

    .rescued-lives-info h2 {
        font-size: 38px;

    }

    .hero-slider {

        margin-top: 0px;
    }

    .rescued-lives-cards {
        padding-left: 40px;
    }
}

@media (max-width: 1220px) {
    .rescued-lives-info h2 {
        font-size: 36px;
    }

    .mission-card-top {
        grid-column: 7 / 12;
    }

    .mission-card-bottom {
        grid-column: 7 / 12;
    }
}

@media (max-width: 1199px) {
    .rescued-lives-info h2 {
        font-size: 2.7rem;
    }

    .rescued-card {
        padding: 40px 20px 35px 20px;
    }

    .rescued-card h3 {
        font-size: 1.65rem;
    }

    .slide-content h1 {
        font-size: 54px;
    }

    .rescued-lives-info h2 {
        font-size: 36px;
    }

    .rescued-lives-cards {
        padding-left: 40px;
    }
}

@media (max-width: 991px) {
    .rescued-lives-container {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .rescued-lives-info {
        padding-bottom: 0px;
    }

    .rescued-lives-info {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .rescued-lives-info p {
        margin-left: auto;
        margin-right: auto;
    }

    .rescued-lives-image-wrap {
        margin-left: auto;
        margin-right: auto;
    }

    .rescued-lives-cards {
        width: 100%;
    }

    .programs-highlights {
        background-position: unset;

    }

    .rescued-lives-cards {
        padding-left: 0;
    }

    .mission-card-bottom {
        grid-column: 1 / 12;

    }

    .mission-card-top {
        grid-column: 1 / 12;

    }

    .about-section h2 {
        font-size: 40px;

    }

    .about-content p {
        font-size: 16px;
    }

    .about-section {
        background-position: bottom center;
        background-size: cover;
        background-size: contain;
        background-position: bottom center;
        padding: 140px 0 200px;
        /* zarurat ke hisaab se adjust karein */
    }

    .mission-vission-section {
        background-repeat: no-repeat;
        background-size: contain;
        background-position: bottom center;
        padding: 80px 0px;
    }

    .new-patron-avatar-wrap {
        position: absolute;
        bottom: -46px;
        right: -64px;
        width: 270px;
        height: 270px;
        pointer-events: none;
    }

    .new-patron-circle {
        position: absolute;
        bottom: 0px;
        right: 4px;
        width: 270px;
        height: 210px;
        background-color: #f9bd5c;
        border-radius: 50%;
        z-index: 1;
    }

    .virtual-adoption-list {
        padding: 60px 0 60px;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .adopt-listing-section {
        padding: 20px 0;
        background: #f4f8f8;
    }

    .cart-container {
        display: flex;
        gap: 30px;
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-left {
        flex: 1;
        width: 100%;
    }

    .cart-right {
        width: 100% !important;
        position: static !important;
    }

    .cart-table-container {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 767px) {
    .rescued-lives-section {
        padding: 60px 0 0px;
    }



    .patron-section {
        padding: 60px 0;
    }

    .card-content h2 {
        font-size: 26px;
    }

    .program-card {
        padding: 30px 35px;
    }

    .programs-highlights {
        padding: 0px;
        height: 100%;
    }

    .rescued-lives-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .rescued-lives-col-2 {
        padding-top: 0;
    }

    .home-about-banner-title h2 {
        font-size: 1.9rem;
    }

    .rescued-lives-info h2 {
        font-size: 1.9rem;
    }

    .rescued-lives-info p {
        font-size: 0.95rem;
        margin-bottom: 0px;
    }

    .display-5 {
        font-size: 1.9rem;
    }

    .rescued-lives-info p {
        margin-bottom: 0px;
    }

    .staff-section h2 {
        font-size: 40px;
    }

    .staff-img {
        height: 310px;
        padding: 15px 12px 0;
        border-radius: 18px;
    }

    .staff-card h4 {
        font-size: 17px;
        margin-top: 10px;
    }

    .staff-card p {
        font-size: 0.85rem;
    }

    .board-members h2 {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .about-section {
        padding: 140px 0 120px;
    }

    .staff-section {
        padding: 0px 0px 60px;
    }

    .hero-text-wrapper {
        margin-left: 0 ! important;
    }

    .virtual-adoption-list {
        padding: 20px 0 60px;
    }
}

@media (max-width:575px) {

    .slide-content h1 {
        font-size: 35px;
    }

    .new-patron-circle {
        position: absolute;
        bottom: 0px;
        right: 15px;
        width: 250px;
        height: 180px;
    }

    .staff-img {
        height: 340px;
        max-width: 290px;
        padding: 15px 10px 0;
    }

    .new-patron-avatar-wrap {
        position: absolute;
        bottom: -30px;
        right: -60px;
        width: 270px;
        height: 270px;
        pointer-events: none;
    }
}

@media (max-width:480px) {

    .new-patron-circle {
        position: absolute;
        bottom: 0px;
        right: 15px;
        width: 200px;
        height: 150px;

    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 5px;
    }
}


/* Impact Section Bottom Graphic */
.stats-bottom-graphic-wrap {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    position: relative;
    z-index: 1;
}

.stats-bottom-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 767px) {
    .stats-bottom-graphic-wrap {
        margin-top: 30px;
    }

    .rescued-lives-section {
        background-image: none;
    }

    .programs-highlights {
        background-image: none;
        background-color: #e5f6f0;
    }
}

.our-longtime-swiper {
    width: 100%;
    padding: 10px 0 35px;
    height: auto !important;
}

.our-longtime-swiper .swiper-wrapper {
    align-items: center;
    /* Center slides vertically */
    height: auto !important;
}

.our-longtime-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    height: auto !important;
    /* Force height to match aspect-ratio and prevent vertical stretching */
}

@media (max-width: 768px) {
    .our-longtime-item {
        padding: 15px;
        /* Reduce padding on mobile to keep logos visible */
    }

    .team-img {
        object-position: top center;
    }
}

.our-longtime-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.our-longtime-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width:575px) {

    .hero-slider {
        height: 50vh;
        margin-top: 80px !important;
    }

}