/* --- 1. Global Variables --- */
:root {
    --primary-color: #a52a2a;
    --primary-dark: #800000;
    --secondary-color: #333333;
    --accent-color: #f8f9fa;
    --text-color: #2c3e50;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 2. Basic Reset & Typography --- */
body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    font-weight: 700;
}
.border-top-theme {
    border-top: 5px solid var(--maroon-theme) !important;
    background: #fff;
}

.theme-text {
    color: var(--maroon-theme);
    letter-spacing: 1px;
}
/* --- 3. Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

/* --- 4. Navbar & Navigation --- */
.navbar {
    padding: 10px 0;
    background: var(--white);
    border-bottom: 3px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    padding: 10px 15px !important;
    transition: var(--transition);
}

.nav-link i {
    color: var(--primary-color);
    width: 25px;
    text-align: center;
    transition: var(--transition);
}

.nav-link:hover,
.nav-item:hover .nav-link {
    color: var(--primary-color) !important;
}

/* --- 5. Dropdown Logic --- */
.dropdown-menu {
    border: none;
    border-top: 3px solid var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.dropdown-item {
    padding: 10px 20px;
    transition: var(--transition);
}

.dropdown-item i {
    color: var(--primary-color);
    margin-right: 10px;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}
.dropdown-item:hover i {
    color: var(--white);
}

/* --- 6. Modern Button Style --- */
.btn-modern {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    padding: 12px 25px !important;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(165, 42, 42, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-modern:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(165, 42, 42, 0.5);
}

.btn-modern i {
    color: #fff !important;
    margin-right: 8px;
}

/* --- 7. Swiper Slider --- */
.swiper {
    width: 100%;
    height: 70vh; /* Responsive height */
    min-height: 300px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- 8. Responsive Media Queries --- */

/* Desktop Only: Hover Effect */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px);
        transition: var(--transition);
    }

    .nav-item.dropdown {
        padding-bottom: 5px;
    }
}

/* Mobile & Tablet Adjustments */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 50px;
    }
    .brand-text span {
        font-size: 0.9rem !important;
    }

    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-item {
        border-bottom: 1px solid #f1f1f1;
    }
    .nav-item:last-child {
        border: none;
    }

    .btn-modern {
        width: 100%;
        margin-top: 15px;
    }

    .swiper {
        height: 40vh;
    } /* Mobile par slider ki height kam */
}
/* --- Fix: Contact Us Button Hover Color --- */

/* 1. Ensure text stays white on hover */
.btn-modern:hover {
    color: #ffffff !important;
    background-color: var(--primary-dark) !important; /* Dark Maroon background */
    text-decoration: none;
}

/* 2. Ensure icon also stays white on hover */
.btn-modern:hover i {
    color: #ffffff !important;
}

/* 3. Navbar hover effect ko button se door rakhne ke liye */
.navbar-nav .nav-item .btn-modern:hover {
    color: #ffffff !important;
}

/* footer css  */
/* --- Footer Styling --- */
.footer {
    background-color: #1a1a1a; /* Very Dark Grey/Black */
    color: #cccccc;
    padding: 80px 0 30px;
    border-top: 5px solid var(--primary-color);
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

/* Title ke niche ek choti line */
.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-info p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

/* Mobile responsive fixes */
@media (max-width: 767px) {
    .footer {
        text-align: center;
        padding: 50px 0 20px;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .contact-info p {
        justify-content: center;
    }
}

/* home page main section css  */
/* --- Banner Section Styling --- */
.hero-slider .swiper {
    width: 100%;
    height: 85vh; /* Desktop par acchi height */
    background: #000;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.banner-content {
    max-width: 800px;
}

.banner-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Secondary Button for Slider */
.btn-outline-white {
    padding: 12px 28px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Custom Swiper Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background: rgba(165, 42, 42, 0.5); /* Maroon transparent */
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-slider .swiper {
        height: 60vh;
    }
    .banner-content h1 {
        font-size: 2rem;
    }
    .banner-content p {
        font-size: 1rem;
    }
}

/* --- About Section Specific Styles --- */
.about-img-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

/* Image ke peeche ek color block design ke liye */
.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.1;
}

.experience-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(165, 42, 42, 0.4);
    min-width: 140px;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* List Icons styling */
.fa-check-circle {
    font-size: 1.1rem;
}
/* --- Global Spacing Update --- */
.section-padding {
    padding: 60px 0; /* Section ke beech me bada gap */
}

.ls-2 {
    letter-spacing: 2px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    margin-top: 15px;
}

/* --- Feature Cards Styling --- */
.feature-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-15px);
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1) !important;
}

