/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* News Articles Section */
.news-articles {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.news-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
}

.news-article-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  object-fit: cover;
}

.news-article-img:hover {
  transform: scale(1.02);
}


/* Desktop View: 3-column grid */
@media screen and (min-width: 992px) {
    .news-articles-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .news-article {
        flex: 1 1 calc(33.333% - 40px);
        max-width: calc(33.333% - 40px);
    }

    .news-article img {
        width: 100%;
        height: auto;
    }
}



/* Optional: Grid layout on wider screens */
@media (min-width: 768px) {
    .news-articles-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .news-article-img {
        flex: 1 1 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}



/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

p, span, a, button, input, textarea {
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.header.scrolled .nav {
    padding: 0.7rem 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0.6rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 4px;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: #ff8c00;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #ff8c00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 70%;
}

.nav-links a.active {
    color: #ff8c00;
}

.nav-links a.active::after {
    width: 70%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: #ff8c00;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #333;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.logo a:hover .logo-text {
    color: #ff8c00;
}

/* We're removing the logo image container styles */
.logo-img-container {
    display: none;
}

.logo-img {
    display: none;
}

/* Language Switcher */
.language-switch {
    display: flex;
    align-items: center;
    position: relative;
    border-left: 1px solid #f0f0f0;
    padding-left: 1.5rem;
    margin-left: 0.5rem;
}

.language-switch select {
    appearance: none;
    background: transparent;
    border: none;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.25rem 1rem 0.25rem 0.5rem;
    cursor: pointer;
    outline: none;
}

.language-switch i {
    color: #ff8c00;
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-img-container {
        width: 55px;
        height: 55px;
    }
}

/* Buttons */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Form Elements */
input, textarea, select {
    font-family: 'Poppins', sans-serif;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 0;
}

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

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.footer-section {
    padding: 0 15px;
}

.footer-section h3 {
    color: #ff8c00;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #ff8c00;
}

.footer-section p {
    color: #b3b3b3;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #ff8c00;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff8c00;
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-section .contact-info {
    background: none;
    padding: 0;
    width: 100%;
}

.footer-section .contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.footer-section .contact-info .contact-icon {
    color: #ff8c00;
    font-size: 1.2rem;
    min-width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-section .contact-info span {
    color: #b3b3b3;
    flex: 1;
}

.footer-section .contact-info a {
    color: #b3b3b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section .contact-info a:hover {
    color: #ff8c00;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    align-items: center;
}

.social-links a {
    color: #b3b3b3;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a i {
    font-size: 1.2rem;
}

.social-links a:hover {
    color: #ff8c00;
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff8c00;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 12px 25px;
    background-color: #ff8c00;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.newsletter-form button:hover {
    background-color: #e67e00;
}

.copyright-bar {
    border-top: 1px solid #333;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: #b3b3b3;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff8c00;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ff8c00;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: #ff8c00;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #ff8c00;
    border: 2px solid #ff8c00;
}

.btn-secondary:hover {
    background-color: #ff8c00;
    color: white;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hero Section with Carousel */
.hero {
    height: calc(100vh - 60px);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    display: flex;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 2;
}

.content-wrapper {
    max-width: 600px;
    color: white;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-in-out;
}

.carousel-slide.active .content-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.carousel-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    color: #ff8c00;
}

.carousel-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-content .btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff8c00;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #ff8c00;
}

.carousel-content .btn:hover {
    background-color: transparent;
    color: #ff8c00;
    transform: translateY(-2px);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 140, 0, 0.3);
    color: white;
    padding: 16px;
    border: none;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-button:hover {
    background: rgba(255, 140, 0, 0.8);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

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

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #ff8c00;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #ff8c00;
    transform: scale(1.2);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero {
        height: calc(100vh - 60px);
        margin-top: 60px;
    }

    .carousel-content {
        padding: 0 20px;
        text-align: center;
        background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    }

    .carousel-content h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .carousel-content p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: calc(100vh - 60px);
    }

    .carousel-slide {
        height: 100%;
    }

    .carousel-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .carousel-content {
        padding: 15px;
    }

    .carousel-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .carousel-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: white;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.achievement-item {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-item i {
    font-size: 2rem;
    color: #ff8c00;
    margin-bottom: 15px;
}

.achievement-item h4 {
    color: #333;
    margin-bottom: 10px;
}

.achievement-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.gallery-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}

.gallery-item {
    position: relative;
    min-width: 300px;
    height: 400px;
    margin: 0 15px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.gallery-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    font-family: 'Poppins', sans-serif;
}

.gallery-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 140, 0, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-nav button:hover {
    background: #ff8c00;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.gallery-dot.active {
    background: #ff8c00;
    transform: scale(1.2);
}

@keyframes slideGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-track {
    animation: slideGallery 30s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .gallery-item {
        min-width: 250px;
        height: 350px;
        margin: 0 10px;
    }

    .gallery-overlay h3 {
        font-size: 1.2rem;
    }

    .gallery-overlay p {
        font-size: 0.9rem;
    }

    .gallery-nav button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        min-width: 200px;
        height: 300px;
        margin: 0 8px;
    }
}

/* Events Section */
.events {
    padding: 100px 0;
    background-color: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    display: flex;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-date {
    background-color: #ff8c00;
    color: white;
    padding: 20px;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date .day {
    font-size: 2rem;
    font-weight: bold;
}

.event-date .month {
    font-size: 1.2rem;
}

.event-details {
    padding: 20px;
    flex: 1;
}

.event-details h3 {
    color: #333;
    margin-bottom: 10px;
}

.event-location, .event-time {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.event-location i, .event-time i {
    color: #ff8c00;
    margin-right: 5px;
}

.event-description {
    color: #666;
    margin: 15px 0;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('../images/image1.png') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-info {
    background: #333;
    padding: 40px;
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.contact-info .section-title {
    color: #ff8c00;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-info .section-subtitle {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 140, 0, 0.1);
    transform: translateX(10px);
}

.contact-item i {
    color: #ff8c00;
    font-size: 24px;
    margin-right: 15px;
}

.contact-item span {
    color: #fff;
    font-size: 1.1rem;
}

.contact-form-wrapper {
    padding: 60px 40px;
    width: 60%;
    background: #fff;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f8f8;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffd966;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 217, 102, 0.2);
}

.required {
    color: #ff4444;
    margin-left: 4px;
}

.submit-btn {
    background: #ff8c00;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.submit-btn:hover {
    background: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
}

.submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .contact-info {
        width: 100%;
        padding: 30px 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .contact-info .section-title {
        font-size: 2rem;
    }

    .contact-info .section-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .contact-form-wrapper {
        width: 100%;
        padding: 30px 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Remove old language switcher container styles */
.language-switcher-container {
    display: none;
}

/* Social Media Section */
.social-media {
    padding: 80px 0;
    background: #f9f9f9;
}

.social-media-header {
    text-align: center;
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon.facebook {
    background: #1877f2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-feeds {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.social-feed {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feed-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.feed-header i {
    font-size: 24px;
    margin-right: 15px;
}

.feed-header h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #333;
}

.feed-content {
    padding: 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-feed {
    height: auto;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.instagram-feed .feed-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    overflow: hidden;
}

.instagram-media {
    margin: 0 auto !important;
}

@media (max-width: 768px) {
    .social-feeds {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .social-feed {
        margin-bottom: 20px;
    }

    .feed-content {
        min-height: 400px;
    }

    .instagram-feed {
        min-height: 500px;
    }
}

@media (max-width: 540px) {
    .instagram-feed .feed-content {
        padding: 10px;
    }
    
    .instagram-media {
        width: 100% !important;
        min-width: 100% !important;
    }
}

/* Focus Areas Section */
.focus-areas {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.focus-areas .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
}

.focus-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.focus-icon {
    background: #fff;
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.focus-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff8c00;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.focus-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.focus-icon:hover::before {
    transform: scaleX(1);
}

.focus-icon.active {
    background: #fff5e6;
    transform: translateY(-5px);
}

.focus-icon.active::before {
    transform: scaleX(1);
}

.focus-icon .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff5e6;
    transition: all 0.3s ease;
}

.focus-icon.active .icon-wrapper {
    background: #ff8c00;
}

.focus-icon i {
    font-size: 2rem;
    color: #ff8c00;
    transition: all 0.3s ease;
}

.focus-icon.active i {
    color: #fff;
}

.focus-icon span {
    display: block;
    margin-top: 10px;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
}

.focus-content {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
    margin-top: 30px;
    background-color: #fff5e6;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.focus-content.active {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.focus-text {
    padding-right: 30px;
}

.focus-text h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
}

.focus-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 50px;
    height: 3px;
    background-color: #ff8c00;
}

.focus-text p {
    color: #333;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.focus-images {
    position: relative;
}

.focus-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.focus-image-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 1;
}

.focus-image-grid img:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .focus-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .focus-content.active {
        grid-template-columns: 1fr;
    }
    
    .focus-text {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .focus-icons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .focus-icon {
        padding: 20px 15px;
    }
    
    .focus-icon .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .focus-icon i {
        font-size: 1.5rem;
    }
    
    .focus-content {
        padding: 30px 20px;
    }
    
    .focus-image-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .focus-content {
        background-color: #fff5e6;
    }

    .focus-content.active {
        padding: 20px;
    }

    .focus-text h3 {
        color: #333;
    }

    .focus-text p {
        color: #333;
    }
}

/* Rugna Seva Section Styles */
.rugna-seva {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.rugna-seva-header .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    margin-top: 10px;
}

.rugna-seva-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #e63946;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: #2b2d42;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-person-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.contact-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-header i {
    font-size: 2rem;
    color: #2b2d42;
    margin-right: 15px;
}

.contact-header h3 {
    color: #2b2d42;
    font-size: 1.3rem;
    margin: 0;
}

.phone-number {
    display: flex;
    align-items: center;
    color: #e63946;
    font-size: 1.2rem;
    text-decoration: none;
    margin: 10px 0;
    padding: 10px;
    border-radius: 8px;
    background: #f8f9fa;
    transition: background-color 0.3s ease;
}

.phone-number:hover {
    background: #e9ecef;
}

.phone-number i {
    margin-right: 10px;
}

.designation {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Service Images */
.service-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
}

.image-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
}

/* Emergency Message */
.emergency-message {
    background: #2b2d42;
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.message-content {
    display: flex;
    align-items: center;
}

.message-content i {
    font-size: 2.5rem;
    color: #e63946;
    margin-right: 20px;
}

.message-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.3rem;
}

.message-text p {
    margin: 0;
    opacity: 0.9;
}

.emergency-btn {
    background: #e63946;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.emergency-btn:hover {
    background: #dc2f3c;
}

.emergency-btn i {
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .rugna-seva-grid {
        grid-template-columns: 1fr;
    }

    .emergency-message {
        flex-direction: column;
        text-align: center;
    }

    .message-content {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .message-content i {
        margin: 0 0 15px 0;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .service-images {
        grid-template-columns: 1fr;
    }
}

/* Rugna Seva Brief Section */
.rugna-seva-brief {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.rugna-seva-brief .section-title {
    margin-bottom: 30px;
    color: #2b2d42;
    font-size: 2.5rem;
    text-align: center;
}

.emergency-banner {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.emergency-icon {
    background: #ffe5e5;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-icon i {
    font-size: 2.5rem;
    color: #e63946;
}

.emergency-text {
    flex: 1;
}

.emergency-text h3 {
    color: #2b2d42;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.emergency-text p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.emergency-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.emergency-call-btn {
    background: #e63946;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.emergency-call-btn:hover {
    background: #dc2f3c;
    transform: translateY(-2px);
}

.emergency-call-btn i {
    font-size: 1.2rem;
}

.emergency-call-btn span {
    font-size: 1.3rem;
    font-weight: 600;
}

.more-info-btn {
    background: #2b2d42;
    color: white;
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.more-info-btn:hover {
    background: #1a1b2e;
    transform: translateY(-2px);
}

.more-info-btn i {
    transition: transform 0.3s ease;
}

.more-info-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .emergency-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .emergency-content {
        flex-direction: column;
    }

    .emergency-actions {
        flex-direction: column;
        width: 100%;
    }

    .emergency-call-btn,
    .more-info-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .rugna-seva-brief .section-title {
        font-size: 2rem;
    }

    .emergency-text h3 {
        font-size: 1.5rem;
    }

    .emergency-text p {
        font-size: 1rem;
    }
}

/* Rugna Seva Full Page Styles */
.rugna-seva-full {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.rugna-seva-full .section-title {
    font-size: 3rem;
    color: #2b2d42;
    margin-bottom: 15px;
}

.rugna-seva-full .section-subtitle {
    font-size: 1.5rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.top-banner {
    margin-bottom: 60px;
}

.team-section,
.services-gallery {
    margin-top: 60px;
}

.team-section .section-subtitle,
.services-gallery .section-subtitle {
    font-size: 2rem;
    color: #2b2d42;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.team-section .section-subtitle::after,
.services-gallery .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #e63946;
}

.services-gallery .service-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.services-gallery .service-image {
    height: 300px;
}

.services-gallery .image-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
    padding: 30px 20px;
}

.services-gallery .image-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.services-gallery .image-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .rugna-seva-full {
        padding: 100px 0 60px;
    }

    .rugna-seva-full .section-title {
        font-size: 2.5rem;
    }

    .rugna-seva-full .section-subtitle {
        font-size: 1.3rem;
    }

    .team-section .section-subtitle,
    .services-gallery .section-subtitle {
        font-size: 1.8rem;
    }

    .services-gallery .service-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .rugna-seva-full .section-title {
        font-size: 2rem;
    }

    .rugna-seva-full .section-subtitle {
        font-size: 1.1rem;
    }

    .team-section .section-subtitle,
    .services-gallery .section-subtitle {
        font-size: 1.5rem;
    }

    .services-gallery .service-image {
        height: 200px;
    }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav {
        padding: 0.8rem;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1000;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: white;
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .language-switch {
        margin-top: 20px;
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.95rem;
    }
}

/* General Spacing Adjustments for Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .btn:hover,
    .nav-links a:hover,
    .social-links a:hover,
    .read-more:hover {
        transform: none;
    }

    .focus-icon:hover,
    .achievement-item:hover,
    .gallery-item:hover,
    .news-item:hover {
        transform: none;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .carousel-content h2 {
        font-size: 1.75rem;
    }

    .carousel-dots {
        bottom: 10px;
    }

    .carousel-button {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* Ensure smooth scrolling on all devices */
html {
    scroll-behavior: smooth;
}

/* Fix for iOS Safari 100vh issue */
@supports (-webkit-touch-callout: none) {
    .hero {
        height: -webkit-fill-available;
    }

    .nav-links {
        height: -webkit-fill-available;
    }
}

/* Improve tap targets for mobile */
@media (max-width: 768px) {
    button,
    .nav-links a,
    .social-links a,
    .read-more {
        min-height: 44px;
        min-width: 44px;
        padding: 12px 20px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
    }
}

/* Mobile Footer Styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        padding: 0 15px;
    }

    .footer-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        padding: 0;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }

    .footer-section .contact-info p {
        justify-content: center;
    }

    .footer-section ul li {
        text-align: center;
    }

    .footer-section ul li a::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-form input {
        text-align: center;
    }

    .copyright-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* Quick Links Section Mobile Styles */
@media (max-width: 768px) {
    .quick-links {
        text-align: center;
        padding: 20px 15px;
    }

    .quick-links h3 {
        margin-bottom: 25px;
    }

    .quick-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .quick-links ul li a {
        font-size: 1.1rem;
        padding: 10px 20px;
        display: inline-block;
        width: 100%;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .quick-links ul li a:hover {
        background: rgba(255, 140, 0, 0.1);
    }
}

/* Contact Info Section Mobile Styles */
@media (max-width: 768px) {
    .contact-info {
        text-align: center;
        padding: 20px 15px;
    }

    .contact-info h3 {
        margin-bottom: 25px;
    }

    .contact-info p {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .contact-info .contact-icon {
        margin: 0;
        font-size: 24px;
    }

    .contact-info span {
        font-size: 1.1rem;
    }

    .contact-info a {
        display: inline-block;
        padding: 10px 20px;
        background: rgba(255, 140, 0, 0.1);
        border-radius: 8px;
        margin-top: 5px;
        transition: all 0.3s ease;
    }

    .contact-info a:hover {
        background: rgba(255, 140, 0, 0.2);
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section p,
    .footer-section ul li a,
    .footer-section .contact-info span {
        font-size: 0.95rem;
    }

    .social-links a {
        padding: 6px;
    }

    .social-links a i {
        font-size: 1rem;
    }

    .newsletter-form input {
        padding: 10px;
        font-size: 0.9rem;
    }

    .newsletter-form button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .copyright-bar p,
    .footer-bottom-links a {
        font-size: 0.85rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) {
    .footer-section ul li a:hover::after {
        width: 0;
    }

    .social-links a:hover {
        transform: none;
    }

    .quick-links ul li a:hover,
    .contact-info a:hover {
        background: rgba(255, 140, 0, 0.1);
    }
}

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

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    background: #f8f8f8;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
}

/* Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.gallery-modal-content {
    margin: auto;
    display: block;
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.gallery-modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
    transition: color 0.2s;
}

.gallery-modal-close:hover {
    color: #ff8c00;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-img {
        height: 180px;
    }
}

/* News carousel styles - REMOVING THESE */
.news-carousel {
    display: none;
}

.news-track {
    display: none;
}

.news-article-image {
    display: none;
}

.news-navigation {
    display: none;
}

.news-nav {
    display: none;
}

/* Remove the news section from mobile styles */
@media (max-width: 768px) {
    .news-section {
        display: none;
    }
    
    .news-grid {
        display: none;
    }
    
    .news-img {
        display: none;
    }
}

@media (max-width: 480px) {
    .news-grid {
        display: none;
    }
    
    .news-img {
        display: none;
    }
}

/* Desktop Compatibility Fix */
@media screen and (min-width: 769px) {
    .carousel-slide {
        position: absolute;
        width: 100%;
    }
    
    .carousel-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .news-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
    }
}

/* Fix for all screen sizes */
.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-slide {
    transition: opacity 0.5s ease;
}

.header {
    will-change: transform;
}

.nav-links {
    will-change: transform;
}

/* Force GPU acceleration for smoother animations */
.logo-img-container, .carousel-slide, .news-img {
    transform: translateZ(0);
    backface-visibility: hidden;
} 