﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

body {
    overflow-x: hidden;
}

p {
  color: #0202aa !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease;
    opacity: 0;
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    animation: slideInLeft 1s ease 0.3s forwards;
    opacity: 0;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f1af09;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: slideInLeft 1s ease 0.6s forwards;
    opacity: 0;
}

.hero-btn:hover {
    background-color: #fff;
    color: #f1af09;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: #f1af09;
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    padding: 0 20px;
}

.arrow {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 24px;
}

.arrow:hover {
    background-color: #f1af09;
}

/* Health Programs Section (From the image) */
.programs-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
    display: inline-block;
    text-shadow: 1px 1px 1px #f9bd2f, 1px 1px 1px #0f0b0c, 1px 1px 1px #e6e2d9, 1px 1px 1px #fefefe, 1px 1px 1px #ffffff, 1px 1px 1px #ece3c5, 1px 1px 0px rgba(16, 16, 16, 0.5), 1px 13px 10px rgba(16, 16, 16, 0.4), 1px 11px 25px rgba(16, 16, 16, 0.3), 1px 6px 36px rgba(16, 16, 16, 0.2);
}
h2 {
    text-shadow: 1px 1px 1px #f9bd2f, 1px 1px 1px #0f0b0c, 1px 1px 1px #e6e2d9, 1px 1px 1px #fefefe, 1px 1px 1px #ffffff, 1px 1px 1px #ece3c5, 1px 1px 0px rgba(16, 16, 16, 0.5), 1px 13px 10px rgba(16, 16, 16, 0.4), 1px 11px 25px rgba(16, 16, 16, 0.3), 1px 6px 36px rgba(16, 16, 16, 0.2);
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f1af09;
}

.section-title p {
    font-size: 20px;
    color: #666;
    max-width: 1200px;
    margin: 0 auto;
}

.programs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.program-image {
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: unset;;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 20px;
}

.program-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.program-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.program-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #f1af09;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.program-btn:hover {
    background-color: #333;
}

/* Animations */
@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate {
    opacity: 0;
}

.animate.fadeIn {
    animation: fadeIn 1s ease forwards;
}

.animate.slideInLeft {
    animation: slideInLeft 1s ease forwards;
}

.animate.slideInRight {
    animation: slideInRight 1s ease forwards;
}

/* Page Transitions */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1af09;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.page-transition.active {
    transform: translateX(0);
}

/* Common Page Styles */
.page-header {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header.contact-hero {
    height: 400px;
    background-image: url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-position: center 20%;
    position: relative;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.page-header.contact-hero::before {
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(255,193,7,0.4) 100%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-header-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.page-header-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffc107;
    border-radius: 3px;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    font-size: 16px;
    margin-top: 20px;
    opacity: 0.9;
    position: relative;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: inline-flex;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.breadcrumbs a i {
    color: #ffc107;
    margin-right: 5px;
}

/* Icon styling handled directly in HTML */

.breadcrumbs a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.breadcrumbs span {
    margin: 0 10px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 38px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .hero-btn {
        padding: 10px 20px;
    }
}

/* What We Do Section */
.what-we-do-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    position: relative;
}

/* Removed the gradient bar */

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    color: #222;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Add an underline to the heading */
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f1af09; /* Gold underline */
}

.section-header h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #f1af09;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { width: 40px; opacity: 1; }
    50% { width: 120px; opacity: 0.5; }
    100% { width: 40px; opacity: 1; }
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
    font-size: 20px;
    padding-top: 25px;
    font-weight: 300;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    perspective: 1000px;
}

.program-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #fff;
    position: relative;
    height: 280px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transform-origin: center;
}

.program-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.program-item:active {
    transform: translateY(-4px) scale(0.98);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.1s ease;
}

.program-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.program-item:hover::before {
    opacity: 0.2;
}