/* Active card (middle one) by default stand out karega */
.feature-card.active {
    background: var(--primary-color);
}
.feature-card.active h4,
.feature-card.active p {
    color: var(--white);
}
.feature-card.active .icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(165, 42, 42, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}
/* Stats Section */
.stats-section {
    position: relative;
    background: url('../image/countern-img.png') center/cover no-repeat;
    z-index: 1;
}

/* Dark Overlay */
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65); /* Darkness adjust kar sakte ho */
    z-index: -1;
}

/* Content always above */
.stats-section .container,
.stats-section .row,
.stats-section * {
    position: relative;
    z-index: 2;
    color: #fff; /* text white for visibility */
}
.stat-item h2 {
    color: var(--white);
    margin-bottom: 5px;
}

/* President Card */
.president-card {
    background: #fdfdfd;
    transition: var(--transition);
    border-top: 5px solid #a52a2a !important;
}

.president-card:hover {
    transform: scale(1.02);
}
.president-card img {
    border: 5px solid #ffffff !important; /* White gap */
    outline: 2px solid #a52a2a; /* Maroon thin outline */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.social-links-sm .btn-outline-primary {
    color: #a52a2a !important;
    border-color: #a52a2a !important;
}

/* 5. Social Icons Hover Effect */
.social-links-sm .btn-outline-primary:hover {
    background-color: #a52a2a !important;
    color: #ffffff !important;
    border-color: #a52a2a !important;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* 6. Whatsapp Specific (Optional: if you want green on hover) */
.social-links-sm .fa-whatsapp:hover {
    /* Agar aap chahte hain ki hover par ye green ho jaye, toh ise use karein */
}

.ls-2 {
    letter-spacing: 2px;
}

/* Quote Icon color */
.text-primary {
    color: var(--primary-color) !important;
}

/* team section code */
/* --- Team Section Styling --- */
.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.team-img-box {
    position: relative;
    overflow: hidden;
    height: 350px; /* Adjust as per photo height */
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-box img {
    transform: scale(1.1);
}

/* Hover par aane wala social icons background */
.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(165, 42, 42, 0.9); /* Maroon transparent */
    padding: 15px;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: var(--white);
    font-size: 1.1rem;
    transition: 0.3s;
}

.team-social a:hover {
    transform: scale(1.3);
}

.team-info h4 {
    color: var(--secondary-color);
}

/* service section code  */

/* --- Activity Section Styling --- */
.activity-card {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 20px;
    z-index: -1;
    transform: scale(0.5);
    opacity: 0;
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-10px);
}

.activity-card:hover::before {
    transform: scale(1);
    opacity: 1;
}

