   *{
      margin:0;
      padding:0;
   }
   :root{
      --color1:#0190d6;
      --color2:#f5874f;
      --color3:#365b9d;
      --urban: 'Urbanist', sans-serif;
      --roboto: 'Roboto', sans-serif;
      --edu: 'Edu NSW ACT Hand', cursive;
   }
   a{
    text-decoration: none;
   }
  .top-header {
      background: #fff;
      padding: 15px 0;
      font-family: var(--roboto);
    }

    .top-header .info-box {
      display: flex;
      align-items: center;
      gap: 10px;
      border-left: 1px solid #ddd!important;
      padding-left: 20px;
    }
     .info-box a{
      color: #24437a;
      font-size: 15px;
       font-family: var(--urban);

     }
    .top-header .info-box.noborder {
      border-left: none!important;
    }
  .info-box img{
    width: 32px;
  }
    .top-header i {
      font-size: 22px;
      color: #1e3a8a;

    }

    .top-header .title {
      font-size: 13px;
      color: #6c757d;
      text-align: left;
      margin-bottom: 0;
    }

    .top-header .value {
      font-weight: 600;
      font-size: 14px;
      color: #1e3a8a;
    }

    .logo img {
      min-height: 90px;
    }

    /*menu*/
    /* FONT */


/* NAVBAR BACKGROUND (PILL STYLE) */
.custom-navbar {
  background: linear-gradient(90deg, #3e4095, #0290d3);
  border-radius: 50px;
  padding: 10px 25px;
  position: relative;
  z-index: 99;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  margin: 0 5px;

  position: relative;
  transition: 0.3s;
}

/* HOVER EFFECT */
.navbar-nav .nav-link:hover {
  color: var(--color2);
}

/* PLUS ICON */
.navbar-nav .nav-link .plus {
  font-size: 14px;
  margin-left: 5px;
}

/* DROPDOWN BASE */
.dropdown-menu {
  border: none;
  border-radius: 0;
  padding: 10px 0;
  margin-top: 15px;

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;

  display: block;
  visibility: hidden;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 0;
}

/* SHOW ON HOVER (DESKTOP) */
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.nav-item i{
  font-size: 13px;
}
/* DROPDOWN ITEMS */
.dropdown-item {
  border-radius: 10px;
  padding: 10px 15px;
  font-weight: normal;
  color: #333;
  transition: 0.3s;
   border-bottom: 1px solid #eee;
}


.dropdown-item:last-child {
  border-bottom: none;
}

/* DROPDOWN HOVER */
.dropdown-item:hover {
  background: #f5f7fb;
  color: #000000;
}

/* APPOINTMENT BUTTON */
.btn-appointment i{
  margin-left: 8px;
}
.btn-appointment {
  background: var(--color2);
  color: #fff;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-appointment:hover {
  background: white;
  color: var(--color2);
  transform: scale(1.1);
  transform: translateX(5px);
  box-shadow: 0 0 5px #00000025;
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {

  .custom-navbar {
    border-radius: 15px;
  }

  /* Disable hover animation */
  .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none;
  }

  /* Show when clicked */
  .dropdown.show .dropdown-menu {
    display: block;
  }

  .navbar-nav {
    margin-top: 10px;
  }

  .btn-appointment {
    margin-top: 10px;
    display: inline-block;
  }
}

/* HERO SECTION */
.hero-slider {
  min-height:450px; 
  position: relative;
  overflow: hidden;
  padding: 40px 0 0 0;
  margin-top: -30px;
  z-index: 1;
  background: linear-gradient(135deg, rgb(29 108 183), rgba(27, 108, 168, 0.9)),
    url('../images/bannerbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
   font-family: var(--roboto);
}
/* RIGHT BOTTOM TEXTURE */
.hero-slider::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #1ec6d9, transparent);
  border-radius: 50%;
  opacity: 0.25;
}

/* TEXT STYLE */
.hero-content h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  color: white;
  margin-bottom: 0;
  padding-bottom: 10px;
  font-family: var(--urban);
  transform: translateY(30px);

}
.hero-content h2 {
  font-family: var(--urban);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0;
  margin-bottom: 5px;
  color: white;
   transform: translateY(30px);
 }
