/* =========================================
   CLIENT CAROUSEL STYLES (WITH BULLETS)
   ========================================= */
.client-slider-section {
    padding: 60px 0 80px 0;
    /* Extra padding at bottom for bullets */
    background-color: #ffffff;
}

.client-img {
    width: 200px;
    /* Base width */
    max-width: 250px;
    height: 100px;
    /* Fixed height */
    object-fit: contain;
    /* Keeps logos uniform (gray/faded) until hovered */
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
    margin: 10px;
}

/* Hover effect: turns full color and lifts slightly */
.client-img:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-4px);
}

/* Custom Bullet (Indicator) Styles */
.custom-indicators {
    bottom: -50px;
    /* Positions bullets nicely below the images */
}

.custom-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background-color: #004B87 !important;
    /* Brand Blue */
    opacity: 0.3 !important;
    margin: 0 6px !important;
    border: none !important;
    transition: all 0.3s ease;
}

.custom-indicators button.active {
    opacity: 1 !important;
    background-color: #f26522 !important;
    /* Brand Orange for active slide */
    transform: scale(1.3);
}

/* =========================================
   12-ITEM SECTOR CARDS STYLES (HOMEPAGE)
   ========================================= */
.sector-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 25px 15px;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.sector-card:hover {
    background-color: #ffffff;
    color: #f26522;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.sector-card:hover .icon-wrap {
    background-color: #f26522 !important;
    transform: rotateY(360deg);
}

.sector-card:hover .icon-wrap i {
    color: #ffffff !important;
}

.sector-card:hover h6 {
    color: #f26522 !important;
}

/* =========================================
   OFFERINGS SECTION STYLES
   ========================================= */
.offer-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
    border-top: 4px solid #004B87;
    /* Brand Blue */
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: #f26522;
    /* Brand Orange on hover */
}

.offer-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(242, 101, 34, 0.1);
    /* Light orange background */
    color: #f26522;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.offer-card:hover .offer-icon {
    background-color: #f26522;
    color: #ffffff;
}

/* =========================================
   OFFER CAROUSEL (ARROWS & BULLETS)
   ========================================= */
.offer-carousel-wrapper {
    position: relative;
    padding: 0 20px;
    /* Space for arrows */
}

/* Modern Floating Arrow Buttons */
.custom-arrow {
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    top: 45%;
    transform: translateY(-50%);
    opacity: 1;
    color: #004B87;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.custom-arrow::after {
    display: none !important;
}

.custom-arrow:hover {
    background-color: #f26522;
    color: #ffffff;
    border-color: #f26522;
    box-shadow: 0 8px 20px rgba(242, 101, 34, 0.3);
}

.prev-arrow {
    left: -10px;
}

.next-arrow {
    right: -10px;
}

/* Mobile adjustment for arrows */
@media (max-width: 991px) {
    .prev-arrow {
        left: 0px;
    }

    .next-arrow {
        right: 0px;
    }
}

/* Modern Bullets */
.offer-indicators {
    bottom: 0px !important;
    text-align: center;
    width: 100%;
}

.offer-indicators .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #004B87 !important;
    opacity: 0.2 !important;
    margin: 0 6px !important;
    border: none !important;
    transition: all 0.3s ease !important;
    display: inline-block;
}

.offer-indicators .swiper-pagination-bullet-active {
    opacity: 1 !important;
    background-color: #f26522 !important;
    transform: scale(1.5);
}

/* =========================================
   FULL-WIDTH BACKGROUND SLIDER (1754x984)
   ========================================= */
.featured-slider-section {
    position: relative;
    background-color: #f8f9fa;
}

/* The slide background container */
.slide-bg-container {
    width: 100%;
    height: 650px;
    /* Adjust this height if you want it taller or shorter */
    background-size: cover;
    background-position: center right;
    /* Keeps the focus on the right side of your images */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

/* Optional: Subtle gradient on the left to ensure text is always readable */
.slide-bg-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.75) 50%, rgba(255, 255, 255, 0.2) 100%);
    z-index: 1;
}

/* Text Content container above the background */
.slide-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.featured-slider-section h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-bottom: 20px;
}

.featured-slider-section p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
}

/* Buttons */
.btn-custom-outline {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #f26522;
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
    margin-right: 15px;
}

.btn-custom-outline .btn-text {
    padding: 12px 25px;
    color: #333;
    font-weight: 600;
}

.btn-custom-outline .btn-icon {
    background-color: #f26522;
    color: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.btn-custom-outline:hover {
    box-shadow: 0 5px 15px rgba(242, 101, 34, 0.2);
}

.btn-custom-outline:hover .btn-icon {
    background-color: #d95316;
}

.btn-custom-solid {
    display: inline-flex;
    align-items: center;
    background-color: #004B87;
    color: #fff;
    padding: 12px 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-custom-solid:hover {
    background-color: #003666;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 75, 135, 0.2);
}

/* Navigation Arrows (Bottom Right) */
.featured-controls {
    position: absolute;
    bottom: 30px;
    right: 5%;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.featured-control-btn {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid #f26522;
    color: #f26522;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.featured-control-btn:hover {
    background: #f26522;
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .slide-bg-container {
        height: auto;
        min-height: 60vh;
        padding-bottom: 80px; /* Room for arrows */
    }

    .slide-bg-container::before {
        background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
        /* Stronger white overlay on mobile so text is readable over the whole image */
    }

    .featured-controls {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
    }
}

/* =========================================
   HERO SECTION MOBILE STYLES
   ========================================= */
@media (max-width: 767px) {
    .hero-section .btn.btn-lg {
        padding: 12px 24px !important;
        font-size: 16px !important;
    }
    .hero-section .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        padding-bottom: 50px !important;
    }
    .hero-section .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .location-badge {
        right: 10px !important;
        top: auto !important;
        bottom: -20px !important;
        width: 160px !important;
        padding: 15px !important;
    }
    .location-badge h2 {
        font-size: 2.2rem !important;
    }
    .location-badge small {
        font-size: 0.75rem !important;
    }

    .btn-custom-outline, .btn-custom-solid {
        display: flex !important;
        width: 100% !important;
        max-width: 300px !important;
        justify-content: center !important;
        margin: 0 auto 15px auto !important;
    }
    .btn-custom-outline .btn-text {
        flex-grow: 1;
        text-align: center;
    }
    .btn-custom-outline .btn-icon {
        flex-shrink: 0;
    }
    .slide-content-wrapper .d-flex {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
        width: 100% !important;
    }
    .btn-outline-dark {
        width: 100%;
        max-width: 300px;
        display: block;
        margin: 0 auto;
    }
}

/* Modal Layout Fix */
body.modal-open {
    padding-right: 0 !important;
}
body {
    overflow-x: hidden;
}
