    /*--------------------------------------------------------------
# Main Slider (Updated with Numbered Dots)
--------------------------------------------------------------*/
.main-slider {
    position: relative;
    display: block;
    width: 100%;
    height:680px;   /* Fixed height */
    overflow: hidden;
    z-index: 10;
}

.main-slider .item {
    position: relative;
    width: 100%;
    height:680px;   /* Same fixed height */
    overflow: hidden;
}

/* Background Image Fit */
.main-slider__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:680px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* Auto-fit cover */
    z-index: -1;
}

/* Content Alignment */
.main-slider__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: flex-start; /* Align left */
    padding:90px 0px 0px;
    text-align: left;
}

/* Sub-title */
.main-slider__sub-title {
    font-size: 20px;
    font-weight: 600;
    color: #00b1db;
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* Title */
.main-slider__title {
    font-size: 40px;
    line-height: 50px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Description */
.main-slider__text {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 10px 15px;
    border-radius: 6px;
    max-width: 600px;
}

/* Button */
.main-slider__btn-box {
    margin-top: 20px;
}
.main-slider__btn-box .thm-btn {
    background: #00b1db;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.main-slider__btn-box .thm-btn:hover {
    background: #0089a8;
}

/*--------------------------------------------------------------
# Owl Carousel Numbered Dots Styling
--------------------------------------------------------------*/
.main-slider .owl-theme .owl-dots {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.main-slider .owl-theme .owl-dots .owl-dot {
    margin: 6px 0;
    counter-increment: slide; /* Auto number generate karega */
}

.main-slider .owl-theme .owl-dots .owl-dot span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: rgba(0,0,0,0.4);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

/* Number inject inside circle */
.main-slider .owl-theme .owl-dots .owl-dot span::before {
    content: counter(slide);
}

/* Active / Hover state */
.main-slider .owl-theme .owl-dots .owl-dot.active span,
.main-slider .owl-theme .owl-dots .owl-dot:hover span {
    background: #00b1db;
    border-color: #00b1db;
    color: #fff;
}
 

 /*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

/* Tablet Devices */
@media (max-width: 991px) {
    .main-slider,
    .main-slider .item,
    .main-slider__bg {
        height: 300px;
        padding: 0 20px;
    }

    .main-slider__content {
        height: 100%;
        justify-content: center;
        align-items: flex-start; /* Keep left aligned */
        text-align: left;
        padding-bottom:20px;
    }

    .main-slider__sub-title {
        font-size: 14px; /* smaller */
    }

    .main-slider__title {
        font-size: 24px; /* smaller */
        line-height: 30px;
    }

    .main-slider__text {
        font-size: 13px; /* smaller */
        line-height: 18px;
        max-width: 90%;
        padding: 5px 0;
    }

    .main-slider__btn-box {
        margin-top: 10px;
        align-self: flex-start;
    }

    .main-slider .owl-theme .owl-dots {
        right: 10px;
        bottom: 10px;
    }
}

/* Mobile Devices */
@media (max-width: 767px) {
    .main-slider,
    .main-slider .item,
    .main-slider__bg {
        height:500px;
        padding:30px 0px 30px 0px !important;
    }

    .main-slider__content {
        height:500px;
        justify-content: center;
        align-items: flex-start; /* Keep left aligned */
        text-align: left;
        padding: 0;
    }

    .main-slider__sub-title {
        font-size: 12px; /* smaller */
    }

    .main-slider__title {
        font-size: 18px; /* smaller */
        line-height: 24px;
    }

    .main-slider__text {
        font-size: 12px; /* smaller */
        line-height: 16px;
        padding: 5px 0;
        max-width: 100%;
    }

    .main-slider__btn-box {
        margin-top: 10px;
        align-self: flex-start;
    }

    .main-slider .owl-theme .owl-dots {
        flex-direction: row;
        justify-content: flex-start;
        position: absolute;
        bottom: 10px;
        left: 10px;
        transform: none;
        top: auto;
        right: auto;
    }

    .main-slider .owl-theme .owl-dots .owl-dot {
        margin: 0 5px;
    }
}