.program-img {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.program-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.program-item:hover .program-img::after {
    opacity: 1;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.program-item:hover .program-img img {
    transform: scale(1.08);
}

.program-title {
    background-color: rgba(241, 175, 9, 0.9);
    padding: 16px 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

.program-item:hover .program-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.program-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: width 0.3s ease;
}

.program-item:hover .program-title::after {
    width: 70px;
}

.read-more-btn {
    display: block;
    background-color: rgba(17, 17, 17, 0.9);
    color: #fff;
    text-align: center;
    padding: 12px 0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 1; /* Always visible */
    transform: translateY(0); /* No transform by default */
    z-index: 2;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.program-item:hover .read-more-btn {
    background-color: rgba(17, 17, 17, 1);
    color: #fff;
}

.read-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
}

.read-more-btn:hover {
    background-color: #f1af09;
    color: #fff;
}

.read-more-btn:hover::before {
    left: 100%;
}

/* Our Approach Section */
.our-approach-section {
    padding: 70px 0;
    background-color: #fff;
    position: relative;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.approach-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.approach-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}



.approach-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    transform: translateY(80px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.approach-image:hover .approach-overlay {
    transform: translateY(0);
}

.approach-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.approach-overlay h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #f1af09;
}

.approach-overlay p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

.approach-image:hover .approach-overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Strategy Text */
.strategy-3d-container {
    margin-top: 60px;
    text-align: center;
    padding: 20px 0;
}

.strategy-3d-text {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
    text-shadow: 
        1px 1px 1px #f1af09,
        2px 2px 1px #f1af09,
        3px 3px 1px #f1af09,
        4px 4px 1px #f1af09,
        5px 5px 1px rgba(0, 0, 0, 0.2),
        6px 10px 30px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    transform: perspective(500px) rotateX(5deg);
    transform-origin: center;
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(240, 240, 240, 1) 100%);
    border-radius: 8px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 3px 10px rgba(0, 0, 0, 0.05),
        inset 0 2px 1px rgba(255, 255, 255, 1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: perspective(500px) rotateX(5deg) rotateY(-1deg) translateY(0);
        text-shadow: 
            1px 1px 1px #f1af09,
            2px 2px 1px #f1af09,
            3px 3px 1px #f1af09,
            4px 4px 1px #f1af09,
            5px 5px 1px rgba(0, 0, 0, 0.2),
            6px 10px 30px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: perspective(500px) rotateX(8deg) rotateY(1deg) translateY(-10px);
        text-shadow: 
            1px 1px 1px #f1af09,
            2px 2px 1px #f1af09,
            3px 3px 1px #f1af09,
            4px 4px 1px #f1af09,
            5px 5px 1px rgba(0, 0, 0, 0.2),
            8px 15px 35px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: perspective(500px) rotateX(5deg) rotateY(-1deg) translateY(0);
        text-shadow: 
            1px 1px 1px #f1af09,
            2px 2px 1px #f1af09,
            3px 3px 1px #f1af09,
            4px 4px 1px #f1af09,
            5px 5px 1px rgba(0, 0, 0, 0.2),
            6px 10px 30px rgba(0, 0, 0, 0.4);
    }
}

/* Media Queries for Our Approach Section */
@media (max-width: 992px) {
    .approach-row {
        gap: 20px;
    }
    
    .approach-image {
        height: 350px;
    }
    
    .approach-overlay {
        padding: 20px;
    }
    
    .approach-overlay h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .approach-row {
        flex-direction: column;
    }
    
    .approach-image {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .approach-overlay {
        transform: translateY(0);
    }
    
    .approach-overlay p {
        opacity: 1;
        transform: translateY(0);
    }
    
    .strategy-3d-text {
        font-size: 28px;
        text-shadow: 
            1px 1px 1px #f1af09,
            2px 2px 1px #f1af09,
            3px 3px 1px rgba(0, 0, 0, 0.2),
            4px 7px 20px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 576px) {
    .strategy-3d-text {
        font-size: 22px;
        letter-spacing: 1px;
        padding: 8px 12px;
    }
}

/* Awards and Recognition Section - Newspaper Style */
.awards-section {
    padding: 70px 0;
    background-color: #f9f9f9;
    position: relative;
}

.newspaper-container {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0;
    background-color: #f9f7f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e1d1;
    font-family: 'Times New Roman', Times, serif;
    overflow: hidden;
    position: relative;
}

.newspaper-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0) 2px,
            rgba(0, 0, 0, 0.01) 2px,
            rgba(0, 0, 0, 0.01) 4px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0) 2px,
            rgba(0, 0, 0, 0.01) 2px,
            rgba(0, 0, 0, 0.01) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.newspaper-header {
    text-align: center;
    padding: 20px 0;
    border-bottom: 3px double #222;
    background-color: #fff;
    position: relative;
}

.newspaper-title {
    font-size: 60px;
    font-weight: 900;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 1px;
    margin-bottom: 0;
    line-height: 1;
    color: #222;
    text-transform: uppercase;
}

.newspaper-subtitle {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 8px;
}

.newspaper-date {
    font-size: 14px;
    color: #555;
    border-top: 1px solid #ccc;
    padding-top: 5px;
    display: inline-block;
    letter-spacing: 2px;
}

.newspaper-content {
    padding: 30px 40px;
}

.newspaper-main-headline {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #222;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.newspaper-article {
    margin-bottom: 20px;
    position: relative;
}

.article-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 30px;
}

