* {
          
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* NEWSLIDER */
.slider-wrapper{
    padding-top: 45px;
    position: relative;
}
.container-model {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-height: 70%;
    margin: 20px auto;
    background-color: #FBF7F4;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.text-section-model {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5%;
}

.text-section-model h1 {
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
    margin-top: 0;
}

.text-section-model p {
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-model {
    background-color: #E16944;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: fit-content;
}

.btn-model:hover {
    background-color: #e04343;
}

.image-section-model {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-section-model img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.dots-model {
    margin: auto;
    position: absolute;
    width: -webkit-fill-available;
    text-align: center;
    padding: 10px;
    bottom: 20px;
}

.dot-model {
    height: 10px;
    width: 10px;
    background-color: transparent;
    border: 2px solid #ff6200;
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

.dot-model.active-model {
    background-color: #ff6200;
}

@media (max-width: 768px) {
    .container-model {
        flex-direction: column;
        /* margin: 10px;  TEMP TESTING*/
    }

    .text-section-model {
        padding: 20px;
        text-align: center;
        margin-left: unset;
    }

    .text-section-model h1 {
        font-size: 24px;
    }

    .text-section-model p {
        font-size: 14px;
    }

    .btn-model {
        margin: 0 auto;
        font-size: 14px;
        padding: 8px 16px;
    }

    .image-section-model {
        height: auto;
    }

    .image-section-model img {
        height: 300px;
        object-fit: contain;
    }
}
.slides-container-model {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slides-track-model {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide-model {
    flex: 0 0 100%;
    width: 100%;
}


/* NEWSLIDER */
/* FETCHERS LOADER */
.loading-message {
    padding: 10px;
    text-align: center;
    color: #ff5a5f;
    font-weight: bold;
    font-size: 1rem;
}

.fetchers::after {
    content: '';
    animation: fetchers-dots 1.2s steps(3, end) infinite;
}

@keyframes fetchers-dots {
    0%   { content: ''; }
    33%  { content: '.'; }
    66%  { content: '..'; }
    100% { content: '...'; }
}

.spinner-img {
    width: 24px; /* adjust as needed */
    height: 24px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
/* afetchers loADERS */

/* PARTNERSHOSPITALS */
.partners-section-partners {
    padding: 40px 20px;
    text-align: center;
}

.partners-section-partners h2,
.heading-partners {
    color: #D3755C;
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.partners-grid-partners {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card-partners {
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.partner-card-partners img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.pagination-partners {
    margin-top: 20px;
    text-align: center;
}

.pagination-partners span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: transparent;
    border: 2px solid #ff6200;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.pagination-partners .active {
    background-color: #fd7e14;
}

@media (max-width: 768px) {
    .partners-grid-partners {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .partner-card-partners {
        height: auto;
    }
}

/* PARTNERSHOSPITALS */


/* .slider-container {
    position: relative;
    width: 100vw; 
    height: 800px; 
    margin: 50px auto;
    overflow: hidden;
}

.slider-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: white;
}

button, input[type="button"], input[type="submit"] {
    padding: 0em 2em !important;
}

.slide:nth-child(1), .slide:nth-child(2), .slide:nth-child(3) {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .slider-container {
        height: auto; 
    }

    .slider-container img {
        object-fit: cover; 
    }

    .slide {
        font-size: 32px;
    }
}

.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 30px; 
    height: 4px; 
    border-radius: 2px; 
    background-color: rgb(164 161 161 / 51%) !important; 
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: white;
}

.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.3);
}

.btn.prev {
    left: 0;
}

.btn.next {
    right: 0;
} */

/* New Section Styles */
/* INFO SECTION */
.container-infosection {
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.heading-infosection {
    color: #D3755C !important;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.subheading-infosection {
    color: #666;
    font-size: 1em;
    margin-bottom: 30px;
}

.content-infosection {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.border-wrapper-infosection {
    background: linear-gradient(to left, #b3e93600 40%, #FE7C59 30%) border-box;
    border: 10px solid transparent;
}

.stats-infosection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    text-align: center;
}

.stat-item-infosection {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-number-infosection {
    color: #ff5733;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-text-infosection {
    color: #333;
    font-size: 1em;
}

/* Mobile View */
@media (max-width: 768px) {
    .heading-infosection {
        font-size: 1.5em;
    }

    .subheading-infosection {
        font-size: 0.9em;
    }

    .content-infosection {
        flex-direction: column;
        align-items: center;
    }

    .image-container-infosection img {
        width: 100%;
    }

    .stat-number-infosection {
        font-size: 1.5em;
    }

    .stat-text-infosection {
        font-size: 0.9em;
    }
}
/* INFO SECTION */

.my_custom_contactform{
    box-shadow: -1px 1px 6px 5px #d9d9d94a;
    padding: 15px;
    margin-left: 30px;
    border-radius: 10px;
}
.my_custom_contactform {
    text-align: center;  /* Center the form content (including the button) */
}
.my_custom_contactform input[type="text"],
.my_custom_contactform input[type="email"],
.my_custom_contactform textarea {
    background-color: #e0e0e0;
    color: #000000; /* Sets text color to black */
}

.my_custom_contactform input[type="text"]::placeholder,
.my_custom_contactform input[type="email"]::placeholder,
.my_custom_contactform textarea::placeholder {
    color: #6e6363; /* Sets placeholder text color to black */
}


.my_custom_contactform input[type="submit"] {
    background-color: #E16944;
    width: 200px;
    border-radius: 15px;
    display: inline-block;
    margin: 0 auto;
}

.my_custom_contactform .col-md-6{
    width: 100%;
}


/* TWO CARDS */
/* Container for the two cards */
.two-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between cards */
    padding: 20px;
    max-width: 1360px; /* Optional: Limit the maximum width */
    margin: 0 auto; /* Center the container */
}

/* Card Styling */
.two-card {
    flex: 1 1 calc(50% - 20px); /* Two cards per row with gap */
    background-color: #fff;
    border-radius: 22px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.two-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Card Body - Remove text and add image */
.two-card-body {
    padding: 0; /* Remove padding since it's not needed */
    position: relative;
}

/* Image Styling */
.two-card-img {
    width: 100%;
    /* height: 300px; */
    object-position: center; /* Keeps the image centered within the box */
}


/* Responsive Behavior */
@media (max-width: 768px) {
    .two-card {
        flex: 1 1 100%; /* Stack cards vertically on smaller screens */
    }
}


/* STYLEfor doctors */
body.template-new-home-child {
    .container {
        padding-top: 20px;
        max-width: 1200px;
        margin: auto;
        text-align: center;
    }
}
.tabs {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
}
.tabs span {
    padding: 10px;
    border-bottom: 3px solid transparent;
}
.tabs span.active {
    color: orange;
    border-bottom: 3px solid orange;
}

.department .owl-carousel .item img {
    /* height: 105px !important; */
    width: 112px !important;
}
/* .doc-text-card p{
    font-size: 10px;
    line-height: normal;
} */
.doctor-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.doctor-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}
.doctor-card:hover {
    transform: translateY(-5px);
}
.youtube-link {
    color: blue;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.youtube-link img {
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .single-item .doctor-card img{
        width: 20%;

    }
    .department .owl-carousel .item img {
        height: 105px !important;
        width: 112px !important;
    }
    .doc-text-card p{
        font-size: 10px;
        line-height: normal;
    }
    .doctor-card {
        gap: 15px;
        flex-direction: row;
    }
    .tabs {
        flex-direction: row;
        align-items: center;
    }
    .tabs span {
        margin: 5px 0;
    }
}
@media (max-width: 480px) {
    .doctor-card img {
        width: 120px;
        height: 120px;
    }
    .tabs span {
        font-size: 12px;
        line-height: normal;
    }
    .department .owl-carousel .item img {
        height: 105px !important;
        width: 112px !important;
    }
    .doc-text-card p{
        font-size: 10px;
        line-height: normal;
    }
}
/* BANNER  */
/* Container to hold the background image */
.imager {
    max-width: 1360px;
    margin: auto;
    position: relative; /* Make the container relative for absolute positioning */
}

.imager img {
    width: 100%;
    height: 450px;
    object-fit: cover; /* Ensure the image covers the whole container */
}

/* Container for the heading and button, overlaying on the image */
.ban-container {
    display: flex;
    position: absolute;
    top: 50%; /* Position vertically centered */
    left: 0;
    right: 0;
    transform: translateY(-50%); /* Center vertically */
    padding: 0 20px; /* Optional padding for responsiveness */
    color: white; /* Text color for both columns */
}

/* Left column (empty space) */
.left-column {
    flex: 1;
}

/* Column for heading and button */
.button-column {
    flex: 1;
    display: flex;
    flex-direction: column;  /* Stack heading and button vertically */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center heading text */
}

/* Styling for the button */
.button-column button {
    background-color: #ff6600;  /* Orange background color for the button */
    color: white;  /* White text color */
    padding: 10px 20px !important;  /* Padding around the button */
    font-size: 16px;  /* Font size */
    border: none;  /* Remove default button border */
    border-radius: 5px;  /* Optional, for rounded corners on the button */
    cursor: pointer;  /* Pointer cursor on hover */
    transition: background-color 0.3s ease;  /* Smooth transition for background color change */
}

/* Button hover effect */
.button-column button:hover {
    background-color: #e55b00;  /* Darker shade of orange on hover */
}
.strike {
    text-decoration: line-through;
    text-decoration-thickness: 2px; /* Adjust the thickness of the line */
    color: red; /* Optional: change the color of the strikethrough price */
    transform: rotate(-10deg); /* Rotates the line a bit to make it more diagonal */
    transform-origin: center; /* Ensures the line rotates around the center */
}

@media screen and (max-width: 768px) {
    .imager img {
        object-fit: contain;
        height: unset;
}
    .button-column h2{
    font-size: 15px;
    }
    .ryzen.d-flex.imager.mt-5{
        display: unset!important;
    }
    .col-md-5.cf{
        padding: 0 20px;
    }
    .my_custom_contactform{
        margin-left: 0px;
    }
    .owl-item{
        margin-right: 20px;
}
    .owl-stage-outer{
        padding: 0px !important;
    }
    .testimonial-card{
        padding-bottom: 50px;
    }
}

/* Banner end */

/* CONTACTFORM& SECTION */
.contact7-background{
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}
.section-container-contactform7 {
    background-color: #FBF7F4;
    
}
.wpcf7-contactform7 br {
    display: none;
}

.text-content-contactform7 {
    flex: 1;
    min-width: 300px;
}

.text-content-contactform7 h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.text-content-contactform7 h1 span {
    color: #ff6200;
}

.text-content-contactform7 p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.form-container-contactform7 {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container-contactform7 h2 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.wpcf7-contactform7 label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #333;
}

.wpcf7-contactform7 input[type="text"],
.wpcf7-contactform7 input[type="email"],
.wpcf7-contactform7 input[type="tel"],
.wpcf7-contactform7 select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.wpcf7-contactform7 select {
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center;
    background-size: 12px;
}

.wpcf7-contactform7 input[type="submit"] {
    width: 100%;
    background: #ff6200;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.wpcf7-contactform7 input[type="submit"]:hover {
    background: #e55a00;
}

@media (max-width: 768px) {
    .section-container-contactform7 {
        flex-direction: column;
        padding: 30px;
    }
    .contact7-background{
        padding: 0;
    }

    .text-content-contactform7 h1 {
        font-size: 2rem;
    }

    .form-container-contactform7 {
        padding: 20px;
    }
}
/* CONTACTFORM7 SECTION */

/* NEW SECTION RTA BUTTON BANNER */

/* NEW SECTION RTA BUTTON BANNER*/

/* TESTIMONIALS */
.slider-testimonial-version {
    margin: 0 auto;
    padding-top: 25px;
    padding: 70px 26px;
    overflow: hidden;
    width: 960px;
    position: relative;
  }

  .testimonial-container-testimonial-version {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
  }

  .testimonial-testimonial-version {
    flex: 0 0 33.3333%;
    box-sizing: border-box;
    padding: 20px;
    margin-right: 10px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    height: 200px;
    position: relative;
  }

  .testimonial-testimonial-version::before {
    content: '“';
    font-size: 70px;
    color: #ff6200;
    position: absolute;
    top: 10px;
    left: 50%;
    line-height: 1;
  }

  .testimonial-testimonial-version p:first-child {
    font-style: italic;
    color: #333;
    margin-top: 30px;
    text-align: center;
  }

  .testimonial-testimonial-version p:last-child {
    color: #ff6200;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
  }

  .testimonial-testimonial-version hr {
    width: 50%;
    border: 1px solid #ff6200;
    margin: 0 auto;
  }

  .pagination-testimonial-version {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .dot-testimonial-version {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
  }

  .dot-testimonial-version.active {
    background-color: #ff6200;
  }

  @media (max-width: 768px) {
    .testimonial-testimonial-version {
      flex: 0 0 100%;
    }
    .slider-testimonial-version {
      width: 100%;
    }
  }
/* TESTIMONIALS */
/* RTA SECTION */
.career-section-RTAsection {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70vw;
    height: 300px;
    background-color: #f5e9d9;
    border-radius: 20px;
    padding: 0 30px;
    bottom: 0;
    box-sizing: border-box;
    max-width: 100%;
}

.text-content-RTAsection {
    max-width: 50%;
}

.text-content-RTAsection h1 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.text-content-RTAsection p {
    font-size: 18px;
    color: #333;
    margin: 0 0 20px 0;
}

.cta-button-RTAsection {
    background-color: #ff6200;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button-RTAsection:hover {
    background-color: #e05800;
}

.image-content-RTAsection img {
    max-height: 240px;
    width: auto;
}

.image-content-RTAsection {
    position: relative;
    margin-top: 5%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .career-section-RTAsection {
        flex-direction: row;
        height: auto;
        padding: 30px 30px 0px 30px;
        bottom: 0;
        text-align: left;
        width: unset;
    }

    .text-content-RTAsection {
        flex-basis: 50%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .text-content-RTAsection h1 {
        font-size: 28px;
    }

    .text-content-RTAsection p {
        font-size: 16px;
    }

    .image-content-RTAsection img {
        max-height: 200px;
        width: 100%;
        object-fit: contain;
    }

    .image-content-RTAsection {
        flex-basis: 50%;
        position: relative;
        margin-top: 17%;
    }
}

@media (max-width: 480px) {
    .career-section-RTAsection{
        width: unset;
    }
    .text-content-RTAsection h1 {
        font-size: 24px;
    }

    .text-content-RTAsection p {
        font-size: 14px;
    }

    .cta-button-RTAsection {
        padding: 10px 20px;
        font-size: 14px;
    }

    .image-content-RTAsection img {
        max-height: 333px;
    }

    .image-content-RTAsection {
        position: relative;
        margin-top: 17%;
    }
}
/* RTA SECTION */
/* TEMP TECHNICIAN COURSES*/

.grid-container-techniciancourse {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 800px;
    width: 100%;
}

.card-techniciancourse {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.card-techniciancourse img {
    width: 50px;
    height: 45px;
    margin-bottom: 10px;
    margin-left: 0;
}

.card-techniciancourse span {
    font-size: 16px;
    color: #5a4b3c;
}

.arrow-techniciancourse {
    font-size: 18px;
    color: #5a4b3c;
}

.textarrow-techniciancourse {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-techniciancourse:hover {
    border: 2px solid #ff7043;
}

.card-techniciancourse .course-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    text-indent: -9999px;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 768px) {
    .grid-container-techniciancourse {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .card-techniciancourse {
        padding: 15px;
    }
    .card-techniciancourse img {
        width: 50px;
        height: 45px;
    }
    .card-techniciancourse span {
        font-size: 14px;
    }
    .arrow-techniciancourse {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .card-techniciancourse {
        padding-top: 32px;
    }
    .card-techniciancourse img {
        width: 50px;
        height: 45px;
    }
    .card-techniciancourse span {
        font-size: 12px;
    }
    .arrow-techniciancourse {
        font-size: 14px;
    }
}

section.course-section.course-section-unique.mt-5 h1 {
    text-align: center;
    color: #3A3939;
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.course-section {
    background-color: unset !important;
}

.course-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 10px;
}

.course-pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.course-pagination-dot:hover {
    background-color: #999;
    transform: scale(1.2);
}

.course-pagination-dot.active {
    background-color: #fd7e14;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.3);
}

@media (max-width: 480px) {
    .course-pagination-dot {
        width: 10px;
        height: 10px;
    }
    .course-pagination {
        gap: 8px;
    }
}

#courseSlider {
    max-width: 820px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.slider-page {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .slider-page {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}
div#course-results {
    padding: 0 15px;
    padding-bottom: 30px;
    padding-top: 25px;
    background: #FBF3E8;
}
/* forlinks on card */



/* HSP&COURSES */
.container-hsp-headings h1{
margin: 0 auto;
max-width: 1200px;
text-align: center;
color: #D3755C !important;
}
.container-hsp-headings p{
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
    padding-bottom: 10px;
    color: #696665 !important;
}
span.hospital-hsp-courses {
    border-radius: 20px 20px 20px 0px;
    margin: 0;
    position: absolute;
    padding-left: 33px;
}
.grid-container-hsp-courses {
    margin: 0 auto;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1200px;
}
.grid-tile-hsp-courses {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 8px 7px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.grid-tile-hsp-courses img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}
.tile-content-hsp-courses {
    padding: 12px;
}
.tile-content-hsp-courses h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 8px;
    color: #333;
    line-height: 1.3;
}
.hospital-hsp-courses {
    display: inline-block;
    background: linear-gradient(to right, #46D3C8, #148CCC);
    color: white;
    padding: 12px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-left: -24px;
}
span.hospital-hsp-courses {
    padding-left: 25px;
}
.details-hsp-courses p {
    margin: 4px 0;
    font-size: 12px;
    color: #555;
}
.book-now-hsp-courses {
    width: 100%;
    display: block;
    background-color: #EE6742;
    color: white;
    text-align: center;
    padding: 8px 0;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    margin: 10px auto;
}
.book-now-hsp-courses:hover {
    background-color: #D3755C;
}
.mobile-hsp {
    display: flex;
    float: right;
    width: 60%;
}
/* Mobile Devices */
@media (max-width: 600px) {
    .grid-container-hsp-courses {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .mobile-hsp {
        display: flex;
        width: 45%;
        gap:25px;
    }
}
@media screen and (max-width: 1024px) {
    .site-branding {
        width: 40% !important;
    }
}
/* Tablets */
@media (min-width: 601px) and (max-width: 900px) {
    .grid-container-hsp-courses {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Small Laptops */
@media (min-width: 901px) and (max-width: 1199px) {
    .grid-container-hsp-courses {
        grid-template-columns: repeat(3, 1fr);
    }
}
.container-hsp-courses {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.search-input-hsp-courses {
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 200px;
    background-color: #f8f8f8;
}
.search-input-hsp-courses::placeholder {
    color: #999;
}
.search-input-hsp-courses:focus {
    outline: none;
    border-color: #666;
    background-color: #fff;
}
/* Dropdown styling */
.dropdown-hsp-courses {
    padding: 10px 20px 10px 40px; /* Extra padding for the icon */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 242px; /* Match the width of the input (200px + padding) */
    background-color: #f8f8f8;
    appearance: none; /* Remove default dropdown arrow */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="gray" viewBox="0 0 16 16"><path d="M8 12l-6-6h12z"/></svg>'), /* Custom dropdown arrow */
                      url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="gray" viewBox="0 0 16 16"><path d="M12 12a4 4 0 0 0 0-8 4 4 0 0 0 0 8zm-1.5-2.5l-2-2m2 2l2-2"/></svg>'); /* Magnifying glass icon */
    background-repeat: no-repeat, no-repeat;
    background-position: right 10px center, 10px center; /* Position arrow and icon */
    background-size: 16px, 16px;
}
.dropdown-hsp-courses:focus {
    outline: none;
    border-color: #666;
    background-color: #fff;
}
.dropdown-hsp-courses option {
    padding: 10px;
    font-size: 16px;
    color: #333;
}
/* HSP&COURSES */


/* New Carousel Parnters */
/* slider carousel parnters */

.ver-section-partners {
    text-align: center;
    padding: 40px 20px;
  }

  .ver-section-partners h2 {
    color: #ff4500;
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
  }

  .ver-section-grid-container {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }

  .ver-section-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
  }

  .ver-section-carousel-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 0 10px;
  }

  .ver-section-partner-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
  }

  .ver-section-partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .ver-section-pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .ver-section-pagination-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .ver-section-pagination-dot.active {
    background-color: #ff4500;
  }

  @media (max-width: 768px) {
    .ver-section-carousel-slide {
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      padding-bottom: 20px;
    }

    .ver-section-partner-card {
      padding: 10px;
    }

    .ver-section-partners h2 {
      font-size: 20px;
    }
  }
  /* New Carousel partners ends here */