/* Universal Box-Sizing for consistent dimension calculations */
*, *::before, *::after {
    box-sizing: border-box;
}

/* --- TTE Reasons Section Styling (Slider) --- */

.tte-reasons-section {
    padding: 30px 20px !important;
   
   /* font-family: 'Arial', sans-serif;
    color: #333; */
    overflow: hidden; /* Ensures no horizontal scroll from this section */
}

.tte-reasons-section .container {
   /* max-width: 800px;*/ /* Limits the overall width of the content area */
    margin: 0 auto;
    padding: 0 15px;
}

.tte-reasons-section h2 {
    text-align: center;
    font-size: 3em;
    color: #004A7F;
    margin-bottom: 20px;
}

.tte-reasons-section .section-intro {
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6;
 /*   max-width: 800px; */
    margin: 0 auto 50px auto;
    color: #555;
}

/* --- Slider Specific Styles --- */
.slider-wrapper {
    position: relative;
   /* max-width: 100%; *//* Ensures it doesn't exceed parent container's width */
    margin: 0 auto;
    padding: 0 40px; /* Space for buttons */
    box-sizing: border-box;
    height: auto;
    max-width: 800px;
}

.slider-container {
    overflow: hidden; /* Hides slides not currently visible */
    width: 100%; /* Takes full width of slider-wrapper's content area */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    height: auto; /* Allows content to dictate height */
    min-height: 350px; /* Adjust this value if content is shorter/taller */
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
    align-items: stretch;
    height: auto;
}

.slide {
    min-width: 100%; /* Each slide takes up 100% of the slider-container's width */
    flex-shrink: 0;
    display: flex;
    flex-direction: column; /* Stacks cards vertically */
    gap: 25px; /* Space between the two cards in a slide */
    padding: 25px; /* Padding inside the slide */
    box-sizing: border-box;
    background-color: #ffffff;
    height: auto;
    min-height: fit-content;
    align-items: stretch; /* Make cards stretch to similar height if content varies */
    width:100px;
}

/* Reason Card Styles */
.reason-card {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 18px; /* Padding inside the card */
    text-align: left;
    display: flex; /* For icon and text content side-by-side */
    align-items: flex-start;
    gap: 15px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
    height: auto;
    min-height: 120px; /* Minimum height for each card */
    flex-grow: 1; /* Allow cards to grow and distribute space within the slide */
    width: 100%; /* Crucial: Ensures card takes 100% of the available width within the slide */
    /* Add explicit text wrapping just in case */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.card-icon {
    font-size: 2.2em;
    color: #007bff;
    flex-shrink: 0; /* Prevents icon from shrinking */
    line-height: 1;
    margin-top: 2px;
}

.card-text-content {
    flex-grow: 1; /* Allows text content to take available horizontal space */
    height: auto;
    /* Important for text to wrap within its container */
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.card-title {
    font-size: 1.3em;
 /*   color: #004A7F; */
    margin-bottom: 8px;
    line-height: 1.4;
    margin-top: 0px;
}

.card-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* --- Slider Navigation Buttons & Dots (no changes unless specifically requested) --- */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color:rgb(224 112 49);/* rgba(0, 74, 127, 0.8);*/
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: #004A7F;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    text-align: center;
    margin-top: 25px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: rgb(224 112 49);
    transform: scale(1.2);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .tte-reasons-section h2 {
        font-size: 2.5em;
    }
    .tte-reasons-section .section-intro {
        font-size: 1em;
    }
    .slider-wrapper {
        padding: 0 10px;
    }
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2em;
        padding: 5px;
    }
    .slide {
        padding: 20px;
        gap: 20px;
    }
    .reason-card {
        padding: 20px;
    }
    .card-icon {
        font-size: 2em;
    }
    .card-title {
        font-size: 1.2em;
    }
    .card-description {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .tte-reasons-section {
        padding: 30px 15px;
    }
    .tte-reasons-section h2 {
        font-size: 2em;
    }
    .slider-wrapper {
        padding: 0;
    }
    .slider-btn {
        display: none;
    }
    .slide {
        padding: 15px;
        gap: 15px;
    }
    .reason-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }
    .card-icon {
        font-size: 1.8em;
    }
    .card-title {
        font-size: 1.1em;
        margin-bottom: 5px;
    }
    .card-description {
        font-size: 0.85em;
    }
}











.clients_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.clients_list a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 200px;  /* adjust as needed */
  height: 125px;  /* adjust as needed */
  padding: 8px;
  background-color: #fff; /* optional, for contrast */
  border: 1px solid #eee; /* optional border */
  border-radius: 6px;      /* optional rounded corners */
}

.clients_list img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}