/* ─────────────────────────────── 1720 ─────────────────────────────── */
@media (max-width: 1720px) {}

/* ─────────────────────────────── 1540 ─────────────────────────────── */
@media (max-width: 1540px) {
  .cta-overlay {
    left: -10%;
  }

  .why-choose-sec .cta-overlay {
    right: -10%;
  }

  .patient-card .box {
    height: 300px;
  }
}

/* ─────────────────────────────── 1399 ─────────────────────────────── */
@media (max-width: 1399px) {}

/* ─────────────────────────────── 1299 ─────────────────────────────── */
@media (max-width: 1320px) {

  .container,
  .inner-banner-sec .cta-wrper {
    padding: 0 30px;
  }

  .hero-container {
    padding-top: 120px;
    padding-left: 30px;
    padding-bottom: 30px;
  }

  .logo-img,
  .tagline {
    width: 200px;
  }

  .tagline p {
    font-size: 7px;
  }

  .main-nav ul {
    gap: 15px;
  }

  .hero-sec {
    min-height: 700px;
  }

  .procedure-benefits-sec {
    padding-inline: 30px;
  }

  .procedure-benefits-sec .bg-light-wrap,
  .procedure-benefits-sec .bg-dark-wrap {
    padding: 30px 25px;
  }

  .procedure-benefits-sec .bg-dark-wrap .right {
    padding-bottom: 30px;
    padding-left: 30px;
  }

  .specialty-grid {
    padding-right: 0;
  }
}

@media (max-width:1299px) {
  .hero-text-block {
    max-width: 650px;
  }

  .hero-title {
    font-size: 48px;
  }

  .sec-title {
    font-size: 36px;
  }

  .logo-img,
  .tagline {
    width: 160px;
  }

  .btn {
    padding: 12px 16px;
  }

  .hero-video-btn {
    height: 130px;
    width: 130px;
  }

  @keyframes pulseRipple {
    0% {
      width: 100%;
      height: 100%;
      opacity: 0.8;
    }

    100% {
      width: 150%;
      height: 150%;
      opacity: 0;
    }
  }

  .why-choose-sec .side-img.only-laptop {
    object-position: left;
  }

  /* banner section */


  /* about us page 1299px */
  .overview-card {
    padding: 24px;
  }

  .xy-row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
  }

  .overview-card-number {
    margin-bottom: 16px;
  }

  .overview-card-title {
    margin-bottom: 8px;
  }
}

