* {
    margin: 0;
    padding: 0;
    font-family: "Raleway", sans-serif !important;
    box-sizing: border-box;
}


body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e2a3e;
    overflow-x: hidden;
}

/* Custom color palette - medical & premium */
:root {
    --primary-dark: #0a3d62;
    --primary: #1e6f9f;
    --primary-light: #eef5fc;
    --accent: #2c9cd4;
    --gold: #f4b942;
    --gray-bg: #f8fafc;
    --shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.08);
}


/* Hero banner */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f0fa 100%);
    padding: 4rem 0 3rem;
}

.doctor-card-profile {
    background: white;
    border-radius: 2rem;
    padding: 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s ease;
    border: 1px solid rgba(30, 111, 159, 0.1);
}

.profile-img {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.cv-download-box {
    background: var(--primary-light);
    border-radius: 1.2rem;
    padding: 0.8rem;
    transition: 0.2s;
}

.btn-download-cv {
    background: var(--gold);
    border: none;
    color: #1e2a3e;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    transition: 0.2s;
}

.btn-download-cv:hover {
    background: #e5a81e;
    transform: scale(1.02);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    border-radius: 3px;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.timeline-card {
    background: white;
    border-radius: 1.2rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary);
    transition: all 0.2s;
    margin-bottom: 1.2rem;
}

.info-glass {
    background: var(--gray-bg);
    border-radius: 1.2rem;
    padding: 1.5rem;
    height: 100%;
    transition: 0.2s;
    border: 1px solid #e2edf7;
}

.specialty-badge {
    background: linear-gradient(145deg, #ffffff, #f2f9ff);
    border-radius: 60px;
    padding: 12px 16px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.25s;
    border: 1px solid rgba(30, 111, 159, 0.2);
}

.specialty-badge:hover {
    transform: translateY(-5px);
    background: white;
    border-color: var(--primary);
    box-shadow: 0 12px 18px -8px rgba(30, 111, 159, 0.2);
}

.icon-circle {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.7rem;
}

.pub-card {
    background: white;
    border-radius: 1rem;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent);
    box-shadow: 0 2px 9px rgba(0, 0, 0, 0.03);
    transition: 0.2s;
}

.pub-card:hover {
    transform: translateX(7px);
    background: #fefefd;
}

.award-item {
    background: #ffffff;
    border-radius: 1.2rem;
    padding: 1.4rem;
    text-align: center;
    transition: all 0.2s;
    height: 100%;
    box-shadow: var(--shadow-sm);
}


.doctor-info .sitename {
    font-size: 18px;
    font-weight: 700;
    color: #1f2d3d;
    line-height: 1.2;
}

.doctor-info .degree {
    font-size: 9px;
    color: #6c757d;
    display: block;
    line-height: 1.3;
}

.doctor-info .designation {
    font-size: 10px;
    color: #4b5d6b;
    font-weight: 500;
    display: block;
}

/* Spacing fix */
.doctor-info {
    line-height: 1.3;
}

@media (max-width: 768px) {
    .doctor-info .sitename {
        font-size: 18px;
    }

    .doctor-info .designation {
        font-size: 9px;
    }
}

/* ===== NAVBAR ===== */
.vats-navbar {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.vats-nav-link {
    font-weight: 500;
    color: #333;
}

.vats-nav-link:hover {
    color: rgb(41 119 130);
}

/* ===== MEGA MENU ===== */
.vats-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    z-index: 9999;
}
.sm_nn{
    position: relative !important;
}

.sm_menu {
    width: 300px !important;
    position: absolute;
    left: -70px;
    top: 52px;
}

.vats-mega-active .sm_menu {
    transform: translateX(10%) translateY(5px) !important;
}

/* ACTIVE STATE */
.vats-mega-active .vats-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

/* HEADINGS */
.vats-mega-menu h6 {
    color: rgb(41 119 130);
    margin-bottom: 12px;
    font-weight: 600;
    border-bottom: 2px solid;
    padding-bottom: 10px;
}

/* LINKS */
.vats-mega-menu a {
    display: block;
    color: #444;
    text-decoration: none;
    margin-bottom: 6px;
    transition: 0.3s;
    font-size: 14px;
}

.vats-mega-menu a:hover {
    color: rgb(41 119 130);
    padding-left: 5px;
}

/* BUTTON */
.vats-btn {
    background: #2d858d;
    color: #fff;
    border-radius: 30px;
    padding: 8px 18px;
}

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

    .vats-mega-menu {
        position: static;
        transform: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        padding: 10px;
        pointer-events: auto;
	height:400px;
	overflow-x: hidden;
        overflow-y: scroll;
    }

    .vats-mega-menu.vats-active {
        display: block;
    }
}

