.container {
    max-width: 1200px !important;
}


.banner-one-main-wrapper .inner .sub-title {

    font-size: 18px !important;

}

.social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social-sidebar a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    border-radius: 0;
    margin: 0;
}

.social-sidebar .facebook {
    background: #1877F2;
}

.social-sidebar .twitter {
    background: #1DA1F2;
}

.social-sidebar .linkedin {
    background: #0077B5;
}

.social-sidebar .youtube {
    background: #FF0000;
}

.social-sidebar .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-sidebar .whatsapp {
    background: #25D366 !important;
}

.social-sidebar a:hover {
    transform: translateX(-5px);
}

.section-head .title {
    position: relative;
    display: inline-block;
    z-index: 1;
}




.section-head .title span {
    position: relative;
    display: inline-block;
}

.section-head .title span::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;

    width: 100%;
    height: 50px;

    background: linear-gradient(to right,
            #D4AF37,
            rgba(212, 175, 55, 0.6),
            rgba(199, 157, 20, 0.2),
            transparent);

    z-index: -1;
    opacity: 0.4;
}

.book-now-btn {

    padding: 0 13px !important;
    height: 44px !important;
    line-height: 46px !important
}



.about-video-section {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

/* ----------------------------------------------------------------------------------------------------------------- */
 
.video-wrapper {
    position: relative;
    width: 100%;
    height: 400px;          
    overflow: hidden;
    border-radius: 10px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;            
    object-fit: cover;      
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .video-wrapper {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .video-wrapper {
        height: 250px;
        border-radius: 8px;
    }
}










.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 70px;
    height: 70px;
    background: #D4AF37;
    border-radius: 50%;

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

    font-size: 22px;
    color: #000;
    cursor: pointer;
    z-index: 2;
}


.play-ring {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 3px solid rgba(212, 175, 55, 0.2);
    border-top: 3px solid #D4AF37;
    border-radius: 50%;
    animation: rotateRing 1.2s linear infinite;
}

@keyframes rotateRing {
    100% {
        transform: rotate(360deg);
    }
}

.video-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);

}





/* ------------------------------------------------------------------------------------- */
/* CARD */
.service-card {
    background: #161515;
    ;

    overflow: hidden;
    transition: 0.3s;
    height: 100%;
}

/* IMAGE */
.service-card .img-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* CONTENT */
.service-card .content {
    padding: 20px;
}

/* TITLE */
.service-card .title {
    font-size: 20px;
    margin-bottom: 10px;
}

/* DESCRIPTION */
.service-card .desc {

    margin-bottom: 15px;
}

/* READ MORE */
.service-card .read-more {
    color: #D4AF37;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.service-card .read-more i {
    margin-left: 5px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card:hover .read-more i {
    margin-left: 10px;
}



/* WRAPPER */
.about-btn-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 100px;
    position: relative;
}

/* DOT IMAGE */
.dots-right img {

    opacity: 0.3;
}

/* ANIMATION */
@keyframes moveDots {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(15px);
    }

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

.dots-right {
    animation: moveDots 3s ease-in-out infinite;
}


.product-card {
    height: 100%;
    background-color: #292222;
    display: flex;
    flex-direction: column;
}


.product-card .img-box {
    height: 220px;
    overflow: hidden;
    border-radius: 10px;
}

.product-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.product-card .blog-content-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 15px;
}


.product-card .blog-title {
    min-height: 50px;
}


.product-card .description {
    min-height: 70px;
}


.product-card .more-btn {
    margin-top: auto;
}


.doctor-booking-section {
    position: relative;
    background: url('../img/bg6.webp') center/cover no-repeat;
    padding: 120px 0;
    z-index: 1;
}

/* BLACK OVERLAY */
.doctor-booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: -1;
}

/* CONTENT */
.overlay-content h2 {

    font-size: 44px;
    margin-bottom: 20px;
}

.overlay-content p {

    max-width: 500px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
}

