html {
    scroll-behavior: smooth;
}
body {
    font-family: "Exo 2", system-ui !important;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    background-color: #f5f5ff;
}
.header {
    background-color: #4e93f4;
    color: #fff;
    z-index: 99;
    position: fixed;
}
.mobile-menu {
    z-index: 999;
}
.menu-active {
    border-bottom-width: 2px;
    padding-bottom: 0.25rem;
    border-color: #fff;
}
.image-wrapper {
    background-image: url("../images/bg.webp");
    background-repeat: no-repeat;
}
/* Optional: Add some custom styles for slider animation */
.slider {
    transition: transform 0.5s ease-in-out;
}
.profile-button,
.send-button {
    background-color: #4e93f4;
}
.profile-button:hover,
.send-button:hover {
    background-color: #5174c0;
}
.inquiry-button:hover {
    color: #ccc;
    border-color: #ccc;
}
/* Custom styles for the arrow button and masking effect */
.arrow-button {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    background: rgba(0, 0, 0, 0); /* Semi-transparent background */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease; /* Smooth background transition */
}
.arrow-button::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: rgba(0, 0, 0, 0); /* Initially transparent */
    transition: background 0.3s ease; /* Smooth background transition on hover */
    z-index: -1;
}
.arrow-left {
    left: 0;
}
.arrow-right {
    right: 0;
    border-left-color: transparent;
    border-right-color: currentColor;
}
.arrow-button.arrow-left:hover {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0)
    ); /* Shadow effect */
}
.arrow-button.arrow-right:hover {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.4)
    ); /* Shadow effect */
}
.arrow-button::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-left-color: currentColor;
    margin-left: 6px;
}
.arrow-button.right::before {
    border-left-color: transparent;
    border-right-color: currentColor;
    margin-left: 0;
    margin-right: 6px;
}
.order-1 {
    order: 2;
}
.order-2 {
    order: 1;
}
#about-us {
    background-color: transparent;
}
#about-us .curving {
    background-color: #f5f5f5;
}
#about-us .content {
    background-color: #f5f5f5;
}
.box-item {
    border: 1px #f2f1f1 solid;
    border-radius: 20px;
}
.custom-bullet {
    list-style-type: none; /* Remove default bullets */
}
.custom-bullet li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border: 1px solid #797878; /* Set the bullet border color here */
    border-radius: 50%;
    margin-right: 7px;
    margin-bottom: 1px;
    background-color: transparent; /* Transparent center */
}
.custom-bullet li:first-child:before {
    border-color: transparent;
}
#our-service .curving {
    background-color: #00003c;
}
#our-service .content {
    background-color: #00003c;
    color: #fff;
}
.our-partner-curving {
    background-color: #00003c;
}
#our-partner {
    background-color: #f5f5ff;
}
.contact-us-curving {
    background-color: #4e93f4;
}
#contact-us {
    background-color: #4e93f4;
}
.footer {
    background-color: #00003c;
}
@media (max-width: 768px) {
    .order-1 {
        order: 1;
    }
    .order-2 {
        order: 2;
    }
}
