:root {
    --primary-yellow: #ffc107;
    /* --text-dark: #333; */
    --text-muted: #6c757d;
    --border-light: #bababa;
}


/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    width: 100%;
    /* margin: -85px auto 0 auto; */
    /* border-radius: 30px; */
    z-index: 0;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 100%); */
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 85%;
    margin: 0 auto;
    padding: 0 20px;
}

.welcome-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.search-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.search-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 6px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-icon {
    color: #9ca3af;
    font-size: 18px;
    margin-left: 20px;
    margin-right: 12px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: var(--text-dark);
    padding: 12px 0;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #a855f7 100%);
    border: none;
    border-radius: 50px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-icon {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.carousel-control-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    opacity: 1;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background: white;
    transform: scale(1.2);
}

/* Partners Section */
.trusted-companies {
    background-color: #2a2a2a;
    padding: 60px 0;
    margin: 50px;
    border-radius: 20px;
}

.section-title {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-light);
}

.companies-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* gap: 10px; */
}

.company-logo {
    flex: 1;
    text-align: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.company-logo:hover {
    opacity: 1;
}

.company-logo img {
    max-width: 80px;
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* ---------------------------------------------- */
/* ------------- About us Section --------------- */
/* ---------------------------------------------- */

.about-us {
    /* background-color: #f8f9fa; */
    padding: 80px 0;
}

.image-container {
    position: relative;
}

.main-image {
    width: 70%;
    /* height: 400px; */
    object-fit: cover;
    /* border-radius: 20px; */
}

.overlay-image {
    position: absolute;
    bottom: 0px;
    right: 27px;
    width: 280px;
    height: 335px;
    object-fit: cover;
    /* border-radius: 50%; */
    /* border: 6px solid white; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.content-section p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-item::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.learn-more-btn {
    background-color: #f4d03f;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #f1c40f;
    color: #2c3e50;
    transform: translateY(-2px);
}

.learn-more-btn::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover::after {
    transform: translateX(3px);
}

/* ---------------------------------------------- */
/* -------------- Gallery Section --------------- */
/* ---------------------------------------------- */

.gallery-section {
    background-color: #2a2a2a;
    padding: 80px 0 50px 0;
    /* color: white; */
    margin: 50px;
    border-radius: 20px;
}

.gallery-title {
    color: var(--text-light);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.gallery-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d6d6d6;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.gallery-item.large {
    grid-row: span 2;
    height: 400px;
}

.gallery-item.medium {
    height: 250px;
}

.gallery-item.small {
    height: 180px;
}
.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: lightboxZoom 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #f4d03f;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.5);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px 35px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #f4d03f;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Gallery item cursor pointer */
.gallery-item {
    cursor: pointer;
}

/* ---------------------------------------------- */
/* ------------ Testimonial Section ------------- */
/* ---------------------------------------------- */

.testimonials-section {
    /* background-color: #f8f9fa; */
    padding: 80px 0px 0px 0px;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.testimonials-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    gap: 4rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
}

.star-rating {
    color: #e6c36f;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Testimonial Card Styles */
.testimonial-card {
    background: white;
    /* border-radius: 20px; */
    padding: 2.5rem;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    margin: 0 15px;
    position: relative;
    border: none;
    min-height: 320px;
}

/* Author info at the top */
.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.author-avatar {
    width: 60px !important;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-title {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
}

/* Quote icon on the right */
.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    font-size: 3.5rem;
    color: #e9ecef;
    font-family: serif;
    line-height: 1;
}

/* Testimonial text */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 400;
    padding-right: 1rem;
    text-align: justify;
}

/* Custom Owl Carousel Navigation */
.owl-carousel .owl-nav {
    position: absolute;
    /* bottom: -60px; */
    bottom: -20px;
    left: 50px;
    width: auto;
}

.owl-carousel .owl-nav button {
    width: 60px;
    height: 40px;
    border-radius: 40px !important;
    /* background: #e9ecef !important; */
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    color: #6c757d !important;
    font-size: 1rem !important;
    margin: 0 5px !important;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel .owl-nav button:hover {
    background: #e6c36f !important;
    color: var(--text-dark) !important;
    border: 1px solid #e6c36f !important;
}

.owl-carousel .owl-nav button span {
    font-size: 14px;
}

/* Hide dots */
.owl-carousel .owl-dots {
    display: none;
}

/* Carousel container positioning */
.carousel-container {
    position: relative;
    padding-bottom: 80px;
}

/* ---------------------------------------------- */
/* ---------- News & Articals Section ----------- */
/* ---------------------------------------------- */

.articles-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
    background: #f9f9f9;
    padding: 50px 0px 80px 0px;
    position: relative;
    margin: 50px;
    border-radius: 20px;
}

.articles-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee2e6, transparent);
}

.articles-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

/* .articles-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6f42c1);
    border-radius: 2px;
} */

.articles-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 0;
    text-align: center;
}

/* .articles-carousel-container { */
    /* position: relative; */
    /* padding: 0 60px; */
    /* margin-top: 50px; */
/* } */

/* .article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
    margin: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.article-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 123, 255, 0.05),
        rgba(111, 66, 193, 0.05)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.article-card:hover::before {
    opacity: 1;
}

.article-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.article-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(1.1) saturate(1.1);
}

.article-card:hover .article-image img {
    transform: scale(1.08);
}

.article-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    justify-content: center;
}

.article-category {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 123, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.article-date {
    font-size: 0.75rem;
    color: #6c757d;
    position: relative;
    font-weight: 500;
}

.article-date:before {
    content: "•";
    margin-right: 0.5rem;
    color: #dee2e6;
}

.article-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 60px;
    text-align: center;
}

.article-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    align-self: center;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.article-link:hover {
    color: #007bff;
    border-bottom-color: #007bff;
}

.article-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.article-link:hover i {
    transform: translateX(5px);
} */

/* Articles Carousel Navigation */
/* .articles-carousel .owl-nav {
    position: absolute;
    top: 55%;
    left: 0;
    bottom: 50px;
    width: 100%;
    transform: translateY(-50%);
    z-index: -1;
}

.articles-carousel .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white !important;
    border: 2px solid #e9ecef !important;
    color: #6c757d !important;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.articles-carousel .owl-nav button:hover {
    background: #e6c36f !important;
    color: var(--text-dark) !important;
    border-color: #e6c36f !important;
}

.articles-carousel .owl-prev {
    left: -60px;
}

.articles-carousel .owl-next {
    right: -60px;
}

.articles-carousel .owl-dots {
    display: none;
} */

/* Article Cards - Exact Match to Image */
.news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    height: 100%;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.news-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    backdrop-filter: blur(10px);
}