/* ================================
   CUSTOM APPOINTMENT MODAL
================================ */

/* MODAL BOX */
.custom-appointment-modal .modal-content {
    border-radius: 14px;
    border: none;
    padding: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

/* HEADER */
.custom-appointment-modal .modal-header {
    border-bottom: none;
    padding-bottom: 5px;
}

.custom-appointment-modal .modal-title {
    font-size: 26px;
    font-weight: 700;
    color: #000;
}

/* CLOSE BUTTON */
.custom-appointment-modal .btn-close {
    opacity: 1;
    transform: scale(1.1);
}

/* FORM LABELS */
.custom-appointment-modal label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #555;
}

/* INPUT FIELDS */
.custom-appointment-modal .form-control {
    height: 48px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    padding: 10px 12px;
    transition: all 0.3s ease;
}

/* INPUT PLACEHOLDER */
.custom-appointment-modal .form-control::placeholder {
    font-size: 14px;
    color: #aaa;
}

/* INPUT FOCUS EFFECT */
.custom-appointment-modal .form-control:focus {
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

/* SPACING */
.custom-appointment-modal .mb-3 {
    margin-bottom: 18px !important;
}

/* BUTTON */
.custom-appointment-modal .btn-dark {
    background: #000;
    border: none;
    height: 50px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.custom-appointment-modal .btn-dark:hover {
    background: #333;
}

/* BUTTON ACTIVE */
.custom-appointment-modal .btn-dark:active {
    transform: scale(0.98);
}

/* MODAL BODY SPACING */
.custom-appointment-modal .modal-body {
    padding-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 576px) {

    .custom-appointment-modal .modal-content {
        padding: 18px;
        border-radius: 12px;
    }

    .custom-appointment-modal .modal-title {
        font-size: 20px;
    }

    .custom-appointment-modal .form-control {
        height: 44px;
        font-size: 14px;
    }

    .custom-appointment-modal .btn-dark {
        height: 46px;
        font-size: 14px;
    }
}

.product-section {

    padding-top: 50px;
    padding-bottom: 50px;
}

.testimonial-area {

    padding-bottom: 20px;
    padding-top: 70px;
}



.quote-icon {
    font-size: 60px;
    line-height: 1;
    color: #D4AF37;
    font-weight: 700;
    display: inline-block;
}


.testimonial-card {
    height: 300px;
    display: flex;
    border-radius: 20px;
    padding: 25px;
}

.testimonial-card .content {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Quote */
.testimonital-icon {
    margin-bottom: 10px;
}

/* Text */
.text-doc {
    font-size: 16px;
    line-height: 1.6;
    color: #aaa;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;

    margin-bottom: 15px;
}

/* Push bottom content */
.card-title {
    margin-top: auto;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.card-para {
    font-size: 14px;
    color: #777;
}






.company-logo {
    background-color: white;
    height: 140px !important;
    display: flex;
    align-items: center;
    justify-content: center;

}

.company-logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: 0.3s;
}


.company-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}


.copyright-area-one {
    padding: 0px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-area-one .main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.copy-right-para {
    margin: 0 auto;
    color: #aaa;
    font-size: 14px;
}

.copy-right-para a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 500;
}

.copy-right-para a:hover {
    text-decoration: underline;
}




/* Gallery Slider */
.gallerySwiper {
    padding-bottom: 60px;
}

.gallerySwiper .swiper-slide {
    height: auto;
}

.gallerySwiper .img-box {
    border-radius: 20px;
    overflow: hidden;
}

.gallerySwiper .img-box img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.gallerySwiper .img-box:hover img {
    transform: scale(1.05);
}

/* Navigation Buttons */
.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
    color: #d4af37;
    width: 45px;
    height: 45px;
}

.gallerySwiper .swiper-button-next:after,
.gallerySwiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

/* Pagination */
.gallerySwiper .swiper-pagination-bullet {
    background: #d4af37;
    opacity: 0.5;
}

.gallerySwiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 767px) {
    .gallerySwiper .img-box img {
        height: 300px;
    }
}