.newspaper-divider {
    height: 1px;
    background-color: #ddd;
    margin: 30px 0;
    position: relative;
}

.newspaper-divider::before {
    content: '✦';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f9f7f0;
    padding: 0 15px;
    color: #888;
}

.article-headline {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px;
    font-family: 'Times New Roman', Times, serif;
    color: #222;
    line-height: 1.3;
    position: relative;
    padding-bottom: 8px;
}

.article-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.article-image {
    margin-bottom: 15px;
    overflow: hidden;
}

.main-article .article-image {
    float: left;
    width: 40%;
    margin-right: 20px;
    margin-bottom: 10px;
}

.article-image {
    position: relative;
    flex: 0 0 45%;
    margin-bottom: 15px;
}

.image-left {
    margin-right: 20px;
}

.image-right {
    margin-left: 20px;
}

.article-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.article-image img {
    width: 100%;
    display: block;
    border: 1px solid #ddd;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.1);
    filter: grayscale(30%) sepia(10%) contrast(1.05);
}

.image-caption {
    display: block;
    font-size: 12px;
    font-style: italic;
    color: #555;
    text-align: center;
    margin-top: 8px;
    padding: 0 10px;
    line-height: 1.4;
}

.article-text {
    flex: 1;
}

.text-left {
    padding-right: 15px;
}

.text-right {
    padding-left: 15px;
}

.article-content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    column-count: 1;
    column-gap: 20px;
    position: relative;
}

.article-lead {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 15px;
    font-style: italic;
}

.article-continuation {
    font-style: italic;
    font-size: 14px;
    text-align: right;
    margin-top: 10px;
    color: #555;
}

.newspaper-footer {
    padding: 12px 30px;
    background-color: #222;
    color: #fff;
    font-style: italic;
    font-size: 14px;
    display: flex;
    border-top: 3px double #444;
}

.footer-column {
    flex: 1;
}

.footer-column.center {
    text-align: center;
}

.footer-column.right {
    text-align: right;
}

