/* ============================================
   CSS Reset & Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0c0e7a;
    --secondary-color: #27ae60;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-gujarati: 'Noto Sans Gujarati', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Remove space above header for admin bar */
body.admin-bar .header {
    top: 0;
    margin-top: 0;
}

/* Ensure proper spacing for fixed header */
.site-main {
    margin-top: 0;
    padding-top: 0;
    position: relative;
}

main {
    margin-top: 0;
    padding-top: 0;
    position: relative;
}

/* Account for WordPress admin bar */
body.admin-bar .site-main,
body.admin-bar main {
    margin-top: 0;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-main,
    body.admin-bar main {
        margin-top: 0;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #1a1da0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #219a52;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background-color: #e74c3c;
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-item i {
    margin-right: 5px;
}

.top-bar-item a {
    color: white;
    text-decoration: none;
}

.top-bar-item a:hover {
    text-decoration: underline;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    margin: 0 !important;
    padding: 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000 !important;
    transition: var(--transition);
    overflow: visible !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
}

/* Admin bar adjustment for WordPress */
body.admin-bar .header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .header {
        top: 46px;
    }
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
}

.nav-brand .logo {
    width: 100%;
    height: 120px;
    object-fit: contain;
    display: block;
    padding: 5px 0;
}

.logo-text {
    font-family: var(--font-gujarati);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.btn-login {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
}

.nav-link.btn-login::after {
    display: none;
}

.nav-link.btn-login:hover {
    background-color: #1a1da0;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.hero-buttons .btn {
    background-color: #fff !important;
    color: #0c0e7a !important;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    padding: 10px 0;
    margin-top: 10px;
    z-index: 1001;
    pointer-events: none;
    display: block;
}

/* When dropdown is active, enable pointer events */
.dropdown.active .dropdown-menu,
.dropdown-menu.show {
    pointer-events: auto !important;
}

/* Dropdown opens on click only - hover disabled */
/* Hover behavior disabled - use icon click instead */
.dropdown:hover .dropdown-menu {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    pointer-events: none !important;
}

/* Dropdown opens only when active class is present (click on icon) */
.dropdown.active .dropdown-menu,
.dropdown-menu.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
    pointer-events: auto !important;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.dropdown-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-menu a:hover::after {
    width: calc(100% - 40px);
}

.dropdown .nav-link i {
    font-size: 0.8rem;
    margin-left: 5px;
    cursor: pointer;
    padding: 5px;
    pointer-events: auto;
    z-index: 10;
}

.dropdown .nav-link i.fa-chevron-down {
    margin-left: auto;
    padding-left: 15px;
    padding-right: 5px;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 14, 122, 0.75);
    z-index: 1;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
    pointer-events: none;
}

.hero-nav-prev,
.hero-nav-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

.hero-nav-prev {
    left: 30px;
}

.hero-nav-next {
    right: 30px;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-indicators .indicator.active,
.hero-indicators .indicator:hover {
    background: white;
    transform: scale(1.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.hero-title {
    font-family: var(--font-gujarati);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 150px;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Vision, Mission, Goal Section
   ============================================ */
.vmgo-section {
    background-color: #f0f0f7;
    padding: 100px 0;
    position: relative;
}

.vmgo-section .section-header {
    margin-bottom: 60px;
}

.vmgo-section .section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.vmgo-section .section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

.vmgo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.vmgo-card {
    background-color: var(--bg-white);
    padding: 50px 35px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(12, 14, 122, 0.1);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vmgo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #1a1da0);
    transform: scaleX(0);
    transition: var(--transition);
}

.vmgo-card:hover::before {
    transform: scaleX(1);
}

.vmgo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(12, 14, 122, 0.2);
}

.vmgo-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-color), #1a1da0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: var(--transition);
    position: relative;
}

.vmgo-card:hover .vmgo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(12, 14, 122, 0.3);
}

.vmgo-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.75rem;
    font-weight: 700;
}

.vmgo-card p {
    margin-bottom: 0;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1rem;
}

.vmgo-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.vmgo-link:hover {
    gap: 10px;
}

/* ============================================
   News/Events Section
   ============================================ */
.news-section {
    background-color: var(--bg-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    min-width: 60px;
}

.date-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.date-month,
.date-year {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.news-content {
    padding: 25px;
}

.news-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.news-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.news-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-link:hover {
    gap: 10px;
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-choose-section {
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), #219a52);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    line-height: 1.8;
}

/* ============================================
   Facilities Section
   ============================================ */
.facilities-section {
    background-color: var(--bg-white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.facility-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition);
}

.facility-item:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.facility-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-color), #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.facility-item h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.facility-item p {
    font-size: 0.95rem;
}

/* ============================================
   Statistics Section
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1da0 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Achievements.svg') center/cover no-repeat;
    z-index: 0;
    opacity: 0.15;
}

.stats-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 14, 122, 0.85) 0%, rgba(26, 29, 160, 0.8) 100%);
    z-index: 1;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 14, 122, 0.3);
    z-index: 2;
}

.stats-section .container {
    position: relative;
    z-index: 3;
}

.stats-section .section-title {
    color: white;
}

.stats-section .section-title::after {
    background-color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
    margin-top: 60px;
}

.stat-item {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 500;
    color: white;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery-section {
    background-color: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 14, 122, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background-color: var(--primary-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/happymember.svg') center/cover no-repeat;
    z-index: 0;
    opacity: 0.15;
}

.testimonials-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 14, 122, 0.9) 0%, rgba(26, 29, 160, 0.85) 100%);
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-title::after {
    background-color: white;
}

.testimonials-content {
    padding: 60px 20px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(12, 14, 122, 0.3);
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.1);
    border-color: #1a1da0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    margin-bottom: 20px;
    color: #ffc107;
    font-size: 1.2rem;
    text-align: center;
    display: inline-flex;
}

.testimonial-stars i {
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
}

.testimonial-author {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
}

.testimonials-placeholder {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h3 {
    color: var(--text-dark);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(12, 14, 122, 0.1);
}

.form-actions {
    display: flex;
    gap: 15px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #1a1da0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    color: var(--text-light);
}

.contact-text a:hover {
    color: var(--primary-color);
}

.opening-hours h4 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.opening-hours ul li {
    padding: 8px 0;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
}

.opening-hours ul li span {
    font-weight: 500;
    color: var(--text-dark);
}
.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}
.policy-content h1 {
    color: #0c0e7a;
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}
.policy-content h2 {
    color: #0c0e7a;
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}
* ============================================
   Footer
   ============================================ */
footer.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr !important;
    gap: 40px !important;
    margin-bottom: 40px !important;
    visibility: visible !important;
}

