/* Global Styles */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #f88f06;
    --accent-color: #2c3e50;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    padding-top: 76px;
    /* Account for fixed header */
}

a {
    text-decoration: none;
}

/* Header Styles */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
}


.nav-link:hover {
    color: var(--secondary-color) !important;
    font-size: 0.9 rem;
}


.dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 8px 0;
    border-radius: 0px;
}

.dropdown-item {
    padding: 8px 20px;
    color: var(--text-color);
    transition: background 0.3s;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.dropdown-item:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(24,24,24,0.7), rgba(24,24,24,0.7)), 
    url('../_admin_control/_web_banner/hero_Banner.jpg'); 
    background-size: cover; 
    background-position: center; 
    min-height: 60vh; 
    position: relative; 
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 4rem;
    color: #e74c3c;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    color: var(--secondary-color);
}

/* Involvement Cards */
.involvement-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.involvement-card:hover {
    transform: translateY(-10px);
}

.involvement-card i {
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
}

footer h5 {
    color: white;
    font-size: 1.0rem;
    font-weight: bold;
}

footer p {
    color: white;
    font-size: 0.9rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li a {
    color: white;
    font-size: 0.9rem;
}





.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* About Page Styles */
.mission-section {
    background-color: var(--light-bg);
}

.mission-section img {
    transition: transform 0.3s ease;
}

.mission-section img:hover {
    transform: scale(1.02);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--secondary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

.timeline-item:nth-child(even)::before {
    right: auto;
    left: -6px;
}

/* Team Cards */
.team-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid var(--light-bg);
    transition: border-color 0.3s ease;
}

.team-card:hover img {
    border-color: var(--secondary-color);
}

/* Impact Cards */
.impact-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
}

.impact-card i {
    color: var(--secondary-color);
}

.impact-card h3 {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Services Page Styles */
.services-hero {
    background-color: var(--light-bg);
}

.services-hero img {
    transition: transform 0.3s ease;
}

.services-hero img:hover {
    transform: scale(1.02);
}

/* Service Category Cards */
.service-category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-category-card i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.service-category-card:hover i {
    transform: scale(1.1);
}

/* Project Cards */
.project-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card img {
    transition: transform 0.3s ease;
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-content {
    background: white;
}

.progress {
    height: 10px;
    background-color: var(--light-bg);
}

.progress-bar {
    background-color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-section .btn-light {
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Page Styles */
.contact-hero {
    background-color: var(--light-bg);
}

.contact-hero img {
    transition: transform 0.3s ease;
}

.contact-hero img:hover {
    transform: scale(1.02);
}

/* Info Cards */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-card i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.1);
}

/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Map Section */
.map-section .map-container {
    height: 450px;
}

.map-section .map-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .service-card,
    .involvement-card {
        margin-bottom: 2rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item {
        width: 100%;
        padding-left: 2rem;
        padding-right: 0;
        margin-left: 0;
    }

    .timeline-item::before {
        left: -6px;
    }

    .service-category-card {
        margin-bottom: 2rem;
    }

    .project-card {
        margin-bottom: 2rem;
    }

    .info-card {
        margin-bottom: 2rem;
    }

    .map-section .map-container {
        height: 300px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Styles */
:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Skip to Main Content Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--secondary-color);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Auth Section Styles */
.auth-section {
    padding-top: 100px;
    min-height: calc(100vh - 100px);
    background-color: var(--light-bg);
}

.auth-tabs {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.auth-tabs .nav-tabs {
    border-bottom: 2px solid var(--light-bg);
}

.auth-tabs .nav-tabs .nav-link {
    border: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 1rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.auth-tabs .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.auth-tabs .nav-tabs .nav-link:hover::after,
.auth-tabs .nav-tabs .nav-link.active::after {
    transform: scaleX(1);
}

.auth-tabs .nav-tabs .nav-link.active {
    color: var(--primary-color);
    background-color: transparent;
}

.auth-card {
    padding: 2rem;
}

.auth-card .form-label {
    font-weight: 500;
    color: var(--text-color);
}

.auth-card .form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.auth-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
}

.auth-card .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.auth-card .btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-login {
    position: relative;
    margin-top: 2rem;
}

.social-login::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: #dee2e6;
}

.social-login p {
    position: relative;
    display: inline-block;
    background-color: white;
    padding: 0 1rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.social-login .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-login .btn-outline-dark:hover {
    background-color: #333;
    color: white;
}

.social-login .btn-outline-primary:hover {
    background-color: #1877f2;
    color: white;
}

/* Responsive Styles for Auth Section */
@media (max-width: 768px) {
    .auth-section {
        padding-top: 80px;
    }

    .auth-tabs {
        padding: 1rem;
    }

    .auth-tabs .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
    }

    .auth-card {
        padding: 1rem;
    }
}

.activity-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
    background: #f8f9fa;
    opacity: 0;
    transform: scale(0.96) translateY(20px);
    animation: activityImgFadeIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes activityImgFadeIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.activity-title {
    color: #d32f2f;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
    margin-top: 0.5rem;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: activityTitleFadeIn 0.7s 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
@keyframes activityTitleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .activity-img { height: 180px; }
}
@media (max-width: 767.98px) {
    .activity-img { height: 140px; }
}

 /* Standard size for all gallery images */
 .standard-gallery-img-wrapper {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    overflow: hidden;
}
.standard-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), filter 0.3s;
}
.gallery-hover-card .gallery-img-wrapper:hover .gallery-img-effect,
.gallery-hover-card .gallery-img-wrapper:focus .gallery-img-effect {
    transform: scale(1.07) rotate(-1deg);
    filter: brightness(0.85) blur(1px);
}
.gallery-hover-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(40,40,40,0.45);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 0.375rem;
}
.gallery-hover-card .gallery-img-wrapper:hover .gallery-hover-overlay,
.gallery-hover-card .gallery-img-wrapper:focus .gallery-hover-overlay {
    opacity: 1;
}
.gallery-hover-overlay i {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}