/* ─────────────────────────────── 1199 ─────────────────────────────── */
@media (max-width: 1199px) {
  .common-sec {
    padding-block: 60px 60px;
  }

  .features-section {
    padding-bottom: 60px;
  }

  /* menu toggle button */
  .menu-toggle-btn {
    display: inline-flex;
    align-items: center;
  }

  /* hide desktop nav-actions on mobile (they appear inside main-nav) */
  .nav-right>.nav-actions,
  .main-nav ul li a::before {

    display: none;
  }

  .nav-top {
    display: block;
  }

  /* menu */

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--white);
    border-right: 1px solid #ececec;
    height: 100vh;
    z-index: 1001;
    margin: 0;
    transform: translate(-100%);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 320px;
    visibility: hidden;
    opacity: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
  }

  .nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translate(0%);
  }

  /* staggered animation for elements */
  .nav-top,
  .main-nav ul>li,
  .main-nav .nav-actions {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: calc(0.1s * var(--i, 1));
  }

  .nav-open .nav-top,
  .nav-open .main-nav ul>li,
  .nav-open .main-nav .nav-actions {
    opacity: 1;
    transform: translateY(0);
  }

  /* nav-top */
  .nav-top {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    padding: 30px 20px 0 20px;
  }

  .nav-logo {
    display: block;
    width: 180px;
  }

  .nav-close-btn {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
  }

  .nav-close-btn:hover {
    background: var(--primary-color);
    color: var(--white);
  }

  .nav-close-btn .close-icon {
    mask-image: url(../img/svg/close.svg);
    -webkit-mask-image: url(../img/svg/close.svg);
    font-size: 18px;
  }

  /* mobile list items */
  .main-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .main-nav > ul {
    overflow-y: auto;
    padding: 0 20px;
    flex: 1;
  }

  .main-nav ul>li {
    width: 100%;
    border-bottom: 1px solid #f5f5f5;
  }

  .main-nav ul li a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    width: 100%;
  }

  .main-nav ul li a.active {
    color: var(--primary-color);
  }

  .main-nav ul li a.active::before {
    display: none;
  }

  /* sub-menu arrows on mobile */
  .main-nav li.has-submenu .vector-arrow {
    position: absolute;
    right: 0;
    top: 15px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-color);
    z-index: 1;
    font-size: 15px;
  }

  .main-nav li.has-submenu.show>.vector-arrow {
    transform: rotate(180deg);
    color: var(--primary-color);
  }

  .main-nav ul li ul {
    background: #fcfcfc;
    padding-left: 20px;
    display: none;
  }

  /* mobile nav actions */
  .main-nav .nav-actions {
    display: flex !important;
    margin-top: auto;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding: 20px 20px 30px 20px;
  }

  .main-nav .nav-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 11px;
  }

  .specialists-right,
  .our-team .right {
    padding-left: 0px;
  }

  .hero-text-block {
    max-width: 600px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-experience {
    margin-top: 35px;
  }

  .hero-actions {
    margin-top: 20px;
  }


  .feature-card {
    padding: 0 30px;
  }

  .feature-icon {
    height: 36px;
    width: 36px;
    margin-bottom: 15px;
  }

  .feature-title {
    margin-bottom: 0;
  }

  .feature-content p {
    margin-bottom: 10px;
  }

  .hero-sec {
    min-height: 650px;
  }

  .stats-container {
    margin-top: 40px;
  }

  .specialists-section p {
    margin-bottom: 15px;
  }


  .specialist-actions {
    margin-top: 15px;
  }

  .stat-number {
    font-size: 85px;
  }

  /* Specialties */
  .specialty-sec .cta-bg.only-laptop {
    width: 50%;
  }

  .specialty-sec .cta-bg.only-laptop.bg-contain {
    width: 40%;
  }

  /* Articles */
  .article-title {
    font-size: 20px;
  }

  .specialty-grid {
    padding-left: 0;
  }

  .cta-overlay {
    left: 12px;
  }

  .why-choose-sec .cta-overlay {
    right: 12px;
  }

  .cta-block .cta-box {
    height: auto;
    min-height: inherit;

  }

  .cta-box .only-mobile {
    border-radius: 16px;
  }

  .choose-us-right {
    padding: 0;
  }

  .choose-us-right .specialty-grid {
    margin-top: 12px;
  }

  .subscribe-icon-group {
    gap: 10px;
  }

  .subscribe-icon-group::after {
    right: -6%;
  }

  .subscribe-title {
    font-size: 13px;
  }

  .subscribe-icon-group img {
    width: 36px;
    height: 36px;
  }

  .subscribe-left {
    gap: 20px;
  }

  .subscribe-text {
    font-size: 14px;
  }

  /* banner section */

  .inner-banner-sec {
    margin-bottom: 30px;
  }

  .inner-banner-sec .cta-wrper {
    bottom: -30px;
  }

  .inn-top-sec {
    padding-top: 35px !important;
  }

  .inner-banner-sec .cta-overlay {
    padding: 8px 30px 8px 8px;
    gap: 10px;
  }

  .inner-banner-sec .cta-icon {
    width: 42px;
    height: 42px;
  }

  .inner-banner-sec .cta-details p {
    font-size: 13px;
  }

  .inner-banner-sec .cta-details h3 {
    font-size: 16px;
  }

  /* about us page 1199px*/
  .inner-banner-content .breadcrumb {
    margin-bottom: 0;
  }

  .about-section .cms-con p {
    margin-bottom: 10px;
  }

  .about-section .about-left-content {
    padding-right: 0px;
  }

  .mission-vision-item img {
    width: 54px;
    height: 54px;
    margin-bottom: 10px;
  }

  .team-info-box {
    padding: 15px 12px 12px;
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .team-name {
    font-size: 20px;
  }

  .team-degree,
  .team-desc {
    font-size: 13px;
    line-height: 1.3;
  }

  .team-divider {
    margin-bottom: 10px;
  }

  .team-card-v2 {
    padding: 15px 15px 70px;
  }

  .team-section-v2 .row {
    --bs-gutter-x: 16px;
  }

  .appointment-cta-v2 .appointment-banner-wrap {
    padding-left: 40px;
  }

  .appointment-cta-v2 .banner-content {
    padding-block: 40px;
  }

  .row-gap-20 {
    --bs-gutter-y: 12px;
    --bs-gutter-x: 12px;
  }

  .benefit-list-item {
    gap: 12px;
  }

  .benefit-text h5 {
    font-size: 20px;
  }

  .procedure-benefits-sec .specialty-card {
    padding: 20px;
  }

  .contact-info-cards-sec .row {
    --bs-gutter-x: 12px;
  }

  .contact-info-card {
    padding: 50px 5px 20px;
  }

  .contact-info-card p {
    font-size: 13px;
  }

  .card-icon-circle {
    width: 70px;
    height: 70px;
    top: -35px;
  }

  .card-icon-circle img {
    width: 32px;
    height: 32px;
  }

  .btn-wrapper {

    margin-top: 12px;

    gap: 10px;
  }

  .btn-wrapper .form-checkbox-group {
    display: flex;
  }

  .form-checkbox-group .form-terms {
    margin-left: 5px;
    margin-top: 2px;
  }

  .contact-info-card .cms-con h5 {
    margin-bottom: 10px;
  }

  .patient-slider .slick-slide {
    padding: 0 8px;
  }

  .procedure-benefits-sec .specialty-card .letter {
    font-size: 25px;
  }

  .cms-con h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}


/* ─────────────────────────────── 991 ─────────────────────────────── */
@media (max-width: 991px) {

  .hero-text-block {
    max-width: 500px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-video-btn {
    height: 110px;
    width: 110px;
    padding: 10px;
  }

  .block-video {
    justify-content: flex-start;
  }

  .hero-experience ul li {
    height: 46px;
    width: 46px;
  }

  .review-title {
    font-size: 16px;
  }

  .review-sub {
    gap: 8px;
  }

  .review-sub span:not(:last-child)::after {
    right: -10px;
  }

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

  .feature-title {
    font-size: 18px;
  }

  .features-container {
    padding: 20px 0;
  }

  .specialists-right {
    margin-top: 20px;
  }

  .social-list ul {
    font-size: 18px;
  }

  .marquee-content {
    animation-duration: 15s;
  }

  .marquee-content img {
    margin-right: 40px;
  }

  .choose-us-right {
    padding-left: 0;
  }

  /* Specialties & CTA */
  .only-laptop {
    display: none;
  }

  .only-mobile {
    display: block;
  }

  .specialty-sec .sec-head {
    padding: 0;
    text-align: center;
  }

  .specialty-sec .sec-head p {
    margin: 8px auto 0;
  }

  .cta-block .cta-box {
    max-height: 500px;
    margin-top: 40px;
    overflow: hidden;
  }

  .cta-block .cta-box .cta-bg {
    min-height: 350px;

  }

  .cta-bg.only-mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .specialty-sec .sub-title {
    justify-content: center;
  }

  .article-img-wrapper {
    width: 110px;
  }

  .article-title {
    font-size: 16px;
  }

  .article-meta-footer {
    flex-wrap: wrap;

  }

  .mb-50 {
    margin-bottom: 35px;
  }

  .row.same {
    --bs-gutter-y: 15px;
    --bs-gutter-x: 15px;
  }

  .article-card {
    gap: 10px;
    padding: 12px;
  }

  .articles-footer-btn {
    margin-top: 35px;
  }

  .contact-info-list {
    margin-top: 22px;
  }

  .contact-value {
    font-size: 15px;
  }

  .contact-icon-circle img {
    width: 22px;
  }

  .contact-icon-circle {
    width: 36px;
    height: 36px;
    margin-right: 9px;
  }

  .appointment-sec .right .sec-head {
    margin-bottom: 20px;
  }

  .form-input-wrapper {
    padding: 12px 18px;
  }

  .form-textarea-wrapper {
    padding: 12px 18px;
    /* height: 120px; */
  }

  .btn-wrapper {
    margin-top: 10px;

  }

  .footer-grid>* {
    flex: inherit;
    max-width: 100%;
  }

  .footer-grid {
    flex-wrap: wrap;
  }

  .footer-col-contact {
    order: 2;
    width: 47%;
  }

  .quick-link-wrap {
    order: 3;
    width: 100%;
  }

  .footer-col-brand {
    padding-right: 0;
    max-width: inherit;
    width: 47%;
  }

  .footer-grid {
    gap: 24px;
    margin-bottom: 40px;
  }

  .quick-link-wrap>* {
    width: 50%;
  }

  .footer-col-heading {
    margin-bottom: 15px;
  }

  .footer-col-links ul li:not(:last-child) {
    margin-bottom: 6px;
  }

  .footer-col-contact .foot-contact-info {
    margin-bottom: 12px;
  }

  .footer-col-contact .foot-contact-info .foot-contact-info {
    gap: 12px;

  }

  .footer-col-brand .footer-logo {
    margin-bottom: 20px;
  }

  .footer-bottom {
    padding-top: 50px;
  }

  .footer-copyright {
    padding: 20px 15px 12px;
  }

  .subscribe-left {
    flex-wrap: wrap;
  }

  .subscribe-icon-group::after {
    height: 1px;
    width: 100%;
    bottom: -12px;
    right: inherit;
    top: inherit;
    transform: none;
    left: 0;
  }

  .subscribe-icon-group,
  .subscribe-text {
    width: 100%;
    max-width: 100%;
  }

  .top-footer {
    padding: 50px 0;
  }

  .top-footer::before,
  .top-footer::after {
    width: 360px;
    height: 288px;
  }

  .top-footer::before {
    bottom: -110px;
    left: -50px;
  }

  .top-footer::after {
    bottom: -110px;
    right: -50px;
  }

  .sec-title-2 {
    font-size: 28px;
  }



  .specialty-grid {
    margin-top: 30px;
  }

  /* banner section */
  /* about us page 991px*/
  .about-center-wrper {
    display: flex;
    gap: 20px;
  }

  .about-center-wrper .about-img-wrap {
    width: 50%;
    flex-shrink: 0;
  }

  .team-info-box {
    padding: 15px 7px 12px;
    left: 5px;
    right: 5px;
    bottom: 10px;
  }

  .team-section-v2 .row {
    --bs-gutter-x: 8px;
  }

  .appointment-cta-v2 .appointment-banner-wrap {
    padding-left: 20px;
  }

  .appointment-cta-v2 .banner-content {
    padding-block: 30px;
  }

  .cms-con h3 {
    font-size: 20px;
  }

  .overview-images-col {
    width: 100%;
  }

  .overview-images-wrapper {
    flex-direction: column;
  }

  .overview-card {
    padding: 20px 12px;
  }

  .overview-card-title {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .overview-card p {
    font-size: 14px;
  }

  .second-container {
    margin-top: 40px;
  }

  .procedure-benefits-sec .sec-head {
    margin-bottom: 24px;
  }

  .procedure-benefits-sec .sec-head p {
    margin-top: 0px;
  }

  .benefit-list-item {
    text-align: left;
    margin-bottom: 16px;
  }

  .benefit-text h5 {
    font-size: 16px;
  }

  .benefit-text p {
    font-size: 14px;
    line-height: 1;
  }

  .benefit-icon img {
    width: 28px;
    height: 28px;
  }

  .benefit-icon {
    width: 42px;
    height: 42px;
  }

  .procedure-benefits-sec .specialty-card {
    padding: 20px;
  }

  .procedure-benefits-sec .spec-title {
    font-size: 18px;
  }

  .procedure-benefits-sec .bg-dark-wrap {
    padding: 40px 20px;
  }

  .procedure-benefits-sec .bg-dark-wrap .right {
    padding-bottom: 15px;
    padding-left: 15px;
  }

  .recover-image-shadow-wrap img {
    box-shadow: -15px 15px 0px 0px #0031611A;
  }

  .procedure-benefits-sec .bg-dark-wrap .left {
    padding-right: 0;
  }

  .procedure-benefits-sec .bg-dark-wrap .cms-con ul {
    text-align: left;
    display: inline-block;
  }

  .procedure-benefits-sec .sec-head .sec-title,
  .acl-content-sec .sec-head .sec-title {
    font-size: 28px;
  }

  .procedure-benefits-sec .bg-dark-wrap .sec-head {
    margin-bottom: 20px;
  }

  .card-icon-circle {
    width: 60px;
    height: 60px;
    top: -30px;
  }

  .card-icon-circle img {
    width: 26px;
    height: 26px;
  }

  .contact-info-card .cms-con h5 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .services-features-sec .feature-card {
    padding: 30px 20px;
  }

  .services-features-sec .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
  }

  .apoint-form .row {
    --bs-gutter-x: 10px;
  }

  .contact-sec .contact-left {
    padding-right: 15px;
  }

  .appointment-cta-v2 .banner-decoration {
    height: 70px;
    width: 70px;
    bottom: 20px;
    right: 20px;
  }

  .top-footer .row {
    align-items: flex-end;
  }

  .award-img {
    height: 90px;
    width: 90px;
    margin-bottom: 10px;
  }

  .hospital-tab-wrapper {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }

  .hospital-tab {
    flex: 0 0 auto;
    width: 280px;
    /* Fixed width for horizontal scrolling look */
  }

  .hospital-detail-card {
    padding: 0;
    margin-bottom: 30px;
  }

  .recover-image-shadow-wrap.min-auto {
    max-width: 400px;
    margin: 0 auto;
  }

}



/* ─────────────────────────────── 767 ─────────────────────────────── */
@media (max-width: 767px) {

  .container,
  .inner-banner-sec .cta-wrper,
  .procedure-benefits-sec {
    padding: 0 15px;

  }

  .hero-container {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
  }

  .common-sec {
    padding-block: 40px 40px;
  }

  .choose-us-right .logo-marquee-wrap {
    margin-top: 25px;
  }

  .features-section {
    padding-bottom: 50px;
  }

  .team-details {
    padding: 10px 8px;
  }

  .team-img {
    padding: 0;
  }

  .team-card .box {
    padding: 5px;
  }

  .team-details .team-name {
    font-size: 14px;
  }

  .team-details .team-role {
    font-size: 12px;
  }

  .team-card {
    padding: 0 4px;
  }

  .team-card .box {
    height: 220px;
  }

  .our-team .right {
    margin-top: 20px;
  }

  .sec-title {
    font-size: 28px;
  }

  .features-container {
    flex-wrap: wrap;
    gap: 30px 0;
  }

  .feature-card:last-child {
    width: 100%;
    flex: inherit;
  }

  .feature-card:last-child:before {
    top: -15px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  }

  .stats-container {
    gap: 15px;

  }

  .stat-label {
    font-size: 11px;
  }

  .feature-icon {
    margin-bottom: 10px;
  }

  .social-list ul {
    font-size: 16px;
  }

  .cms-con h5 {
    font-size: 20px;
    margin-bottom: 15px;
  }


  .testimonial-card .box {
    padding: 20px 15px;
  }

  .star-icon {
    width: 16px;
    height: 16px;
  }

  .testimonial-card .author img {
    width: 45px;
    height: 45px;
  }

  .testimonial-card .rating {
    margin-bottom: 10px;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .testimonial-card .content {
    margin-bottom: 16px;
  }

  .testimonial-card .author-wrap {
    padding-top: 15px;
  }

  .testimonial-card .author {
    gap: 10px;
  }

  .testimonial-card .quote img {
    width: 20px;
  }

  /* Specialties & CTA */
  .choose-us-right .cms-con {
    margin-top: 20px;
  }

  .why-choose-sec .cms-con h5 {
    margin-bottom: 15px;
  }

  .cta-overlay {
    bottom: 20px;
    left: 15px;
  }

  .cta-details h3 {
    font-size: 18px;
  }

  .specialty-card {
    padding: 25px 15px;
  }

  .spec-title br {
    display: none;
  }

  /* Articles */


  .article-img-wrapper {
    width: 180px;
  }

  .cta-overlay {
    padding: 8px 30px 8px 8px;
    gap: 10px;
  }

  .cta-details h3 {
    font-size: 16px;
  }

  .cta-icon {
    width: 42px;
    height: 42px;
  }

  .cta-details p {
    font-size: 13px;
  }

  .appointment-sec .right {
    max-width: 100%;
    margin-top: 30px;
  }

  .form-label {
    margin-bottom: 5px;
    padding-left: 5px;
  }

  .btn-wrapper {
    margin-top: 20px;
  }

  .map-wrap iframe {
    height: 300px;
  }

  .subscribe-form p {
    margin-top: 30px;
    margin-right: auto;
  }

  .subscribe-left {
    max-width: 100%;
  }

  .footer-copyright {
    justify-content: center;
    gap: 15px;
    text-align: center;
  }

  .footer-col-brand p {
    font-size: 14px;
  }

  .footer-social-list.social-list ul {
    gap: 20px;
  }

  .subscribe-icon-group,
  .subscribe-text {
    justify-content: center;
    text-align: center;
  }

  .subscribe-text {
    max-width: 320px;
    margin: 0 auto;
  }

  .top-footer {
    padding: 30px 0;
  }

  .hero-shape {
    left: 0;
    top: 0;
    width: 50%;
    object-fit: contain;
  }

  .logo-img,
  .tagline {
    width: 140px;
  }

  .sticky-header .header-nav .logo-img {
    width: 130px;
  }

  /* banner section */
  /* about us page 767px*/
  .inner-banner-content .hero-desc {
    margin-bottom: 15px;
  }



  .cms-con h4 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .overview-btn {
    margin-top: 15px;
  }

  .about-section .about-img-wrap {
    padding-top: 20px;
  }

  .overview-images-wrapper {
    flex-direction: row;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 10px;
  }

  .overview-images-col {
    display: contents;
  }

  .overview-img-box {
    width: 33.33%;
  }

  .team-section-v2 .row {

    justify-content: center;
    --bs-gutter-y: 16px;
  }

  .faq-accordion .accordion-item {
    padding: 20px;
  }

  .faq-accordion .accordion-body {
    padding-top: 10px;
  }

  .cms-con h3 {
    font-size: 18px;
  }

  .team-name {
    margin-bottom: 5px;
  }

  .sec-title-2 {
    font-size: 22px;
  }

  .patient-card .box {
    height: 200px;
  }

  .slick-center .patient-card .box {
    height: 250px;
  }

  /* Slider Components */
  .play-btn {
    width: 50px;
    height: 50px;
  }

  .play-btn img {
    width: 18px;
    height: 18px;
  }

  .patient-overlay .author-info {
    padding: 8px 10px;
    gap: 10px;
  }

  .patient-overlay .author-info h5 {
    font-size: 14px;
  }

  .patient-overlay .author-info span {
    font-size: 12px;
  }

  .patient-overlay .avatar img {
    width: 40px;
    height: 40px;
  }

  .procedure-benefits-sec .bg-dark-wrap .right {
    padding: 0 !important;
    margin-bottom: 30px;
  }

  .recover-image-shadow-wrap img {
    box-shadow: none !important;
  }

  .min-auto img {
    margin-bottom: 10px;
  }

  .contact-info-card {
    padding: 35px 10px 15px;
  }

  .card-icon-circle {
    width: 50px;
    height: 50px;
    top: -25px;
  }

  .card-icon-circle img {
    width: 22px;
    height: 22px;
  }

  .contact-info-card .cms-con h5 {
    font-size: 15px;
  }

  .contact-info-card p {
    font-size: 13px;
  }

  .contact-info-cards-sec .row {
    --bs-gutter-y: 40px;
  }

  .services-features-sec .feature-card {
    padding: 20px;
  }

  .services-features-sec .row {
    --bs-gutter-x: 15px;
    --bs-gutter-y: 15px;
  }

  .map-wraper-contact {
    position: static;
    width: 100%;
    height: 350px;
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
  }

  .contact-sec .contact-left {
    padding: 0;
  }

  .contact-info-cards-sec .container {
    padding-top: 20px;
  }

  .hospital-name {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .hospital-info-item p {
    font-size: 15px;
  }

  .hospital-tab .nav-link {
    padding: 15px 20px;
  }

  .hospital-info-list {
    margin: 20px 0;
  }

  .hospital-info-item {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }

  /*  */
  .diff .overview-images-wrapper {
    max-width: 250px;
    margin: 0 auto 20px;
  }

  .pod .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }


}





/* ─────────────────────────────── 568 ─────────────────────────────── */
@media (max-width: 568px) {
  .cms-con ul li {
    width: 100%;
  }

  .btn {
    padding: 10px 14px;
    font-size: 11px;
  }

  .features-section {
    margin-top: 0px;
    padding-bottom: 40px;
  }

  .features-container {
    border-radius: 0;
  }

  .container.bg {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .stats-container {
    flex-wrap: wrap;
  }

  .stats-container .stat-item {
    width: 47%;
  }

  .stat-label-box {
    line-height: 1;
  }

  p {
    font-size: 14px;
  }

  .cms-con ul li {
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 6px;
  }

  .cms-con ul li::before {
    width: 15px;
    height: 18px;
  }

  .specialist-urgent span {
    line-height: 1.2;
  }

  .hero-content {
    flex-direction: column-reverse;
  }

  .block-video {
    margin-top: 50px;
    margin-bottom: 20px;
    justify-content: center;
  }

  .hero-sec {
    min-height: auto;
  }

  .hero-sec .hero-container {
    padding-top: 50px;
    padding-bottom: 0px;
  }

  .hero-experience {
    margin-top: 20px;
  }

  .cta-block .cta-box {
    margin-top: 20px;
  }



  .spec-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }

  .sec-title {
    font-size: 22px;
  }

  .sec-title br {
    display: none;
  }

  .feature-card {
    padding: 0 15px;
  }


  .hero-experience {
    flex-wrap: wrap;
  }

  .articles-footer-btn {
    margin-top: 20px;
  }

  .sub-title {
    gap: 6px;
    font-size: 11px;
  }

  .sub-title::before,
  .sub-title::after {
    width: 18px;
  }

  .subscribe-form p {
    margin-top: 16px;
  }

  .footer-col-contact,
  .footer-col-brand {
    width: 100%;
  }

  .stat-number {
    font-size: 75px;
  }

  .hero-title {
    font-size: 26px;
  }

  .form-textarea-wrapper {
    padding: 12px 18px;
    height: 120px;
  }

  /* banner section */
  /* about us page 568px*/
  /* Appointment CTA V2 */
  .appointment-cta-v2 .appointment-banner-wrap {
    padding: 40px 0px 0;
    text-align: center;
  }

  .appointment-cta-v2 .banner-content {
    padding: 0 15px 30px;
  }

  .appointment-cta-v2 .appointment-banner-img::before {
    background: linear-gradient(180deg, #f5f9f9 0%, transparent 40%);
  }

  .appointment-cta-v2 .banner-decoration {
    width: 60px;
    height: 60px;
    top: 20px;
    left: 20px;
  }

  .mission-vision-grid .col-auto,
  .team-section-v2 .col-auto {

    width: 50%;
  }

  .mission-vision-item {
    margin-bottom: 20px;
  }

  .faq-accordion .accordion-button {
    font-size: 16px;
  }

  .faq-accordion .accordion-item {
    padding: 14px;
  }

  .faq-accordion .accordion-body p {
    font-size: 14px;
  }

  .faq-accordion .accordion-button::after,
  .faq-accordion .accordion-button::before {
    width: 14px;
    height: 14px;
  }

  .mb-50 {
    margin-bottom: 25px;
  }

  .footer-copyright {

    gap: 5px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 12px;
  }

  .faq-section .sec-head {
    margin-bottom: 25px;
  }

  /* Slider Components */
  .play-btn {
    width: 40px;
    height: 40px;
  }

  .play-btn img {
    width: 14px;
    height: 14px;
    margin-left: 2px;
  }

  .patient-overlay .author-info {
    padding: 6px 8px;
    gap: 8px;
  }

  .patient-overlay .author-info h5 {
    font-size: 13px;
  }

  .patient-overlay .author-info span {
    font-size: 11px;
  }

  .patient-overlay .avatar img {
    width: 35px;
    height: 35px;
  }

  .overview-card-number .num {
    font-size: 34px;
  }

  .overview-card-number {
    margin-bottom: 8px;
  }

  .overview-card-title {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .overview-card p {
    font-size: 12px;
  }

  .xy-row {
    --bs-gutter-x: 8px;
    --bs-gutter-y: 8px;
  }

  .overview-card {
    padding: 16px 12px;
    background-repeat: 12px;
  }

  .recover-image-shadow-wrap img {
    min-height: 0;
  }


  .card-icon-circle {
    width: 44px;
    height: 44px;
    top: -22px;
  }

  .card-icon-circle img {
    width: 18px;
    height: 18px;
  }

  .contact-info-card .cms-con h5 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .overview-images-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .overview-img-box {
    width: calc(50% - 5px);
  }
}




/* ─────────────────────────────── 489 ─────────────────────────────── */
@media (max-width: 489px) {


  .features-container .feature-card {
    width: 100%;
    flex: inherit;
  }

  .features-container .feature-card:before {
    top: -15px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0) 100%);
  }

  .cms-con h5 {
    font-size: 18px;
  }

  .article-img-wrapper {
    width: 120px;
  }

  .footer-col-brand p {
    margin-bottom: 15px;
  }

  .mission-vision-grid .col-auto,
  .team-section-v2 .col-auto {
    width: 100%;
  }

  .hospital-name {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .hospital-info-item p {
    font-size: 15px;
  }

  .hospital-tab .nav-link {
    padding: 15px 20px;
  }

  .hospital-info-list {
    margin: 20px 0;
  }

  .hospital-info-item {
    margin-bottom: 12px;
    padding-bottom: 10px;
  }
}

/* ─────────────────────────────── 350 ─────────────────────────────── */

@media (max-width: 350px) {}




@media (min-width: 1200px) {

  .menu-toggle-btn {
    display: none;
  }

  .sidebar-overlay {
    display: none;
  }

  .main-nav ul>li ul::before {
    content: "";
    width: 0;
    height: 0;
    border-bottom: 0.625rem solid var(--white);
    border-left: 0.625rem solid transparent;
    border-right: 0.625rem solid transparent;
    position: absolute;
    left: 2.5rem;
    top: 0;
    transform: translateY(-100%);
    -webkit-filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.12));
  }

  .main-nav ul>li ul li ul::before {
    display: none;
  }

  .main-nav ul li:hover>ul {
    -webkit-transform: translateY(1.625rem);
    transform: translateY(1.625rem);
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul li ul {
    display: block;
    position: absolute;
    left: 0.125rem;
    top: 85%;
    right: 0;
    margin: auto;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.08);
    /* slightly stronger shadow for depth */
    z-index: 9;
    -webkit-transform: translateY(2.25rem);
    transform: translateY(2.25rem);
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
    width: fit-content;
    padding: 20px 30px;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* light border for separation */
  }

  /* Multi-level Dropdown Styles */
  .main-nav ul li ul li {
    position: relative;
    line-height: 1;
    margin-bottom: 5px;
  }

  .main-nav ul li ul li {}

  /* Second-level / Third-level position override */
  .main-nav ul li ul li ul {
    top: 40% !important;
    left: 100% !important;
    margin-top: 0 !important;
    margin-left: 15px !important;
    transform: translateY(1rem) !important;
    padding: 10px 20px;
  }

  .main-nav ul li ul li:hover>ul {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .main-nav ul li ul li.has-submenu>.vector-arrow {
    transform: rotate(-90deg) !important;
    position: absolute;
    right: -15px;
    top: 10px;
    opacity: 0.5;
  }

  .overview-content .cms-con h4 {
    font-size: 22px;
  }
}

/* 1199 to 991 and max-width: 767px */
@media (max-width: 1199px) and (min-width: 992px) {
  .team-details {
    padding: 10px 8px;
  }

  .team-img {
    padding: 0;
  }

  .team-card .box {
    padding: 5px;
  }

  .team-details .team-name {
    font-size: 14px;
  }

  .team-details .team-role {
    font-size: 12px;
  }

  .team-card {
    padding: 0 4px;
  }

  .team-card .box {
    height: 220px;
  }

  .cta-overlay {
    padding: 8px 30px 8px 8px;
    gap: 10px;
  }

  .cta-details h3 {
    font-size: 16px;
  }

  .cta-icon {
    width: 42px;
    height: 42px;
  }

  .cta-details p {
    font-size: 13px;
  }
}



@media (max-width: 575px) {
  .benefit-list-item {
    flex-direction: column;
    gap: 10px;
  }

  .procedure-benefits-sec .container.bg-light-wrap {
    padding: 25px 15px;
  }

  .procedure-benefits-sec .sec-head .sec-title,
  .procedure-benefits-sec .sec-head .sec-title {
    font-size: 22px;
  }

}

@media (min-width: 575px) {
  .appointment-banner-img img {
    position: absolute;
    max-width: 570px;
  }
}