.footer-column {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo h3 {
    font-family: var(--font-gujarati);
    color: white;
    margin-bottom: 10px;
}
.footer-logo img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    font-family: var(--font-gujarati);
    color: white;
    margin-bottom: 10px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-column h4 {
    color: white !important;
    margin-bottom: 20px !important;
    font-size: 1.25rem !important;
    display: block !important;
    visibility: visible !important;
    font-weight: 600 !important;
}

.footer-links {
    display: block !important;
    visibility: visible !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin-bottom: 10px !important;
    display: list-item !important;
    visibility: visible !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: var(--transition);
    display: inline-block !important;
    visibility: visible !important;
    text-decoration: none !important;
}

.footer-links a:hover {
    color: white !important;
    padding-left: 5px !important;
}

.footer-contact {
    display: block !important;
    visibility: visible !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-contact li {
    margin-bottom: 15px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    visibility: visible !important;
}

.footer-contact i {
    margin-top: 5px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--primary-color);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #1a1da0;
    transform: translateY(-5px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media screen and (max-width: 1600px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    /* Navigation menu adjustments */
    .header {
        overflow: visible;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
    }
    
    body.admin-bar .header {
        top: 32px !important;
    }
    
    .header .container {
        overflow: visible;
        padding: 0 10px !important;
        max-width: 1200px;
    }
    
    .navbar {
        display: flex;
        flex-wrap: nowrap;
        padding: 0.3rem 0;
        overflow: visible;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        display: flex;
        flex-shrink: 0;
        min-width: auto;
        overflow: visible;
        margin-left: auto;
        align-items: center;
    }
    
    .nav-list {
        display: flex;
        gap: 20px;
        flex-wrap: nowrap;
        overflow: visible;
        align-items: center;
    }
    
    .nav-link {
        display: block;
        font-size: 0.9rem;
        white-space: nowrap;
        padding: 5px 2px;
        flex-shrink: 0;
    }
    
    .nav-brand {
        display: flex;
        flex-shrink: 0;
        margin-right: 10px;
        align-items: center;
    }
    
    .nav-brand .logo {
        height: 100px;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .dropdown-menu {
        z-index: 1001 !important;
        position: absolute !important;
        display: block !important;
    }
    
    /* Footer responsive */
    .footer-content {
        gap: 40px;
    }
}

@media screen and (max-width: 1400px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    /* Navigation menu adjustments */
    .header {
        overflow: visible;
    }
    
    .header .container {
        overflow: visible;
        padding: 0 10px !important;
        max-width: 1200px;
    }
    
    .navbar {
        display: flex;
        flex-wrap: nowrap;
        padding: 0.3rem 0;
        overflow: visible;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        display: flex;
        flex-shrink: 0;
        min-width: auto;
        overflow: visible;
        margin-left: auto;
        align-items: center;
    }
    
    .nav-list {
        display: flex;
        gap: 16px;
        flex-wrap: nowrap;
        overflow: visible;
        align-items: center;
    }
    
    .nav-link {
        display: block;
        font-size: 0.88rem;
        white-space: nowrap;
        padding: 5px 1px;
        flex-shrink: 0;
    }
    
    .nav-brand {
        display: flex;
        flex-shrink: 0;
        margin-right: 8px;
        align-items: center;
    }
    
    .nav-brand .logo {
        height: 95px;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .dropdown-menu {
        z-index: 1001 !important;
        position: absolute !important;
    }
    .dropdown-menu a::after {
        left: 0px;
    }	 		
    
    /* Footer responsive */
    .footer-content {
        gap: 35px;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* Dropdown opens on click only - hover disabled */
    .dropdown:hover .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        pointer-events: none !important;
    }
    
    /* Dropdown opens only when active class is present (click on icon) */
    .dropdown.active .dropdown-menu,
    .dropdown-menu.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        display: block !important;
        pointer-events: auto !important;
    }
    
    .dropdown-menu {
        z-index: 1001 !important;
        position: absolute !important;
        pointer-events: none;
    }
    
    .dropdown.active .dropdown-menu,
    .dropdown-menu.show {
        pointer-events: auto !important;
    }
    
    /* Navigation adjustments */
    .header .container {
        overflow: visible;
        padding: 0 10px !important;
    }
    
    .navbar {
        flex-wrap: nowrap;
        padding: 0.3rem 0;
        overflow: visible;
        justify-content: space-between;
    }
    
    /* At 1024px, toggle menu should work (inherits from 1199px) */
    /* This will be overridden by 1199px media query for screens <= 1199px */
    
    .nav-menu {
        flex-shrink: 0;
        min-width: auto;
        overflow: visible;
        margin-left: auto;
    }
    
    .nav-list {
        gap: 10px;
        flex-wrap: nowrap;
        overflow: visible;
    }
    
    .nav-link {
        font-size: 0.81rem;
        white-space: nowrap;
        padding: 5px 0;
        flex-shrink: 0;
    }
    
    .nav-brand {
        flex-shrink: 0;
        margin-right: 6px;
    }
    
    .nav-brand .logo {
        height: 82px;
    }
    
    /* Hero section */
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }
    
    /* Navigation menu adjustments */
    .header {
        overflow: visible;
    }
    
    .header .container {
        overflow: visible;
        padding: 0 10px !important;
        max-width: 1200px;
    }
    
    .navbar {
        display: flex;
        flex-wrap: nowrap;
        padding: 0.3rem 0;
        overflow: visible;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu {
        display: flex;
        flex-shrink: 0;
        min-width: auto;
        overflow: visible;
        margin-left: auto;
        align-items: center;
    }
    
    .nav-list {
        display: flex;
        gap: 14px;
        flex-wrap: nowrap;
        overflow: visible;
        align-items: center;
    }
    
    .nav-link {
        display: block;
        font-size: 0.86rem;
        white-space: nowrap;
        padding: 5px 1px;
        flex-shrink: 0;
    }
    
    .nav-brand {
        display: flex;
        flex-shrink: 0;
        margin-right: 8px;
        align-items: center;
    }
    
    .nav-brand .logo {
        height: 90px;
    }
    
    .nav-toggle {
        display: none;
    }
    
    /* Dropdown opens on click only - hover disabled */
    .dropdown:hover .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        pointer-events: none !important;
    }
    
    /* Dropdown opens only when active class is present (click on icon) */
    .dropdown.active .dropdown-menu,
    .dropdown-menu.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        display: block !important;
        pointer-events: auto !important;
    }
    
    .dropdown-menu {
        z-index: 1001 !important;
        position: absolute !important;
        pointer-events: none;
    }
    
    .dropdown.active .dropdown-menu,
    .dropdown-menu.show {
        pointer-events: auto !important;
    }
    
    /* Hero section */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .vmgo-grid,
    .news-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        gap: 30px;
    }
    
    /* About section */
    .about-content {
        gap: 30px;
    }
}

@media screen and (max-width: 991px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* Dropdown opens on click only - hover disabled */
    .dropdown:hover .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        pointer-events: none !important;
    }
    
    /* Dropdown opens only when active class is present (click on icon) */
    .dropdown.active .dropdown-menu,
    .dropdown-menu.show {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        display: block !important;
        pointer-events: auto !important;
    }
    
    .dropdown-menu {
        z-index: 1001 !important;
        position: absolute !important;
        pointer-events: none;
    }
    
    .dropdown.active .dropdown-menu,
    .dropdown-menu.show {
        pointer-events: auto !important;
    }
    
    /* Header must stay fixed */
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
    }
    
    body.admin-bar .header {
        top: 32px !important;
    }
    
    @media screen and (max-width: 782px) {
        body.admin-bar .header {
            top: 46px !important;
        }
    }
    
    /* Navigation adjustments - prevent menu breaking */
    .header .container {
        overflow: visible;
        padding: 0 8px !important;
    }
    
    .navbar {
        flex-wrap: nowrap;
        padding: 0.3rem 0;
        overflow: visible;
        justify-content: space-between;
    }
    
    /* At 991px, toggle menu should work (inherits from 1199px) */
    /* But if screen is between 992px-1199px, show regular menu */
    /* This will be overridden by 1199px media query for screens <= 1199px */
    
    .nav-menu {
        flex-shrink: 0;
        min-width: auto;
        overflow: visible;
        margin-left: auto;
    }
    
    .nav-list {
        gap: 7px;
        flex-wrap: nowrap;
        overflow: visible;
    }
    
    .nav-link {
        font-size: 0.76rem;
        padding: 5px 0;
        white-space: nowrap;
        letter-spacing: 0;
        flex-shrink: 0;
    }
    
    .nav-brand {
        flex-shrink: 0;
        margin-right: 5px;
    }
    
    .nav-brand .logo {
        height: 75px;
    }
    
    /* Ensure Contact Us text is visible */
    .nav-link:last-child {
        padding-right: 0;
        margin-right: 0;
    }
    
    /* Hero section */
    .hero {
        min-height: 80vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 2.2rem;
    }
    
    /* Footer responsive - 2 columns */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
    
    .vmgo-grid,
    .news-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
}

