:root {
  --main-color: #ff7800;
}
body {
  overflow-x: hidden;
}
/* TOPBAR */
.topbar {
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
}

html, body {
  overflow-x: clip;
}
html, body {
  overflow-x: hidden;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
}

/* NAVBAR */
.navbar {
  background: #fff;
}

.navbar-brand img {

  width: auto;
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px;
  }
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
  margin: 0 10px;
  position: relative;
}

/* FIXED UNDERLINE (NO DOT ISSUE) */
.nav-link::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
  opacity: 0;
}

.nav-link:hover::after {
  width: 100%;
  opacity: 1;
}

/* DROPDOWN */
.dropdown-menu {
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dropdown-item {
  padding: 10px 15px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: var(--main-color);
  color: #fff;
}

/* HOVER DROPDOWN */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* BUTTON */
.btn-appoint {
  background: var(--main-color);
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  transition: 0.3s;
}

.btn-appoint:hover {
  background: #e56700;
}

/* RIGHT ICON */
.menu-icon {
  font-size: 18px;
  color: var(--main-color);
}

.eye-review-section {
    padding: 70px 0;
    background: #ff7700;
    color: #fff;
    overflow: hidden;
}

.eye-review-section .section-tag {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ffe5d0;
    margin-bottom: 10px;
    display: inline-block;
}

.eye-review-section .section-title {
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.eye-review-section .section-desc {
    opacity: 0.95;
    max-width: 420px;
}

/* Cards */
.review-card {
    background: #fff;
    color: #333;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.review-no {
    font-size: 22px;
    font-weight: bold;
    color: #ff7700;
    margin-bottom: 10px;
}

/* IMAGE FIX */
.service-img{
  height:200px;
  object-fit:cover;
}

/* CARD */
.service-card{
  position:relative;
  overflow:hidden;
  transition:0.3s;
}

/* 🔴 IMPORTANT: fill sirf body me */
.service-card .card-body{
  position:relative;
  z-index:1;
  overflow:hidden;
}

/* HOVER FILL ONLY IN BODY */
.service-card .card-body::before{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:0;
  background:#ff7700;
  transition:0.3s;
  z-index:-1;
}

.service-card:hover .card-body::before{
  height:100%;
}

/* TEXT COLOR */
.service-card:hover h6,
.service-card:hover p{
  color:#fff;
}

/* HOVER LIFT */
.service-card:hover{
  transform:translateY(-6px);
}
/* =========================
   MOBILE RESPONSIVE FIX
   Paste at very bottom
========================= */
@media (max-width: 767px) {

  html, body {
    width: 100%;
    overflow-x: hidden !important;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Topbar mobile */
  .topbar {
    font-size: 12px;
    text-align: center;
  }

  .topbar .container {
    display: block !important;
  }

  .topbar .container > div {
    width: 100%;
    margin-bottom: 5px;
  }

  .topbar a,
  .topbar span {
    display: inline-block;
    margin: 2px 5px;
    line-height: 1.5;
  }

  .topbar .text-end {
    text-align: center !important;
  }

  /* Navbar mobile */
  .navbar-brand img {
    height: 55px !important;
    max-width: 170px;
    object-fit: contain;
  }

  .navbar-toggler {
    padding: 6px 8px;
  }

  .navbar-collapse {
    background: #fff;
    margin-top: 10px;
    padding: 12px 15px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.10);
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .nav-link {
    font-size: 16px !important;
    padding: 10px 0 !important;
    margin: 0 !important;
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-menu {
    border: 0;
    box-shadow: none;
    padding-left: 12px;
  }

  .btn-appoint {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }

  /* Home slider mobile */
  .banner-slide {
    overflow: hidden;
  }

  .banner-slide img {
    height: 360px !important;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .banner-content {
    left: 15px !important;
    right: 15px !important;
    top: 52% !important;
    max-width: 100% !important;
    transform: translateY(-50%) !important;
  }

  .banner-content::before {
    display: none !important;
  }

  .banner-tag {
    font-size: 12px !important;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }

  .banner-content h1 {
    font-size: 23px !important;
    line-height: 1.25 !important;
    margin-bottom: 10px;
  }

  .banner-content p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    max-width: 95%;
  }

  .banner-btns {
    display: none !important;
  }

  .owl-nav {
    display: none !important;
  }

  .owl-dots {
    margin-top: 8px;
  }

  /* Section spacing */
  section,
  .container.py-5 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  h2 {
    font-size: 25px !important;
    line-height: 1.3 !important;
  }

  h3 {
    font-size: 23px !important;
    line-height: 1.3 !important;
  }

  p {
    font-size: 14px;
  }

  /* About image slider */
  .about-slider img {
    height: 330px !important;
    object-fit: cover !important;
    object-position: center top;
  }

  /* About feature list */
  .row.mt-3 .col-6 {
    width: 100%;
  }

  /* Why choose us */
  .eye-review-section {
    padding: 40px 0 !important;
  }

  .eye-review-section .section-desc {
    max-width: 100%;
  }

  .review-card {
    padding: 22px !important;
  }

  /* Services */
  .service-img {
    height: 220px !important;
    object-fit: cover;
  }

  .service-card {
    border-radius: 18px;
  }

  /* Blogs */
  .blogs-slider .card-img-top {
    height: 200px !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  /* Contact and appointment form */
  #appointmentForm input,
  #appointmentForm select,
  #appointmentForm textarea {
    font-size: 14px;
    min-height: 46px;
  }

  #appointmentForm textarea {
    min-height: 95px;
  }

  /* Maps */
  iframe {
    height: 300px !important;
  }

  /* Footer */
  footer {
    text-align: left;
  }

  footer img[alt="Logo"] {
    width: 120px !important;
  }

  footer .row > div {
    margin-bottom: 18px;
  }

  footer ul li,
  footer p,
  footer div {
    font-size: 14px;
  }
}

/* Very small phone */
@media (max-width: 390px) {
  .banner-slide img {
    height: 390px !important;
  }

  .banner-content h1 {
    font-size: 21px !important;
  }

  .banner-content p {
    font-size: 13px !important;
  }

  .navbar-brand img {
    height: 50px !important;
  }
}
/* FINAL MOBILE SLIDER IMAGE FIX */
@media (max-width: 767px) {
  .banner-slide {
    height: 430px !important;
    background: #fff !important;
    overflow: hidden !important;
  }

  .banner-slide img {
    width: 100% !important;
    height: 430px !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #fff !important;
  }

  .banner-content {
    top: 52% !important;
    left: 22px !important;
    right: 22px !important;
  }

@media (max-width: 767px) {
  .floating-whatsapp {
    right: 15px !important;
    bottom: 95px !important;
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
  }

}