/* Global Styles */
:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --white-color: #ffffff;
    --black-color: #333333;
    --gray-color: #95a5a6;
    --success-color: #27ae60;
    --font-primary: 'Poppins', 'Arial', sans-serif;
    --font-secondary: 'Noto Sans Devanagari', 'Arial', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--black-color);
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--white-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
}

.btn-outline:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.donate-btn {
    background-color: var(--accent-color);
}

.donate-btn:hover {
    background-color: #e67e22;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--gray-color);
    font-size: 18px;
}

/* Header Styles */
.top-header {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 10px 0;
    font-size: 14px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-header-left a {
    color: var(--white-color);
    margin-right: 15px;
}

.top-header-left a i {
    margin-right: 5px;
}

.top-header-right a {
    color: var(--white-color);
    margin-left: 15px;
    font-size: 16px;
}

.main-header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.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: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white-color);
    width: 100%;
    padding: 0 20px;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white-color);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-nav button {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white-color);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav button:hover {
    background-color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.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;
}

.dot.active {
    background-color: var(--white-color);
    transform: scale(1.2);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.welcome-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.welcome-content {
    flex: 1;
}

.welcome-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.welcome-content p {
    margin-bottom: 20px;
    color: #555;
}

.welcome-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.welcome-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Causes Section */
.causes-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.causes-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.cause-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cause-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cause-image {
    position: relative;
}

.cause-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #ddd;
}

.progress {
    height: 100%;
    background-color: var(--primary-color);
    position: relative;
    color: var(--white-color);
    font-size: 12px;
    text-align: right;
    padding-right: 5px;
    line-height: 5px;
}

.cause-content {
    padding: 20px;
}

.cause-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.cause-content p {
    margin-bottom: 15px;
    color: #666;
}

.cause-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #777;
}

.cause-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Counter Section */
.counter-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
}

.counter-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.counter-item i {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--white-color);
}

.counter-item .count {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-item h3 {
    font-size: 20px;
    font-weight: 400;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 30px;
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial.active {
    display: block;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
}

.testimonial-content p::before {
    top: -20px;
    left: -10px;
}

.testimonial-content p::after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.testimonial-author span {
    color: var(--gray-color);
    font-size: 14px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.testimonial-nav button {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-nav button:hover {
    background-color: var(--accent-color);
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.news-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image {
    position: relative;
}

.news-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.news-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.news-date span:first-child {
    font-size: 24px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.news-date span:last-child {
    font-size: 14px;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.news-content p {
    margin-bottom: 15px;
    color: #666;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: var(--white-color);
    text-align: center;
}

.cta-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--white-color);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding-top: 60px;
}

.footer-widget {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-about .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-about .footer-logo img {
    height: 50px;
    margin-right: 10px;
}

.footer-about .footer-logo span {
    font-size: 20px;
    font-weight: 700;
    color: var(--white-color);
}

.footer-about p {
    margin-bottom: 20px;
    color: #bbb;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-contact h3,
.footer-newsletter h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--white-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-newsletter h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bbb;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #bbb;
}

.footer-contact ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 18px;
    margin-top: 5px;
}

.footer-newsletter p {
    color: #bbb;
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.footer-newsletter button {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: var(--accent-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #bbb;
    font-size: 14px;
}

.footer-menu ul {
    display: flex;
}

.footer-menu ul li {
    margin-left: 20px;
}

.footer-menu ul li a {
    color: #bbb;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-menu ul li a:hover {
    color: var(--primary-color);
}

/* Page Banner */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/page-banner.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
    padding: 100px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white-color);
}

.breadcrumb {
    display: flex;
    justify-content: center;
}

.breadcrumb li {
    margin: 0 10px;
    position: relative;
}

.breadcrumb li::after {
    content: '/';
    position: absolute;
    right: -15px;
    color: #ccc;
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li a {
    color: #ccc;
}

.breadcrumb li a:hover {
    color: var(--primary-color);
}

/* About Page */
.about-section {
    padding: 80px 0;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
}

.about-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.mission-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.mission-item p {
    color: #666;
    font-size: 14px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.values-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--white-color);
    padding: 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    color: #666;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--white-color);
}

.team-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid #f5f5f5;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.team-member span {
    color: var(--gray-color);
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #f5f5f5;
    color: var(--dark-color);
    border-radius: 50%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Activities Page */
.activities-section {
    padding: 80px 0;
}

.activity-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: #f5f5f5;
    color: var(--dark-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.tab-btn:hover:not(.active) {
    background-color: #ddd;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.activity-card {
    display: flex;
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.activity-image {
    flex: 1;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-details {
    flex: 1;
    padding: 30px;
}

.activity-details h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.activity-details p {
    margin-bottom: 15px;
    color: #555;
}

.activity-details ul {
    margin-bottom: 20px;
}

.activity-details ul li {
    margin-bottom: 8px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.activity-details ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.activity-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    color: #555;
}

.stat-item i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Events Section */
.events-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.events-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-date {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 80px;
}

.event-date span:first-child {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
}

.event-date span:last-child {
    font-size: 16px;
    text-transform: uppercase;
}

.event-details {
    padding: 20px;
    flex: 1;
}

.event-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.event-details p {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
}

.event-details p i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Gallery Page */
.gallery-section {
    padding: 80px 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background-color: #f5f5f5;
    color: var(--dark-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.filter-btn:hover:not(.active) {
    background-color: #ddd;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(231, 76, 60, 0.8);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
    text-align: center;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-overlay p {
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.gallery-overlay a {
    transform: translateY(20px);
    transition: all 0.3s ease 0.2s;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p,
.gallery-item:hover .gallery-overlay a {
    transform: translateY(0);
}

.gallery-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
}

.gallery-load-more {
    text-align: center;
    margin-top: 40px;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-section .container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 30px;
    color: #555;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.info-item p {
    margin-bottom: 0;
    color: #555;
}

.contact-form {
    flex: 1;
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.map-section {
    height: 450px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}