@media (max-width: 991px) {
    .sm_menu {

        width: 100% !important;

    }
}

/*  */

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    25%,
    50%,
    75%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-12px);
    }
}


.about-surgeon-section {
    min-height: 30vh;
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e4d63, #2f8f94);
}

.small-heading {
    letter-spacing: 2px;
    color: #cfd8dc;
}

.main-heading {
    font-size: 48px;
    line-height: 1.2;
}

.sub-text {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #e0f2f1;
}

/* Responsive */
@media (max-width: 768px) {
    .main-heading {
        font-size: 32px;
    }

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


.icons_img{
    width: 30px !important;
}

/*======================================
   SURGERY COMPARISON SECTION
======================================*/

.surgery-compare-section{
  padding:50px 0;
  background:linear-gradient(135deg,#f4f9ff,#eef7ff);
  position:relative;
  overflow:hidden;
}

.surgery-compare-section::before{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  background:rgba(13,110,253,0.05);
  border-radius:50%;
  top:-120px;
  right:-100px;
}

.compare-heading{
  text-align:center;
  margin-bottom:30px;
  position:relative;
  z-index:2;
}

.compare-heading span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#e8f1ff;
  color:#0d6efd;
  padding:8px 16px;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
  margin-bottom:14px;
}

.compare-heading h2{
  font-size:34px;
  font-weight:800;
  color:#0b2545;
  margin-bottom:12px;
  line-height:1.3;
}

.compare-heading p{
  max-width:720px;
  margin:auto;
  color:#6c757d;
  font-size:15px;
  line-height:1.8;
}

/*======================================
   TABLE WRAPPER
======================================*/

.compare-wrapper{
  background:#fff;
  border-radius:22px;
  overflow-x:auto;
  box-shadow:0 12px 40px rgba(0,0,0,0.08);
  position:relative;
  z-index:2;
  -webkit-overflow-scrolling:touch;
}

/* Scrollbar */

.compare-wrapper::-webkit-scrollbar{
  height:6px;
}

.compare-wrapper::-webkit-scrollbar-thumb{
  background:#0d6efd;
  border-radius:20px;
}

/*======================================
   TABLE
======================================*/

.compare-table{
  width:100%;
  min-width:650px;
  border-collapse:collapse;
}

.compare-table thead{
  background:linear-gradient(135deg, #1e4d63, #2f8f94);
  color:#fff;
}

.compare-table th{
  padding:18px 14px;
  font-size:16px;
  font-weight:700;
  border:none;
  white-space:nowrap;
}

.compare-table td{
  padding:16px 14px;
  font-size:14px;
  border-bottom:1px solid #edf2f7;
  transition:0.3s;
  vertical-align:middle;
}

.compare-table tbody tr{
  transition:0.3s ease;
}

.compare-table tbody tr:hover{
  background:#f7fbff;
}

.feature-title{
  font-weight:700;
  color:#0b2545;
  min-width:200px;
}

.robotic{
  color:linear-gradient(135deg, #1e4d63, #2f8f94);
  font-weight:700;
}

.laparo{
  color:#198754;
  font-weight:600;
}

.icon-boxx{
  width:30px;
  height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background:#eef5ff;
  color:#0d6efd;
  margin-right:8px;
  font-size:15px;
}

/*======================================
   CTA
======================================*/

.compare-note{
  padding:22px;
  text-align:center;
  background:#f8fbff;
}

.compare-note p{
  margin-bottom:16px;
  color:#555;
  font-size:14px;
  line-height:1.7;
}

.compare-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:linear-gradient(135deg,#0d6efd,#0b5ed7);
  color:#fff;
  text-decoration:none;
  padding:12px 24px;
  border-radius:50px;
  font-size:14px;
  font-weight:600;
  transition:0.3s;
}

.compare-btn:hover{
  transform:translateY(-2px);
  color:#fff;
  box-shadow:0 10px 20px rgba(13,110,253,0.25);
}

/*======================================
   TABLET
======================================*/

@media(max-width:991px){

  .compare-heading h2{
    font-size:28px;
  }

  .compare-heading p{
    font-size:14px;
  }

  .compare-table th{
    font-size:15px;
    padding:16px 12px;
  }

  .compare-table td{
    font-size:13px;
    padding:14px 12px;
  }
}

/*======================================
   MOBILE
======================================*/

@media(max-width:767px){

  .surgery-compare-section{
    padding:40px 0;
  }

  .compare-heading{
    margin-bottom:22px;
  }

  .compare-heading span{
    font-size:12px;
    padding:7px 14px;
  }

  .compare-heading h2{
    font-size:24px;
  }

  .compare-heading p{
    font-size:13px;
    line-height:1.7;
  }

  .compare-table{
    min-width:600px;
  }

  .compare-table th{
    font-size:13px;
    padding:14px 10px;
  }

  .compare-table td{
    font-size:12px;
    padding:13px 10px;
  }

  .icon-box{
    width:30px;
    height:30px;
    font-size:13px;
    border-radius:8px;
  }

  .feature-title{
    min-width:180px;
  }

  .compare-note{
    padding:18px 14px;
  }

  .compare-note p{
    font-size:13px;
  }

  .compare-btn{
    width:100%;
    padding:12px 16px;
    font-size:13px;
  }
}



/*.....................form.........*/

.premium-appointment-card{
  position:relative;
  background:linear-gradient(135deg,#ffffff,#f4f9ff);
  border-radius:30px;
  padding:40px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(13,110,253,0.12);
  border:1px solid rgba(13,110,253,0.08);
  height:100%;
}

/* Top Glow */
.appointment-shape{
  position:absolute;
  width:220px;
  height:220px;
  background:rgba(13,110,253,0.08);
  border-radius:50%;
  top:-80px;
  right:-80px;
}

.appointment-content{
  position:relative;
  z-index:2;
}

.appointment-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#e9f2ff;
  color:#0d6efd;
  padding:9px 18px;
  border-radius:50px;
  font-size:13px;
  font-weight:600;
  margin-bottom:18px;
}

.premium-appointment-card h3{
  font-size:38px;
  font-weight:800;
  color:#0b2545;
  margin-bottom:12px;
  line-height:1.2;
}

.premium-appointment-card p{
  color:#6c757d;
  font-size:15px;
  line-height:1.8;
  margin-bottom:28px;
}

/* Inputs */
.input-box{
  position:relative;
}

.input-box i{
  position:absolute;
  top:50%;
  left:18px;
  transform:translateY(-50%);
  color:#0d6efd;
  font-size:15px;
}

.textarea-box i{
  top:22px;
  transform:none;
}

.input-box input,
.input-box select,
.input-box textarea{
  width:100%;
  border:none;
  outline:none;
  background:#fff;
  border-radius:16px;
  padding:15px 18px 15px 50px;
  font-size:14px;
  color:#333;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  border:1px solid #edf2f7;
  transition:0.3s;
}

.input-box textarea{
  resize:none;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus{
  border-color:#0d6efd;
  box-shadow:0 10px 25px rgba(13,110,253,0.12);
}

/* Button */
.premium-btn{
  width:100%;
  border:none;
  border-radius:18px;
  padding:16px;
  background:linear-gradient(135deg, #1e4d63, #2f8f94);
  color:#fff;
  font-size:15px;
  font-weight:600;
  transition:0.3s;
}

.premium-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(13,110,253,0.25);
}

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

  .premium-appointment-card{
    padding:32px;
  }

  .premium-appointment-card h3{
    font-size:32px;
  }
}

@media(max-width:767px){

  .premium-appointment-card{
    padding:25px 20px;
    border-radius:22px;
  }

  .premium-appointment-card h3{
    font-size:26px;
  }

  .premium-appointment-card p{
    font-size:14px;
    margin-bottom:22px;
  }

  .input-box input,
  .input-box select,
  .input-box textarea{
    font-size:13px;
    padding:14px 16px 14px 46px;
    border-radius:14px;
  }

  .premium-btn{
    padding:14px;
    font-size:14px;
    border-radius:14px;
  }
}

/* Form Card Smaller */
.premium-appointment-card{
  padding:28px;
  border-radius:24px;
  max-width:520px;
  margin:auto;
}

/* Heading Smaller */
.premium-appointment-card h3{
  font-size:30px;
  margin-bottom:10px;
}

/* Paragraph */
.premium-appointment-card p{
  font-size:14px;
  margin-bottom:22px;
  line-height:1.7;
}

/* Inputs Smaller */
.input-box input,
.input-box select,
.input-box textarea{
  padding:13px 16px 13px 44px;
  font-size:13px;
  border-radius:14px;
}

/* Icons */
.input-box i{
  left:16px;
  font-size:14px;
}

/* Button Smaller */
.premium-btn{
  padding:13px;
  font-size:14px;
  border-radius:14px;
}

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

  .premium-appointment-card{
    padding:22px 18px;
  }

  .premium-appointment-card h3{
    font-size:24px;
  }
}


/* CTA Box */
.modern-cta-box{
  padding: 60px 35px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #f5fbff);
  box-shadow: 0 12px 35px rgba(10, 61, 98, 0.10);
  border: 1px solid #e6f1f7;
  transition: 0.4s ease;
}

.modern-cta-box:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(10, 61, 98, 0.15);
}

/* Decorative Shapes */
.modern-shape{
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.shape-one{
  width: 140px;
  height: 140px;
  background: rgba(0, 119, 182, 0.08);
  top: -50px;
  left: -40px;
}

.shape-two{
  width: 100px;
  height: 100px;
  background: rgba(0, 180, 216, 0.10);
  bottom: -30px;
  right: -20px;
}

/* Title */
.modern-cta-title{
  font-size: 42px;
  font-weight: 700;
  color: #0a3d62;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

/* Text */
.modern-cta-text{
  font-size: 17px;
  color: #5f6b76;
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

/* Button */
.modern-cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1e4d63, #2f8f94);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.4s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(13, 139, 209, 0.25);
}

.modern-cta-btn:hover{
  transform: translateY(-4px);
  color: #fff;
  box-shadow: 0 12px 28px rgba(13, 139, 209, 0.35);
}

/* Responsive */
@media(max-width:768px){

  .modern-cta-box{
    padding: 45px 22px;
  }

  .modern-cta-title{
    font-size: 30px;
  }

  .modern-cta-text{
    font-size: 15px;
  }

  .modern-cta-btn{
    width: 100%;
  }
}


.fifo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  background: linear-gradient(135deg, #1e4d63, #2f8f94);
  transition: 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Arrow style */
.fifo .arrow {
  display: inline-block;
  font-size: 18px;
  animation: arrowMove 1s infinite;
}

/* Arrow animation */
@keyframes arrowMove {
  0% { transform: translateX(0); }
  50% { transform: translateX(6px); }
  100% { transform: translateX(0); }
}

/* Hover effect */
.fifo:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.3);
}

/* Hover pe arrow fast ho jaye */
.fifo:hover .arrow {
  animation-duration: 0.5s;
}

 /* Overlay */
  .custom-popup-overlay{
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    
    opacity: 0;
    visibility: hidden;

    transition: all 0.4s ease;
    padding: 15px;
  }

  /* Active Popup */
  .custom-popup-overlay.active{
    opacity: 1;
    visibility: visible;
  }

  /* Popup Box */
  .custom-popup-box{
    position: relative;
    width: 100%;
    max-width: 950px;

    transform: translateY(-80px) scale(.92);
    transition: all .45s ease;

    animation: popupGlow 3s infinite alternate;
  }

  /* Smooth Show Animation */
  .custom-popup-overlay.active .custom-popup-box{
    transform: translateY(0) scale(1);
  }

  /* Popup Image */
  .popup-banner-img{
    width: 100%;
    border-radius: 22px;
    display: block;

    box-shadow: 
      0 20px 60px rgba(0,0,0,0.45),
      0 0 30px rgba(0,180,255,0.18);

    overflow: hidden;
  }

  /* Close Button */
  .popup-close-btn{
    position: absolute;
    top: -14px;
    right: -14px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #00a8b5;
    color: #fff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(0,0,0,0.25);

    transition: .3s ease;

    z-index: 10;
  }

  .popup-close-btn:hover{
    transform: rotate(90deg) scale(1.08);
    background: #007f8a;
  }

  /* Glow Animation */
  @keyframes popupGlow{
    0%{
      filter: drop-shadow(0 0 5px rgba(0,180,255,0.2));
    }
    100%{
      filter: drop-shadow(0 0 18px rgba(0,180,255,0.35));
    }
  }

  /* Mobile Responsive */
  @media(max-width:768px){

    .custom-popup-box{
      max-width: 100%;
    }

    .popup-banner-img{
      border-radius: 16px;
    }

    .popup-close-btn{
      width: 38px;
      height: 38px;
      font-size: 24px;

      top: -10px;
      right: -10px;
    }
  }



/*................banner...........*/


   .hero {
  position: relative;
  background: url('https://t3.ftcdn.net/jpg/07/14/18/00/360_F_714180063_tfpRXXXGj9uF4wwevzHNiH5CDatTZVAP.jpg') no-repeat center center/cover;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,      /* full black */
    rgba(0, 0, 0, 0.85) 35%,
    rgba(0, 0, 0, 0.6) 65%,
    rgba(0, 0, 0, 0.25) 100%);
    z-index: -1;
    width: 100%;
}

.hero-headline {
  color: #ffffff;
  font-weight: 700;
}

.hero-text {
  color: rgba(255, 255, 255, 0.9);
}

.hero-tag .tag-text {
  color: #00c3ff; /* light blue highlight */
}
.cta-button {
  background: #00aaff;
  color: #fff;
  border-radius: 30px;
  padding: 12px 25px;
}

.cta-button:hover {
  background: #008ecc;
}


.float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:80px;
  right:20px;
  background-color:#25d366;
  color:#FFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
  margin-top:16px;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    25%,
    50%,
    75%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-12px);
    }
}





  .robotic-section {
  background: #f8fafc;
}

