/* button  */

.cs_header_btn_wrap_2 {
    margin-right: 20px;
    margin-top: 4px;
}

.cs_site_header.cs_style_1.cs_type_2 .cs_btn.cs_style_1 {
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 5px;
    border: 2px solid #ffffff;
    outline: 1px solid #34459E;
}

/* logo */
@media screen and (min-width: 1200px) {
    .cs_site_branding {
        display: flex;
        align-items: center;
        width: 189px;
        padding: 20px 0px 25px 10px;
    }
}

@media screen and (max-width: 1199px) {
    .cs_site_branding {
        display: flex;
        align-items: center;
        width: 200px;
    }
}

.fa-phone:before {
    content: "\f095";
    color: #c5040d;
    font-size: 21px;
}

.fa-location-dot:before {
    content: "\f3c5";
    color: #c5040d;
    font-size: 20px;
}

.fa-facebook-f:before {
    content: "\f39e";
    font-size: 20px;
    /* color: #3242A1; */
    margin-left: 10px;
    margin-right: 5px;
    padding: 20px;
}

.fa-instagram:before {
    content: "\f16d";
    font-size: 20px;
    /* color: #3242A1; */
    margin-left: 10px;
    margin-right: 5px;
    padding: 20px;
}

.fa-x-twitter:before {
    content: "\e61b";
    font-size: 20px;
    /* color: #3242A1; */
    margin-left: 10px;
    margin-right: 5px;
    padding: 20px;
}

.cs_header_icon_boxes>*:hover {
    background-image: linear-gradient(135deg, rgb(185, 6, 6) 0%, rgb(52, 68, 162) 100%);
    border-radius: 100px;
    transform: translateX(-3px);

}

.fa-facebook-f :hover {
    color: #ffffff;
}

.cs_header_icon_boxes>* {
    color: #3A499E;
    transition: 0.8s ease-in, transform 0.8s ease-in;
}

/* slider */

/* ================= SLIDER BASE ================= */

#slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 140px;
}

.slide {
    width: auto;
    display: none;
    position: relative;
}

.slide img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

/* ================= CONTROLS ================= */

.controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    padding: 14px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    cursor: pointer;
    z-index: 50;
}

#left-arrow {
    left: 12px;
}

#right-arrow {
    right: 12px;
}

/* ================= DOTS ================= */

#dots-con {
    text-align: center;
    position: relative;
    z-index: 50;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #888;
    border-radius: 50%;
    margin: 12px 6px;
    cursor: pointer;
}

.dot.active {
    background: #000;
}

/* ================= RESPONSIVE BREAKPOINTS ================= */

/* Tablets */
@media (min-width: 1201px) and (min-width: 1440px) {
    #slider {
        width: 100%;
        position: relative;
        overflow: hidden;
        margin-top: 130px;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    #slider {
        width: 100%;
        position: relative;
        overflow: hidden;
        margin-top: 80px;
    }
}

@media (max-width: 992px) {
    #slider {
        width: 100%;
        position: relative;
        overflow: hidden;
        margin-top: 80px;
    }

    .slide img {
        width: 100%;
        height: 316px;
    }

    .controls {
        font-size: 1.3rem;
        padding: 12px;
    }
}

@media (max-width: 760px) {
    #slider {
        width: 100%;
        position: relative;
        overflow: hidden;
        margin-top: 80px;
    }
}

/* Mobiles */
@media (max-width: 576px) {
    #slider {
        margin-top: 90px;
    }

    .slide img {
        width: 100%;
        height: 121px;
    }

    .controls {
        font-size: 1.1rem;
        padding: 10px;
    }

    #dots-con {
        display: none;
        /* cleaner mobile UX */
    }
}


.cs_list.cs_style_1 li {
    color: #132573;
}

.cs_heading_bg {
    background-color: #041546;
}

header a {
    color: #161d47;
    font-weight: 500;
}

header a:hover {
    text-decoration: none;
    color: #b32024;
}

