.stat-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.stat-box h2 {
    color: #0d203f;
    font-size: 28px;
    margin-bottom: 10px;
}
.stat-box p {
    margin: 0;
    color: #000;
    font-size: 16px;
}
.underline {
    text-decoration: underline;
    text-decoration-color: #0091ff;
    text-decoration-thickness: 2px;
}

.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 662px;
    margin-bottom: 40px;
    border-radius: 20px 0px 20px 0px;
    margin: 170px 60px 20px 60px;
}

.scroll-down {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    transform: translateY(-3px);
}

.scroll-text {
    color: #ff6b35;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.scroll-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #ff6b35;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.content-section h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2rem;
}

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

.hero-about {
    margin-top: 60px;
    text-align: center;
}

.hero-about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    color: #101351;
}

.hero-about p {
    font-size: 0.9rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.section-container {
    margin: 0 auto;
    padding: 40px 0px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0px 60px 0px 60px;
}

.section-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 14px;
}

.scroll-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, #ff6b35, #ff9f70);
    margin-right: 10px;
    border-radius: 1px;
}

.image-gallery {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.image-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-container {
    display: flex;
    gap: 0;
    padding: 0;
    width: max-content;
}

.gallery-item {
    flex: 0 0 calc(100% / 4);
    height: 300px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

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

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.item-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.item-subtitle {
    color: white;
    font-size: 14px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.main-quote {
    font-size: 18px;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.4;
}

.description {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

hr.custom-line {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.601);
    margin: 30px 40px;
}

.contact-btn {
    background-color: #ff6b47;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px 0px 20px 0px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    -webkit-border-radius: 20px 0px 20px 0px;
    -moz-border-radius: 20px 0px 20px 0px;
    -ms-border-radius: 20px 0px 20px 0px;
    -o-border-radius: 20px 0px 20px 0px;
}

.contact-btn:hover {
    background-color: #e55a42;
}

.subsection-text {
    color: #000000;
    max-width: 752px;
    font-weight: 500;
    font-style: Medium;
    font-size: 28px;
    line-height: 39px;
}

/* responsive  */

@media (max-width: 768px) {
    .hero-section {
        margin: 20% 20px 10px 20px;
        padding: 0 40px;
        height: 150px;
    }

    .scroll-down {
        right: 20px;
        bottom: 15px;
    }

    .scroll-text {
        font-size: 12px;
    }

    .content-section {
        margin: 0 20px 40px;
        padding: 40px 30px;
    }

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

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

@media (max-width: 768px) {
    .section-container {
        padding: 20px 15px;
    }

    .subsection-text {
        max-width: 752px;
        font-weight: 400;
        font-style: regular;
        font-size: 16px;
        line-height: 22.5px;
        color: #58595B;
    }

    .section-title {
        font-size: 20px;
    }

    .gallery-item {
        flex: 0 0 250px;
        height: 280px;
    }

    .main-quote {
        font-size: 20px;
    }

    .description {
        font-size: 14px;
    }

    .item-title {
        font-size: 16px;
    }

    .item-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 220px;
        height: 260px;
    }

    .gallery-container {
        gap: 10px;
    }
}
