/* ========================================
   ANIMATED INTRO SECTION - AZIZI STYLE
   ======================================== */

.ard-calc-section {
    display: none;
    padding-left: 0px;
    padding-right:0px;
}




.animated-intro-section {
    position: relative;
    padding: 0;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    min-height: 80vh;
    /* Take up 80% of screen height */
    width: 100%;
}

.intro-container {
    position: relative;
    width: 80%;
    /* Take up 80% of screen width */
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Background Watermark Heading */
.intro-heading-bg {
    font-size: 8vw;
    font-weight: 900;
    color: #e6e6e6;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    text-align: center;
    margin: 0;
    position: relative;
    /* Normal flow for perfect centering */
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    z-index: 0;
    white-space: normal;
    opacity: 1;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Content Text Overlay */
.intro-content-overlay {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 180px auto 50px;
    /* Push down below heading top */
}

.intro-text {
    font-size: 20px;
    line-height: 1.6;
    color: #0e1c2c;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .animated-intro-section {
        padding: 80px 0;
    }

    .intro-heading-bg {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .intro-heading {
        font-size: 28px;
        letter-spacing: 1px;
    }
}

/* ========================================
   DUAL SLIDER SECTION
   ======================================== */
.dual-slider-section {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.dual-slider-container {
    position: relative;
    width: 100%;
}

.slider-row {
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
}

/* Left to Right Animation */
.slider-track-ltr {
    animation: scrollLeft 40s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Right to Left Animation */
.slider-track-rtl {
    animation: scrollRight 40s linear infinite;
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Pause on hover */
.slider-row:hover .slider-track {
    animation-play-state: paused;
}

.slider-item {
    flex: 0 0 auto;
    width: 400px;
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dual-slider-heading-wrapper {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0e1c2c 0%, #1a2f42 100%);
}

.dual-slider-heading {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .slider-item {
        width: 300px;
        height: 225px;
    }

    .dual-slider-heading {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .slider-track {
        gap: 20px;
    }

    .dual-slider-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .slider-item {
        width: 250px;
        height: 188px;
    }

    .dual-slider-heading {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .slider-track {
        gap: 15px;
    }
}