.hero-content h3 {
  font-family: var(--urban);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0;
  color: white;
   transform: translateY(30px);
 }

.hero-content p,
.hero-content h5 {
  color: #dbeafe;
  opacity: 0;
  transform: translateY(20px);
}

/* BUTTON */
.hero-content .btn {
  border-radius: 50px;
  margin-top: 15px;
}

/* IMAGE STYLE */
.hero-img {
  position: relative;
  display: inline-block;
}

.hero-img img {
  max-width: 90%;
  /*border-radius: 50%;*/
  /*border: 8px solid #fff;*/
  position: relative;
  z-index: 2;
}

/* PULSE ANIMATION */
.pulse {
  position: absolute;
  width: 130px;
  height: 130px;
  background: #1ec6d9;
  border-radius: 50%;
  bottom: 20px;
  left: -20px;
  animation: pulseAnim 2s infinite;
  opacity: 0.5;
}
.pulse2 {
  position: absolute;
  width: 130px;
  height: 130px;
  background: #1ec6d9;
  border-radius: 50%;
  top: 10px;
  right: 50px;
  animation: pulseAnim 2s infinite;
  opacity: 0.5;
}

/* KEYFRAMES */
@keyframes pulseAnim {
  0% { transform: scale(0.8); opacity: 0.6; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}
.carousel-item{
   min-height:400px; 
}
/* ACTIVE SLIDE ANIMATION */
.carousel-item.active .hero-content h1 {
  animation: fadeUp 0.8s ease forwards;
}
.carousel-item.active .hero-content h2 {
  animation: fadeUp 0.8s ease forwards;
}
.carousel-item.active .hero-content h3 {
  animation: fadeUp 0.8s ease forwards;
}


.carousel-item.active .hero-content p,
.carousel-item.active .hero-content h5 {
  animation: fadeUp 1s ease forwards;
}

.carousel-item.active .btn {
  animation: fadeUp 1.2s ease forwards;
  font-weight: 500;
  transition: 0.3s ease-in-out;
   
}
.carousel-item.active .btn:hover{
  transform: translateY(-10px);
}
/* FADE UP */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-img img {
    width: 220px;
    margin-top: 30px;
  }
}

.carousel-fade .carousel-item {
  transition: opacity 1s ease-in-out;
}

.hero-features img {
  width: 70px;
  float: left;
  margin-right: 15px;
  filter: brightness(0) invert(1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #000;
  border-radius: 50%;
  padding: 15px;
}

.appointment-section {
  background: 
  linear-gradient(90deg, #0290d3, #3e4095), url('../images/pattern.png') left bottom no-repeat;
  padding: 40px 30px;
  border-radius: 12px;
	margin-top:-15px;
	z-index: 99;
	position:relative;
  font-family: var(--roboto);
}

.appointment-section h2{
  text-align: center;
  font-family:var(--urban);
  color: #fff;
  font-weight: 700;
  font-size: 36px;
}
.appointment-section p{
  text-align: center;
  color: #fff;
  font-weight: normal;
  color: #fff;
  font-size: 16px;
  padding-bottom: 25px;
}
.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    position: relative;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 45px 14px 20px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 15px;
    background: #fff;
    color: #333;
	
}

/* Icon inside input */
.form-group i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-size: 18px;
    pointer-events: none;
}

/* Button */
.submit-btn {
    flex: 1;
}

.submit-btn button {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: none;
    background: var(--color2);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn button:hover {
    background: #fff;
    color: var(--color2);
}

/* Remove default select arrow (optional) */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}

.aboutsec {
    padding: 70px 20px;
    background: linear-gradient(from top, 135deg, #fff, #e8f7ff);
    position: relative;
    overflow: hidden;
}
.medixi-container {
    margin: auto;
    position: relative;
    z-index: 2;
    font-family: var(--roboto);
}

.medixi-container h3{
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}
.medixi-container h3 span{
  display: block;
  font-weight: 500;
}
/* Subtitle */
.medixi-subtitle {
    color: #12bcd4;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-family: var(--urban);
}

.medixi-subtitle::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #12bcd4;
    position: absolute;
    left: 0;
    bottom: -5px;
}

