/* Culture Page Specific Styles */

#who-we-are {
    padding-top: 120px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e8f4f8 100%);
    padding-bottom: 50px;
}

#who-we-are-3 {
    padding-top: 60px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #e8f4f8 100%);
    padding-bottom: 40px;
}

.highlight-cyan {
    color: #00b4d8;
}

p {
    font-family: 'Montserrat', sans-serif;
}

/* Who We Are Section */
.who_we_are_section .section_heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #222;
}

/* Company Events Section */
.company_events_section {
    background-color: #ffffff;
}

.events_carousel_container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.events_carousel {
    display: flex;
    gap: 15px;
    padding: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.events_carousel::-webkit-scrollbar {
    display: none;
}

.carousel_item {
    flex: 0 0 calc(25% - 11.25px);
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: transparent;
    scroll-snap-align: start;
}

.carousel_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel_nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #222;
    font-size: 1.2rem;
    z-index: 10;
}

.carousel_nav_prev {
    left: 15px;
}

.carousel_nav_next {
    right: 15px;
}

.carousel_nav:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.carousel_nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel_item {
        flex: 0 0 calc(33.333% - 10px);
    }
    
    .who_we_are_section .section_heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .carousel_item {
        flex: 0 0 calc(50% - 7.5px);
    }
    
    .carousel_nav {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .carousel_nav_prev {
        left: 10px;
    }

    .carousel_nav_next {
        right: 10px;
    }
    
    .who_we_are_section .section_heading {
        font-size: 1.75rem;
    }
    
    .who_we_are_content p {
        font-size: 1rem;
    }
    h2 {
        font-size: 24px;
    }
}

@media (max-width: 500px) {
    .carousel_item {
        flex: 0 0 100%;
    }
    
    .carousel_nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .carousel_nav_prev {
        left: 8px;
    }

    .carousel_nav_next {
        right: 8px;
    }
    
    .who_we_are_section .section_heading {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .who_we_are_content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
.grid-gallery-row {
  width: 100%;
}