body {
    background-color: #f8faf9;
    color: #181d19;
    scroll-behavior: smooth;
}
header {
    background-color: #b81919;
    color: white;
}
.navbar {
    background-color: white;
}
.navbar-brand img {
    height: 35px;
}
.navbar-nav .nav-link {
    color: #050505;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover {
    color: #ec1321;
}
.bg-light {
    background-color: #f8f9fa !important;
}
.bg-dark {
    background-color: #b81919 !important;
    color: white !important;
}
.btn-primary {
    background-color: #b81919;
    border-color: #b81919;
}
.btn-primary:hover {
    background-color: #8c1313;
    border-color: #8c1313;
}
.text-white {
    color: white !important;
}
section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Vision Section */
.vision-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: auto;
    text-align: center;
    animation: fadeIn 1.2s ease-in-out;
}
.vision-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}
.vision-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.vision-list li {
    font-size: 16px;
    font-weight: bold;
    color: #b81919;
    display: flex;
    align-items: center;
}
.vision-list i {
    margin-right: 8px;
    color: #b81919;
    font-size: 20px;
}
.vision-join {
    font-size: 18px;
    font-weight: bold;
    color: black;
    margin-top: 20px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mission Section */
.mission-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    margin-block: 10px;
}
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}
.mission-icon {
    font-size: 40px;
    color: #b81919;
    margin-bottom: 15px;
}
.mission-card h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.mission-card p {
    font-size: 14px;
    color: #555;
}

/* Service Section */
.service-box {
    text-decoration: none;
    display: block;
    color: #da1313;
    transition: transform 0.3s ease-in-out;
}
.icon-box {
    cursor: pointer;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.icon-box:hover {
    background-color: #b00510;
    transform: scale(1.05);
}
.icon-box img {
    transition: transform 0.3s ease-in-out;
}
.icon-box:hover img {
    transform: scale(1.1);
}
.icon-box h3 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
}

/* Portfolio Section */


/* Team Section */



/* Partner Section */
.logos {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.logos-slide {
    display: flex;
    width: calc(250px * 14);
    animation: scroll 30s linear infinite;
    gap: 40px;
    align-items: center;
    justify-content: center;
}
.logos-slide img {
    height: 70px;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.logos-slide img:hover {
    opacity: 1;
    transform: scale(1.05);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .logos-slide {
        animation-duration: 20s;
    }
    .logos-slide img {
        height: 40px;
    }
}

/* Contact Section */
.contact-link {
    color: #f8d210;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.contact-link:hover {
    color: #ffd700;
}
.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
    .map-container {
        margin-top: 15px;
    }
}