/* ---------------------------------------------about us--------------------------------------------------------------------- */


.breadcrumb-bg {
    position: relative !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-image: url('../img/slider/slider2.webp') !important;
    z-index: 1 !important;
}

.breadcrumb-bg::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.6) !important;
    /* adjust opacity */
    z-index: -1 !important;
}

.about-us-sec {

    padding-bottom: 4rem;
}



.mission-vision-box {
    position: relative;
    background-image: url('../img/mission-vision.webp') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    padding-top: 60px;
}

.mission-vision-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.8);
    /* adjust opacity */
    z-index: -1;
}



.education-experience-card {

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid;
    border-radius: 15px;
    padding: 30px;

    transition: 0.3s ease;
}



.team-card {
    text-align: center;
    padding: 20px;
    border-radius: 15px;

    background: #292222;
    backdrop-filter: blur(10px);

    transition: 0.3s;
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #000;
    /* optional for empty space */
    border-radius: 12px;
    margin-bottom: 15px;
}

.team-card h5 {

    margin-bottom: 5px;
}



.team-card:hover {
    transform: translateY(-8px);
    border: 1px solid var(--color-primary);
}

.team-wrapper {

    padding-top: 20px;
    padding-bottom: 20px;
}

/* ---------------------------------------------------services------------------------------------------------------------------------- */


.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service_card {

    background: #292222;
}


.blog-details-discription ul li {
    list-style: none;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    color: #ccc;
}

/* Arrow Circle Icon */
.blog-details-discription ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 2px;

    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;

    border-radius: 50%;
    background: var(--color-primary);
    color: black;

    font-size: 13px;
    font-weight: bold;
}



.blog-details-discription ol {
    counter-reset: item;
    padding-left: 0;
}

.blog-details-discription ol li {
    list-style: none;
    counter-increment: item;
    position: relative;
    padding-left: 40px;
    margin-bottom: 12px;
    color: #ccc;
}

/* Number in Circle */
.blog-details-discription ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 2px;

    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;

    border-radius: 50%;
    background: var(--color-primary);
    color: black;

    font-size: 13px;
    font-weight: 600;
}

.thumbnail-top img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}



/* -------------------------------------our branches----------------------------------------------------------------------------- */

.branch-view {

    color: var(--color-primary) !important;
}

.branch-details {
    padding-bottom: 50px;
}


/* -------------------------------------our partners----------------------------------------------------------------------------- */


.our-partners {
    padding-top: 10rem;
}


.support-company-logo {
    margin: 10px !important;
}

.support-company-logo {
    background: #fff;
    padding: 20px !important;
    border-radius: 14px !important;
    height: 160px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    /* separation */
    overflow: hidden !important;
    /* prevent image overflow */
}

.support-company-logo img {
    max-height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
}


.partner-box {
    background: #efefef;
    padding: 12px 20px;
    border-radius: 10px;
    height: 70px;

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

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.partner-box img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
}

/* -----------------------------------products--------------------------------------------------------------------------------- */

.product-detail {

    padding-top: 110px;
}


.product-detail .program-image {
    text-align: center;
}

.product-detail .program-image img {
    width: 70%;
    /* reduce size (try 60–80%) */
    max-width: 600px;
    /* prevents it from becoming too big */
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    margin-top: 20px;
}


.product-detail .program-content h2 {
    font-size: 30px !important;
    margin-bottom: 15px !important;
    color: var(--color-primary) !important;
}

.product-detail .program-content p {
    font-size: 17px !important;
    line-height: 1.7 !important;
    color: #fff !important;
}

/* Tags */
.product-detail .tag {
    display: inline-block !important;
    padding: 6px 14px !important;
    border: 1px solid #444 !important;
    border-radius: 20px !important;
    margin-right: 8px !important;
    margin-bottom: 8px !important;
    font-size: 14px !important;
    color: #fff !important;
}