/* Media Queries for Newspaper Layout */
@media (max-width: 992px) {
    .newspaper-title {
        font-size: 48px;
    }
    
    .newspaper-subtitle {
        font-size: 16px;
    }
    
    .newspaper-main-headline {
        font-size: 30px;
    }
    
    .newspaper-content {
        padding: 25px;
    }
    
    .article-row {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .article-row {
        flex-direction: column;
    }
    
    .article-image {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
    
    .image-left, .image-right {
        margin: 0 0 20px 0;
    }
    
    .text-left, .text-right {
        padding: 0;
    }
    
    .newspaper-title {
        font-size: 36px;
    }
    
    .newspaper-subtitle {
        font-size: 14px;
    }
    
    .newspaper-main-headline {
        font-size: 26px;
    }
    
    .newspaper-content {
        padding: 20px;
    }
    
    .newspaper-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 5px;
    }
    
    .footer-column.right {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .newspaper-title {
        font-size: 28px;
    }
    
    .newspaper-subtitle {
        font-size: 12px;
    }
    
    .newspaper-date {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .newspaper-main-headline {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .article-headline {
        font-size: 20px;
    }
    
    .article-content {
        font-size: 15px;
    }
    
    .newspaper-divider::before {
        font-size: 14px;
    }
}

/* Our Blogs Section */
.blogs-section {
    padding: 70px 0;
    background-color: #fff;
    position: relative;
}

.blogs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Featured Blog Post */
.blog-featured {
    display: flex;
    margin-bottom: 50px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-featured .blog-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.blog-featured .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-featured:hover .blog-image img {
    transform: scale(1.05);
}

.blog-featured .blog-content {
    flex: 1;
    padding: 40px;
    position: relative;
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #f1af09;
    color: #fff;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 3px 3px 0;
    z-index: 2;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
}

.blog-date {
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}

.blog-date::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ccc;
}

.blog-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #222;
    transition: color 0.3s ease;
}

.blog-featured:hover .blog-title {
    color: #f1af09;
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.blog-read-more {
    display: inline-block;
    color: #f1af09;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 3px;
    border-bottom: 2px solid #f1af09;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #222;
    border-color: #222;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-category {
    position: absolute;
    top: 15px;
    left: 0;
    background-color: #f1af0975;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 3px 3px 0;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #777;
    font-size: 13px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #f1af09;
}

.blog-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.blog-card-link {
    display: inline-block;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.blog-card-link:hover {
    color: #f1af09;
}

.arrow-right {
    display: inline-block;
    width: 15px;
    height: 8px;
    margin-left: 8px;
    position: relative;
    transition: transform 0.3s ease;
}

.arrow-right::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background-color: currentColor;
    top: 3px;
    transition: width 0.3s ease;
}

.arrow-right::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    right: 0;
    top: 1px;
}

.blog-card-link:hover .arrow-right {
    transform: translateX(5px);
}

.blogs-view-all {
    text-align: center;
    margin-top: 20px;
}

.btn-view-all {
    display: inline-block;
    background-color: #f1af09;
    color: #fff;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(241, 175, 9, 0.3);
}

.btn-view-all:hover {
    background-color: #222;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive styles for Blog Section */
@media (max-width: 992px) {
    .blog-featured {
        flex-direction: column;
    }
    
    .blog-featured .blog-image {
        flex: 0 0 300px;
        width: 100%;
    }
    
    .blog-featured .blog-content {
        padding: 30px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-featured .blog-image {
        flex: 0 0 250px;
    }
    
    .blog-title {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .blog-featured .blog-image {
        flex: 0 0 200px;
    }
    
    .blog-featured .blog-content {
        padding: 25px 20px;
    }
    
    .blog-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .blog-excerpt {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 16px;
    }
    
    .btn-view-all {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 70px 0;
    background-color: #222;
    position: relative;
}

.section-header.light h2,
.section-header.light p {
    color: #fff;
}

.section-header.light h2::after {
    background-color: #f1af09;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px;
    margin: 0 5px 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s ease;
    position: relative;
    outline: none;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #f1af09;
    transition: width 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: #f1af09;
    transform: translateY(-2px);
}

.filter-btn:hover::after,
.filter-btn.active::after {
    width: 30px;
}

.filter-btn.active {
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), 
                opacity 0.4s ease-in-out,
                box-shadow 0.5s ease;
    opacity: 1;
    will-change: transform, opacity;
}

.gallery-item:hover {
    transform: scale(1.03);
    z-index: 1;
}

.gallery-image {
    width: 100%;
    height: 100%;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 25px;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    width: 100%;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.gallery-info h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 15px;
}

.gallery-zoom {
    display: inline-block;
    background-color: #f1af09;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gallery-zoom:hover {
    background-color: #fff;
    color: #222;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-view-all {
    text-align: center;
    margin-top: 30px;
}

.btn-view-gallery {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #f1af09;
}

.btn-view-gallery:hover {
    background-color: #f1af09;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for Gallery Section */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .gallery-info h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .gallery-filter {
        margin-bottom: 30px;
    }
    
    .filter-btn {
        font-size: 15px;
        padding: 7px 15px;
        margin: 0 3px 8px;
    }
    
    .gallery-item {
        height: 260px;
    }
    
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 70%);
    }
    
    .gallery-info {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 240px;
    }
    
    .gallery-info h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .gallery-info p {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .gallery-zoom {
        font-size: 12px;
        padding: 7px 12px;
    }
    
    .btn-view-gallery {
        padding: 11px 25px;
        font-size: 14px;
    }
}

/* Media Queries for What We Do Section */
@media (max-width: 992px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }
    
    .program-item {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .program-title {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .read-more-btn {
        padding: 10px 0;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .program-item {
        height: 220px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 14px;
        padding: 0 20px;
        margin-top: 20px;
    }
}

/* Lightbox Styles */
.lightbox-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-container.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    margin: auto;
    animation: lightboxIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    border: 5px solid white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
    padding: 5px;
    line-height: 0.8;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #f1af09;
    transform: scale(1.2);
}

/* Partners Section */
.partners-section {
    padding: 30px 0; /* Reduced from 60px to 30px */
    background-color: #fbf0d0; /* Light creamy background as shown in the image */
    position: relative;
    overflow: hidden; /* Ensure the sliding content doesn't overflow */
}

/* Compact header for partners section */
.partners-header {
    margin-bottom: 15px; /* Reduced spacing below header */
}

.partners-header h2 {
    margin-bottom: 0; /* Remove bottom margin */
    font-size: 26px; /* Slightly smaller font */
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0; /* Reduced from 20px to 10px */
    position: relative;
    overflow: hidden; /* Hide overflowing content */
}

.partners-track-wrapper {
    width: 100%;
    overflow: hidden; /* Hide overflowing content */
    position: relative;
    padding: 10px 0; /* Reduced from 20px to 10px */
}

.partners-track {
    display: flex;
    animation: scrollPartners 40s linear infinite; /* 40s duration for smooth scroll */
    width: max-content; /* Allow track to be as wide as needed */
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 10px)); /* Half the width for seamless loop */
    }
}

.partner-item {
    flex: 0 0 200px; /* Slightly reduced from 220px */
    margin: 0 15px; /* Reduced from 20px */
    padding: 12px; /* Reduced from 15px */
    background-color: #fff;
    border-radius: 8px; /* Slightly reduced from 10px */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px; /* Reduced from 100px */
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2; /* Bring hovered item to front */
}

.partner-item img {
    max-width: 100%;
    max-height: 65px; /* Reduced from 80px */
    object-fit: contain;
}

/* Add a pause on hover effect */
.partners-track-wrapper:hover .partners-track {
    animation-play-state: paused;
}

/* Added pseudo-elements for fading edges effect */
.partners-track-wrapper::before,
.partners-track-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none; /* Allow clicks to pass through */
}

.partners-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fbf0d0 0%, rgba(251, 240, 208, 0) 100%);
}

