/**
 * Refactored Stylesheet
 * Removed styles deemed unused based on provided HTML page structures.
 * Preserved core theme, component styles, and necessary overrides.
 * Kept page-specific styles that were included in the original input file.
 * Removed dark mode styles specifically for profile sections as requested.
 */

 :root {
    --primary-color: #800000;
    --secondary-color: #ff4848;
    --accent-color: #860000;
    --alert-color: #ff5c5c;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #4caf50; /* Kept, used in timeline etc. */
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    /* overflow-x: hidden; */
    color: var(--dark-color);
    scroll-behavior: smooth;
    width: 100vw;
    /* max-width: 100%; */
    overflow-x: clip;
    position: relative;
}
html, body {
    overflow-x: hidden !important; /* Add !important for highest priority during debugging */
    max-width: 100%;
}
/* Support Section Mobile Fix */
.support-section {
    width: 100%;
    /* max-width: 100vw; */
    position: relative;
    overflow: hidden;
}

.support-section .container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .support-section .row {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .support-section [class*="col-"] {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .support-section .support-option-card {
        margin-bottom: 1rem;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
}

/* Theme Utility Classes (Keep for variable consistency) */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Button Styles (Keep for theme) */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white; /* Ensure text color */
}

.btn-primary:hover {
    background-color: #2c0a7a;
    border-color: #2c0a7a;
    color: white; /* Ensure text color on hover */
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.btn-accent:hover {
    background-color: #e91e78;
    border-color: #e91e78;
    color: white;
}

/* Navigation */
.navbar {
   
    padding: 0.6rem 1rem;
/* blur */
    /* background-color: transparent; Initially transparent */
    transition: var(--transition);
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.432);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.6rem 1rem;
}

.navbar-brand img {
    height: 40px;
    transition: var(--transition);
}

.navbar-scrolled .navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { /* Includes Bootstrap's active class */
    width: 100%;
}

/* Hero Section */
#hero {
    min-height: 100vh; /* Use min-height for flexibility */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x1080/cccccc/888888?text=Hero+Background') center/cover no-repeat;
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0; /* Override section padding */
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn { /* Specific button style for hero */
    margin: 0 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

/* About Section (Core Values - Index Page) */
.core-value-card {
    height: 100%; /* Ensure cards in row are same height if using d-flex */
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: none;
}

.core-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.core-value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Filter Tabs (Used across Events, Blog, Gallery, Shop) */
.filter-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-tab { /* Used as base for buttons */
    padding: 0.5rem 1.5rem;
    margin: 0.25rem 0.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: var(--dark-color); /* Ensure default text color */
    text-decoration: none; /* Remove underline if used on <a> */
    font-size: 0.875rem; /* Standardize size */
    line-height: 1.5;
}
.filter-tab:hover {
    background-color: #e9ecef; /* Subtle hover */
}

.filter-tab.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Membership Section (Benefits - Index Page) */
.benefit-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(58, 12, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.benefit-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.benefit-content p {
    font-size: 0.95rem; /* Standardize text size */
    color: #6c757d;
    line-height: 1.6;
}


/* Blog Section (Card Style - Index & Blog Page) */

/* Contact Section (Info Items - Index & Contact Page) */
.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(58, 12, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}
.contact-item h5 { /* Added for consistency */
     font-size: 1.1rem;
     margin-bottom: 0.3rem;
}
.contact-item p,
.contact-item p a { /* Added for consistency */
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.3rem;
    text-decoration: none;
}
.contact-item p a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-container {
    height: 300px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e9ecef; /* Placeholder background */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-style: italic;
}

/* Newsletter Section (Index Page - Using minimalist styles now) */
/* Removed original .newsletter-section, .newsletter-form styles */

/* Footer */
footer {
    background-color: #191919;
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-links h5 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    color: white;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links ul {
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem; /* Standardize footer link size */
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}
.footer-bottom a { /* Added */
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}
.footer-bottom a:hover {
    color: white;
}

/* Scroll To Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #2c0a7a;
    transform: translateY(-3px);
}

/* Form Styles (General) */
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(58, 12, 163, 0.25);
    border-color: var(--primary-color);
}

.custom-form label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem; /* Standardize label size */
}

.custom-form .form-control,
.custom-form .form-select {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    border: 1px solid #ced4da;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(58, 12, 163, 0.25);
    border-color: var(--primary-color);
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
    padding: 1.5rem 2rem;
}

.modal-body {
    padding: 2rem;
}

.modal-title {
    font-weight: 600;
    color: var(--primary-color);
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    padding: 1rem 2rem 1.5rem;
    background-color: #f8f9fa;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    /* Navbar adjustments for mobile */
    .navbar:not(.navbar-scrolled) { /* Apply background immediately on mobile */
        background-color: white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    .navbar, .navbar-scrolled {
        padding: 0.7rem 1.5rem;
    }

    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 5px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-link {
        margin: 0.5rem 0;
        padding: 0.5rem 0;
    }

    .nav-link::after {
        left: 0;
        bottom: 0;
    }
    /* Adjust button margin in collapsed menu */
    .navbar-nav .btn-accent {
        margin-top: 1rem;
        display: block;
        text-align: center;
    }

    /* Basic responsive text/padding */
    .hero-content h1 { font-size: 2.5rem; }
    section { padding: 4rem 0; }
}

@media (max-width: 767.98px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1.1rem; }
    .hero-btn {
        margin: 0.5rem;
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 250px;
    }

    .section-title { font-size: 1.75rem; }
    .section-title::after { width: 50px; bottom: -8px; }

    /* Stack benefit card content on mobile */
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    .benefit-icon {
        margin: 0 auto 1rem;
    }
    /* Stack contact item on mobile */
     .contact-item {
        flex-direction: column;
        text-align: center;
    }
     .contact-icon {
        margin: 0 auto 1rem;
    }


    /* Center footer content */
    .footer-links { text-align: center; }
    .footer-links h5::after { left: 50%; transform: translateX(-50%); }
    .footer-logo, .social-links { justify-content: center; }
    .footer-logo img { margin: 0 auto 1rem; }
}

/* Animation Classes */
/* Keep definitions as they are used by AOS */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.active { /* Likely used by older JS, AOS uses data attributes */
    opacity: 1;
    transform: translateY(0);
}
/* .stagger-item removed as AOS typically handles staggering via attributes/JS */
 

/* === START: Styles likely intended for page-specific files === */
/* Kept because they were in the provided style.css input */

/* Minimalist Newsletter Section Styles (Index Page) */
.newsletter-section-minimal {
    padding: 5rem 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}
.newsletter-title { /* Used in minimalist section */
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; font-size: 2rem; color: var(--dark-color);
    margin-bottom: 0.75rem;
}
.newsletter-subtitle { /* Used in minimalist section */
    font-size: 1rem; line-height: 1.6; max-width: 550px;
    margin-left: auto; margin-right: auto; color: #6c757d;
}
.minimal-newsletter-form .form-container { max-width: 600px; margin: 0 auto; }
.newsletter-input.form-control { /* Specific styling for this form */
    padding: 0.85rem 1.25rem; font-size: 1rem; border-radius: 8px;
    border: 1px solid #ced4da; box-shadow: none; transition: border-color 0.2s ease-in-out;
    background-color: #fff; color: var(--dark-color); height: auto;
}
.newsletter-input.form-control::placeholder { color: #adb5bd; opacity: 1; }
.newsletter-input.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(58, 12, 163, 0.15);
    background-color: #fff; color: var(--dark-color);
}
.btn-newsletter-submit { /* Specific styling for this form */
    background-color: var(--primary-color); border-color: var(--primary-color);
    color: white; padding: 0.85rem 1.75rem; font-size: 1rem; font-weight: 500;
    border-radius: 8px; transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, transform 0.1s ease;
    white-space: nowrap; flex-shrink: 0; height: auto; line-height: inherit;
}
.btn-newsletter-submit:hover { background-color: #2c0a7a; border-color: #2c0a7a; color: white; transform: translateY(-1px); }
.btn-newsletter-submit:focus { box-shadow: 0 0 0 0.2rem rgba(58, 12, 163, 0.25); }
.form-message .alert { font-size: 0.875rem; border-radius: 6px; margin-bottom: 0; }
 
@media (max-width: 767.98px) {
    .newsletter-input.form-control { text-align: center; }
    .btn-newsletter-submit { width: 100%; }
    .newsletter-title { font-size: 1.75rem; }
    .newsletter-subtitle { font-size: 0.95rem; }
}

/* Leadership Section Styles (Index & About) */
 
.subsection-title::after {
    content: ''; position: absolute; left: 50%; transform: translateX(-50%);
    bottom: 0; width: 50px; height: 3px; background-color: var(--accent-color);
}
.leader-card {
    background-color: #ffffff; border-radius: 15px; padding: 2rem 1.5rem;
    transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef; display: flex; flex-direction: column; height: 100%;
}
.leader-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); }
.leader-image-wrapper {
    width: 150px; height: 150px; /* Reduced size slightly */
    border-radius: 50%; margin-left: auto; margin-right: auto; overflow: hidden;
    border: 4px solid white; /* Shadow applied via Bootstrap utility */
    margin-bottom: 1rem; /* Space below image */
}
.leader-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.leader-card:hover .leader-image-wrapper img { transform: scale(1.08); }
.leader-info { flex-grow: 1; display: flex; flex-direction: column; }
.leader-name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1.2rem; color: var(--dark-color); }
.leader-title { /* EB title */
    font-weight: 500; font-size: 0.95rem; letter-spacing: 0.5px; text-transform: uppercase;
}
/* Utility classes handle title colors */
.leader-title-sub { /* Committee title */
    font-weight: 500; font-size: 0.9rem; color: #555;
}
.leader-bio { font-size: 0.875rem; line-height: 1.5; color: #6c757d; flex-grow: 1; margin-bottom: 1rem; }
.leader-social { margin-top: auto; } /* Push to bottom */
.leader-social .social-link {
    color: #adb5bd; font-size: 1.1rem; margin: 0 0.5rem;
    transition: color 0.3s ease; text-decoration: none;
}
.leader-social .social-link:hover { color: var(--primary-color); }

/* Support Us Section (Index Page) */
.support-section { background: linear-gradient(135deg, var(--primary-color), #2c0a7a); position: relative; }
.support-section .section-title:after { background: white; }
.support-option-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.support-option-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.support-option-card .btn {
    transition: all 0.3s ease;
}

.support-option-card .btn-light:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.support-option-card .btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
}

.support-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
    margin: 1rem 0;
}
/* Dark Mode Support (Generally okay) */

/* Offerings Section (Index Page) */
.offering-card {
    border: 1px solid #e9ecef; border-radius: 10px; overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff; height: 100%; display: flex; flex-direction: column; /* Added */
}
.offering-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.offering-image { height: 180px; object-fit: cover; width: 100%; } /* Added width */
.offering-card .card-body { padding: 1.25rem; flex-grow: 1; display: flex; flex-direction: column; } /* Added */
.offering-card .card-title { font-family: 'Montserrat', sans-serif; font-weight: 600; margin-bottom: 0.5rem; }
.offering-card .card-text { flex-grow: 1; margin-bottom: 1rem; } /* Added */
.offering-card .btn { margin-top: auto; align-self: flex-start; } /* Added */
/* Dark Mode Offerings */
 
/* Achievements Section (Index & About) */
.achievement-stat .stat-icon { font-size: 2.5rem; /* Color set by utility */ }
.achievement-stat .stat-number { font-family: 'Montserrat', sans-serif; color: var(--dark-color); /* Size/Weight set by utility */ }
.achievement-stat .stat-label { font-size: 0.95rem; color: #6c757d; } /* Adjusted color */
.milestone-list .list-group-item { background-color: transparent; border: none; padding: 0.75rem 0; font-size: 1rem; color: #444; }
.milestone-list .list-group-item i { font-size: 1.2rem; }
/* Dark Mode Achievements */
 
/* Partners Section (Index Page) */
.partner-logo-card { padding: 1rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.partner-logo { max-height: 70px; width: auto; max-width: 100%; opacity: 0.75; filter: grayscale(50%); transition: opacity 0.3s ease, filter 0.3s ease; }
.partner-logo-card:hover .partner-logo { opacity: 1; filter: grayscale(0%); }
.partner-logo-card:hover { transform: scale(1.05); }
/* Dark Mode Partners */
.dark-mode #partners { background-color: #111; }
.dark-mode .partner-logo { filter: grayscale(20%) brightness(0) invert(1); opacity: 0.7; }
.dark-mode .partner-logo-card:hover .partner-logo { filter: grayscale(0%) brightness(0) invert(1); opacity: 1; }

/* Gallery Section (Index & Gallery Page) */
.gallery-filters .filter-tab { /* Inherits base */ border: 1px solid #ddd; background-color: #fff; color: #555; padding: 0.3rem 1rem; }
.gallery-filters .filter-tab.active { background-color: var(--primary-color); color: white; border-color: var(--primary-color); }
.gallery-card {
    position: relative; overflow: hidden; border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: box-shadow 0.3s ease;
}
.gallery-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.gallery-card img { display: block; transition: transform 0.4s ease; width: 100%; height: auto; } /* Added */
.gallery-card:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(58, 12, 163, 0.7); opacity: 0;
    transition: opacity 0.4s ease; display: flex; align-items: center;
    justify-content: center; text-align: center; color: white; padding: 1rem; /* Added */
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content p { margin-top: 0.5rem; font-weight: 500; font-size: 0.9rem; margin-bottom: 0; }
.gallery-icon { font-size: 1.75rem; }
.gallery-overlay.video-overlay { background-color: rgba(0, 0, 0, 0.6); }
 
/* Testimonials & Spotlight Section (Index Page) */
.testimonial-carousel-container { background-color: #f8f9fa; border-radius: 15px; padding: 2.5rem; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.testimonial-card { background-color: transparent; border: none; padding: 0 1rem; }
.testimonial-quote-icon { font-size: 2rem; color: var(--primary-color); opacity: 0.6; margin-bottom: 1rem; display: block; }
.testimonial-text { font-size: 1.05rem; line-height: 1.7; color: #555; margin-bottom: 1.5rem; }
.testimonial-img { width: 60px; height: 60px; object-fit: cover; border: 3px solid white; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.testimonial-name { font-family: 'Montserrat', sans-serif; font-weight: 600; color: var(--dark-color); }
.testimonial-role { font-size: 0.85rem; color: #6c757d; } /* Added color */
.testimonial-carousel-container .carousel-control-prev,
.testimonial-carousel-container .carousel-control-next { width: 5%; }
.testimonial-carousel-container .carousel-control-prev-icon,
.testimonial-carousel-container .carousel-control-next-icon { background-color: rgba(0, 0, 0, 0.3); border-radius: 50%; padding: 1rem; background-size: 50% 50%; }
.spotlight-card { padding: 1.5rem; border-radius: 10px; /* Remove bg/border if not needed */ }
.spotlight-title { font-family: 'Montserrat', sans-serif; font-weight: 500; color: var(--primary-color); font-size: 1.3rem; }
.spotlight-img { width: 120px; height: 120px; border: 4px solid white; }
.spotlight-name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1.15rem; }
.spotlight-role { font-weight: 500; color: var(--primary-color); } /* Added color */
/* Dark Mode Testimonials */
 
/* Projects Section (Index Page) */
.project-card {
    border: 1px solid #e9ecef; border-radius: 10px; overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff; height: 100%; display: flex; flex-direction: column; /* Added */
}
.project-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.project-image { height: 180px; object-fit: cover; width: 100%; } /* Added width */
.project-card .card-body { padding: 1.25rem; flex-grow: 1; display: flex; flex-direction: column; } /* Added */
.project-card .card-title { font-family: 'Montserrat', sans-serif; font-weight: 600; margin-bottom: 0.5rem; }
.project-status { font-size: 0.75rem; font-weight: 500; padding: 0.3em 0.6em; }
.project-card .card-text { flex-grow: 1; margin-bottom: 1rem; } /* Added */
.project-meta { margin-top: auto; padding-top: 0.75rem; border-top: 1px solid #eee; } /* Added padding/border */
.project-meta .small { display: block; margin-bottom: 0.5rem; } /* Spacing */
/* Dark Mode Projects */
 
/* Impact Section (Index Page) - Removed as likely unused */

/* Resource Hub Section (Index Page) */
.resource-search-bar .form-control { border-right: 0; border-radius: 50px 0 0 50px; padding-left: 1.5rem; }
.resource-search-bar .input-group-text { border-left: 0; background-color: white; border-radius: 0 50px 50px 0; }
.resource-search-bar .form-control:focus { box-shadow: none; border-color: var(--primary-color); }
.resource-search-bar .form-control:focus + .input-group-text { border-color: var(--primary-color); }
.resource-filters .filter-tab { /* Inherits base */ border: 1px solid #ddd; background-color: #fff; color: #555; padding: 0.3rem 1rem; }
.resource-filters .filter-tab.active { background-color: var(--primary-color); color: white; border-color: var(--primary-color); }
 
.resource-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.resource-icon { margin-right: 1.25rem; flex-shrink: 0; width: 40px; text-align: center; margin-top: 5px; /* Color applied via utility */ }
.resource-content { flex-grow: 1; display: flex; flex-direction: column; /* height: 100%; No - let content define */ }
.resource-title { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1.1rem; margin-bottom: 0.4rem; }
.resource-desc { font-size: 0.875rem; line-height: 1.5; flex-grow: 1; margin-bottom: 1rem; }
.resource-content .btn { margin-top: auto; align-self: flex-start; }
/* Resource Card Styles */
.resource-card {
    transition: all 0.2s ease;
    border-color: #e0e0e0 !important;
    overflow: hidden;
}

.resource-card:hover {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.resource-image {
    position: relative;
}

.resource-type-badge {
    position: absolute;
    top: 15px;
    left: 15px;
}

.resource-details {
    border-top: 1px solid #f0f0f0;
}

.resource-meta p {
    margin-bottom: 0.3rem;
}

.resource-description {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Button styling */
.btn-dark {
    background-color: #333;
    border-color: #333;
}

.btn-dark:hover {
    background-color: #222;
    border-color: #222;
}

.btn-outline-dark {
    border-color: #ddd;
}

.btn-outline-dark:hover {
    background-color: #f8f9fa;
}
 
/* Shop Page V2 Styles */
#shop { padding-top: 5rem; }
/* Base filter-tab styles reused */
.shop-sorting .form-select-sm { font-size: 0.875rem; }
.product-card-v2 {
    background-color: #fff; border: 1px solid #e9ecef; border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04); transition: all 0.3s ease;
    display: flex; flex-direction: column; overflow: hidden; height: 100%; /* Added */
}
.product-card-v2:hover { box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); transform: translateY(-5px); }
.product-image-v2 { width: 100%; height: 200px; overflow: hidden; position: relative; }
.product-image-v2 img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card-v2:hover .product-image-v2 img { transform: scale(1.05); }
.product-details-v2 { padding: 1rem 1.25rem; flex-grow: 1; display: flex; flex-direction: column; }
.product-category-v2 { font-size: 0.75rem; font-weight: 500; color: #6c757d; text-transform: uppercase; letter-spacing: 0.5px; display: block; margin-bottom: 0.3rem; }
.product-name-v2 { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1.05rem; margin-bottom: 0.5rem; line-height: 1.3; }
.product-name-v2 a { color: var(--dark-color); text-decoration: none; transition: color 0.3s ease; }
.product-name-v2 a:hover { color: var(--primary-color); }
.product-desc-v2 { line-height: 1.5; margin-bottom: 1rem; font-size: 0.9rem; /* Adjusted */ }
.product-price-v2 { font-size: 1.15rem; color: var(--primary-color); /* Weight applied via utility */ }
.add-to-cart-btn-v2 { padding: 0.3rem 0.8rem; font-size: 0.85rem; }
.add-to-cart-btn-v2.disabled { background-color: #6c757d; border-color: #6c757d; cursor: not-allowed; }
/* Pagination Styles (Used on multiple pages) */
.pagination .page-item .page-link { color: var(--primary-color); border-radius: 0.25rem; margin: 0 2px; border: 1px solid #dee2e6; font-size: 0.875rem; }
.pagination .page-item.active .page-link { background-color: var(--primary-color); border-color: var(--primary-color); color: white; z-index: 3; }
.pagination .page-item.disabled .page-link { color: #6c757d; background-color: #e9ecef; border-color: #dee2e6; }
.pagination .page-item:hover:not(.active):not(.disabled) .page-link { background-color: #e9ecef; }
/* Dark Mode Shop V2 */
 

/* Events Page Styles */
#events-page { padding-top: 4rem; /* Ensure sufficient space below fixed navbar */ }
/* Event Card, Filters, Pagination styles inherited */
/* Dark Mode Event Page Styles */
.dark-mode #events-page { background-color: #1a1a1a; }
/* Dark mode styles inherited */


/* About Page Styles */

.about-hero-section {
 min-height: 50vh;
    padding: 8rem 0 4rem 0;
    background: 
        linear-gradient(135deg, rgba(128,0,0,0.7), rgba(161,0,0,0.7)),
        url('assets/static/nalanda.jpg') center center/cover no-repeat;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.about-hero-section h1 { color: white; text-shadow: 1px 1px 3px rgba(0,0,0,0.2); }
.about-hero-section .lead { color: rgba(255, 255, 255, 0.9); font-weight: 300; }
#nalanda-info img, .principal-photo { max-height: 400px; object-fit: cover; }
.principal-photo { width: 200px; height: 200px; border: 6px solid white; /* Shadow via utility */ } /* Reduced size */
.principal-quote { border-left: 4px solid var(--primary-color); background-color: #f8f9fa; font-size: 1.05rem; }
.principal-quote .blockquote-footer { color: var(--primary-color); font-weight: 500; }
#society-info h4 i { width: 25px; text-align: center; }
#society-info ul li i { width: 18px; }
.timeline-container { position: relative; padding: 2rem 0; max-width: 900px; margin: 0 auto; }
.timeline-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background-color: #e9ecef; transform: translateX(-50%); z-index: 1; }
.timeline-item { position: relative; margin-bottom: 10px; width: 50%; padding: 10px 40px; box-sizing: border-box; }
.timeline-item:nth-child(odd) { left: 0; padding-right: 20px; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; padding-left: 20px; text-align: left; }
.timeline-marker { position: absolute; top: 15px; width: 18px; height: 18px; background-color: white; border: 4px solid var(--primary-color); border-radius: 50%; z-index: 1.5; transition: background-color 0.3s ease; }
.timeline-item:nth-child(odd) .timeline-marker { right: -9px; transform: translateX(50%); }
.timeline-item:nth-child(even) .timeline-marker { left: -9px; transform: translateX(-50%); }
.timeline-item:hover .timeline-marker { background-color: var(--primary-color); }
.timeline-content { position: relative; background-color: #f8f9fa; padding: 1.5rem; border-radius: 8px; border: 1px solid #e9ecef; box-shadow: 0 3px 8px rgba(0,0,0,0.04); transition: box-shadow 0.3s ease; }
.timeline-item:hover .timeline-content { box-shadow: 0 6px 15px rgba(0,0,0,0.08); }
.timeline-content::before { content: ''; position: absolute; top: 10px; width: 0; height: 0; border-style: solid; z-index: 1; }
.timeline-item:nth-child(odd) .timeline-content::before { right: -15px; border-width: 10px 0 10px 15px; border-color: transparent transparent transparent #e9ecef; }
.timeline-item:nth-child(even) .timeline-content::before { left: -15px; border-width: 10px 15px 10px 0; border-color: transparent #e9ecef transparent transparent; }
.timeline-date { font-size: 0.8rem; font-weight: 600; margin-bottom: 0.5rem; display: inline-block; /* Style with badge class */ }
.timeline-title { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
/* Timeline Responsive */
@media (max-width: 767.98px) {
    .timeline-line { left: 15px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 15px; left: 0 !important; text-align: left !important; margin-bottom: 30px; }
    .timeline-item:nth-child(odd) { padding-right: 15px; }
    .timeline-item:nth-child(even) { padding-left: 50px; }
    .timeline-marker { left: 15px !important; transform: translateX(-50%) !important; }
    .timeline-content::before { left: -15px !important; right: auto !important; border-width: 10px 15px 10px 0 !important; border-color: transparent #e9ecef transparent transparent !important; }
}
#about-achievements .achievement-stat .stat-number { font-size: 2.8rem; }
#about-achievements .list-group-item { font-size: 0.9rem; }
.moment-card img { transition: opacity 0.3s ease; }
.moment-card:hover img { opacity: 0.85; }
/* Dark Mode About */
 
/* Gallery Page Styles */
#gallery-page { padding-top: 4rem; }
/* Gallery filters/pagination inherited */
.gallery-item-card {
    position: relative; overflow: hidden; border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07); transition: all 0.3s ease;
    background-color: #fff;
}
.gallery-item-card:hover { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); transform: translateY(-5px); }
.gallery-link { display: block; position: relative; }
.gallery-link img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item-card:hover .gallery-link img { transform: scale(1.06); }
.gallery-item-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(58, 12, 163, 0.75); opacity: 0; transition: opacity 0.4s ease;
    display: flex; align-items: center; justify-content: center;
    text-align: center; color: white; padding: 1rem;
}
.gallery-item-card:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay .overlay-content { transform: scale(0.9); transition: transform 0.3s ease 0.1s; }
.gallery-item-card:hover .gallery-item-overlay .overlay-content { transform: scale(1); }
.gallery-item-overlay .overlay-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; } /* Combined */
.gallery-item-caption { font-weight: 500; font-size: 0.9rem; line-height: 1.3; margin: 0; }
.gallery-item-overlay.video-overlay { background-color: rgba(0, 0, 0, 0.65); }
/* Dark Mode Gallery Page */
 
/* Blog Page Styles */
#blog-page { padding-top: 4rem; }
/* Blog filters/card/pagination styles inherited */
#blog-page .blog-card .blog-excerpt { font-size: 0.9rem; line-height: 1.5; }
/* Dark Mode Blog Page */
.dark-mode #blog-page { background-color: #1a1a1a; }
/* Dark mode styles inherited */

/* Blog Single Page Styles */
#blog-post-content { padding-top: 4rem; }
/* .post-header { Optional spacing } */
.post-title { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--dark-color); line-height: 1.3; }
.post-meta { font-size: 0.875rem; }
.post-meta span { display: inline-block; margin-right: 0.25rem; }
.post-meta a { color: inherit; text-decoration: none; }
.post-meta a:hover { color: var(--primary-color); text-decoration: underline; }
.featured-image img { max-height: 500px; width: 100%; object-fit: cover; }
.post-body { font-size: 1.05rem; line-height: 1.75; color: #333; }
.post-body p { margin-bottom: 1.25rem; }
.post-body h2, .post-body h3, .post-body h4 { font-family: 'Montserrat', sans-serif; font-weight: 600; margin-top: 2.5rem; margin-bottom: 1rem; color: var(--dark-color); }
.post-body h2 { font-size: 1.6rem; } .post-body h3 { font-size: 1.4rem; } .post-body h4 { font-size: 1.2rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-body ul li, .post-body ol li { margin-bottom: 0.5rem; }
/* .post-body blockquote.custom-blockquote { border-left: 4px solid var(--primary-color); background-color: #f8f9fa; font-size: 1rem; color: #555; } */
/* .post-body blockquote.custom-blockquote .blockquote-footer { color: var(--primary-color); font-size: 0.85rem; } */
.post-share .social-share-btn { border-radius: 50px; transition: all 0.3s ease; }
.post-share .social-share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.author-bio img { width: 80px; height: 80px; object-fit: cover; }
/* Dark Mode Blog Single */
 
/* Membership Page Styles */
.membership-hero-section { padding-top: 6rem; padding-bottom: 4rem; }
.membership-hero-section h1 { color: var(--primary-color); }
/* #membership-benefits { Background set by utility } */
.benefit-card-detailed { /* Detailed cards on membership page */
    background-color: #fff; border: 1px solid #e9ecef; border-radius: 10px; padding: 2rem 1.5rem;
    text-align: center; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    display: flex; flex-direction: column; height: 100%; /* Added */
}
.benefit-card-detailed:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0,0,0,0.07); }
.benefit-icon-lg { margin-bottom: 1rem; /* Color applied via utility */ }
/* .benefit-icon-lg i { Size applied via fa-2x } */
.benefit-title { font-family: 'Montserrat', sans-serif; font-weight: 600; margin-bottom: 0.75rem; color: var(--dark-color); }
.benefit-text { line-height: 1.6; flex-grow: 1; color: #6c757d; } /* Added color */
#membership-join .card { margin-top: 1rem; }
/* Dark Mode Membership Page */
 
/* Contact Page Styles */
.contact-header-section { padding-top: 6rem; padding-bottom: 4rem; }
.contact-header-section h1 { color: var(--primary-color); }
 
.contact-subtitle { /* Subheadings on contact page */
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1.4rem;
    color: var(--dark-color); margin-bottom: 1.5rem; position: relative; padding-bottom: 8px;
}
.contact-subtitle::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px;
    background-color: var(--accent-color);
}
#contact-main .contact-item h5 { font-size: 1.1rem; margin-bottom: 0.3rem; }
#contact-main .contact-item p, #contact-main .contact-item p a { font-size: 0.9rem; color: #555; margin-bottom: 0.3rem; text-decoration: none; }
#contact-main .contact-item p a:hover { color: var(--primary-color); text-decoration: underline; }
#contact-main .map-container { height: 350px; }
#contactForm .alert { margin-bottom: 0; }
/* Dark Mode Contact Page */
 
/* Cart Page Styles */
#cart-page { padding-top: 4rem; }
.cart-table-wrapper { overflow: hidden; }
.cart-table thead th { font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px; color: #6c757d; background-color: #f8f9fa; padding-top: 1rem; padding-bottom: 1rem; border-bottom-width: 2px; /* Ensure border visible */ }
.cart-table tbody tr { transition: background-color 0.2s ease; }
.cart-table td { vertical-align: middle; padding: 1rem 0.5rem; /* Adjust padding */ }
.cart-item-img { width: 70px; height: 70px; object-fit: cover; }
.cart-item-title { font-size: 0.95rem; text-decoration: none; color: var(--dark-color); } /* Added color */
.cart-item-title:hover { color: var(--primary-color); }
.cart-quantity-input { max-width: 80px; text-align: center; -moz-appearance: textfield; }
.cart-quantity-input::-webkit-outer-spin-button, .cart-quantity-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.btn-remove-item { font-size: 1.1rem; line-height: 1; padding: 0.25rem; color: #dc3545; } /* Added color */
.btn-remove-item:hover { color: #a02a33 !important; }
.cart-summary-card { position: sticky; top: 100px; }
.cart-summary-card .card-header { border-bottom: 1px solid #e9ecef; }
.cart-summary-card .list-group-item { padding: 0.75rem 0; font-size: 0.95rem; border: none; /* Cleaner look */ }
/* Cart totals styled by utilities */
#empty-cart-message i { opacity: 0.5; }
@media (max-width: 767.98px) {
    .cart-item-img { width: 50px; height: 50px; margin-right: 0.75rem !important; }
    .cart-item-title { font-size: 0.9rem; } .cart-quantity-input { max-width: 60px; } .btn-remove-item { font-size: 1rem; }
}
/* Dark Mode Cart Page */
 
/* Wishlist Page Styles */
#wishlist-page { padding-top: 4rem; }
.wishlist-item-card { background-color: #fff; border: 1px solid #e9ecef; border-radius: 8px; transition: box-shadow 0.3s ease; overflow: hidden; }
.wishlist-item-card:hover { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); }
.wishlist-item-image-link { display: block; height: 100%; }
.wishlist-item-image { width: 100%; height: 100%; object-fit: cover; max-height: 150px; min-height: 100px; }
.wishlist-item-details { min-height: 100px; align-items: center; }
.wishlist-item-name { font-size: 1rem; font-weight: 600; text-decoration: none; color: var(--dark-color); line-height: 1.3; }
.wishlist-item-name:hover { color: var(--primary-color); }
.wishlist-item-category { font-size: 0.8rem; color: #6c757d; } /* Added color */
.wishlist-item-price { font-size: 1.1rem; white-space: nowrap; }
.wishlist-item-actions { flex-shrink: 0; }
.wishlist-item-actions .add-to-cart-wishlist { padding: 0.3rem 0.8rem; font-size: 0.85rem; white-space: nowrap; }
.wishlist-item-actions .btn-remove-wishlist { font-size: 0.9rem; padding: 0.25rem 0.5rem; color: #dc3545; } /* Added color */
.wishlist-item-actions .btn-remove-wishlist:hover { color: #a02a33 !important; }
@media (max-width: 767.98px) {
    .wishlist-item-image { max-height: 100px; }
    .wishlist-item-details { align-items: flex-start; padding: 0.75rem 1rem; }
    .wishlist-item-price { margin-bottom: 0.5rem; width: 100%; text-align: left; }
    .wishlist-item-actions { width: 100%; justify-content: space-between; }
    .wishlist-item-actions .add-to-cart-wishlist { flex-grow: 1; margin-right: 0.5rem !important; }
    .wishlist-item-actions .btn-remove-wishlist { flex-shrink: 0; }
}
#empty-wishlist-message i { opacity: 0.5; }
/* Dark Mode Wishlist */
 
/* Single Product Page Styles */
#single-product-page { padding-top: 4rem; background-color: #fff; }
#single-product-page .breadcrumb a { color: var(--primary-color); }
.product-thumbnails-v2 { gap: 0.75rem; }
.product-thumbnail-item-v2 { display: block; width: 75px; height: 75px; border: 2px solid #e9ecef; border-radius: 8px; overflow: hidden; cursor: pointer; transition: border-color 0.3s ease, transform 0.2s ease; flex-shrink: 0; }
.product-thumbnail-item-v2 img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnail-item-v2.active, .product-thumbnail-item-v2:hover { border-color: var(--primary-color); transform: scale(1.05); }
.product-main-image-v2 img {   object-fit: cover;  border-radius: 8px; }
.product-details-main-v2 { padding-left: 1rem; }
@media (max-width: 991.98px) { .product-details-main-v2 { padding-left: 0; } }
.product-category-v2 { font-size: 0.8rem; font-weight: 500; color: var(--primary-color); text-transform: uppercase; letter-spacing: 0.5px; display: block; }
.product-category-v2 a { color: inherit; text-decoration: none; }
.product-category-v2 a:hover { text-decoration: underline; }
.product-title-v2 { font-weight: 600; color: var(--dark-color); line-height: 1.3; }
.product-price-lg-v2 { /* Inherited */ margin-bottom: 1.5rem; }
.product-short-desc-v2 { font-size: 1rem; line-height: 1.6; color: #6c757d; } /* Added color */
.product-options-v2 .option-label { font-size: 0.9rem; color: #333; }
.product-options-v2 .option-button { border-width: 1px; border-color: #ced4da; color: #495057; padding: 0.3rem 0.8rem; font-size: 0.875rem; border-radius: 50px; transition: all 0.2s ease; min-width: 45px; text-align: center; }
.product-options-v2 .option-button:hover { background-color: #e9ecef; }
.product-options-v2 .btn-check:checked + .option-button { background-color: var(--primary-color); border-color: var(--primary-color); color: white; box-shadow: 0 2px 5px rgba(58, 12, 163, 0.3); }
.product-quantity-v2 .option-label { font-size: 0.9rem; color: #333; }
.quantity-input-group-v2 .btn { border-color: #ced4da; color: #6c757d; padding: 0.375rem 0.75rem; }
.quantity-input-group-v2 .btn:hover { background-color: #e9ecef; }
.quantity-input-group-v2 .quantity-input-v2 { border-left: 0; border-right: 0; border-radius: 0; box-shadow: none !important; background-color: #fff; user-select: none; cursor: default; }
.product-actions-main-v2 .add-to-cart-main-v2 { padding: 0.75rem 1.75rem; font-weight: 500; }
.product-actions-main-v2 .add-to-wishlist-main-v2 { color: #6c757d; font-size: 0.9rem; text-decoration: none; transition: color 0.3s ease; }
.product-actions-main-v2 .add-to-wishlist-main-v2:hover { color: var(--accent-color); }
.product-actions-main-v2 .add-to-wishlist-main-v2 i.fas { color: var(--accent-color); }
.product-meta-info-v2 { border-top: 1px solid #eee; }
.product-meta-info-v2 p { line-height: 1.5; }
.product-meta-info-v2 a { color: #6c757d; }
.product-meta-info-v2 a:hover { color: var(--primary-color); }
.product-tabs-v2 { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid #eee; }
.nav-tabs-custom-v2 { border-bottom: 1px solid #dee2e6; margin-bottom: 1.5rem; }
.nav-tabs-custom-v2 .nav-link { color: #6c757d; background-color: transparent; border: none; border-bottom: 3px solid transparent; padding: 0.75rem 0; margin-right: 2rem; font-weight: 500; transition: color 0.2s ease, border-color 0.2s ease; }
.nav-tabs-custom-v2 .nav-link:hover { color: var(--primary-color); }
.nav-tabs-custom-v2 .nav-link.active { color: var(--primary-color); border-bottom-color: var(--primary-color); }
.tab-content-custom-v2 { font-size: 0.95rem; line-height: 1.7; color: #495057; }
.tab-content-custom-v2 h5, .tab-content-custom-v2 h6 { font-weight: 600; color: var(--dark-color); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.tab-content-custom-v2 ul.list-styled { list-style: none; padding-left: 0; }
.tab-content-custom-v2 ul.list-styled li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; }
.tab-content-custom-v2 ul.list-styled li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; left: 0; top: 3px; color: var(--success-color); font-size: 0.8em; }
.specs-table-v2 th { font-weight: 500; width: 35%; background-color: transparent; border-top: none; padding: 0.5rem 0.75rem; }
.specs-table-v2 td { border-top: none; padding: 0.5rem 0.75rem; color: #6c757d; }
.specs-table-v2 tr:nth-child(odd) > * { background-color: rgba(0,0,0,0.02); }
/* Dark Mode Single Product */
 

/* Profile Page Styles */
#profile-page { padding-top: 4rem; }
.profile-page-title { font-weight: 700; color: var(--dark-color); }
/* Profile Card Widget (Sidebar) - Combining */
.member-profile-card { border: none; }
.member-profile-card .card-body { padding: 1.5rem; }
.member-avatar { /* Used instead of profile-widget-img */
    width: 100px; height: 100px; border: 4px solid var(--light-color);
    box-shadow: 0 3px 8px rgba(0,0,0,0.1); object-fit: cover; border-radius: 50%; /* Added */
}
.member-name { /* Used instead of profile-widget-name */
    font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1.15rem;
}
.member-status { /* Used instead of profile-widget-status */ font-size: 0.85rem; font-weight: 500; }
 
.member-stats .stat-value { font-weight: 600; font-size: 1.1rem; }
.member-stats .stat-label { font-size: 0.75rem; color: #6c757d; text-transform: uppercase; }
/* Profile Navigation (Sidebar/Top) */
.profile-nav { border: none; }
.profile-nav .card-body { padding: 0.5rem; }
.profile-nav .nav-link {
    color: #555; padding: 0.75rem 1rem; font-size: 0.95rem;
    border-radius: 6px; margin-bottom: 2px; transition: background-color 0.2s ease, color 0.2s ease;
    display: inline-flex; /* Align icon and text */ align-items: center;
    margin-right: 0.5rem; /* Spacing for horizontal */
}
.profile-nav .nav-link i { color: #999; transition: color 0.2s ease; width: 20px; /* Align icons */ }
.profile-nav .nav-link:hover { background-color: #f8f9fa; color: var(--primary-color); }
.profile-nav .nav-link:hover i { color: var(--primary-color); }
.profile-nav .nav-link.active { background-color: var(--primary-color); color: white; font-weight: 500; }
.profile-nav .nav-link.active i { color: white; }
.profile-nav .nav-link.text-danger:hover { background-color: rgba(220, 53, 69, 0.1); }
/* Profile Tab Content Area */
.profile-tab-content { border: none; background-color: #fff; border-radius: 8px; }
.profile-section-title { font-size: 1.5rem; font-weight: 600; color: var(--dark-color); border-bottom: 1px solid #eee; padding-bottom: 0.75rem; }
/* Overview Tab */
#profile-overview dl { font-size: 0.95rem; }
#profile-overview dt { font-weight: 500; color: #555; }
#profile-overview dd { color: #333; margin-bottom: 0.75rem; }
/* Orders & Downloads Tables */
.orders-table thead th, .downloads-table thead th { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; color: #6c757d; background-color: transparent; border-bottom: 2px solid #dee2e6; padding-top: 0.5rem; padding-bottom: 0.5rem; }
.orders-table tbody td, .downloads-table tbody td { font-size: 0.9rem; vertical-align: middle; padding: 0.75rem 0.5rem; }
.orders-table tbody td a, .downloads-table tbody td a { color: var(--primary-color); text-decoration: none; font-weight: 500; }
.orders-table tbody td a:hover, .downloads-table tbody td a:hover { text-decoration: underline; }
.btn-xs { padding: 0.15rem 0.4rem; font-size: 0.75rem; line-height: 1.4; border-radius: 0.2rem; }
/* Address Cards */
.address-card { border: 1px solid #e9ecef; transition: box-shadow 0.3s ease; }
.address-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.address-card .card-title { font-size: 1rem; font-weight: 600; }
.address-card address { line-height: 1.6; font-size: 0.9rem; } /* Added font-size */
/* Settings Form */
#profile-settings .form-label.fw-bold { font-size: 1rem; color: var(--dark-color); }
#profile-settings .form-label.small { font-size: 0.85rem; margin-bottom: 0.25rem; }
/* Empty State */
.empty-state-icon { font-size: 3rem; color: #ced4da; margin-bottom: 1rem; }

/* --- DARK MODE FOR PROFILE REMOVED AS REQUESTED --- */
/* No .dark-mode rules targeting #profile-page or its specific children */


/* === END: Styles likely intended for page-specific files === */



















  /* Additional Styles specific to this page for enhanced look */
  #auth-section {
    min-height: 100vh; /* Ensure section fills viewport height */
    padding-top: 100px; /* Adjust padding below fixed navbar */
    padding-bottom: 60px;
    background-color: var(--light-color); /* Use light background */
}

.auth-card {
    background-color: #fff;
    border: none;
    border-radius: 15px;
    overflow: hidden; /* Ensure image respects border radius */
}

.auth-image-side {
    /* Placeholder background */
    background: linear-gradient(135deg, rgba(58, 12, 163, 0.8), rgba(76, 201, 240, 0.7)), url('https://via.placeholder.com/800x1000/cccccc/888888?text=Innovation+Background') center center/cover no-repeat;
    min-height: 300px; /* Min height for visual consistency */
}

.auth-form-side {
     display: flex;
     flex-direction: column;
     justify-content: center;
}

.auth-tabs .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    border-radius: 30px; /* Pill shape tabs */
    margin: 0 5px;
    padding: 0.5rem 1.5rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.auth-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: white;
}
.auth-tabs .nav-link:hover:not(.active) {
    background-color: rgba(58, 12, 163, 0.1);
     color: var(--primary-color);
}

.form-control-icon {
    position: relative;
}
 .form-control-icon .form-control {
    padding-left: 2.5rem; /* Space for icon */
 }
.form-control-icon .input-icon {
     position: absolute;
     left: 0.75rem;
     top: 50%;
     transform: translateY(-50%);
     color: #ced4da; /* Muted icon color */
     pointer-events: none; /* Prevent icon interaction */
}
 .form-control:focus + .input-icon {
     color: var(--primary-color); /* Change icon color on focus */
 }

.alt-action {
    font-size: 0.9rem;
}
.alt-action a {
     color: var(--primary-color);
     text-decoration: none;
     font-weight: 500;
}
 .alt-action a:hover {
     text-decoration: underline;
 }
 

.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}





.auth-container {
    min-height: 80vh;
}

.auth-card {
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    border: none;
}

.auth-sidebar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.auth-sidebar h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.auth-sidebar p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.auth-form {
    padding: 2.5rem;
}

.auth-form h3 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-control {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(94, 53, 177, 0.2);
    border-color: var(--primary);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: #f5f5f5;
    border-color: #d5d5d5;
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.divider-text {
    padding: 0 1rem;
    color: #757575;
    font-size: 0.875rem;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.signup-toggle {
    text-align: center;
    margin-top: 1.5rem;
}

.signup-toggle a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.signup-toggle a:hover {
    text-decoration: underline;
}

.features-section {
    padding: 5rem 0;
    background-color: white;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(94, 53, 177, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

footer {
    background-color: #212121;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links h5 {
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Form tab styling */
.auth-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.auth-tab {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: #757575;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.auth-content {
    display: none;
}

.auth-content.active {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .auth-sidebar {
        padding: 3rem 2rem;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .auth-form {
        padding: 1.5rem;
    }
}

/* Custom login error alert styling */
.login-error-alert {
    background-color: rgba( 255, 0, 0, 0.1); /* light red bg */
    border: 1px solid var(--accent-color);
    color: var(--alert-color);
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}










/* Add to shop-style-v2.css or style.css */
.empty-state {
    padding: 2rem;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
}

.empty-state i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #343a40;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
}
 Add to shop-style-v2.css or style.css */
.empty-state {
    padding: 2rem;
    text-align: center;
    background: #f9f9f9;
    border-radius: 8px;
}

.empty-state i {
    font-size: 3rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

.empty-state h3 {
    color: #343a40;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
}
.event-title { font-family: 'Montserrat', sans-serif; font-weight: 600;  margin-top: 100px;}


.gallery-image { position: relative; overflow: hidden; }
.gallery-overlay {
    position: absolute;
    top: 10; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.gallery-image:hover .gallery-overlay,
.gallery-image:focus .gallery-overlay {
    opacity: 1;
    pointer-events: auto;
}
.gallery-image img { display: block; width: 100%; height: auto; }

