/* ======================================
   SMT. JAYAMMA RANGAPPA HEALTH & EDUCATION TRUST
   Main Stylesheet - Readable Version
   ====================================== */

/* ========== CSS Variables ========== */
:root {
    --primary-blue: #0065A3;
    --primary-green: #009640;
    --dark-blue: #004a7c;
    --light-blue: #e6f3f9;
    --light-green: #e6f7ed;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --gray-bg: #f8f9fa;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== Top Bar (Desktop Only) ========== */
.topbar {
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    transition: opacity 0.3s;
}

.topbar a:hover {
    opacity: 0.8;
}

.topbar-right a {
    margin-right: 15px;
    margin-left: 0;
}

.topbar-right a:last-child {
    margin-right: 0;
}

.topbar i {
    margin-right: 5px;
}

/* ========== Header & Navigation ========== */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.btn-nav-contact {
    background: var(--primary-green);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px;
}

.btn-nav-contact:hover {
    background: var(--dark-blue);
}

/* ========== Mobile Menu Toggle ========== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10000;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* ========== Mobile Menu Overlay ========== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    transition: right 0.3s ease;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-container {
    position: absolute;
    right: 0;
    top: 0;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 2rem;
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-bg);
}

.mobile-menu-header img {
    height: 50px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: var(--primary-blue);
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-list {
    list-style: none;
    margin-bottom: 2rem;
}

.mobile-menu-list li {
    margin-bottom: 1rem;
}

.mobile-menu-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
}

.mobile-menu-contact {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--gray-bg);
    border-radius: 8px;
}

.mobile-menu-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.mobile-menu-social {
    display: flex;
    gap: 1rem;
}

.mobile-menu-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
}

/* ========== Hero Slider ========== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 3;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--white);
    width: 35px;
    border-radius: 6px;
}

/* ========== Trust Name Section ========== */
.trust-name-section {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
    position: relative;
}

.trust-name-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
}

.trust-main-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    line-height: 1.2;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.trust-tagline {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
}

.trust-divider {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    margin: 0 auto;
    border-radius: 2px;
}

/* Rangappa Memorial Section Styles */

.memorial-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0,101,163,0.03) 0%, rgba(0,150,64,0.03) 100%);
    position: relative;
}

.memorial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 100%);
}

.memorial-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.memorial-image {
    position: relative;
}

.memorial-frame {
    position: relative;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.memorial-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.memorial-ribbon {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-align: center;
    white-space: nowrap;
}

.memorial-text h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.memorial-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-green);
}

.memorial-quote {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 2rem 0;
    border-left: 5px solid var(--primary-green);
}

.memorial-quote .fa-quote-left {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    color: var(--primary-blue);
    opacity: 0.3;
}

.memorial-quote .fa-quote-right {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--primary-green);
    opacity: 0.3;
}

.quote-text {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    padding: 0 1rem;
}

.memorial-message {
    margin: 2rem 0;
}

.memorial-message p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
}

.memorial-dedication {
    background: var(--light-blue);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-blue);
}

.memorial-dedication p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.memorial-dedication p:last-child {
    margin-top: 1rem;
    color: var(--primary-green);
    font-size: 1.05rem;
}

/* ========== Page Banners ========== */
.page-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.page-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-content p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 101, 163, 0.6);
    z-index: 1;
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

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

.btn-primary:hover {
    background: var(--dark-blue);
}

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

.btn-secondary:hover {
    background: var(--dark-blue);
}

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

.btn-light:hover {
    background: var(--light-blue);
}

/* ========== Content Sections ========== */
.mission,
.highlights,
.cta,
.content-section {
    padding: 4rem 0;
}

.mission {
    background: var(--light-blue);
    text-align: center;
}

.mission h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.mission p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-light);
}

.highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

/* ========== Cards ========== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.card-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.card a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

/* ========== CTA Section ========== */
.cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tax-benefit {
    font-style: italic;
    margin: 1rem 0 2rem;
    font-size: 1.1rem;
}