.registration-section {
    background: linear-gradient(135deg, #fff7f7 0%, #ffe5e5 100%);
    border-radius: 0.5rem;
    box-shadow: 0 8px 32px 0 rgba(220, 53, 69, 0.15);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.registration-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #dc3545;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.form-label {
    font-weight: 600;
    color: #dc3545;
}
.form-control:focus, .form-select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220,53,69,.15);
}
.custom-btn-danger {
    background: linear-gradient(90deg, #dc3545 60%, #ff6f61 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 2rem;
    transition: background 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px 0 rgba(220, 53, 69, 0.15);
}
.custom-btn-danger:hover, .custom-btn-danger:focus {
    background: linear-gradient(90deg, #ff6f61 0%, #dc3545 100%);
    color: #fff;
    box-shadow: 0 6px 24px 0 rgba(220, 53, 69, 0.25);
}
.form-section-divider {
    border-top: 2px dashed #dc3545;
    margin: 2rem 0 1.5rem 0;
}
.profile-photo-label {
    color: #dc3545;
    font-weight: 600;
}
.profile-photo-input::-webkit-file-upload-button {
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 1rem;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    transition: background 0.3s;
}
.profile-photo-input::-webkit-file-upload-button:hover {
    background: #ff6f61;
}
@media (max-width: 767px) {
    .registration-section {
        padding: 1.2rem 0.5rem;
    }
}

/* About ABTMM */
.abtmm-hero {
    background: linear-gradient(120deg, #f8fafc 60%, #e0e7ef 100%);
    padding: 60px 0 40px 0;
    position: relative;
}
.abtmm-hero .logo-img {
    max-width: 180px;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    background: #fff;
    padding: 10px;
}
.abtmm-hero .display-3 {
    color: #b71c1c;
    font-weight: 800;
    letter-spacing: 1px;
}
.abtmm-section-title {
    color: #b71c1c;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}
.abtmm-values i {
    color: #b71c1c;
    margin-right: 10px;
}
.abtmm-timeline {
    border-left: 3px solid #b71c1c;
    margin-left: 20px;
    padding-left: 30px;
    position: relative;
}
.abtmm-timeline .event {
    position: relative;
    margin-bottom: 2.5rem;
}
.abtmm-timeline .event:before {
    content: '';
    position: absolute;
    left: -38px;
    top: 0;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 3px solid #b71c1c;
    border-radius: 50%;
    z-index: 1;
}
.abtmm-impact-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(183,28,28,0.08);
    padding: 2rem 1rem;
    transition: transform 0.2s;
}
.abtmm-impact-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 6px 32px rgba(183,28,28,0.13);
}
.abtmm-impact-card i {
    color: #b71c1c;
}
.abtmm-motto {
    background: linear-gradient(90deg, #b71c1c 60%, #e57373 100%);
    color: #fff;
    border-radius: 1rem;
    padding: 2rem 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 2rem 0;
    letter-spacing: 1px;
}
@media (max-width: 767px) {
    .abtmm-hero .display-3 {
        font-size: 2.2rem;
    }
}

/* kanya mandal */
 
        .kanya-hero {
            background: linear-gradient(120deg, #fff7f7 60%, #ffe5e5 100%);
            padding: 60px 0 40px 0;
            position: relative;
        }
        .kanya-hero .logo-img {
            max-width: 160px;
            border-radius: 50%;
            box-shadow: 0 4px 24px rgba(220,53,69,0.10);
            background: #fff;
            padding: 10px;
        }
        .kanya-section-title {
            color: #b71c1c;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
        }
        .kanya-card {
            background: #fff;
            border-radius: 1rem;
            box-shadow: 0 2px 16px rgba(220,53,69,0.08);
            padding: 2rem 1.5rem;
            transition: transform 0.2s;
        }
        .kanya-card:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 6px 32px rgba(220,53,69,0.13);
        }
        .kanya-card i {
            color: #b71c1c;
        }
        .kanya-motto {
            background: linear-gradient(90deg, #b71c1c 60%, #e57373 100%);
            color: #fff;
            border-radius: 1rem;
            padding: 2rem 1rem;
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
            margin: 2rem 0;
            letter-spacing: 1px;
        }
        .kanya-leader-img {
            width: 110px;
            height: 110px;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 2px 12px rgba(220,53,69,0.10);
            margin-bottom: 1rem;
        }
        .kanya-values i {
            color: #b71c1c;
            margin-right: 10px;
        }
        @media (max-width: 767px) {
            .kanya-hero .display-3 {
                font-size: 2.2rem;
            }
        }
 
/* about rohini */
 
.rohini-hero {
    background: linear-gradient(120deg, #f8e1f4 0%, #fff 100%);
    padding: 60px 0 40px 0;
    text-align: center;
}
.rohini-hero img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}
.rohini-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #b30059;
    margin-bottom: 10px;
}
.rohini-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 18px;
}
.rohini-section {
    padding: 48px 0;
}
.rohini-section-title {
    font-size: 2.1rem;
    font-weight: 600;
    color: #b30059;
    margin-bottom: 32px;
    text-align: center;
}
.rohini-quote {
    font-size: 1.4rem;
    color: #b30059;
    font-style: italic;
    margin: 32px 0 0 0;
    text-align: center;
}
.rohini-vision-list li {
    margin-bottom: 18px;
    font-size: 1.1rem;
}
.rohini-impact-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(179,0,89,0.07);
    padding: 32px 18px;
    text-align: center;
    margin-bottom: 24px;
    transition: transform 0.2s;
}
.rohini-impact-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 32px rgba(179,0,89,0.13);
}
.rohini-impact-card i {
    color: #b30059;
    margin-bottom: 12px;
}
.rohini-impact-card h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #b30059;
}
.rohini-impact-card p {
    margin-bottom: 0;
    color: #6c757d;
}
.rohini-motto {
    background: #f8e1f4;
    padding: 32px 0;
    text-align: center;
}
.rohini-motto span {
    font-size: 1.3rem;
    color: #b30059;
    font-style: italic;
}
.rohini-motto .fs-6 {
    color: #6c757d;
}
@media (max-width: 767px) {
    .rohini-hero img {
        width: 110px;
        height: 110px;
    }
    .rohini-title {
        font-size: 2rem;
    }
}
 