.activity-card:hover h5,
.activity-card:hover p {
    color: var(--white) !important;
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: rgba(165, 42, 42, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.activity-card:hover .activity-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: rotateY(360deg);
}

.activity-card h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

/* --- Contact Section Styling --- */
.contact-form-wrapper {
    border-top: 5px solid var(--primary-color);
}

.form-control,
.form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(165, 42, 42, 0.1);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(165, 42, 42, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.map-wrapper iframe {
    filter: grayscale(0.3) contrast(1.1); /* Professional Map look */
}

.breadcrumb-area {
    background:
        linear-gradient(rgba(165, 42, 42, 0.9), rgba(0, 0, 0, 0.8)),
        url('img/banner-bg.webp') center/cover;
    padding: 80px 0;
}
.group-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #444;
    border-left: 6px solid #a52a2a; /* Maroon Theme */
    padding: 10px 20px;
    background: #fff;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* about page content  */

/* About Page Specific Styles */
.about-image-stack {
    padding-right: 30px;
    padding-bottom: 30px;
}

.experience-card {
    position: absolute;
    bottom: 0;
    right: 0;
    min-width: 150px;
    text-align: center;
    background-color: var(--primary-color);
}

.obj-card {
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.obj-card:hover {
    transform: translateY(-10px);
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.obj-icon {
    color: var(--primary-color);
}

.highlight-box {
    border-left: 8px solid var(--primary-color);
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin-top: 15px;
}

/* faq css */
/* FAQ Custom Styling */
.bg-light-maroon {
    background-color: rgba(165, 42, 42, 0.03);
}

.title-line-center {
    width: 60px;
    height: 4px;
    background: #a52a2a;
    margin: 15px auto;
    border-radius: 2px;
}

.custom-accordion .accordion-button {
    font-weight: 600;
    color: #333;
    background: #fff;
    box-shadow: none;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #a52a2a;
    background-color: #fff;
}

.faq-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(165, 42, 42, 0.1);
    color: #a52a2a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: 0.3s;
}

.accordion-button:not(.collapsed) .faq-icon-box {
    background: #a52a2a;
    color: #fff;
}

.custom-accordion .accordion-item {
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-item:hover {
    transform: translateY(-5px);
}

/* Custom Arrow Icon */
.custom-accordion .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s;
}
/* Foundation Section Custom Styles */
.rounded-custom {
    border-radius: 50px 5px 50px 5px; /* Unique medical-style cut */
}

.foundation-img-box {
    position: relative;
    padding: 20px;
}

.foundation-img-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 10px solid rgba(165, 42, 42, 0.1);
    z-index: -1;
    border-radius: 50px;
}

.since-badge {
    position: absolute;
    bottom: 40px;
    right: -10px;
    background: var(--primary-color);
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(165, 42, 42, 0.3);
    text-align: center;
}

.icon-sm {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.bg-light-maroon {
    background: rgba(165, 42, 42, 0.1);
}
/* event page css */

/* Filter Tabs Styling */
.filter-tabs .nav-link {
    color: #333;
    font-weight: 600;
    border: 1px solid #ddd;
    margin: 5px;
    border-radius: 50px;
    padding: 8px 25px;
    transition: all 0.3s ease;
}

.filter-tabs .nav-link.active,
.filter-tabs .nav-link:hover {
    background-color: #a52a2a !important; /* Maroon Theme */
    color: #fff !important;
    border-color: #a52a2a;
}

/* Gallery Image Card */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(165, 42, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.gallery-hover-overlay i {
    color: #fff;
    font-size: 2rem;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-hover-overlay {
    opacity: 1;
}

/* --- Membership Form Styles --- */
.text-maroon {
    color: #a52a2a;
}

.btn-maroon {
    background-color: #a52a2a;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-maroon:hover {
    background-color: #800000;
    color: #fff;
    transform: translateY(-3px);
}

.form-control,
.form-select {
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #a52a2a;
    box-shadow: 0 0 0 0.25rem rgba(165, 42, 42, 0.1);
}

.form-label {
    font-size: 0.9rem;
    color: #444;
}

.form-container {
    border-top: 6px solid #a52a2a;
}
/* --- Privacy Policy Styling --- */
.policy-content h4 {
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
    color: #a52a2a !important; /* Maroon Theme Header */
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
}

.policy-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.policy-content ul li::before {
    content: '\f058'; /* FontAwesome check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #a52a2a;
}

.border-maroon {
    border-color: #a52a2a !important;
}

.lh-lg {
    line-height: 1.8;
}
.brand-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.8rem;
}

/* Tablet */
@media (max-width: 1200px) {
    .brand-title {
        font-size: 0.5rem;
    }
    .brand-subtitle {
        font-size: 0.7rem;
    }
}

/* Small Devices */
@media (max-width: 1000px) {
    .brand-text {
        display: none;
    }
}
/* --- Dedicated Founding Members Section Styling --- */

/* Section Colors & Patterns */
.bg-light {
    background-color: #f8f9fa !important;
}

.opacity-5 {
    opacity: 0.05; /* Light pattern overlay */
}

/* Header line under title */
.header-line-center {
    width: 80px;
    height: 4px;
    background: #a52a2a; /* Maroon Theme */
    border-radius: 2px;
}

.ls-3 {
    letter-spacing: 3px;
}

/* Main Container for names */
.founding-names-container {
    background: #ffffff;
    border-radius: 30px; /* Modern rounded corners */
}

/* Individual list item styling */
.founding-list li {
    padding: 15px 0;
    font-weight: 600;
    color: #333;
    border-bottom: 1px dashed #eee; /* Subtle separator */
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Hover effect for interactivity */
.founding-list li:hover {
    transform: translateX(10px);
    color: #a52a2a;
}

/* Add a consistent check icon before each name */
.founding-list li::before {
    content: '\f058'; /* FontAwesome check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 15px;
    color: #a52a2a; /* Maroon Theme Icon */
    font-size: 1.1rem;
}

/* Remove bottom border from last items in each column */
.founding-list li:last-child {
    border-bottom: none;
}

/* Vertical Divider for desktop layout */
.vertical-divider {
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, #eee, transparent);
}

/* Footer note area */
.border-dashed {
    border: 1px dashed #ddd;
}
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}
/* Payment Box Styling */
.qr-payment-box {
    background-color: #fff9f9; /* Very light maroon background */
    border: 2px dashed #a52a2a !important; /* Maroon dashed border */
}

.qr-wrapper {
    transition: all 0.3s ease;
}

.qr-wrapper:hover {
    transform: scale(1.03);
    border-color: #a52a2a !important;
}

.text-maroon {
    color: #a52a2a;
}

/* Form check and icons tweak */
.fa-credit-card,
.fa-qrcode {
    color: #a52a2a;
}
