
body.home-page {
    overflow-x: hidden;
    background: white !important;
}



.cards-section {
    width: 100vw;
    overflow: hidden;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    
}

.cards-container {
    width: 100%;
    height: 100%;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
}

.cards-track {
    display: flex;
    height: 100%;
    cursor: grab;
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    will-change: transform;
}

.home-card {
    flex: 0 0 100vw;
    height: 100%; 
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    user-select: none;
}
.card-link {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.card-image {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}


.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px; 
    background: rgba(0, 0, 0, 0.2); 
    border: none;
    border-radius: 60%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(2px); 
}



.carousel-nav-prev {
    left: 30px; 
}

.carousel-nav-next {
    right: 30px;
}

.carousel-nav svg {
    width: 58px;
    height: 58px; 
    stroke: white;
    stroke-width: 2;
}



.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px; 
    z-index: 10;
    padding: 10px;
}

.indicator {
    width: 30px; 
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px; 
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1, 1); 
}

.indicator.active {
    background: white;
    transform: scale(1.1, 1); 
}



@media (max-width: 992px) {
    .carousel-nav {
        width: 50px;
        height: 50px;
    }
    
    .carousel-nav svg {
        width: 24px;
        height: 24px;
    }
    
    .carousel-nav-prev {
        left: 20px;
    }
    
    .carousel-nav-next {
        right: 20px;
    }
    
    .indicator {
        width: 25px;
        height: 3px;
    }
}

@media (max-width: 768px) {
    .container-wrapper {
        padding: 3rem 0;
    }
    
    .about-title,
    .mission-title {
        font-size: 1.8rem;
    }
    
    .about-text,
    .mission-text {
        font-size: 1rem;
    }
    
    
    .cards-section {
        
        margin-top: var(--header-height);
    }
    
   
   
    .carousel-nav {
        width: 45px;
        height: 45px;
        opacity: 0.8; 
    }
    
    .carousel-nav svg {
        width: 22px;
        height: 22px;
    }
    
    .carousel-nav-prev {
        left: 15px;
    }
    
    .carousel-nav-next {
        right: 15px;
    }
    
 
    .carousel-indicators {
        bottom: 25px;
        gap: 8px;
    }
    
    .indicator {
        width: 20px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .container-wrapper {
        padding: 2rem 0;
    }
    
}

@media (max-width: 360px) {
    .carousel-nav {
        width: 35px;
        height: 35px;
    }
    
    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-nav-prev {
        left: 8px;
    }
    
    .carousel-nav-next {
        right: 8px;
    }
    
    .indicator {
        width: 15px;
        height: 3px;
    }
}