.inside-hero {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    width: 100%;
    min-height: 400px;
    background-size: cover;
    
    padding-left: 1%;
  
    border-top: 1px solid rgba(255, 255, 255, 0.30);
}


.inside-hero h1, .inside-hero p {
    color: white;
}

.inside-switch-select-container {
    display: flex;
    padding: 10px 0;
    font-size: 12px;
    margin-top: 25px;
}

.inside-switch-option {
    cursor: pointer;
    padding: 8px 12px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.7;
    border-bottom: 3px solid transparent;
}


.inside-switch-option.active {
    border-bottom: 3px solid #b1975f;
    opacity: 1;
}

.inside-switch-option span {
    font-weight: 500;
}

.sections-cards-container {
    height: 385px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-card {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1280px;
    border-radius: 16px;
    background-color: var(--bg-card);
    gap: 15px;
    padding: 15px;
   
}

.section-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.section-card-img {
    
    object-fit: cover;
    width: 45%;
    border-radius: 8px;
}

.section-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    text-align: left;
}

.section-card-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color);
    text-align: justify;
}

.section-card-btn {
    align-self: flex-end;
}

@media screen and (max-width: 768px) {
    .sections-cards-container {
        height: auto;
    }
    .section-card {
        flex-direction: column;
        height: auto;
    }
    .section-card-img {
       width: 100%;

    }
}


.menu-sections-container {
    padding:5px 0;
}

.single-section-container {
    display: flex;
    padding:5px 0;
    justify-content: center;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 40px;
}

.deconstructed-card {
    flex: 0 0 auto;
    width: 50%;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(187, 150, 97, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
}

.carousel-button:hover {
    background: rgba(187, 150, 97, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #E5E7EB;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background: #BB9661;
    transform: scale(1.2);
}

.dot:hover {
    background: #BB9661;
}

/* Responsive design */
@media (max-width: 768px) {
    .carousel-track {
        gap: 20px;
    }
    
    .deconstructed-card {
        min-width: 80%;
        margin-right: 15px;
    }
    
    .carousel-button {
        width: 40px;
        height: 40px;
    }
    
    .carousel-button.prev {
        left: 5px;
    }
    
    .carousel-button.next {
        right: 5px;
    }
    
    .dots-container {
        margin-top: 20px;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
}




.manask-row {
    margin-left: 1%;
    margin-top: 35px;
}

.manask-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manask-row-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.pill-manask {
    border-radius: 20px;
    border: 2px solid var(--color-main);
    padding: 2px 10px;
    font-size: 14px;
}




.statistics-row-mlp-mk , .statistics-row-mlp-md {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1%;
    margin-top: 30px;
    color: white;
}
.statistics-row-mlp-mk .section-title , .statistics-row-mlp-md .section-title {
    color: white !important;
}
.statistics-row-mlp-mk {
    background: linear-gradient(0deg, rgba(26, 35, 45, 0.7), rgba(26, 35, 45, 0.7)), url(../../assets/hero/mk-stat.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.statistics-row-mlp-md {
    background: linear-gradient(0deg, rgba(26, 35, 45, 0.7), rgba(26, 35, 45, 0.7)), url(../../assets/hero/med.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.statistics-card-mlp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    height: 204px;
    margin: 10px 0;
    background: rgba(22, 22, 22, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 16px;
}

.statistics-card-mlp-icon {
    width: 56px;
    height: 56px;
    background: rgba(177, 151, 95, 0.1);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.statistics-card-mlp-icon i {
    font-size: 24px;
    color: white;
}

.statistics-card-mlp-number {
    font-size: 35px;
    font-weight: 400;
    color: white;
}

.statistics-card-mlp-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.70);
    text-align: center;
}



.lib-row {
    margin: 50px 0 !important;
}

.lib-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.highlight-description {
    background-color: #b1975f93;
}

.img-selected {
    width: 50%;
    height: 502px;
    border-radius: 8px;
    object-fit: cover;
}

.selected-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 16px;
    min-height: 406px;
    min-width: 50%;
    text-align: justify;
    translate: 10% 0;
}

.selected-icon {
    min-width: 48px;
    min-height: 48px;
    background: #B1975F;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected-icon i {
    font-size: 24px;
    color: #067647;
}

.inside-hero p {
    width: 40%;
}

@media (max-width: 768px) { 
    .statistics-card-mlp-number { 
        font-size: 25px;
    }
    .selected-card {
        translate: 0 0 !important;
    }
    .inside-hero p {
        width: 100%;
    }
}