/* Branch Style */
 
.branch-card-header {
    background: linear-gradient(90deg, #d32f2f 0%, #ff9800 100%);
    color: #fff;
}
.branch-table thead {
    background: linear-gradient(90deg, #ff7043 0%, #ffd54f 100%);
    color: #b71c1c;
}
.btn-orange-red {
    background: linear-gradient(90deg, #d84315 0%, #ffb300 100%);
    color: #fff;
    border: none;
}
.btn-orange-red:hover, .btn-orange-red:focus {
    background: linear-gradient(90deg, #b71c1c 0%, #ff9800 100%);
    color: #fff;
}
.alert-orange {
    background: linear-gradient(90deg, #ffccbc 0%, #ffe0b2 100%);
    color: #d84315;
    border: 1px solid #ff9800;
}
/* Ensure the main content area takes at least the full viewport height minus header/footer */
.min-vh-custom {
    min-height: 80vh;
    display: flex;
    align-items: center;
}
@media (max-width: 991.98px) {
    .min-vh-custom {
        min-height: 60vh;
    }
}


/* Branch Details Style */

.branch-details-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(44, 62, 80, 0.13), 0 1.5px 6px rgba(255, 152, 0, 0.13);
    background: linear-gradient(120deg, #fff3e0 0%, #ffe0b2 100%);
    margin-top: 40px;
}
.branch-details-header {
    background: linear-gradient(90deg, #d84315 0%, #ffb300 100%);
    color: #fff;
    padding: 32px 24px 24px 24px;
    border-bottom-left-radius: 40px 80px;
    border-bottom-right-radius: 40px 80px;
    box-shadow: 0 2px 12px rgba(255, 152, 0, 0.13);
}
.branch-details-img {
    width: 100%;
    max-width: 350px;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(255, 152, 0, 0.18);
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
    cursor: pointer;
}
.branch-details-img:hover {
    transform: scale(1.04) rotate(-1deg);
    box-shadow: 0 8px 32px rgba(255, 87, 34, 0.25);
}
.branch-details-body {
    padding: 32px 24px;
}
.branch-details-label {
    font-weight: 600;
    color: #d84315;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}
.branch-details-value {
    color: #333;
    font-size: 1.08em;
    margin-bottom: 18px;
}
.branch-details-desc {
    background: #fff8e1;
    border-left: 5px solid #ff9800;
    padding: 18px 20px;
    border-radius: 10px;
    font-size: 1.08em;
    color: #5d4037;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.08);
}
.branch-details-gallery {
    margin-top: 18px;
}
.branch-details-gallery img {
    width: 100%;
    max-width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.13);
    transition: transform 0.2s;
    cursor: pointer;
}
.branch-details-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(255, 87, 34, 0.18);
}
@media (max-width: 767.98px) {
    .branch-details-header, .branch-details-body {
        padding: 18px 10px;
    }
    .branch-details-img {
        max-width: 100%;
        height: 180px;
    }
    .branch-details-gallery img {
        max-width: 80px;
        height: 60px;
    }
}

.fullscreen-map-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 400px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.fullscreen-map-section .map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    border: 0;
    z-index: 1;
}
.fullscreen-map-section .map-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}
.fullscreen-map-section .map-overlay-content h2 {
    background: rgba(255,255,255,0.85);
    padding: 2rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
    font-size: 2.5rem;
    color: #222;
    pointer-events: auto;
}
 
 
 