.tag-security {
    background-color: rgba(220, 53, 69, 0.9);
}
.tag-facilities {
    background-color: rgba(23, 162, 184, 0.9);
}
.tag-events {
    background-color: rgba(40, 167, 69, 0.9);
}
.tag-environment {
    background-color: rgba(111, 66, 193, 0.9);
}
.tag-community {
    background-color: rgba(253, 126, 20, 0.9);
}
.tag-awards {
    background-color: rgba(255, 193, 7, 0.9);
    color: #000;
}

.news-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.news-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    /* line-height: 1.4; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.news-meta-left {
    display: flex;
    gap: 15px;
}

.news-meta-left span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-meta-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-read-small {
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: #000;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.btn-read-small:hover {
    background-color: var(--primary-yellow);
    color: #000;
    text-decoration: none;
    transform: translateY(-1px);
}





/* Responsive Design */
@media (max-width: 1024px) {
    /* about us section */
    .overlay-image {
        width: 200px;
        height: 235px;
    }
}

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

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
        height: auto;
    }

    .gallery-item:nth-child(2) {
        grid-column: span 2;
        grid-row: span 1;
        height: auto;
    }

    .gallery-item:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
        height: auto;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
        height: auto;
    }

    /* News & Articles */
    /* .articles-carousel-container {
        padding: 0 40px;
    } */

    /* .articles-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    } */
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .search-box {
        max-width: 90%;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .carousel-control-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

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

    /* Partners Section */
    .companies-container {
        justify-content: center;
        gap: 20px;
    }

    .trusted-companies {
        padding: 40px 0;
        margin: 20px;
    }

    /* About us Section */
    .overlay-image {
        width: 130px;
        height: 150px;
        /* width: 150px;
        height: 150px;
        bottom: -20px;
        right: -20px; */
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .content-section p {
        font-size: 0.86rem;
    }

    .about-us {
        padding: 50px 0;
    }

    /* Gallery Section */
    .gallery-section {
        padding: 50px 0;
        margin: 20px;
    }

    .gallery-title {
        font-size: 2rem;
    }

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

    .gallery-item {
        height: 200px !important;
    }

    .lightbox-nav {
        font-size: 1.5rem;
        padding: 10px 15px;
    }

    .lightbox-prev {
        /* left: -50px; */
        left: 0;
    }

    .lightbox-next {
        /* right: -50px; */
        right: 0;
    }

    .lightbox-close {
        /* top: -35px; */
        top: -10px;
        font-size: 1.5rem;
    }

    .lightbox-counter {
        bottom: -35px;
        font-size: 0.9rem;
    }

    /* Testimonial Section */
    .stats-container {
        /* flex-direction: column; */
        gap: 2rem;
        text-align: center;
        justify-content: space-around;
        margin-bottom: 2rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        margin-bottom: 1rem;
    }

    .testimonial-card {
        padding: 1rem;
        margin: 0 10px;
        min-height: 280px;
    }

    .quote-icon {
        font-size: 3rem;
        right: 20px;
    }

    .testimonial-text {
        padding-right: 0;
        margin-bottom: 0;
    }

    .owl-carousel .owl-nav {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 0;
        text-align: center;
    }

    .carousel-container {
        padding-bottom: 0;
    }

    /* news & articles */
    .articles-section {
        padding: 50px 0;
        margin: 20px;
    }

    .articles-title {
        font-size: 2rem;
    }

    /* .articles-carousel-container {
        padding: 0 20px;
    } */

    /* .articles-carousel .owl-nav button {
        display: none !important;
    } */

    .article-card {
        margin: 10px;
    }

    .article-content {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        margin: -80px auto 0 auto;
        border-radius: 35px;
        z-index: 0;
        width: 95%;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .search-input {
        font-size: 14px;
        padding: 10px 0;
    }

    .search-btn {
        width: 38px;
        height: 38px;
    }

    .welcome-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
}





.announcement-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.announcement-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    max-width: 800px;
    width: 90%;
    display: none;
}

.announcement-content {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.announcement-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.announcement-body {
    padding: 30px;
    color: var(--text-dark);
    text-align: center;
}

.announcement-footer {
    padding: 20px 30px;
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.close-btn:hover {
    opacity: 1;
}

.announcement-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffd700;
}

.announcement-title {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.announcement-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    color: white;
}

.dont-show-again {
    margin-top: 15px;
}

.dont-show-again label {
    color: var(--text-dark);
    cursor: pointer;
    font-size: 14px;
}

.form-check-input[type=checkbox]{
    border: 1px solid var(--text-dark);
    /* background-color: var(--text-dark); */
    color: var(--text-dark);
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}