/* 1199px media query - Mobile Menu Toggle Starts Here */
@media screen and (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    /* Prevent horizontal scrolling */
    .header {
        overflow-x: hidden;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000 !important;
    }
    
    body.admin-bar .header {
        top: 32px !important;
    }
    
    @media screen and (max-width: 782px) {
        body.admin-bar .header {
            top: 46px !important;
        }
    }
    
    .header .container {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Prevent body/html horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100%;
        width: 100%;
    }
    
    .navbar {
        position: relative;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    
    /* Ensure nav-brand doesn't overflow */
    .nav-brand {
        flex-shrink: 1;
        min-width: 0;
        max-width: calc(100% - 80px);
        overflow: hidden;
    }
    
    .nav-brand .logo {
        max-width: 100%;
        height: auto;
        max-height: 90px;
        object-fit: contain;
    }
    
    /* Show toggle menu button - always visible on right */
    .nav-toggle {
        display: flex !important;
        position: relative;
        margin-left: auto;
        flex-shrink: 0;
        z-index: 1001;
        padding: 5px;
        min-width: 40px;
        cursor: pointer;
    }
    
    /* Hide toggle button when menu is open */
    .nav-menu.active ~ .nav-toggle,
    .nav-toggle.active {
        display: none !important;
    }
    
    /* Hide regular menu by default - override 991px styles */
    .nav-menu {
        position: fixed !important;
        top: 100px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 65px) !important;
        background-color: var(--primary-color) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 15px 0 !important;
        transition: var(--transition) !important;
        box-shadow: var(--shadow-lg) !important;
        overflow-y: auto !important;
        z-index: 999 !important;
        display: flex !important;
        margin-left: 0 !important;
        flex-shrink: 0 !important;
        min-width: auto !important;
        overflow: visible !important;
    }
    
    /* Ensure menu is hidden on page load - override any persisted state */
    .nav-menu:not(.active) {
        left: -100% !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    /* Close button in top right corner when menu is open */
    .nav-menu::before {
        content: '\f00d'; /* Font Awesome close icon (X) */
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 24px;
        color: #ffffff;
        cursor: pointer;
        z-index: 1000;
        display: none;
        transition: var(--transition);
    }
    .nav-menu.active::before {
        display: block;
    }
    
    .nav-menu::before:hover {
        opacity: 0.8;
        transform: scale(1.1);
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0;
        margin: 0;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .nav-link {
        width: 100%;
        padding: 18px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.05rem;
        color: #ffffff;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: #ffffff;
    }
    
    .nav-link::after {
        display: none !important;
    }
    
    /* Disable hover behavior at 1199px and below - use click only */
    /* Only hide dropdown if it doesn't have show class or active parent */
    .dropdown:hover .dropdown-menu:not(.show):not(.dropdown.active .dropdown-menu) {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        display: block !important;
        pointer-events: none !important;
        max-height: 0 !important;
    }
    
    .dropdown-menu:hover:not(.show):not(.dropdown.active .dropdown-menu) {
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        display: block !important;
        pointer-events: none !important;
        max-height: 0 !important;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        padding: 0 !important;
        background-color: transparent !important;
        border-radius: 0 !important;
        min-width: auto !important;
        width: 100% !important;
        display: block !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none !important;
    }
    
    /* Show dropdown when active or has show class */
    .dropdown.active .dropdown-menu,
    .dropdown-menu.show {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        pointer-events: auto !important;
    }
    
    /* Ensure dropdown icon rotates when active */
    .dropdown.active .nav-link i.fa-chevron-down {
        transform: rotate(180deg);
    }
    
    .dropdown-menu li {
        margin-bottom: 0 !important;
        width: 100% !important;
    }
    
    .dropdown-menu a {
        display: block !important;
        width: 100% !important;
        padding: 15px 35px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 0.95rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
        transition: all 0.3s ease;
        border-radius: 0 !important;
        margin-left: 0 !important;
        font-weight: 400 !important;
        background-color: transparent !important;
        text-align: left !important;
    }
    
    .dropdown-menu a:hover {
        background-color: rgba(255, 255, 255, 0.08) !important;
        color: #ffffff !important;
        padding-left: 40px !important;
    }
    
    .dropdown-menu a::after {
        display: none !important;
    }
    
    .dropdown .nav-link i {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.9rem !important;
        margin-left: 8px !important;
        transition: transform 0.3s ease;
        cursor: pointer;
        padding: 5px;
        pointer-events: auto !important;
        z-index: 10;
    }
    
    .dropdown.active .nav-link i {
        transform: rotate(180deg);
    }
    
    .dropdown .nav-link i.fa-chevron-down {
        flex-shrink: 0;
        margin-left: auto;
        padding-left: 15px;
        padding-right: 5px;
        padding-top: 5px;
        padding-bottom: 5px;
        pointer-events: auto !important;
    }
    
    /* Make icon area more clickable */
    .dropdown .nav-link {
        position: relative;
    }
}

    /* 767px media query - Additional mobile optimizations */
@media screen and (max-width: 767px) {
    /* Remove white space on right side */
    body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    html {
        width: 100%;
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .header {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1000 !important;
    }
    
    body.admin-bar .header {
        top: 46px !important;
    }
    
    .header .container {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .navbar {
        width: 100% !important;
        padding: 0.5rem 15px !important;
        margin: 0 !important;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Toggle menu inherits from 1199px - ensure it's visible */
    .nav-toggle {
        display: flex !important;
        margin-left: auto;
        margin-right: 0;
        padding: 5px;
        order: 2;
        position: relative;
        flex-shrink: 0;
        z-index: 1001;
        cursor: pointer;
    }
    
    /* Ensure navbar doesn't cause horizontal scroll */
    .navbar {
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box;
    }
    
    .header .container {
        overflow-x: hidden !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .nav-brand {
        flex-shrink: 0;
        order: 1;
    }
    
    .nav-brand .logo {
        height: 90px;
    }
    
    /* Ensure menu inherits from 1199px styles */
    .nav-menu {
        position: fixed !important;
        top: 100px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 65px) !important;
        background-color: var(--primary-color) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 10px 0 !important;
        transition: var(--transition) !important;
        box-shadow: var(--shadow-lg) !important;
        overflow-y: auto !important;
        z-index: 999 !important;
        display: flex !important;
        margin-left: 0 !important;
        flex-shrink: 0 !important;
        min-width: auto !important;
        overflow: visible !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    /* Footer Mobile - Aligned with header spacing */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer .container {
        padding: 0 30px !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column:first-child {
        grid-column: 1;
    }
    
    .footer-logo img {
        width: 70px;
        height: 70px;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-links li,
    .footer-contact li {
        margin-bottom: 12px;
    }
    
    .social-links {
        justify-content: flex-start;
        margin-top: 25px;
    }
    
    .footer-bottom {
        padding: 0 30px;
        text-align: left;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
    
    /* Hide toggle button when menu is active - show close button instead */
    .nav-toggle.active {
        display: none !important;
    }
    
    .hero-nav {
        padding: 0 15px;
    }
    
    .hero-nav-prev,
    .hero-nav-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .hero-indicators {
        bottom: 20px;
    }
    
    .hero-indicators .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Hero section */
    .hero {
        min-height: 70vh;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        padding: 0 20px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* About section */
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        order: 2;
        text-align: center;
    }
    
    .about-image {
        order: 1;
    }
    
    /* Sections padding */    
    .section {
        padding: 60px 0 !important;
    }
    
    .about-section,
    .vmgo-section,
    .news-section,
    .why-choose-section,
    .facilities-section,
    .stats-section,
    .gallery-section {
        padding: 60px 0 !important;
    }
    
    .testimonials-section,
    .contact-section {
        padding: 60px 0 !important;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .vmgo-grid,
    .news-grid,
    .features-grid,
    .facilities-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

@media screen and (max-width: 575px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Header adjustments - MUST stay fixed */
    .header {
        padding: 0 !important;
        margin: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        z-index: 1000 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        will-change: transform !important;
    }
    
    body.admin-bar .header {
        top: 46px !important;
    }
    
    /* Prevent any other elements from affecting header position */
    html body .header {
        position: fixed !important;
        top: 0 !important;
    }
    
    html body.admin-bar .header {
        top: 46px !important;
    }
    
    .header .container {
        padding: 0 8px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Navigation adjustments */
    .navbar {
        padding: 0.25rem 0 !important;
        margin: 0 !important;
        min-height: 65px !important;
        max-height: 65px !important;
        align-items: center !important;
        display: flex !important;
        justify-content: space-between !important;
        width: 100% !important;
        box-sizing: border-box !important;
        gap: 8px !important;
    }
    
    .nav-brand {
        flex-shrink: 0 !important;
        margin-right: 5px !important;
        display: flex !important;
        align-items: center !important;
        max-width: calc(100% - 45px) !important;
        min-width: 0 !important;
    }
    
    .nav-brand .logo {
        height: 55px !important;
        width: auto !important;
        max-width: 100px !important;
        object-fit: contain !important;
        padding: 3px 0 !important;
        display: block !important;
    }
    
    /* Toggle menu inherits from 1199px - ensure it works */
    .nav-toggle {
        display: flex !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
        padding: 8px 5px !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 35px !important;
        order: 2 !important;
    }
    
    .nav-toggle span {
        width: 20px !important;
        height: 2.5px !important;
        background-color: var(--text-dark) !important;
    }
    
    .nav-menu {
        padding: 20px 15px !important;
        position: fixed !important;
        top: 65px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 65px) !important;
        background-color: var(--primary-color) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        transition: var(--transition) !important;
        box-shadow: var(--shadow-lg) !important;
        overflow-y: auto !important;
        z-index: 999 !important;
        display: flex !important;
        margin: 0 !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    /* Account for WordPress admin bar on mobile */
    body.admin-bar .nav-menu {
        top: 111px !important;
        height: calc(100vh - 111px) !important;
    }
    
    .nav-link {
        padding: 12px 0;
        font-size: 0.95rem;
    }
    .nav-list {
        padding: 0 15px 0;
    }
    
    /* Hero section */
    .hero {
        min-height: 60vh;
        margin-top: 65px !important;
        padding-top: 0 !important;
    }
    
    body.admin-bar .hero {
        margin-top: 111px !important;
    }
    
    /* Ensure body has proper spacing */
    body {
        padding-top: 0 !important;
    }
    
    /* Main content sections should not overlap header */
    main.site-main {
        padding-top: 0 !important;
    }
    
    .hero-title {
        font-size: 1.75rem;
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 15px;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    /* Section adjustments */
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-logo img {
        width: 60px;
        height: 60px;
    }
    
    .footer-logo h3 {
        font-size: 1rem;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    /* Grid adjustments */
    .vmgo-grid,
    .news-grid,
    .features-grid,
    .facilities-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* About section */
    .about-content {
        gap: 25px;
    }
    
    /* Contact section */
    .contact-content {
        gap: 25px;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}

@media screen and (max-width: 425px) {
    .container {
        max-width: 100%;
        padding: 0 12px !important;
    }
    
    /* Header must stay fixed */
    .header {
        padding: 0 !important;
        margin: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        z-index: 1000 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        will-change: transform !important;
    }
    
    body.admin-bar .header {
        top: 46px !important;
    }
    
    /* Prevent any other elements from affecting header position */
    html body .header {
        position: fixed !important;
        top: 0 !important;
    }
    
    html body.admin-bar .header {
        top: 46px !important;
    }
    
    .header .container {
        padding: 0 8px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Navigation adjustments */
    .navbar {
        padding: 0.2rem 0 !important;
        margin: 0 !important;
        min-height: 62px !important;
        max-height: 62px !important;
        align-items: center !important;
        display: flex !important;
        justify-content: space-between !important;
        width: 100% !important;
        box-sizing: border-box !important;
        gap: 6px !important;
    }
    
    .nav-brand {
        flex-shrink: 1 !important;
        margin-right: 4px !important;
        display: flex !important;
        align-items: center !important;
        max-width: calc(100% - 42px) !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }
    
    .nav-brand .logo {
        height: 52px !important;
        width: auto !important;
        max-width: 95px !important;
        object-fit: contain !important;
        padding: 2px 0 !important;
        display: block !important;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    /* Toggle menu */
    .nav-toggle {
        display: flex !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
        padding: 6px 4px !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 32px !important;
        order: 2 !important;
    }
    
    .nav-toggle span {
        width: 19px !important;
        height: 2.2px !important;
        background-color: var(--text-dark) !important;
    }
    
    .nav-menu {
        padding: 15px 10px !important;
        position: fixed !important;
        top: 62px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 62px) !important;
        background-color: var(--primary-color) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        transition: var(--transition) !important;
        box-shadow: var(--shadow-lg) !important;
        overflow-y: auto !important;
        z-index: 999 !important;
        display: flex !important;
        margin: 0 !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    body.admin-bar .nav-menu {
        top: 108px !important;
        height: calc(100vh - 108px) !important;
    }
    
    .nav-link {
        padding: 11px 0 !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        display: block !important;
    }
    
    /* Hero section */
    .hero {
        margin-top: 62px !important;
        padding-top: 0 !important;
    }
    
    body.admin-bar .hero {
        margin-top: 108px !important;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 25px 0 15px;
    }
    
    .footer-content {
        gap: 20px;
    }
    
    .footer-logo img {
        width: 50px;
        height: 50px;
    }
    
    .footer-logo h3 {
        font-size: 0.9rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-contact li {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 8px;
        margin-top: 20px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 0.85rem;
    }
    
    /* Hero section */
    .hero {
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-description {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 250px;
    }
    
    .hero-nav {
        padding: 0 10px;
    }
    
    .hero-nav-prev,
    .hero-nav-next {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-indicators {
        bottom: 15px;
        gap: 10px;
    }
    
    .hero-indicators .indicator {
        width: 8px;
        height: 8px;
    }
    
    /* Section adjustments */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    /* About section */
    .about-content {
        gap: 20px;
    }
    
    /* Contact section */
    .contact-content {
        gap: 40px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    .contact-content .contact-item { 
        text-align: left;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
}

/* 320px media query - Extra small mobile */
@media screen and (max-width: 320px) {
    .container {
        max-width: 100% !important;
        padding: 0 8px !important;
        margin: 0 auto !important;
    }
    
    /* Header must stay fixed */
    .header {
        padding: 0 !important;
        margin: 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        z-index: 1000 !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
        will-change: transform !important;
    }
    
    body.admin-bar .header {
        top: 46px !important;
    }
    
    /* Prevent any other elements from affecting header position */
    html body .header {
        position: fixed !important;
        top: 0 !important;
    }
    
    html body.admin-bar .header {
        top: 46px !important;
    }
    
    .header .container {
        padding: 0 5px !important;
        margin: 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    /* Navigation adjustments */
    .navbar {
        padding: 0.15rem 0 !important;
        margin: 0 !important;
        min-height: 58px !important;
        max-height: 58px !important;
        align-items: center !important;
        display: flex !important;
        justify-content: space-between !important;
        width: 100% !important;
        box-sizing: border-box !important;
        gap: 4px !important;
        overflow: hidden !important;
    }
    
    .nav-brand {
        flex-shrink: 1 !important;
        margin-right: 2px !important;
        display: flex !important;
        align-items: center !important;
        max-width: calc(100% - 38px) !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }
    
    .nav-brand a {
        display: flex !important;
        align-items: center !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }
    
    .nav-brand .logo {
        height: 48px !important;
        width: auto !important;
        max-width: 85px !important;
        object-fit: contain !important;
        padding: 2px 0 !important;
        display: block !important;
    }
    
    .nav-toggle {
        display: flex !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        margin-left: auto !important;
        padding: 5px 3px !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 30px !important;
        max-width: 30px !important;
        order: 2 !important;
    }
    
    .nav-toggle span {
        width: 18px !important;
        height: 2px !important;
        background-color: var(--text-dark) !important;
    }
    
    /* Mobile menu styling - complete definition */
    .nav-menu {
        padding: 15px 8px !important;
        position: fixed !important;
        top: 58px !important;
        left: -100% !important;
        width: 100% !important;
        height: calc(100vh - 58px) !important;
        background-color: var(--primary-color) !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        transition: var(--transition) !important;
        box-shadow: var(--shadow-lg) !important;
        overflow-y: auto !important;
        z-index: 999 !important;
        display: flex !important;
        margin: 0 !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    body.admin-bar .nav-menu {
        top: 104px !important;
        height: calc(100vh - 104px) !important;
    }
    
    .nav-list {
        width: 100% !important;
        padding: 0 10px !important;
        margin: 0 !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .nav-link {
        padding: 12px 0 !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        display: block !important;
        color: white !important;
    }
    
    .nav-link:hover {
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    /* Dropdown menu adjustments for 320px */
    .dropdown .nav-link {
        width: 100% !important;
    }
    
    .dropdown-menu {
        position: static !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background-color: rgba(0, 0, 0, 0.2) !important;
        margin-top: 5px !important;
        padding-left: 15px !important;
    }
    
    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    /* Hero section */
    .hero {
        margin-top: 58px !important;
        padding-top: 0 !important;
    }
    
    body.admin-bar .hero {
        margin-top: 104px !important;
    }
    
    /* Ensure body has proper spacing */
    body {
        padding-top: 0 !important;
    }
    
    /* Main content sections should not overlap header */
    main.site-main {
        padding-top: 0 !important;
    }
    
    /* Ensure no horizontal scroll */
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    /* Prevent header from causing overflow */
    .header * {
        box-sizing: border-box !important;
    }
    
    /* Hero sections padding for 320px */
    .about-hero-section,
    .management-hero-section,
    .trustee-hero-section,
    .photos-hero-section,
    .news-hero-section,
    .contact-hero-section,
    .policy-hero-section {
        padding: 73px 0 35px !important;
        margin-top: 0 !important;
        position: relative !important;
    }
    
    body.admin-bar .about-hero-section,
    body.admin-bar .management-hero-section,
    body.admin-bar .trustee-hero-section,
    body.admin-bar .photos-hero-section,
    body.admin-bar .news-hero-section,
    body.admin-bar .contact-hero-section,
    body.admin-bar .policy-hero-section {
        padding-top: 119px !important;
    }
    
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

}

/* ============================================
   Page-Specific Styles
   Extracted from HTML files and added to main CSS
   ============================================ */

/* About Us Page Styles */
.about-hero-section {
    background-color: #0c0e7a;
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Account for WordPress admin bar */
body.admin-bar .about-hero-section {
    padding-top: 182px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .about-hero-section {
        padding-top: 196px;
    }
}

.about-hero-section h1 {
    color: #0c0e7a;
    background-color: white;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-hero-section .breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.about-hero-section .breadcrumb a {
    color: white;
    text-decoration: none;
}

.about-hero-section .breadcrumb a:hover {
    text-decoration: underline;
}

.about-detail-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.about-detail-content {
    margin: 0 auto;
    line-height: 1.8;
}

.about-detail-content h2 {
    color: #0c0e7a;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-detail-content h3 {
    color: #0c0e7a;
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-detail-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
    text-align: justify;
}

.about-gallery-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.about-gallery-section .section-title {
    color: #0c0e7a;
}

.about-gallery-section .section-title::after {
    background-color: #0c0e7a;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 14, 122, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.about-gallery-item:hover .about-gallery-overlay {
    opacity: 1;
}

.about-gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.about-gallery-item:hover img {
    transform: scale(1.1);
}

/* Management Desk Page Styles */
.management-hero-section {
    background-color: #0c0e7a;
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Account for WordPress admin bar */
body.admin-bar .management-hero-section {
    padding-top: 182px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .management-hero-section {
        padding-top: 196px;
    }
}

.management-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/management_desk-main.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.management-hero-section .container {
    position: relative;
    z-index: 1;
}

.management-hero-section h1 {
    color: #0c0e7a;
    background-color: white;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.management-hero-section .breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.management-hero-section .breadcrumb a {
    color: white;
    text-decoration: none;
}

.management-hero-section .breadcrumb a:hover {
    text-decoration: underline;
}

.management-main-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.management-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.management-main-image {
    text-align: center;
}

.management-main-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.management-main-text h2 {
    color: #0c0e7a;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.management-main-text h3 {
    color: #0c0e7a;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.management-main-text p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.management-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.management-section-title {
    color: #0c0e7a;
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #0c0e7a;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.management-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #0c0e7a;
}

.management-card-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #0c0e7a;
    box-shadow: 0 5px 15px rgba(12, 14, 122, 0.2);
}

.management-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.management-card h4 {
    color: #0c0e7a;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.management-card .designation {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.management-card .name {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
}

/* Trustee Page Styles */
.trustee-hero-section {
    background-color: #0c0e7a;
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Account for WordPress admin bar */
body.admin-bar .trustee-hero-section {
    padding-top: 182px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .trustee-hero-section {
        padding-top: 196px;
    }
}

.trustee-hero-section h1 {
    color: #0c0e7a;
    background-color: white;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.trustee-hero-section .breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.trustee-hero-section .breadcrumb a {
    color: white;
    text-decoration: none;
}

.trustee-hero-section .breadcrumb a:hover {
    text-decoration: underline;
}

.trustee-content-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.trustee-intro {
    text-align: center;
    margin-bottom: 60px;
}

.trustee-intro h2 {
    color: #0c0e7a;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.trustee-intro h3 {
    color: #0c0e7a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.trustee-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.trustee-section-title {
    color: #0c0e7a;
    font-size: 2rem;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #0c0e7a;
}

.trustee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trustee-card {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.trustee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #0c0e7a;
}

.trustee-card-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #0c0e7a;
    box-shadow: 0 5px 15px rgba(12, 14, 122, 0.2);
}

.trustee-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trustee-card .name {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
    font-family: var(--font-gujarati);
}

.trustee-list-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.trustee-list {
    max-width: 900px;
    margin: 0 auto;
}

.trustee-list-item {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 2;
    padding: 10px 0;
    border-bottom: 1px solid rgba(12, 14, 122, 0.1);
    font-family: var(--font-gujarati);
}

.trustee-list-item:last-child {
    border-bottom: none;
}

/* Photos Page Styles */
.photos-hero-section {
    background-color: #0c0e7a;
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Account for WordPress admin bar */
body.admin-bar .photos-hero-section {
    padding-top: 182px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .photos-hero-section {
        padding-top: 196px;
    }
}

.photos-hero-section h1 {
    color: #0c0e7a;
    background-color: white;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.photos-hero-section .breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.photos-hero-section .breadcrumb a {
    color: white;
    text-decoration: none;
}

.photos-hero-section .breadcrumb a:hover {
    text-decoration: underline;
}

.photos-content-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.year-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.year-filter button {
    padding: 12px 30px;
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid #0c0e7a;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.year-filter button:hover,
.year-filter button.active {
    background-color: #0c0e7a;
    color: white;
}

.photos-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.photos-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.photos-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.photos-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.photos-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 14, 122, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.photos-gallery-item:hover .photos-gallery-overlay {
    opacity: 1;
}

.photos-gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.photos-gallery-item:hover img {
    transform: scale(1.1);
}

.photos-gallery-item.hidden {
    display: none;
}

/* News Page Styles */
.news-hero-section {
    background-color: #0c0e7a;
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Account for WordPress admin bar */
body.admin-bar .news-hero-section {
    padding-top: 182px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .news-hero-section {
        padding-top: 196px;
    }
}

.news-hero-section h1 {
    color: #0c0e7a;
    background-color: white;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.news-hero-section .breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.news-hero-section .breadcrumb a {
    color: white;
    text-decoration: none;
}

.news-hero-section .breadcrumb a:hover {
    text-decoration: underline;
}

.news-content-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.news-page-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-page-header h2 {
    color: #0c0e7a;
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-page-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.news-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.news-page-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-page-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-page-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.news-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-page-card:hover .news-page-image img {
    transform: scale(1.1);
}

.news-page-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    min-width: 60px;
}

.news-page-day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.news-page-month {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.news-page-content {
    padding: 25px;
}

.news-page-content h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.news-page-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.news-page-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.news-page-link:hover {
    gap: 10px;
}

/* Contact Us Page Styles */
.contact-hero-section {
    background-color: #0c0e7a;
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Account for WordPress admin bar */
body.admin-bar .contact-hero-section {
    padding-top: 182px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .contact-hero-section {
        padding-top: 196px;
    }
}

.contact-hero-section h1 {
    color: #0c0e7a;
    background-color: white;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-hero-section .breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.contact-hero-section .breadcrumb a {
    color: white;
    text-decoration: none;
}

.contact-hero-section .breadcrumb a:hover {
    text-decoration: underline;
}

.policy-hero-section {
    background-color: #0c0e7a;
    padding: 150px 0 80px;
    text-align: center;
    color: white;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

/* Account for WordPress admin bar */
body.admin-bar .policy-hero-section {
    padding-top: 182px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .policy-hero-section {
        padding-top: 196px;
    }
}

.policy-hero-section h1 {
    color: #0c0e7a;
    background-color: white;
    display: inline-block;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.policy-hero-section .breadcrumb {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.policy-hero-section .breadcrumb a {
    color: white;
    text-decoration: none;
}

.policy-hero-section .breadcrumb a:hover {
    text-decoration: underline;
}

.contact-content-section {
    background-color: var(--bg-white);
    padding: 80px 0;
}

.contact-help-section {
    text-align: center;
    margin-bottom: 60px;
}

.contact-help-section h2 {
    color: #0c0e7a;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info-item {
    text-align: center;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #0c0e7a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-info-item h5 {
    color: #0c0e7a;
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-item p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-item a:hover {
    color: #0c0e7a;
}

.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section h2 {
    color: #0c0e7a;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.contact-form-page {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group-page {
    margin-bottom: 25px;
}

.form-group-page label {
    display: block;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group-page input,
.form-group-page textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group-page input:focus,
.form-group-page textarea:focus {
    outline: none;
    border-color: #0c0e7a;
    box-shadow: 0 0 0 3px rgba(12, 14, 122, 0.1);
}

.form-group-page textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions-page {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-page {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary-page {
    background-color: #0c0e7a;
    color: white;
}

.btn-primary-page:hover {
    background-color: #0a0c6a;
    transform: translateY(-2px);
}

.btn-secondary-page {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.btn-secondary-page:hover {
    background-color: #e0e0e0;
}

.map-section {
    margin-top: 80px;
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Styles for All Pages */
@media (max-width: 1200px) {
    .about-hero-section h1,
    .management-hero-section h1,
    .trustee-hero-section h1,
    .photos-hero-section h1,
    .news-hero-section h1,
    .contact-hero-section h1 {
        font-size: 2.3rem;
    }
    
    .about-hero-section {
        padding: 130px 0 70px;
    }
    
    body.admin-bar .about-hero-section {
        padding-top: 162px;
    }
    
    .about-hero-section h1 {
        padding: 14px 35px;
    }
    
    .about-detail-content {
        padding: 0 20px;
    }
    
    .about-detail-content h2 {
        font-size: 1.75rem;
    }
    
    .about-detail-content h3 {
        font-size: 1.35rem;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .about-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .management-main-content {
        gap: 40px;
    }
    
    .trustee-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 25px;
    }
    
    .photos-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .news-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .about-hero-section,
    .management-hero-section,
    .trustee-hero-section,
    .photos-hero-section,
    .news-hero-section,
    .contact-hero-section {
        padding: 130px 0 70px;
    }
    
    body.admin-bar .about-hero-section,
    body.admin-bar .management-hero-section,
    body.admin-bar .trustee-hero-section,
    body.admin-bar .photos-hero-section,
    body.admin-bar .news-hero-section,
    body.admin-bar .contact-hero-section {
        padding-top: 162px;
    }
    
    .about-hero-section h1,
    .management-hero-section h1,
    .trustee-hero-section h1,
    .photos-hero-section h1,
    .news-hero-section h1,
    .contact-hero-section h1 {
        font-size: 2.1rem;
        padding: 14px 35px;
    }
    
    .about-detail-section,
    .management-main-section,
    .trustee-content-section,
    .photos-content-section,
    .news-content-section,
    .contact-content-section {
        padding: 60px 0;
    }
    
    .about-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
    
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .about-hero-section,
    .management-hero-section,
    .trustee-hero-section,
    .photos-hero-section,
    .news-hero-section,
    .contact-hero-section {
        padding: 120px 0 60px;
    }
    
    body.admin-bar .about-hero-section,
    body.admin-bar .management-hero-section,
    body.admin-bar .trustee-hero-section,
    body.admin-bar .photos-hero-section,
    body.admin-bar .news-hero-section,
    body.admin-bar .contact-hero-section {
        padding-top: 152px;
    }
    
    .about-hero-section h1,
    .management-hero-section h1,
    .trustee-hero-section h1,
    .photos-hero-section h1,
    .news-hero-section h1,
    .contact-hero-section h1 {
        font-size: 2rem;
        padding: 12px 30px;
    }
    
    .about-detail-content h2 {
        font-size: 1.6rem;
    }
    
    .about-detail-content h3 {
        font-size: 1.25rem;
    }
    
    .about-detail-content p {
        font-size: 0.95rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px !important;
    }
    
    .about-text {
        order: 2;
        text-align: center;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .trustee-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-hero-section,
    .management-hero-section,
    .trustee-hero-section,
    .photos-hero-section,
    .news-hero-section,
    .contact-hero-section,
    .policy-hero-section {
        padding: 100px 0 50px;
    }
    
    body.admin-bar .about-hero-section,
    body.admin-bar .management-hero-section,
    body.admin-bar .trustee-hero-section,
    body.admin-bar .photos-hero-section,
    body.admin-bar .news-hero-section,
    body.admin-bar .contact-hero-section,
    body.admin-bar .policy-hero-section {
        padding-top: 142px;
    }
    
    @media screen and (max-width: 782px) {
        body.admin-bar .about-hero-section,
        body.admin-bar .management-hero-section,
        body.admin-bar .trustee-hero-section,
        body.admin-bar .photos-hero-section,
        body.admin-bar .news-hero-section,
        body.admin-bar .contact-hero-section,
        body.admin-bar .policy-hero-section {
            padding-top: 146px;
        }
    }
    
    .about-hero-section h1,
    .management-hero-section h1,
    .trustee-hero-section h1,
    .photos-hero-section h1,
    .news-hero-section h1,
    .contact-hero-section h1,
    .policy-hero-section h1 {
        font-size: 1.8rem;
        padding: 12px 25px;
    }
    
    .about-hero-section .breadcrumb,
    .management-hero-section .breadcrumb,
    .trustee-hero-section .breadcrumb,
    .photos-hero-section .breadcrumb,
    .news-hero-section .breadcrumb,
    .contact-hero-section .breadcrumb,
    .policy-hero-section .breadcrumb {
        font-size: 1rem;
    }
    
    .about-detail-section,
    .management-main-section,
    .trustee-content-section,
    .photos-content-section,
    .news-content-section,
    .contact-content-section {
        padding: 50px 0;
    }
    
    .about-detail-content {
        padding: 0 20px;
    }
    
    .about-detail-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .about-detail-content h3 {
        font-size: 1.2rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    
    .about-detail-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
        text-align: left;
    }
    
    .about-content {
        margin-top: 40px !important;
        gap: 25px;
    }
    
    .about-text h3 {
        font-size: 1.4rem;
    }
    
    .about-gallery-grid,
    .photos-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .about-gallery-section,
    .photos-content-section {
        padding: 50px 0;
    }
    
    .management-grid,
    .trustee-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trustee-card-image {
        width: 150px;
        height: 150px;
    }
    
    .year-filter {
        gap: 10px;
    }
    
    .year-filter button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .news-page-header h2 {
        font-size: 2rem;
    }
    
    .news-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .news-page-content h3 {
        font-size: 1.3rem;
    }
    
    .news-page-content p {
        font-size: 0.95rem;
    }
    
    .contact-help-section h2 {
        font-size: 2rem;
    }
    
    .contact-form-section h2 {
        font-size: 1.75rem;
    }
    
    .contact-form-page {
        padding: 30px 20px;
    }
    
    .form-actions-page {
        flex-direction: column;
    }
    
    .btn-page {
        width: 100%;
    }
    
    .map-section {
        margin-top: 50px;
    }
    
    .map-container {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .about-hero-section,
    .management-hero-section,
    .trustee-hero-section,
    .photos-hero-section,
    .news-hero-section,
    .contact-hero-section,
    .policy-hero-section {
        padding: 85px 0 40px !important;
        margin-top: 0 !important;
        position: relative !important;
    }
    
    body.admin-bar .about-hero-section,
    body.admin-bar .management-hero-section,
    body.admin-bar .trustee-hero-section,
    body.admin-bar .photos-hero-section,
    body.admin-bar .news-hero-section,
    body.admin-bar .contact-hero-section,
    body.admin-bar .policy-hero-section {
        padding-top: 131px !important;
    }
    
    @media screen and (max-width: 782px) {
        body.admin-bar .about-hero-section,
        body.admin-bar .management-hero-section,
        body.admin-bar .trustee-hero-section,
        body.admin-bar .photos-hero-section,
        body.admin-bar .news-hero-section,
        body.admin-bar .contact-hero-section,
        body.admin-bar .policy-hero-section {
            padding-top: 136px;
        }
    }
    
    .about-hero-section h1,
    .management-hero-section h1,
    .trustee-hero-section h1,
    .photos-hero-section h1,
    .news-hero-section h1,
    .contact-hero-section h1,
    .policy-hero-section h1 {
        font-size: 1.6rem;
        padding: 10px 20px;
    }
    
    .about-hero-section .breadcrumb,
    .management-hero-section .breadcrumb,
    .trustee-hero-section .breadcrumb,
    .photos-hero-section .breadcrumb,
    .news-hero-section .breadcrumb,
    .contact-hero-section .breadcrumb,
    .policy-hero-section .breadcrumb {
        font-size: 0.95rem;
    }
    
    .about-detail-section,
    .management-main-section,
    .trustee-content-section,
    .photos-content-section,
    .news-content-section,
    .contact-content-section {
        padding: 40px 0;
    }
    
    .about-detail-content {
        padding: 0 15px;
    }
    
    .about-detail-content h2 {
        font-size: 1.4rem;
    }
    
    .about-detail-content h3 {
        font-size: 1.15rem;
    }
    
    .about-detail-content p {
        font-size: 0.9rem;
        text-align: left;
    }
    
    .about-content {
        margin-top: 30px !important;
        gap: 20px;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .about-gallery-grid,
    .photos-gallery-grid,
    .news-page-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-gallery-section,
    .photos-content-section {
        padding: 40px 0;
    }
    
    .management-grid {
        gap: 15px;
    }
    
    .trustee-grid {
        gap: 15px;
    }
    
    .trustee-card-image {
        width: 180px;
        height: 180px;
    }
    
    .year-filter {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .year-filter button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .news-page-header h2 {
        font-size: 1.6rem;
    }
    
    .news-page-content {
        padding: 20px;
    }
    
    .news-page-content h3 {
        font-size: 1.2rem;
    }
    
    .news-page-content p {
        font-size: 0.9rem;
    }
    
    .contact-help-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-form-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-form-page {
        padding: 25px 15px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 425px) {
    .about-hero-section,
    .management-hero-section,
    .trustee-hero-section,
    .photos-hero-section,
    .news-hero-section,
    .contact-hero-section,
    .policy-hero-section {
        padding: 78px 0 35px !important;
        margin-top: 0 !important;
        position: relative !important;
    }
    
    body.admin-bar .about-hero-section,
    body.admin-bar .management-hero-section,
    body.admin-bar .trustee-hero-section,
    body.admin-bar .photos-hero-section,
    body.admin-bar .news-hero-section,
    body.admin-bar .contact-hero-section,
    body.admin-bar .policy-hero-section {
        padding-top: 124px !important;
    }
    
    .about-hero-section h1,
    .management-hero-section h1,
    .trustee-hero-section h1,
    .photos-hero-section h1,
    .news-hero-section h1,
    .contact-hero-section h1 {
        font-size: 1.4rem;
        padding: 8px 15px;
    }
    
    .about-hero-section .breadcrumb,
    .management-hero-section .breadcrumb,
    .trustee-hero-section .breadcrumb,
    .photos-hero-section .breadcrumb,
    .news-hero-section .breadcrumb,
    .contact-hero-section .breadcrumb {
        font-size: 0.9rem;
    }
    
    .about-detail-section,
    .management-main-section,
    .trustee-content-section,
    .photos-content-section,
    .news-content-section,
    .contact-content-section {
        padding: 35px 0;
    }
    
    .about-detail-content {
        padding: 0 15px;
    }
    
    .about-detail-content h2 {
        font-size: 1.3rem;
    }
    
    .about-detail-content h3 {
        font-size: 1.1rem;
    }
    
    .about-detail-content p {
        font-size: 0.85rem;
    }
    
    .about-content {
        margin-top: 25px !important;
        gap: 20px;
    }
    
    .about-text h3 {
        font-size: 1.2rem;
    }
    
    .about-text p {
        font-size: 0.85rem;
    }
    
    .about-gallery-section,
    .photos-content-section {
        padding: 35px 0;
    }
    
    .trustee-card-image {
        width: 200px;
        height: 200px;
    }
    
    .year-filter button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .news-page-header h2 {
        font-size: 1.4rem;
    }
    
    .news-page-content {
        padding: 15px;
    }
    
    .news-page-content h3 {
        font-size: 1.1rem;
    }
    
    .news-page-content p {
        font-size: 0.85rem;
    }
    
    .contact-help-section h2 {
        font-size: 1.4rem;
    }
    
    .contact-form-section h2 {
        font-size: 1.3rem;
    }
    
    .contact-form-page {
        padding: 20px 15px;
    }
    
    .map-container {
        height: 300px;
    }
}


/* About Us Page Styles */

        .about-hero-section {
            background-color: #0c0e7a;
            padding: 120px 0 80px;
            text-align: center;
            color: white;
            margin-top: 0;
        }
        
        .about-hero-section h1 {
            color: #0c0e7a;
            background-color: white;
            display: inline-block;
            padding: 15px 40px;
            border-radius: 5px;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .about-hero-section .breadcrumb {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
        }
        
        .about-hero-section .breadcrumb a {
            color: white;
            text-decoration: none;
        }
        
        .about-hero-section .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        .about-detail-section {
            background-color: var(--bg-white);
            padding: 80px 0;
        }
        
        .about-detail-content {
            margin: 0 auto;
            line-height: 1.8;
        }
        
        .about-detail-content h2 {
            color: #0c0e7a;
            font-size: 2rem;
            margin-bottom: 30px;
            font-weight: 700;
        }
        
        .about-detail-content h3 {
            color: #0c0e7a;
            font-size: 1.5rem;
            margin-top: 40px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .about-detail-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 1rem;
            text-align: justify;
        }
        
        .about-gallery-section {
            background-color: var(--bg-light);
            padding: 80px 0;
        }
        
        .about-gallery-section .section-title {
            color: #0c0e7a;
        }
        
        .about-gallery-section .section-title::after {
            background-color: #0c0e7a;
        }
        
        .about-gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        
        .about-gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            aspect-ratio: 4/3;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .about-gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .about-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .about-gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(12, 14, 122, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        
        .about-gallery-item:hover .about-gallery-overlay {
            opacity: 1;
        }
        
        .about-gallery-overlay i {
            color: white;
            font-size: 2rem;
        }
        
        .about-gallery-item:hover img {
            transform: scale(1.1);
        }
        
        @media (max-width: 1200px) {
            .about-hero-section {
                padding: 100px 0 70px;
            }
            
            .about-hero-section h1 {
                font-size: 2.2rem;
                padding: 14px 35px;
            }
            
            .about-detail-content {
                padding: 0 20px;
            }
            
            .about-detail-content h2 {
                font-size: 1.75rem;
            }
            
            .about-detail-content h3 {
                font-size: 1.35rem;
            }
            
            .about-content {
                gap: 40px;
            }
            
            .about-gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 1199px) {
            .about-detail-content {
                padding: 0 20px;
            }
            
            .about-content {
                gap: 35px;
            }
            
            .about-gallery-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 18px;
            }
        }
        
        @media (max-width: 1024px) {
            .about-hero-section {
                padding: 100px 0 70px;
            }
            
            .about-hero-section h1 {
                font-size: 2.2rem;
                padding: 14px 35px;
            }
            
            .about-detail-section {
                padding: 60px 0;
            }
            
            .about-detail-content h2 {
                font-size: 1.7rem;
            }
            
            .about-detail-content h3 {
                font-size: 1.3rem;
            }
            
            .about-gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .about-gallery-section {
                padding: 60px 0;
            }
        }
        
        @media (max-width: 991px) {
            .about-hero-section {
                padding: 90px 0 60px;
            }
            
            .about-hero-section h1 {
                font-size: 2rem;
                padding: 12px 30px;
            }
            
            .about-detail-section {
                padding: 60px 0;
            }
            
            .about-detail-content {
                padding: 0 20px;
            }
            
            .about-detail-content h2 {
                font-size: 1.6rem;
            }
            
            .about-detail-content h3 {
                font-size: 1.25rem;
            }
            
            .about-detail-content p {
                font-size: 0.95rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-top: 40px !important;
            }
            
            .about-text {
                order: 2;
                text-align: center;
            }
            
            .about-image {
                order: 1;
            }
            
            .about-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero-section {
                padding: 80px 0 50px;
            }
            
            .about-hero-section h1 {
                font-size: 1.8rem;
                padding: 12px 25px;
            }
            
            .about-hero-section .breadcrumb {
                font-size: 1rem;
            }
            
            .about-detail-section {
                padding: 50px 0;
            }
            
            .about-detail-content {
                padding: 0 20px;
            }
            
            .about-detail-content h2 {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }
            
            .about-detail-content h3 {
                font-size: 1.2rem;
                margin-top: 30px;
                margin-bottom: 15px;
            }
            
            .about-detail-content p {
                font-size: 0.95rem;
                margin-bottom: 15px;
                text-align: left;
            }
            
            .about-content {
                margin-top: 40px !important;
                gap: 25px;
            }
            
            .about-text h3 {
                font-size: 1.4rem;
            }
            
            .about-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .about-gallery-section {
                padding: 50px 0;
            }
        }
        
        @media (max-width: 575px) {
            .about-hero-section {
                padding: 70px 0 40px;
            }
            
            .about-hero-section h1 {
                font-size: 1.6rem;
                padding: 10px 20px;
            }
            
            .about-hero-section .breadcrumb {
                font-size: 0.95rem;
            }
            
            .about-detail-section {
                padding: 40px 0;
            }
            
            .about-detail-content {
                padding: 0 15px;
            }
            
            .about-detail-content h2 {
                font-size: 1.4rem;
            }
            
            .about-detail-content h3 {
                font-size: 1.15rem;
            }
            
            .about-detail-content p {
                font-size: 0.9rem;
                text-align: left;
            }
            
            .about-content {
                margin-top: 30px !important;
                gap: 20px;
            }
            
            .about-text h3 {
                font-size: 1.3rem;
            }
            
            .about-text p {
                font-size: 0.9rem;
            }
            
            .about-gallery-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .about-gallery-section {
                padding: 40px 0;
            }
            .footer-content {
                display: inline-block !important;
            }
            .footer-column {
                margin-bottom: 30px;
            }
            .footer-column h4 {
                margin-bottom: 15px !important;
            }
            .footer-content {
                margin-bottom: 30px !important;
            }
        }
        
        @media (max-width: 425px) {
            .about-hero-section {
                padding: 60px 0 30px;
            }
            
            .about-hero-section h1 {
                font-size: 1.4rem;
                padding: 8px 15px;
            }
            
            .about-hero-section .breadcrumb {
                font-size: 0.9rem;
            }
            
            .about-detail-section {
                padding: 35px 0;
            }
            
            .about-detail-content {
                padding: 0 15px;
            }
            
            .about-detail-content h2 {
                font-size: 1.3rem;
            }
            
            .about-detail-content h3 {
                font-size: 1.1rem;
            }
            
            .about-detail-content p {
                font-size: 0.85rem;
            }
            
            .about-content {
                margin-top: 25px !important;
                gap: 20px;
            }
            
            .about-text h3 {
                font-size: 1.2rem;
            }
            
            .about-text p {
                font-size: 0.85rem;
            }
            
            .about-gallery-section {
                padding: 35px 0;
            }
        }
    