.partners-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fbf0d0 0%, rgba(251, 240, 208, 0) 100%);
}

/* Partners Section Responsive */
@media (max-width: 992px) {
    .partner-item {
        flex: 0 0 200px;
        margin: 0 15px;
    }
    
    .partners-track-wrapper::before,
    .partners-track-wrapper::after {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .partner-item {
        flex: 0 0 180px;
        margin: 0 10px;
        padding: 12px;
    }
    
    .partners-track-wrapper::before,
    .partners-track-wrapper::after {
        width: 70px;
    }
    
    /* Speed up animation on smaller screens */
    .partners-track {
        animation-duration: 30s;
    }
}

@media (max-width: 576px) {
    .partners-section {
        padding: 20px 0; /* Further reduced padding on mobile */
    }
    
    .partners-container {
        padding: 5px 0; /* Minimal padding */
    }
    
    .partners-track-wrapper {
        padding: 5px 0; /* Minimal padding */
    }
    
    .partner-item {
        flex: 0 0 140px; /* Smaller width */
        margin: 0 6px;
        min-height: 70px; /* Further reduced height */
        padding: 8px; /* Smaller padding */
    }
    
    .partner-item img {
        max-height: 50px; /* Smaller images */
    }
    
    .partners-track-wrapper::before,
    .partners-track-wrapper::after {
        width: 40px;
    }
    
    /* Even faster on mobile */
    .partners-track {
        animation-duration: 20s;
    }
    
    .partners-header h2 {
        font-size: 22px; /* Smaller font on mobile */
    }
}

/* Get Involved Section */
.get-involved-section {
    padding: 70px 0;
    background-color: #f9f9f9;
    position: relative;
    background-image: linear-gradient(to right, rgba(241, 175, 9, 0.05) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(241, 175, 9, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.involved-container {
    max-width: 1200px;
    margin: 0 auto;
}

.involved-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.involved-intro p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.impact-counter {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 50px;
    gap: 20px;
}

.counter-item {
    text-align: center;
    min-width: 200px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.counter-number {
    font-size: 36px;
    font-weight: 700;
    color: #f1af09;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.involved-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.involved-option {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                box-shadow 0.4s ease;
    margin-bottom: 20px;
}

.involved-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.option-header {
    background: linear-gradient(135deg, #f1af09 0%, #e67e22 100%);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.option-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.option-header h3 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.option-content {
    padding: 30px 25px;
}

.option-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.option-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.option-list li:last-child {
    border-bottom: none;
}

.list-icon {
    color: #f1af09;
    font-size: 18px;
    margin-right: 15px;
    margin-top: 3px;
}

.list-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.option-btn {
    display: block;
    background-color: #f1af09;
    color: #fff;
    text-align: center;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.option-btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.cta-wrapper {
    background: linear-gradient(135deg, #f7f9fe 0%, #edf1f9 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-message h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.cta-message p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.cta-btn {
    background: linear-gradient(135deg, #f1af09 0%, #e67e22 100%);
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(241, 175, 9, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.cta-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}

/* Donation Option Styling */
.donation-option .option-header {
    background: linear-gradient(135deg, #e53935 0%, #d81b60 100%);
}

.donation-option .list-icon {
    color: #e53935;
}

.donation-option .option-btn {
    background-color: #e53935;
}

.donation-option .option-btn:hover {
    background-color: #d81b60;
}

.donation-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(229, 57, 53, 0.15);
}

.donation-option .option-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(229, 57, 53, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
    }
}

/* Get Involved Section Responsive */
@media (max-width: 992px) {
    .involved-options {
        flex-direction: column;
        align-items: center;
    }
    
    .involved-option {
        max-width: 100%;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-message {
        margin-bottom: 20px;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .get-involved-section {
        padding: 50px 0;
    }
    
    .involved-intro p {
        font-size: 16px;
    }
    
    .impact-counter {
        gap: 15px;
    }
    
    .counter-item {
        min-width: 160px;
        padding: 15px;
    }
    
    .counter-number {
        font-size: 30px;
    }
    
    .counter-label {
        font-size: 14px;
    }
    
    .option-header {
        padding: 25px 15px;
    }
    
    .option-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .option-header h3 {
        font-size: 22px;
    }
    
    .option-content {
        padding: 25px 20px;
    }
    
    .cta-wrapper {
        padding: 25px 20px;
    }
    
    .cta-message h4 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .get-involved-section {
        padding: 40px 0;
    }
    
    .involved-intro {
        margin-bottom: 30px;
    }
    
    .involved-intro p {
        font-size: 15px;
    }
    
    .impact-counter {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .counter-item {
        width: 100%;
        max-width: 220px;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .option-header h3 {
        font-size: 20px;
    }
    
    .list-text {
        font-size: 14px;
    }
    
    .option-btn {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .cta-message h4 {
        font-size: 18px;
    }
    
    .cta-message p {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #f1af09;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #e67e22;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(241, 175, 9, 0.3);
}

@media (max-width: 576px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* Resources Section */
.resources-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.resources-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    z-index: 1;
}

.resources-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-bg.png');
    background-size: 300px;
    opacity: 0.05;
    z-index: 0;
}

.resources-section .container {
    position: relative;
    z-index: 2;
}

.resources-section .section-header {
    margin-bottom: 30px;
}

.resources-intro {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
    padding: 0 20px;
}

.resources-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    font-weight: 400;
}

.resources-search-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.resources-search {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.resources-search input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 15px;
    color: #555;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.resources-search input:focus {
    outline: none;
    border-color: #ffc107;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.15);
}

.resources-search .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 16px;
    transition: all 0.3s ease;
}

.resources-search input:focus + .search-icon {
    color: #ffc107;
}

.resources-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    gap: 15px;
    padding: 10px;
    position: relative;
}

.resources-categories::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffc107;
    border-radius: 3px;
}

.resource-category {
    padding: 10px 22px;
    background-color: #fff;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.resource-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.resource-category:hover {
    color: #333;
    border-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.resource-category.active {
    background-color: transparent;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.resource-category.active::before {
    opacity: 1;
}

.resources-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.resource-item {
    width: 250px;
    height: 220px;
    background-color: #ffc107;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
    cursor: pointer;
    opacity: 0; /* Start with 0 opacity for animation */
}

.resource-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Download notification */
.download-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    padding: 16px 20px;
    z-index: 1001;
    transform: translateX(150%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.download-notification.visible {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: center;
}

.notification-content i {
    font-size: 24px;
    margin-right: 15px;
}

.notification-content i.fa-spinner {
    color: #3498db;
}

.notification-content i.fa-check-circle {
    color: #2ecc71;
}

.notification-content i.fa-exclamation-circle {
    color: #e74c3c;
}

.notification-content span {
    font-size: 15px;
    color: #333;
}

.resource-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease;
}

.resource-icon i {
    font-size: 28px;
    color: #fff;
    transition: all 0.3s ease;
}

.resource-item:hover .resource-icon {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.5);
}

.resource-item h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.resource-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    transition: all 0.3s ease;
}

.resource-item:hover .resource-actions {
    bottom: 0;
}

.view-btn, .download-btn {
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-btn {
    background-color: #3498db;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.download-btn {
    background-color: #ffc107;
    color: #333;
}

.view-btn:hover, .download-btn:hover {
    transform: translateY(-3px);
}

.view-btn:hover {
    background-color: #2980b9;
}

.download-btn:hover {
    background-color: #e67e22;
    color: #fff;
}

.view-btn i, .download-btn i {
    margin-right: 5px;
    font-size: 14px;
}

/* Resources Section Responsive */
@media (max-width: 992px) {
    .resources-container {
        gap: 20px;
    }
    
    .resource-item {
        width: 220px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .resources-section {
        padding: 50px 0;
    }
    
    .resources-search input {
        padding: 10px 15px 10px 40px;
        font-size: 14px;
    }
    
    .resources-categories {
        gap: 10px;
    }
    
    .resource-category {
        padding: 6px 15px;
        font-size: 12px;
    }
    
    .resources-container {
        gap: 15px;
    }
    
    .resource-item {
        width: 200px;
        height: 180px;
    }
    
    .resource-icon {
        width: 50px;
        height: 50px;
    }
    
    .resource-icon i {
        font-size: 24px;
    }
    
    .resource-item h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .resources-container {
        gap: 15px;
    }
    
    .resource-item {
        width: 160px;
        height: 160px;
    }
    
    .resource-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .resource-icon i {
        font-size: 20px;
    }
    
    .resource-item h3 {
        font-size: 14px;
    }
}

/* Support Us Section */
.support-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff8e1 0%, #ffedb8 100%);
    position: relative;
    overflow: hidden;
}

.support-us-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    background: url('../images/pattern-bg-light.png');
    background-size: 400px;
    opacity: 0.05;
    z-index: 0;
}

.support-us-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffd700, #ffa000);
    z-index: 1;
}

.support-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.support-info {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
    padding: 40px;
    text-align: justify;
}

.support-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.support-info h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0100px;
    width: 70px;
    height: 4px;
    background-color: #ffc107;
}

.support-description {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    max-width: 600px;
}

.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: left;
    padding-right: 30px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

.support-form {
    flex: 1;
    min-width: 320px;
    background-color: #e6d7b3;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-icons {
    display: flex;
    justify-content: center;
}

.form-image {
    height: 60px;
    margin-bottom: 20px;
}

.donation-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    position: relative;
}

.input-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background-color: #000;
    color: #fff;
}

.donation-form input {
    width: 100%;
    padding: 12px 15px 12px 60px;
    border: none;
    font-size: 15px;
    background-color: #fff;
}

.donation-form input:focus {
    outline: none;
}

.donate-btn {
    background-color: #ffeb3b;
    color: #000;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background-color: #fdd835;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Media Queries for Support Us Section */
@media (max-width: 992px) {
    .support-content {
        flex-direction: column;
    }
    
    .support-info {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .support-info h2:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .impact-stats {
        justify-content: center;
    }
    
    .stat-item {
        text-align: center;
        padding-right: 0;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
}

.contact-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.3), transparent);
}

.contact-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
    position: relative;
}

.contact-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    border-radius: 3px;
}

.contact-description {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.contact-info-box {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(145deg, #ffffff 0%, #f9f9f9 100%);
}

.contact-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ffc107, #ff9800);
}

.contact-info-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ffc107, #ff9800);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffc107;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
    border: 2px solid rgba(255, 193, 7, 0.2);
}

.contact-info-item:hover .info-icon {
    background-color: #ffc107;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.info-details h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
}

.info-details p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.contact-form-box {
    flex: 1.5;
    background-color: #fff;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #ffc107, #ff9800);
}

.contact-form-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ffc107, #ff9800);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 15px 14px 45px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    background-color: #f9f9f9;
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: #d0d0d0;
    background-color: #f5f5f5;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ffc107;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    background-color: #fff;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #aaa;
    transition: all 0.3s;
}

.form-group input:focus + i,
.form-group textarea:focus + i,
.form-group.active i {
    color: #ffc107;
}

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #555;
    transition: all 0.3s;
}

.form-group.active label {
    color: #ffc107;
    font-weight: 500;
}

.form-submit {
    margin-top: 20px;
    text-align: right;
}

.send-message-btn {
    background-color: #ffc107;
    color: #000;
    border: none;
    padding: 14px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.send-message-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s;
}

.send-message-btn:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.send-message-btn:hover::before {
    left: 100%;
}

@media (max-width: 576px) {
    .support-us-section {
        padding: 60px 0;
    }
    
    .support-info h2 {
        font-size: 32px;
    }
    
    .support-description {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 30px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .support-form {
        padding: 20px;
    }
}

/* Decorative Elements */
.decorative-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background-color: #ffc107;
    top: -100px;
    left: -100px;
    animation: pulse 10s infinite alternate;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background-color: #ff9800;
    bottom: -50px;
    right: 10%;
    animation: pulse 7s infinite alternate-reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background-color: #ffc107;
    top: 40%;
    right: -50px;
    animation: pulse 12s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.05;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.05;
    }
}

/* Map Section */
.map-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-top: 50px; /* Add spacing above the map */
    border-top: 1px solid rgba(0,0,0,0.05);
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    pointer-events: none;
}

