/* ------------------------------
   General Colors and Buttons
---------------------------------*/
.main-menu-color {
    color: #183f72 !important;
}

.topbar-color {
    color: #183f72 !important;
}

.slider-button {
    --hover: var(--secondary--200);
    background-color: #00a1cd !important;
    border-color: var(--secondary) var(--secondary) var(--secondary-300);
    color: var(--secondary-inverse);
}

.text-color-custom {
    color: #ff5f58 !important;
}

.custom-line {
    border-bottom-color: #00a1cd !important;
}

/* ------------------------------
   Stat Boxes (Numbers Section)
---------------------------------*/
.stat-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e9e9e9;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.number-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #00a1cd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.icon-inside {
    font-size: 42px;
    color: #fff;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #183f72;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* ------------------------------
   Partner Boxes
---------------------------------*/
.partner-box {
    width: 100%;
    height: 120px; /* uniform height */
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-box img {
    max-width: 100%;
    max-height: 100%;
}

.partner-box:hover {
    transform: scale(1.05);
}


/* ------------------------------
   Slider
---------------------------------*/
/* Make sure slider container allows visible overflow */
.swiper.homepage-slider {
    position: relative;
    overflow: visible; /* important for arrows outside */
}

/* Arrows styling */
.swiper-button-prev.custom-nav,
.swiper-button-next.custom-nav {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;           /* white circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;              /* above everything */
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Arrow color */
.swiper-button-prev.custom-nav::after,
.swiper-button-next.custom-nav::after {
    color: #001f4d; /* dark blue arrow */
    font-size: 20px;
}

/* Position arrows outside */
.swiper-button-prev.custom-nav { left: -90px; }
.swiper-button-next.custom-nav { right: -90px; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .swiper-button-prev.custom-nav { left: 10px; }
    .swiper-button-next.custom-nav { right: 10px; }
}
