.almas-slider-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 90vh;
    /* Increased for premium look */
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

/* Fix Logo Fitting */
.header-logo img {
    max-height: 85px !important;
    width: auto !important;
    display: block;
    object-fit: contain;
}

/* Ensure header container is still centered but header itself is full width */
.transparent-header .container {
    max-width: 1400px;
}

.transparent-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
}

.almas-slides-wrapper {
    width: 100%;
    height: 100%;
}

.almas-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.almas-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s linear;
}

.almas-slide.active .slide-background {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    width: 100%;
}

.content-inner {
    max-width: 600px;
    padding-left: 50px;
}

.slide-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff !important;
}

.slide-excerpt {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-nav {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s;
}

.slider-nav:hover {
    background: #fff;
    color: #000;
}

.slider-dots {
    display: flex;
    gap: 10px;
    margin: 0 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
    }

    .content-inner {
        padding-left: 20px;
    }
}