.map-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    width: 350px;
    max-width: 90%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    pointer-events: auto;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-left: 3px solid #ffc107;
    z-index: 10; /* Ensure the card appears above the map */
}

.map-card.animate {
    transform: translateX(0);
    opacity: 1;
}

/* Initial state - show the map card even without JS */
#mapCard {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .map-card {
        transform: translateY(100%);
    }
    
    .map-card.animate {
        transform: translateY(0);
    }
}

.map-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.1);
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-card-icon i {
    font-size: 28px;
    color: #ffc107;
}

.map-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
}

.map-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background-color: #ffc107;
    color: #000;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
}

.direction-btn i {
    margin-right: 8px;
}

.direction-btn:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

@media (max-width: 768px) {
    .map-overlay {
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 40px;
    }
}

/* Media Queries for Contact Section */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-title {
        font-size: 30px;
    }
    
    .contact-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .contact-info-box, 
    .contact-form-box {
        padding: 20px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .info-details h3 {
        font-size: 18px;
    }
    
    .map-card {
        width: 90%;
        padding: 20px;
    }
    
    .map-card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .map-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .page-header.contact-hero {
        height: 300px;
    }
    
    .page-header-content h1 {
        font-size: 32px;
    }
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 60px;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

#imageCaption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Gallery images - no click functionality */
.gallery-image {
    cursor: default;
    /* transition effect removed */
}

/* Hover effect removed */

.full-column {
    font-size: 20px!important;
}

td {
    padding: 5px!important;
}