/* ========== Content Sections ========== */
.content-section h2 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-section h3 {
    color: var(--primary-green);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.alt-bg {
    background: var(--gray-bg);
}

.info-box {
    background: var(--light-blue);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 5px solid var(--primary-blue);
}

.info-box p {
    margin-bottom: 0.8rem;
}

.values-list {
    list-style: none;
    margin-left: 0;
}

.values-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.objective-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.objective-header i {
    font-size: 2.5rem;
    color: var(--primary-green);
}

/* ========== Team Section ========== */
.team-section {
    padding: 4rem 0;
    background: var(--gray-bg);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.team-member {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-photo img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.team-info h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.team-company {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ========== Help Options ========== */
.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.help-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.help-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.help-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.help-card ul {
    text-align: left;
    margin: 1.5rem 0;
}

.tax-info {
    color: var(--primary-green);
    font-weight: 600;
    margin: 1rem 0;
}

.donation-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.method i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* ========== Gallery ========== */
.gallery-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.gallery-filters {
    text-align: center;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.6rem 1.5rem;
    margin: 0.5rem;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 0.5rem;
}

.no-images {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

/* ========== Contact Page ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-top: 0.2rem;
}

.info-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.info-item a {
    color: var(--primary-green);
    text-decoration: none;
}

.info-item .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-form {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* ========== Map Section ========== */
.map-section {
    padding: 4rem 0;
    background: var(--gray-bg);
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.map-placeholder iframe {
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ========== Footer ========== */
footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section i {
    margin-right: 8px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: background 0.3s;
}

.footer-social a:hover {
    background: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* ========== Operation Model Section ========== */
.operation-model {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.operation-model h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.operation-grid {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.operation-image {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.operation-image img {
    width: 100%;
    height: auto;
    display: block;
}

.model-caption {
    padding: 1.5rem;
}

.model-caption h3 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.model-caption p {
    color: var(--text-light);
    line-height: 1.6;
}

.facebook-widget {
    background: var(--white);
    border-radius: 10px;
    padding: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.facebook-widget h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.fb-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fb-container iframe {
    max-width: 100%;
}

.operation-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.highlight-box h4 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.highlight-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .operation-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .trust-main-heading {
        font-size: 2.5rem;
    }
    
    .trust-tagline {
        font-size: 1.2rem;
    }

    .memorial-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .memorial-frame img {
        height: 400px;
    }
    
    .memorial-text {
        text-align: center;
    }
    
    .memorial-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .memorial-quote {
        text-align: left;
    }
    
    .memorial-message p {
        text-align: left;
    }
}

@media (max-width: 768px) {
    /* Hide topbar on mobile */
    .topbar {
        display: none;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop nav */
    .nav-menu {
        display: none;
    }

    /* Adjust slider height */
    .hero-slider {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    /* Adjust banner height */
    .page-banner {
        height: 300px;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    /* Trust name section */
    .trust-name-section {
        padding: 3rem 0;
    }
    
    .trust-main-heading {
        font-size: 1.8rem;
        letter-spacing: 0;
    }
    
    .trust-tagline {
        font-size: 1.1rem;
    }

    /* Memorial section */
    .memorial-section {
        padding: 3rem 0;
    }
    
    .memorial-frame {
        padding: 10px;
    }
    
    .memorial-frame img {
        height: 350px;
    }
    
    .memorial-ribbon {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
    }
    
    .memorial-text h2 {
        font-size: 1.8rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .memorial-message p {
        font-size: 0.95rem;
    }
    
    /* Operation Model Section */
    .operation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fb-container iframe {
        width: 100% !important;
        max-width: 100%;
    }
    
    .operation-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Single column layouts */
    .contact-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .cards,
    .help-options {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .trust-main-heading {
        font-size: 1.5rem;
    }
    
    .trust-tagline {
        font-size: 1rem;
    }
}