/* Title */
.medixi-title {
    font-family: var(--urban);
    font-size: 45px;
    font-weight: 700;
    color: var(--color3);
    line-height: 1.3;
    margin: 20px 0;
    
    margin-bottom: 0;
}

/* Description */
.medixi-desc {
    text-align: justify;
    color: #222;
    font-size: 15px;
    line-height: 1.7;
    
    margin-bottom: 8px;
}

/* Features */
.medixi-features {
    display: flex;
    gap: 40px;
    margin-top: 15px;
    margin-bottom: 0;
}

.medixi-features ul {
    list-style: none;
    padding: 0;
}

.medixi-features li {
    margin-bottom: 12px;
    color: #2c4a7a;
    position: relative;
    padding-left: 18px;
    font-size: 16px;
}

/* custom bullet */
.medixi-features li::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #12bcd4;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Button */
.medixi-btn {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, #12bcd4, #1ecbe1);
    color: #fff;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-family: var(--urban);
    transition: 0.3s ease;
    box-shadow: 0 0 10px rgba(18,188,212,0.25);
}
.medixi-btn i{
  margin-left: 4px;
  font-size: 13px;
}
.medixi-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(18,188,212,0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .medixi-title {
        font-size: 30px;
    }

    .medixi-features {
        flex-direction: column;
        gap: 0;
    }
}

.experience-section {
   
}

.exp-container {
    margin: auto;

}

.exp-img-box {
    position: relative;
    display: inline-block;

}

/* Image */
.exp-img-box img {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

/* Background curved shape */
.exp-img-box::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, #12bcd4, #2f4e85);
    top: 10px;
    left: 10px;
    border-radius: 2% 10% 2% 10%;
    z-index: 1;
    animation: shapeMove 6s infinite alternate ease-in-out;
}

/* Shape animation */
@keyframes shapeMove {
    0% {
        transform: translateY(10px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateX(-10px);
    }
}

/* Badge */
.exp-badge {
    position: absolute;
    bottom: 80px;
    right: -20px;
    background: linear-gradient(45deg, #3e4095, #0290d3);
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    z-index: 3;
    text-align: center;
    animation: floatY 3s ease-in-out infinite;
}

.exp-badge h2 {
    font-size: 38px;
    margin: 0;
    font-weight: 700;;
}

.exp-badge p {
    font-size: 15px;
    margin: 0;
}

/* Floating animation */
@keyframes floatY {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}

.consult-btn {
  width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color2);
    border: 1px solid var(--color1);
    color: #fff;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Icon */
.consult-btn i {
    font-size: 20px;
}

/* Hover 🔥 */
.consult-btn:hover {
    background: #e46d3d;
    transform: translateY(-2px);
}

.servicesec{
  
  background: url('../images/dottes-bg.png') #edf9ff;
  padding: 70px 0;
}
.service-heading {
    
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* dotted pattern background */
.service-heading::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
    background-size: 20px 20px;
    top: 0;
    left: 0;
    opacity: 0.5;
}

/* content above background */
.heading-container {
    position: relative;
    z-index: 2;
}

/* subtitle */
.sub-title {
    color: #12bcd4;
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 5px;
    font-family: var(--edu);
}

/* main title */
.main-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--color3);
    font-family: var(--urban);
    margin-bottom: 5px;
}

/* description */
.description {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 28px;
    }
}

.services {
    padding: 40px 0 0 0;
    
}

.services .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 1400px;
}