.chooses {
    position: relative;
    min-height: 400px;
    background-image: url(../img/bg-sec.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.chooses::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(243, 243, 253, 0.9);
}

.chooses * {
    position: relative;
    z-index: 1;
}

.text-red {
    color: #DC143C;
}

.text-white {
    color: #ffffff;
}

.text-black {
    color: #000;
}

.text-blue {
    color: #1C2359;
}

.cs_height_50 {
    height: 50px;
}

.cs_height_80 {
    height: 80px;
}

.footer-logo {
    width: 80%;
}

/* process css */

/* Breathing animation */
.breath {
    animation: breathAnim 5s ease-in-out infinite;
}

@keyframes breathAnim {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* Work Process Section */
/* ===============================
   BREATH ANIMATION
================================ */
.breath {
    animation: breathAnim 5s ease-in-out infinite;
}

@keyframes breathAnim {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

/* ===============================
   PROCESS SECTION
================================ */
.wp-process {
    position: relative;
    padding: 50px 20px 20px 20px;
    background-color: #ffffff;
    overflow: hidden;
    text-align: center;
}

.wp-container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Subtitle */
.wp-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Title */
.wp-title {
    font-size: 36px;
    font-weight: 700;
    color: #1c2452;
    margin-bottom: 50px;
}

/* ===============================
   BACKGROUND SVG
================================ */
.cs_process_shape {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    color: #1f2a55;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.cs_process_shape svg {
    width: 100%;
    height: auto;
}

/* ===============================
   PROCESS STEPS
================================ */
.wp-step {
    position: relative;
    padding: 20px;
}

.wp-step-number {
    position: absolute;
    top: 5px;
    left: 28px;
    width: 36px;
    height: 36px;
    background: #ff5a5f;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-image-wrap {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    padding: 10px;
    border: 2px dashed #ff5a5f;
    border-radius: 20px;
}

.wp-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.wp-step h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1c2452;
    margin-bottom: 8px;
}

.wp-step p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b6b6b;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .wp-title {
        font-size: 30px;
    }

    .wp-image-wrap {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .cs_process_shape {
        display: none;
        /* hide SVG on mobile if needed */
    }
}

@media (max-width: 575px) {
    .wp-title {
        font-size: 26px;
    }

    .wp-step {
        margin-bottom: 30px;
    }
}


.cs_blue_bg {
    /* background-image: linear-gradient(135deg, rgb(185, 6, 6) 0%, rgb(52, 68, 162) 100%); */
    background-color: #1e2150;
}

.accordion-active {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgb(25 22 73 / 23%);
}

.cs_accordian {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgb(25 22 73 / 23%);
    margin-top: 10px;
    border: 2px solid #3442a23b;
}

.fa-add:before,
.fa-plus:before {
    content: "\2b";
    color: red;
}

.fa-add:after,
.fa-plus:after {
    content: " ";
    color: red;
}

.cs_accordian {
    position: relative;
    z-index: 1;
    padding: 0px 20px 0 20px;
}

.faq-img {
    width: 80%;
    height: 75%;
}

/* ===============================
   SECTION BACKGROUND
================================ */
.cs_blue_bg {
    /* background-color: #1c2452; */
    /* deep medical blue */
    position: relative;
    overflow: hidden;
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(4, 4, 89, 1) 100%);
    border-radius: 50px;
    border: 2px solid #000;
}

.batch-sec {
    padding: 0 50px;
}

/* ===============================
   SECTION HEADING
================================ */
.cs_section_subtitle {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.cs_section_title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.25;
}

.cs_white_color {
    color: #ffffff;
}

/* ===============================
   ICON BOX (LEFT FEATURES)
================================ */
.cs_iconbox.cs_style_3 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cs_iconbox_icon {
    width: 64px;
    height: 64px;
    background: rgb(200, 222, 249, 0.45);
    border-radius: 50%;
    flex-shrink: 0;
}

.cs_iconbox_icon img {
    width: 50px;
    height: 50px;
}

.cs_iconbox_title {
    font-weight: 600;
    margin-bottom: 6px;
}

.cs_iconbox_subtitle {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===============================
   APPOINTMENT FORM WRAPPER
================================ */
.cs_appointment_form_wrapper {
    background: #ffffff;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cs_appointment_heading {
    font-size: 26px;
    font-weight: 700;
    color: #1c2452;
    margin-bottom: 25px;
}

/* ===============================
   FORM FIELDS
================================ */
.cs_form_field_wrapper {
    position: relative;
}

.cs_form_field {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.cs_form_field:focus {
    border-color: #ff5a5f;
}

textarea.cs_form_field {
    height: auto;
    padding: 14px 16px;
    resize: none;
}

/* Calendar icon */
.cs_input_icon {
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b6b6b;
}

/* ===============================
   SELECT FIELD
================================ */
.cs_select {
    height: 54px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    background-color: #ffffff;
}

/* ===============================
   BUTTON
================================ */
.cs_btn.cs_style_1 {
    cursor: pointer;
    transition: 0.5s ease;
    display: inline-block;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgb(185, 6, 6) 0%, rgb(52, 68, 162) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

.cs_accent_bg {
    background-color: #ff5a5f;
    color: #ffffff;
}

.cs_btn:hover {
    background-color: #041850;
   
}

/* ===============================
   SPACING HELPERS
================================ */
.cs_height_120 {
    height: 120px;
}

.cs_height_50 {
    height: 50px;
}

.cs_height_40 {
    height: 40px;
}

.cs_gap_y_40>* {
    margin-bottom: 40px;
}

.cs_gap_y_30>* {
    margin-bottom: 30px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
    .cs_section_title {
        font-size: 36px;
    }

    .cs_appointment_form_wrapper {
        padding: 30px;
    }
}

@media (max-width: 575px) {
    .cs_section_title {
        font-size: 30px;
    }

    .cs_appointment_heading {
        font-size: 22px;
    }
}

.cs_appoint_bg {
    background-color: #f2f3fc;
}

.feature-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #312256;
}

.banner-btn {
    top: 30%;
    cursor: pointer;
    transition: 0.5s ease;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    border-radius: 6px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 6px 20px;
    border: 2px solid #ffffff;
    outline: 1px solid #1c2e78;
    font-family: var(--heading-font);
    text-align: center;
    line-height: 1.55em;
    color: var(--white-color);
    position: relative;
}

.safe {
    background-color: #FFF2F2;
}

.expert {
    background-color: #c3bff8;
}

.time {
    background-color: #ffcdb894;
}

.accuracy {
    background-color: #c6d1ff8a;
}

.tech {
    background-color: #a2d5ffba;
}

.healthy {
    background-color: #ffc1b999;
}

.affordable {
    background-color: #70da4070;
}

/* feature cards below hero section */
.feature-box {
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    object-fit: contain;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.box1 {
    background-color: #FFF2F2;
    border: 2px solid rgb(251, 150, 150);
}

.box-2 {
    background-color: #deedf5;
    border: 2px solid #85d6fc;
}

.box-3 {
    background-color: #ffeae6;
    border: 2px solid #fea27a;
}

.cs_iconbox .cs_style_11 .icon-contact i {
    color: #041546;
}

.fa-envelope:before {
    content: "\f0e0";
    color: #C5040D;
}

@media (max-width: 767px) {
    .cs_features {
        display: none;
    }
}

.fa-minus:before,
.fa-subtract:before {
    content: "\f068";
    color: #31335a;
}

/* whatspp toggle  */
.wa-toggle {
    position: fixed;
    right: 16px;
    bottom: 90px;
    z-index: 9999;
}

/* Toggle Button */
.wa-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: #25D366;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Box */
.wa-box {
    display: none;
    position: absolute;
    right: 0;
    bottom: 20px;
    background: url(https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSF6r-fvUCt79RCkWbuVq2lp6Zh0W_YxKjwvw&s);
    width: 220px;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.wa-box p {
    font-size: 14px;
    margin-bottom: 10px;
}

.wa-box a {
    display: block;
    background: #25D366;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.fa-brands,
.fab {
    font-weight: 500;
    font-size: 30px;
}

/* call button */
.call-fixed {
    position: fixed;
    right: 16px;
    bottom: 10px;
    z-index: 9999;
}

.call-btn {
    width: 58px;
    height: 58px;
    background-image: linear-gradient(135deg, rgb(185, 6, 6) 0%, rgb(52, 68, 162) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.call-btn:hover {
    background: #0e2850;
    color: white;
}

.cs_about_thumbnail_2 img {
    border: 10px solid #fff;
}

/* doctor section */
.doctor-section {
    padding: 60px 20px;
}


/* Grid */
.doctor-container {
    /* display:grid;
    grid-template-columns: repeat(4,1fr); */
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

/* Card */
.doctor-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border: 1px solid #cfcfcf;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Image */
/* .doctor-card img{
    width:100%;
    height:260px;
    object-fit:cover;
} */

.doctor-card img {
    width: 95%;
    height:310px;
    object-fit: cover;
    background: #ebf2ff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    margin: 10px;
    border: 2px solid #dae1ff;
}

/* Content */
.doctor-content {
    padding: 20px;
}

.doctor-name {
    font-size: 25px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

.doctor-speciality {
    /* font-size: 14px; */
    color: #1C2359;
    margin-bottom: 15px;
}

.doctor-info {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
}

.doctor-info span {
    font-weight: 600;
}

.doctor-list {
    padding-left: 18px;
    font-size: 14px;
    margin-bottom: 20px;
}

.doctor-list li {
    margin-bottom: 6px;
}

/* Button */
.book-btn {
    display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgb(185, 6, 6) 0%, rgb(52, 68, 162) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
}

.book-btn:hover {
    background: #041850;
    color:#fff;
}

/* Responsive */
@media(max-width:1024px) {
    .doctor-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .doctor-container {
        grid-template-columns: 1fr;
    }
}

.batch-home{
    margin: 0px 150px;
}

.doctor-sec{
    background: #d8d8d8;
}

/* doctor qualificaation */
.section-title{
/* font-size:32px;
font-weight:700; */
color:#1C2359;
margin-bottom:30px;
}

.exp-card{
background:#fff;
border-radius:10px;
padding:20px;
margin-bottom:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
border-left:5px solid #c5040d;
transition:0.3s;
}

.exp-card:hover{
transform:translateY(-5px);
}

.exp-title{
/* font-size:18px;
font-weight:600; */
color:#222;
}

.exp-place{
color:#666;
font-size:15px;
}

.exp-date{
color:#1C2359;
/* font-size:14px;
font-weight:500; */
}

.section-gallery img{
    border-left:3px solid #000;
    border-bottom :3px solid #000;
}

.section-gallery video{
    border-left:3px solid #000;
    border-bottom :3px solid #000;
    border-radius: 10px;
}