/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
    .product-detail {

        padding-top: 50px;
    }

}

/* ------------------------------------------------------------------------------------------------------------- */
.blog-details-discription h2,
h3 {

    color: var(--color-primary) !important;
}

.blog-details-discription p {

    color: white !important;
}

/* -----------------------------------career---------------------------------------------------------------------------------- */
 /* Career Openings Section */
.career-opening-card {
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 30px 25px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.career-opening-card:hover {
    border-color: #d4af37;
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.12);
}

.job-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.12);
    color: #d4af37;
    font-size: 18px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

 

.job-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.job-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #bfbfbf;
    font-size: 16px;
    margin-bottom: 14px;
}

.job-info li i {
    color: #d4af37;
    width: 18px;
    font-size: 15px;
}

.job-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.job-apply-btn:hover {
    color: #d4af37;
}

.job-apply-btn i {
    transition: transform 0.3s ease;
}

.job-apply-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .career-opening-card {
        padding: 25px 20px;
    }

    .job-title {
        font-size: 24px;
    }

    .job-info li {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .job-title {
        font-size: 22px;
    }

    .career-opening-card {
        padding: 22px 18px;
        border-radius: 14px;
    }
}


 /* Modal Background - Custom Dark Color */
.career-modal {
    background: #292222 !important;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    color: #ffffff;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* Override Bootstrap Modal Content Background */
.career-modal.modal-content {
    background-color: #292222 !important;
}

/* Modal Header */
.career-modal .modal-header {
    background: #292222 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Modal Body */
.career-modal .modal-body {
    background: #292222 !important;
    color: #ffffff;
}

/* Form Fields */
.career-modal .form-control {
    background: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    border-radius: 10px;
    padding: 12px 15px;
    min-height: 48px;
}

/* Form Field Focus */
.career-modal .form-control:focus {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border-color: #d4af37;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
}

/* Placeholder */
.career-modal .form-control::placeholder {
    color: #999999;
}

/* Textarea */
.career-modal textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Labels */
.career-modal .form-label {
    color: #ffffff !important;
    font-weight: 500;
    margin-bottom: 8px;
}

/* File Input Button */
.career-modal input[type="file"]::file-selector-button {
    background: #d4af37;
    color: #000000;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    margin-right: 12px;
    cursor: pointer;
    font-weight: 600;
}

/* Modal Title */
.career-modal .modal-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

/* Submit Button */
.submit-application-btn {
    background: #d4af37;
    color: #000000;
    border: none;
    width: 100%;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-application-btn:hover {
    background: #ffffff;
    color: #000000;
}

/* Close Button */
.career-modal .btn-close {
    filter: invert(1);
}

.career-form-control

{

    font-size: 20px !important;
}
/* --------------------------------------------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .social-sidebar {

        top: 40%;
    }

    .section-head .title span::before {

        bottom: -6px;
        left: -2px;
    }

    .video-play-btn {
        position: absolute;
        top: 36%;

    }


    .about-btn-wrapper {
        flex-direction: column;
        align-items: flex-start;
        /* align left */
        gap: 10px;
    }

    .dots-right {
        margin-top: 5px;
    }

    .doctor-booking-section {
        padding: 60px 15px;
        /* reduced height */
    }

    .overlay-content h2 {
        font-size: 26px;
        /* smaller heading */
    }

    .overlay-content p {
        font-size: 14px;
        max-width: 100%;
    }

    .about-video-section {
        padding: 42px 0 !important;

    }


    .about-video-section {
        padding: 40px 0;
    }

  

    .video-wrapper video {
        width: 100%;
        height: 300px;
        /* increase height */
        object-fit: cover;
        border-radius: 0;
    }


    .get-in-touch-area {

        margin-top: 0px;
    }





    .support-company-logo {
        margin: 0px !important;
        margin-bottom: 10px !important;
    }


    .product-detail .program-image img {
        width: auto;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 15px;
        margin-top: 20px;
    }



}