/* Card */
.service-box {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

/* Reverse layout */
.service-box.reverse {
    flex-direction: row-reverse;
}

/* Image */
.service-img {
    width: 50%;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Zoom on hover 🔥 */
.service-box:hover img {
    transform: scale(1.1);
}

/* Content */
.service-content {
    width: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #cccccc25;
    transition: 0.3s ease;
}

.service-content h3 {
    font-size: 20px;
    color: #2c4a7a;
    font-weight: 700;
    font-family: var(--urban);
    margin-bottom: 10px;
}

.service-content p{
    color: #444;
    font-size: 15px;
    margin-bottom: 15px;
}

.service-content a {
    display: block;
    width: 40%;
    background: var(--color1);
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}
.service-box:hover .service-content a{
   background: var(--color2);
}
.service-box:hover .service-content{
  background: var(--color3);
}
.service-box:hover .service-content h3 {
  color: white;
}
.service-box:hover .service-content p {
  color: white;
}
/* Responsive */
@media (max-width: 992px) {
    .services .container {
        grid-template-columns: 1fr;
    }

    .service-box {
        flex-direction: column;
    }

    .service-box.reverse {
        flex-direction: column;
    }

    .service-img,
    .service-content {
        width: 100%;
    }
}

.counter-section {
 background: linear-gradient(90deg, #3e4095, #0290d3);
  padding: 20px 0;
}

.counterin {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin: auto;
  font-family: var(--roboto);
}

.counter-box {
  flex: 1;
  padding: 20px;
  border-right: 1px solid #dddddd50;
}

.counter-box:last-child {
  border-right: none;
}

.counter-box i {
  font-size: 45px;
  color: white;
  margin-bottom: 10px;
}

.counter-box h2 {
  font-size: 45px;
  color: white;
  margin: 5px 0;
  font-weight: bold;
}

.counter-box p {
  font-size: 16px;
  color: white;
}


.nehete-section {
  width: 100%;
  margin-top: 70px;
  margin-bottom: 70px;

}

.nehete-container {
  display: flex;
  width: 100%;
  min-height: 500px;
}

/* LEFT */
.nehete-left {
  width: 45%;
  background: #eef3f9;
  border-radius: 0 0 50px 50px;
}

.nehete-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT */
.nehete-right {
  width: 60%;
  background: #eef3f9;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* HEADING */
.nehete-right h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
   font-family: var(--urban);
}

/* ITEM */
.nehete-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.nehete-item:last-child{
   margin-bottom: 0;
}
/* ICON */
.nehete-icon {
  min-width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border: 1px solid #cccccc95;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.nehete-icon i {
  font-size: 25px;
  color: var(--color2);
}

/* TEXT */
.nehete-item h4 {
  font-size: 18px;
  margin-bottom: 5px;
   font-family: var(--roboto);
}

.nehete-item p {
   font-family: var(--roboto);
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.nehete-item p.mb0{
  padding-bottom: 0;
  margin-bottom: 0;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  .nehete-container {
    flex-direction: column;
  }

  .nehete-left,
  .nehete-right {
    width: 100%;
  }

  .nehete-right {
    padding: 40px 20px;
  }
}


/* TABS */
.tab-header {
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  margin-top: 30px;
  font-family: var(--roboto);


.tab-btn {
  flex: 1;
  padding: 10px 20px;
  margin: 2px 5px;
  /*border: 1px solid #ccc;*/
  cursor: pointer;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  font-size: 16px;
  color: white;
  font-family: var(--urban);
  border-radius: 50px;
  background: var(--color3);
}
}

.tab-btn span {
  color: red;
  font-size: 24px;
  margin-right: 10px;
}

.tab-btn.active {
  background: var(--color1);
  color: #fff;

}

/* CONTENT */
.tab-content {
  display: none;
  padding: 30px 0;
}

.tab-content.active {
  display: block;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 200px;
  background: var(--color3);
  padding: 5px;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

.hospital-affiliation {
  background: url('../images/hospbg.jpg');
  background-size: cover;
  padding: 80px 40px;
  text-align: left;
}

.hospital-affiliation .sub-heading {
  color: #1bb1dc;
  font-style: italic;
  font-size: 18px;
  margin-bottom: 10px;
  font-family: var(--edu);
}

.hospital-affiliation h2 {
  font-size: 52px;
  font-family: var(--urban);
  font-weight: 700;
  color: var(--color3);
  margin-bottom: 15px;
}

.hospital-affiliation .tagline {
  max-width: 500px;
  color: #6c7a89;
  text-align: left;
  font-size: 16px;
  line-height: 1.7;
}

.affiliation-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 30px;
  margin-top: 50px;
}

.logo-box {
  width: 250px;
  text-align: center;
  transition: 0.3s;
}

.logo-box img {
  width: 100%;
  background: white;
  /*max-height: 70px;*/
  object-fit: contain;
  /*filter: grayscale(100%);*/
  transition: 0.3s;
  box-shadow: 0 0 5px #00000020;
}

.logo-box:hover img {
  filter: grayscale(0%);
  transform: translateY(-8px);
}

.logo-box p {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .affiliation-logos {
    gap: 10px;
  }

  .logo-box {
    width: 23%;
  }

  .hospital-affiliation h2 {
    font-size: 28px;

  }
}

.consult-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 300px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #1bb1dc, #2f4e85);
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.consult-btn i {
  font-size: 18px;

  transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.consult-btn:hover {
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* ICON ANIMATION */
.consult-btn:hover i {
  color: white;
  transform: rotate(-10deg) scale(1.2);
}

/* GLOW EFFECT */
.consult-btn::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  top: 0;
  left: -120%;
  transition: 0.5s;
}

.consult-btn:hover::before {
  left: 100%;
}
.reviewsec{
    padding: 4rem 0;
}
.ts-slider {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  padding-bottom: 0;
  
}

.ts-wrapper {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.ts-card {
  min-width: 48%;
  background: #f3f3f3;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  font-family: var(--roboto);
}

.ts-text {
  color: #242424;
  font-size: 16px;
  line-height: 1.7;

}

.ts-line {
  height: 2px;
  background: #d6dde8;
  margin: 20px 0;
}

.ts-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ts-bottom h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  font-family: var(--urban);
  color: #2f4e85;
}

.ts-bottom span {
  color: #00bcd4;
  font-size: 14px;
}

.ts-right {
  text-align: right!important;
}
.ts-right h2{
  width: 50px;
  font-weight: 600;
  height: 50px;
  line-height: 50px;
  border-radius: 100%;
  color: #fff;
  text-align: center;
  background: var(--color1);
}
.ts-right img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 5px;
}

.ts-stars {
  color: #ffc107;
  font-size: 18px;
}

/* Arrows */
.ts-prev, .ts-next {
	width:50px;
	height:50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #2f4e85;
  color: #fff;
  border: none;
  text-align:center;
  cursor: pointer;
  border-radius: 50%;
}

.ts-prev { left: 10px; }
.ts-next { right: 10px; }

/* Dots */
.ts-dots {
  text-align: center;
  margin-top: 20px;
}

.ts-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.ts-dots .active {
  background: #2f4e85;
}

.footer {
  position: relative;
  overflow: hidden;
  background: 
    linear-gradient(135deg, rgba(11,28,58,0.95), rgba(14,42,90,0.95)),
    url('../images/footerbg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 60px 0;
  font-family: var(--roboto);
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 50%;
  height: 5px;
  background: linear-gradient(90deg, transparent, #18c1c1, transparent);
  animation: moveBorder 3s linear infinite;
}

@keyframes moveBorder {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  padding: 10px;
  background: #ffffff;
  border-radius: 10px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 16px;
  font-family: var(--roboto);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-item .icon {
  background: #18c1c1;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
}
.footer-item p{
  margin-bottom: 0;
}

.footer-item a{
  color: white;
}
.footer-item a:hover{
  color: var(--color2);
}
.footer-title {
  font-size: 22px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-family: var(--urban)
}

.footer-title::after {
  content: '';
  width: 40px;
  height: 3px;
  background: #18c1c1;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.time-box {
  background: rgba(255,255,255,0.08);
  padding: 12px 15px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.footer-images {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-images img {
  width: 100px;
  border-radius: 10px;
}

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 15px;
  opacity: 0.9;
  line-height: 1.8;
  cursor: pointer;
  transition: 0.3s;
}
.footer-links li i{
    font-size: 13px;
    color: white;
}
.footer-links li a{
    color: white;
    font-size: 16px;
    font-family: var(--roboto);
}
.footer-links li:hover {
  color: #18c1c1;
  transform: translateX(5px);
}

/* Responsive */
@media(max-width: 768px){
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-images img {
    width: 80px;
  }
}

.contact-box {
  background: rgba(255,255,255,0.08);
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 15px;
  padding-left: 35px;
  padding-right: 15px;
  transition: 0.3s;
  font-family: var(--roboto);
  position: relative;
}
.contact-box i{
  position: absolute;
  left: 10px;
  top: 16px;
  text-align: center;
}
.contact-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #18c1c1;
}

.contact-box p {
  font-size: 15px;
  font-family: var(--roboto);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact-box:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.about-banner {
  position: relative;
  background: url('../images/about-banner.jpg') no-repeat center center/cover;
  height: 300px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Blue overlay + blur effect */
.about-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 150, 170, 0.05);
  display: flex;
  align-items: center;
}

.about-banner h1 {
  color: var(--color3);
  font-size: 48px;
  font-weight: 600;

  font-family: var(--edu);
  margin-left: 0;
}
.about-overlay a{
    color: #000;
}
/* Breadcrumb box */
.breadcrumb-box {
  position: absolute;
  bottom: -30px;
  right: 60px;
  background: #eee;
  padding: 20px 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.breadcrumb-box p {
  margin: 0;
  color: #444;
}

.breadcrumb-box span {
  color: #00a6b2;
  font-weight: 500;
}

/* Circle icon */
.breadcrumb-box .icon {
  position: absolute;
  left: -25px;
  background: #00bcd4;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pulse-divider {
  width: 100%;
  height: 2px;
  background: #cccccc60;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.pulse-divider::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 100%;
  background: var(--color2);
  box-shadow: 0 0 15px #18c1c1, 0 0 30px #18c1c1;
  animation: pulseMove 3s infinite linear;
}

@keyframes pulseMove {
  0% { left: -120px; }
  100% { left: 100%; }
}

.medixi-keypoints {
  padding: 70px 0;
  background: url(../images/dottes-bg.png) #edf9ff;
  font-family: var(--urban);
}

.kp-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 25px;
  transition: 0.3s ease;
  border: 1px solid #cccccc95;
}

.kp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  border-color: var(--color1);
}

.kp-icon {
  font-size: 32px;
  color: #12bcd4;
  margin-bottom: 15px;
}

.kp-card h5 {
  color: var(--color3);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.kp-card p {
  color: #222222;
  font-size: 16px;
  font-family: var(--roboto);
  line-height: 1.5;
}
.contactbanner{
        background: url(../images/contact-banner.jpg) no-repeat center center / cover;
}
.innerbanner{
    background: url(../images/inner-banner.jpg) no-repeat center center / cover;
}
.blogbanner{
    background: url(../images/blog-banner.jpg) no-repeat center center / cover;
}
.review-banner{
    background: url(../images/review-banner.jpg) no-repeat center center / cover;
}
.article-banner{
    background: url(../images/article-banner.jpg) no-repeat center center / cover;
}
.medixi-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: #cccccc25;
  border-radius: 0;
  
}

.form-box {
  width: 100%;
}

.form-box h2 {
  color: var(--color3);
  margin-bottom: 5px;
  font-weight: 600;
  font-family: var(--urban);
}

.sub-text {
  color: var(--color1);
  margin-bottom: 25px;
  font-size: 15px;
}

/* Input Group */
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border-radius: 40px;
  border: 1px solid #d1d5db;
  outline: none;
  font-size: 14px;
  background: #fff;
  transition: 0.3s;
}

/* Textarea */
.input-group.textarea textarea {
  border-radius: 20px;
  height: 120px;
  resize: none;
  padding-top: 15px;
}

/* Icons */
.input-group i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #1e3a5f;
  font-size: 18px;
}

/* Focus Effect */
.input-group input:focus,
.input-group textarea:focus {
  border-color: #18c1c1;
  box-shadow: 0 0 0 3px rgba(24,193,193,0.15);
}

/* Button */
.send-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #18c1c1;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 40px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}
/* Circle Icon */
.icon-circle {
  width: 36px;
  height: 36px;
  background: #0ea5a5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover */
.send-btn:hover {
  background: #0ea5a5;
  transform: translateY(-2px);
}

/* Responsive */
@media(max-width: 480px){
  .form-box {
    max-width: 100%;
  }
}
.contactpg{
    padding: 70px 0;
}

.contact-section {
  max-width: 600px;
  padding: 0 30px;
  border-radius: 12px;
  
}

.contact-section h2 {
  color: var(--color3);
  font-size: 28px;
  font-family: var(--urban);
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-section .desc {
  
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Address Cards */
.address-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.address-card {
  background: linear-gradient(135deg, #0f2a4d, #173e6c);
  padding: 18px;
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.address-card h4 {
  margin-bottom: 8px;
  color: #18c1c1;
  font-size: 18px;
}

.address-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* Contact Info */
.contact-info {
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #0f2a4d, #173e6c);
  border-radius: 12px;
  color: #fff;
  font-family: var(--roboto);
}
.contact-info p i{
    font-size: 15px;
    margin-right: 9px;
}
.contact-info p {
  margin: 8px 0;
  font-size: 15px;
}
.contact-info p a{
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
}
.contact-info p a:hover{
    color: var(--color2);
}   
.loc{
    padding: 5px 15px;
    font-family: var(--roboto);
    background: #ffffff;
    color: var(--color3);
    font-weight: 500;
    border-radius: 5px;
    font-size: 15px;
    transition: 0.3s ease;
}
.loc:hover{
    background: var(--color1);
    color: #fff;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;
  animation: floatPulse 2s infinite;
  transition: 0.3s;
}

/* Hover Effect */
.whatsapp-float:hover {
    width: 65px;
    height: 65px;
  transform: scale(1.1);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Pulse Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.whatsapp-float {
  animation: bounce 1.5s infinite;
}
.serdetails{
    padding: 6rem 0;
}
.srvimg {
    text-align: center;
}
.srvimg img{
    margin: 0 auto;
    padding: 10px;
    box-shadow: 0 0 5px #00000035;
    border-radius: 30px;
    transition: 0.5s ease;
}
.srvimg:hover img{
    box-shadow: 0 0 5px #00000045;
    transform: translateY(-10px);
}
.serdetails h2{
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color3);
    margin-top: 25px;
    margin-bottom: 15px;
    font-family: var(--urban);
}
.serdetails h3{
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: var(--urban);
}
.serdetails p{
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    font-family: var(--roboto);
}
.cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #0f4c81, #1a73e8);
    padding: 50px 50px;
    border-radius: 12px;
    color: #fff;
    margin: 40px 0 0 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    flex-wrap: wrap;
}

.cta-content {
    max-width: 70%;
}

.cta-content h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
    margin-top: 0;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 0;
    font-family: var(--roboto);
}

.cta-action {
    margin-top: 15px;
}

.cta-btn {
    background: #fff;
    color: var(--color2);
    font-family: var(--urban);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    background: var(--color2);
    color:white;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-action {
        margin-top: 20px;
    }
}
.accordion-header {
    margin-top: 0!important;
    margin-bottom: 0!important;
}
.accordion-header button{
    font-weight: 600;
    margin-top: 0;
    font-size: 20px!important;
    padding: 30px 20px;
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color:#defdff;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}

.blog-section {
  background: #f8f9fa;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.blog-section h2{
    font-family: var(--urban);
    font-size: 35px;
    color: var(--color3);
    font-weight: 700;
}
.blog-img img {
  width: 100%;

}

.blog-content {
  padding: 20px;
}

.blog-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.blog-meta i {
  margin-right: 5px;
  color: var(--color2);
  font-size: 18px;
}

.blog-content h3 {
  font-size: 19px;
  margin-bottom: 7px;
  font-weight: 700;
  font-family: var(--urban);
}
.blog-content h3 a{
    color: #333333;
}
.blog-content p {
  font-size: 16px;
  color: #555;
  font-family: var(--roboto);
  margin-bottom: 5px;
}

.blog-btn {
  display: inline-block;
  background: var(--color1);
  margin-top: 10px;
  color: #ffffff;
  padding: 7px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.blog-btn i {
  margin-left: 5px;
  font-size: 13px;
}

.blog-btn:hover {
    color: white;
  background: var(--color2);
}
.blogban{
        background: rgba(0, 150, 170, 0.05);
    padding: 30px 0;
}
.bread{
    font-family: var(--urban);
    padding: 20px 0;
    background: #f2faff;
}
.bread p{
    margin-bottom: 0;
    padding-bottom: 0;
    font-weight: 600;
}
.bread p a{
    color: var(--color1);
}
.blogdetail{
    padding: 5rem 0;
}
.blogdetail h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color3);
    margin-top: 25px;
    margin-bottom: 15px;
    font-family: var(--urban);
}

.blogdetail h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: var(--urban);
}
.blogdetail p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
    font-family: var(--roboto);
}
.blogdetail .blog-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}
.blogdetail .blog-meta span{
    margin: 0 15px;
    margin-top: 20px;
}
.reviewpg{
    padding: 70px 0;
}
.reviewpg .ts-card{
    margin-bottom: 30px;
    box-shadow: 0 0 5px #00000040;
    background: #f3f8ff;
    border: none;
}
.reviewimg{
    text-align: center;
    margin: 15px 0;
}
.reviewimg img{
    max-width: 700px;
    box-shadow: 0 0 15px #00000015;
    border-radius: 30px;
    transition: 0.5s ease;

}
.reviewimg img:hover{
    transform: translateY(-10px);
    box-shadow: 0 5px 15px #00000025;
}

.hospital-card{
    width: 100%;
    height: 230px;
    background: #fff;
    border: 1px solid #e5e5e5;
    text-align: center;
    position: relative;
    padding: 70px 20px 25px;
    margin: 50px auto;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-bottom: 5px solid #00bcd4;
    overflow: visible;
}
.hospital-card:after{
    position: absolute;
    content: '';
    height: 5px;
    background: var(--color2);
    left: 0;
    bottom: -5px;
    width: 0;
    transition: 0.3s ease;
}
.hospital-card:hover:after{
     width: 100%;
}
.hospital-logo-box{
    width: 200px;
    height: 100px;
    /*background: #fff;*/
    background: none;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    margin:0 auto;
    /*transform: translateX(-50%) rotate(45deg);*/
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospital-logo-box img{
    width: 200px;
    background: #ffffff;
    /*transform: rotate(-45deg);*/
}

.hospital-content h3{
    font-size: 22px;
    color: #00a8c5;
    font-family: var(--urban);
    margin-bottom: 12px;
    font-weight: 700;
}

.hospital-line{
    width: 80px;
    height: 2px;
    background: var(--color2);
    margin: 0 auto 18px;
    border-radius: 30px;
}

.hospital-content p{
    font-size: 15px;
    line-height: 1.8;
    font-family: var(--roboto);
    color: #333;
    margin: 0;
}

.hospital-content strong{
    color: #111;
}
.affiliationpg{
    padding: 70px 0;
}
.servicepg{
    padding: 70px 0;
    padding-top: 40px;
}
.articlepg{
    padding: 55px 70px;
}
.articlebox img, .articlebox video{
    border: 1px solid #cccccc95;
    padding: 20px;
    margin: 15px 0;
    transition: 0.3s ease;
}
.articlebox p{
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;

    font-family: var(--roboto);
}
.articlebox img:hover{
    border: 1px solid #666;
}
.photopg{
    padding: 50px 70px;
}
.copy p{
    margin-bottom: 0;
}
.gallery1 h2{
    font-size: 35px;
    font-family: var(--urban);
    border-bottom: 1px solid #cccccc95;
    padding-bottom: 10px;
    position: relative;
    margin-top: 40px;
    color: var(--color3);
}
.gallery1 h2:after{
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: var(--color2);
}

#topBtn{
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: var(--color2);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: none;
  transition: 0.3s ease;
  z-index: 999;
}

#topBtn:hover{
  background: var(--color1);
  transform: translateY(-5px);
}
.socialicons h2{
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 0;
    margin-top: 25px;
}
.social-icons {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    align-items: center;
}

.social-icons a {
    
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icons a i{
    font-weight: 300;
}
.social-icons a:hover {
    color: #ffffff90;
    transform: translateY(3px);
}
.navbar .dropdown-toggle::after {
   display: none!important;
}
.accordion-body {
    font-family: var(--roboto);
}
.serdetails ul li{
    
    font-family: var(--roboto);
}