.robotic-section h1 {
  font-size: 40px;
  color: #1e293b;
}

.robotic-section p {
  font-size: 16px;
  line-height: 1.7;
}

.robotic-list li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #334155;
  display: flex;
  align-items: start;
}

.robotic-list i {
color: linear-gradient(135deg, #1e4d63, #2f8f94);
  font-size: 18px;
  margin-right: 10px;
  margin-top: 3px;
}

/* Image Styling */
.robotic-img-wrapper {
  position: relative;
}

.robotic-img-wrapper img {
  max-height: 520px;
  object-fit: cover;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .robotic-section h1 {
    font-size: 26px;
  }

  .robotic-list li {
    font-size: 14px;
  }
}


  .hospital-section {
  background: #f5f7fa;
}

.hospital-img img {
   width: 100%;
  height: 100%;
  min-height: 420px; /* important */
  max-height: 520px; /* same look */
  object-fit: cover;
  border-radius: 25px;
}

.feature-box {
  background: #eef2f7;
  padding: 25px;
  border-radius: 20px;
}

.icon-box i {
  font-size: 32px;
  color: #4a5bdc;
  margin-bottom: 10px;
}

.icon-box h6 {
  font-weight: 600;
  font-size: 15px;
}

.badge-img {
  width: 50px;
}


.video-section {
 background: #fcfeff;
  padding: 70px 0;
}

/* Title */
.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  color: #0d6efd;
  font-weight: 700;
}

/* Card */
.video-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.video-card:hover {
  transform: translateY(-6px);
}

/* Thumbnail Wrapper */
.video-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

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

/* Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
background: rgba(44, 122, 123, 0.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  transition: 0.3s;
  z-index: 2;
}

.play-btn:hover {
  background: #256d6e;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  font-size: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: 0.3s;
}

.close-btn:hover {
  background: #0d6efd;
}

/* Video hidden initially */
.video-wrapper video {
  display: none;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.video-content {
  padding: 15px;
}

.video-content h5 {
  color: #0d6efd;
  font-size: 16px;
  font-weight: 600;
}

.video-content p {
  font-size: 13px;
  color: #555;
  margin-bottom: 0;
}



