/* .main-hero-slider-section { */
    /* background: #f8fafc; */
    /* padding: 2rem 0; */
/* } */

/* .main-hero-slider-section .section-title { */
    /* font-size: 2.25rem; */
    /* font-weight: 700; */
    /* text-align: center; */
    /* color: #1e293b; */
    /* margin-bottom: 1rem; */
/* } */

/* .main-hero-slider-section .section-desc { */
    /* text-align: center; */
    /* color: #64748b; */
    /* font-size: 1.125rem; */
    /* margin-bottom: 2rem; */
/* } */

/* .main-hero-slider { */
    /* position: relative; */
    /* width: 100%; */
    /* height: 600px; */
    /* overflow: hidden; */
    /* border-radius: 1rem; */
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
/* } */

/* .main-hero-slider .main-slide-track { */
    /* display: flex; */
    /* transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); */
    /* height: 100%; */
    /* will-change: transform; */
/* } */

/* .main-hero-slider .main-slide { */
    /* min-width: 100%; */
    /* height: 100%; */
    /* position: relative; */
    /* user-select: none; */
    /* pointer-events: none; */
/* } */

/* .main-hero-slider .main-slide img { */
    /* width: 100%; */
    /* height: 100%; */
    /* object-fit: contain; */
/* } */

/* .main-hero-slider .main-slide-content { */
    /* position: absolute; */
    /* bottom: 0; */
    /* left: 0; */
    /* right: 0; */
    /* padding: 2rem; */
    /* background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); */
    /* color: white; */
/* } */

/* .main-hero-slider .main-slide-content h2 { */
    /* font-size: 2rem; */
    /* font-weight: 700; */
    /* margin-bottom: 0.5rem; */
/* } */

/* .main-hero-slider .main-slide-content p { */
    /* font-size: 1.125rem; */
    /* opacity: 0.9; */
/* } */

/* .main-hero-slider .main-slider-nav { */
    /* position: absolute; */
    /* bottom: 1rem; */
    /* left: 50%; */
    /* transform: translateX(-50%); */
    /* display: flex; */
    /* gap: 0.5rem; */
    /* z-index: 10; */
/* } */

/* .main-hero-slider .main-nav-dot { */
    /* width: 10px; */
    /* height: 10px; */
    /* border-radius: 50%; */
    /* background: rgba(255,255,255,0.5); */
    /* cursor: pointer; */
    /* transition: all 0.3s ease; */
/* } */

/* .main-hero-slider .main-nav-dot.active { */
    /* background: #af2826; */
    /* transform: scale(1.2); */
/* } */

/* .main-hero-slider .slider-arrow { */
    /* position: absolute; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    /* width: 48px; */
    /* height: 48px; */
    /* background: rgba(255, 255, 255, 0.9); */
    /* border-radius: 50%; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    /* cursor: pointer; */
    /* transition: all 0.3s ease; */
    /* z-index: 10; */
    /* border: none; */
    /* opacity: 0.8; */
/* } */

/* .main-hero-slider .slider-arrow:hover { */
    /* background: white; */
    /* transform: translateY(-50%) scale(1.1); */
    /* opacity: 1; */
/* } */

/* .main-hero-slider .slider-arrow:disabled { */
    /* opacity: 0.5; */
    /* cursor: not-allowed; */
/* } */

/* .main-hero-slider .slider-arrow.prev { */
    /* left: 20px; */
/* } */

/* .main-hero-slider .slider-arrow.next { */
    /* right: 20px; */
/* } */

/* .main-hero-slider .slider-arrow i { */
    /* color: #1e293b; */
    /* width: 24px; */
    /* height: 24px; */
/* } */
/* sectorSlider.css */
/* Sectors Section */
.main-hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.main-hero-slider .main-slide-track {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    will-change: transform;
}

.main-hero-slider .main-slide {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
    will-change: transform;
}

@media (min-width: 768px) {
    .main-hero-slider .main-slide {
        width: calc(1000px / 2);
        padding: 0 0.5rem;
    }
}

.main-hero-slider .main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    will-change: transform;
}

.main-hero-slider .main-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

.main-hero-slider .main-slide-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.main-hero-slider .main-slide-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.main-hero-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    pointer-events: auto;
}

.main-hero-slider .slider-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.main-hero-slider .slider-arrow:hover:not(:disabled) {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.main-hero-slider .slider-arrow.prev {
    left: 20px;
}

.main-hero-slider .slider-arrow.next {
    right: 20px;
}

.main-hero-slider .slider-arrow i {
    color: #1e293b;
    width: 24px;
    height: 24px;
}

.main-hero-slider-section {
    background: #f8fafc;
    padding: 2rem 0;
}

.main-hero-slider-section .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    color: #1e293b;
    margin-bottom: 1rem;
}

.main-hero-slider-section .section-desc {
    text-align: center;
    color: #64748b;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}