/* Modutek Slider Styles */
.modutek-slider-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 70px;
    position: relative;
    z-index: 1;
}

.modutek-slider-wrapper {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.modutek-slide,
.modutek-slide-content {
    position: relative;
    z-index: 1;
}

.modutek-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    align-items: stretch;
}

/* Slide width */
.modutek-slide {
    min-width: 50%;
    max-width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.modutek-slide-inner {
    border: solid 1px #E1E1E1;
    border-radius: 15px;
    background-color: #C3C3C333;
    padding: 15px;
    height: 100%;
}

/* Card */
.modutek-slide-content {
    background: #c3c3C333;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image */
.modutek-slide-image img {
    width: 100%;
    height: 230px;
    object-fit: contain;
    object-position: center;
    display: block;
    background: #f5f5f5;
}

/* Text */
.modutek-slide-text {
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modutek-heading-slider {
    font-size: 19px;
    font-weight: 700;
    color: #5a5a5a;
    margin-bottom: 12px;
}

.modutek-slider-paragraph {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Button */
.modutek-slider-button {
    margin-top: auto;
}

.modutek-slider-button a {
    display: inline-block;
    background: #6f0018;
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-transform: uppercase;
}

.modutek-slider-button a:hover {
    background: #8B1538;
}

 /* Arrows - ICON ONLY (NO BACKGROUND) */
.modutek-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999 !important;
    cursor: pointer;

    background: transparent;   /* REMOVE background */
    box-shadow: none;           /* REMOVE shadow */
    border: none;

    width: auto;
    height: auto;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arrow SVG */
.modutek-slider-arrow svg {
    width: 30px;
    height: 30px;
    fill: #000;                 /* BLACK arrow */
    transition: fill 0.3s ease;
}

/* Hover effect (optional) */
.modutek-slider-arrow:hover svg {
    fill: #000;                 /* keep black on hover */
}

button#modutekPrevBtn,
button#modutekNextBtn {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
}

 

button#modutekPrevBtn svg,
button#modutekNextBtn svg {
    width: 48px;     /* increase size */
    height: 48px;
    fill: #000;      /* black arrow */
}

/* Position */
.modutek-prev {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.modutek-next {
   position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
}

#modutekPrevBtn,
#modutekNextBtn {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

#modutekPrevBtn:focus,
#modutekNextBtn:focus,
#modutekPrevBtn:active,
#modutekNextBtn:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}


/* Dots - REDUCED SIZE */
.modutek-slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 8px;                 /* Reduced from 10px */
}

.modutek-dot {
    width: 8px;               /* Reduced from 12px */
    height: 8px;              /* Reduced from 12px */
    background: #ddd;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.modutek-dot:focus {
    outline: none;
}

.modutek-dot.active {
    width: 24px;              /* Increased width for active state */
    height: 8px;              /* Keep same height */
    background: #6f0018;
    border-radius: 4px;       /* More rounded pill shape */
}

.modutek-dot:hover {
    background: #ddd;
}

/* Responsive */
@media (max-width: 1200px) {
    .modutek-slider-container {
        padding: 0 60px !important;
    }
}

@media (max-width: 768px) {
    .modutek-slide {
        min-width: 100% !important;
    }
    
    .modutek-slider-container {
        padding: 0 0px !important;
        margin: 10px auto;
    }
    
    .modutek-slide-inner {  
      padding: 0px!important;
}

    
    /* Smaller arrows on mobile */
    .modutek-slider-arrow {
        width: 40px !important;
        height: 40px !important;
    }
    
    .modutek-slider-arrow svg {
        width: 30px !important;
        height: 30px !important;
    }
}