/* ----------------------------
   Global Styles
---------------------------- */
body {
  font-family: "Poppins", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
}
h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}
p {
  line-height: 1.9;
}
.lead {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9 !important;
  margin: 20px 0 25px 0;
}
.section {
  padding: 4rem 2rem;
}

/* ----------------------------
   Buttons
---------------------------- */
.btn {
  padding: 13px 24px;
  border-radius: 5px;
}
.btn-one {
  background: #0dcaf0;
  color: #fff;
}
.btn-one:hover {
  background: #231f53;
  color: #fff;
}
.btn-two {
  background: #231f53;
  color: #fff;
}
.btn-two:hover {
  background: #0dcaf0;
  color: #fff;
}

/* ----------------------------
   Navbar
---------------------------- */
.nav-link {
  font-size: 16px;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans';
  color: #000;
  padding: 0 24px !important;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #0dcaf0;
}

/* ----------------------------
   Offcanvas
---------------------------- */
.offcanvas-header {
  background: #0dcaf0;
  color: #fff;
  padding: 13px 17px;
}
.offcanvas-title {
  color: #fff;
}

/* ----------------------------
   Top Bar
---------------------------- */
.top-bar {
  background-color: #231f53;
  color: #fff;
  padding: 10px 0;
}
.top-bar .divider {
  border-left: 1px solid #666;
  height: 20px;
  margin: 0 10px;
}
.top-bar .social-icons a {
  color: #fff;
  font-size: 1.4rem;
  margin-left: 15px;
  transition: color 0.3s ease;
}
.top-bar .social-icons a:hover {
  color: #0dcaf0;
}

/* ----------------------------
   Hero Banner
---------------------------- */
.hero {
  background: url('../images/Banner.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 180px 0;
  text-align: left;
}
.banner-contant {
  width: 55%;
}
.banner-contant h1 {
  font-size: 64px;
  font-weight: 900;
}

/* ----------------------------
   Services Section
---------------------------- */
.service {
  background: url('../images/Service.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 180px 0;
  text-align: left;
}

/* ----------------------------
   Footer
---------------------------- */
.footer {
  background: #231f53;
  color: #fff;
  text-align: left;
}
.footer-menu li {
  margin: 0 0 10px 0;
}
.footer-menu li a {
  text-decoration: none;
  color: #fff;
}
.social-icons a i {
  color: #fff;
  font-size: 24px;
  margin: 0px 18px 0 0;
}
.compyright {
  background: #0dcaf0;
}

/* ----------------------------
   Newsletter / Email
---------------------------- */
.email {
  border-color: #fff !important;
  color: #fff !important;
}
.email::placeholder {
  color: #fff;
  opacity: 1;
}

/* ----------------------------
   Cards
---------------------------- */
.card-body {
  text-align: left;
}

/* ----------------------------
   Logo Carousel
---------------------------- */
.logo-carousel {
  position: relative;
  overflow: hidden;
}
.logo-track {
  display: flex;
  transition: transform 0.5s ease;
}
.logo-slide {
  flex: 0 0 20%; /* 5 logos in one row */
  text-align: center;
  padding: 10px;
}
.logo-slide img {
  max-height: 60px;
  width: auto;
}
.control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #231f53;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.control.prev {
  left: 10px;
}
.control.next {
  right: 10px;
}

/* ----------------------------
   Appointment Section
---------------------------- */
.appointment {
  background: linear-gradient(180deg, rgb(100 197 227 / 31%) 0%, rgba(255, 255, 255, 1) 81%);
}

/* ----------------------------
   Forms
---------------------------- */
.form-control,
.form-select {
  background-color: transparent;
  padding: 11px;
  border: 1px solid #00000024;
}
.form-control:focus,
.form-select:focus {
  color: var(--bs-body-color);
  background-color: transparent;
  border-color: #00000024;
  outline: 0;
  box-shadow: none;
}



.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 99999; /* बहुत high रखा है ताकि हर जगह दिखे */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
}

/* Tablet */
@media (max-width: 1024px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    right: 15px;
    bottom: 15px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    right: 12px;
    bottom: 4%;
  }
}



.thank-you {
  position: relative;
  background: url('../images/thank-you.jpg') no-repeat center center/cover;
  color: #fff;
  height: 100vh;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* left alignment ke liye */
  padding: 40px;
  z-index: 1; /* text upar dikhai de */
}

.thank-you::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay (0.5 = 50% opacity) */
  z-index: -1; /* background ke upar but text ke neeche */
}


.thank-you h1 {
    font-size: 74px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 20px;
}

 .form-popup {
    margin: 0  auto;
    background: #000;
    border: 10px solid #fff;
    color: #fff;
    border-radius: 0px;
    width: 70%;
} 
  .form-popup label {
    color: #fff;
  }

  .form-popup .form-control,.form-select {
    padding: 10px;
    border-radius: 0;
    background: #FFF;
}

.form-popup .sumbit {
    background: #0dcaf0 !important;
    padding: 12px;
    border-radius: 0px;
    color: #fff;
    text-transform: uppercase;
}

.form-control:focus, .form-select:focus {
    color: #000;
    background-color: #fff;
    border-color: #00000024;
    outline: 0;
    box-shadow: none;
}

/* ----------------------------
   Responsive (Mobile & Tablet)
---------------------------- */
@media (max-width: 767px) {
  h2 {
    font-size: 32px;
  }
  .btn {
    padding: 13px 16px;
    border-radius: 5px;
    font-size: 14px;
  }
  .top-bar .container-fluid {
    flex-direction: column;
    text-align: center;
  }
  .top-bar .info-item {
    justify-content: center;
    width: 100%;
    padding: 5px 0;
  }
  .top-bar .divider {
    display: none;
  }
  .top-bar .social-icons {
    margin-top: 10px;
  }
  .top-bar .social-icons a {
    margin: 0 8px;
  }
  .navbar-toggler {
    background: #231f5312;
    border-radius: 0;
    padding: 6px 10px;
  }
  .nav-link {
    padding: 13px 0 !important;
  }
  .banner-contant {
    width: 100%;
  }
  .banner-contant h1 {
    font-size: 38px;
    font-weight: 900;
  }
  .hero {
    background: url('../images/Banner.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 50px 20px;
    text-align: left;
  }
  .section {
    padding: 2rem 1.3rem;
  }

  .thank-you h1 {
    font-size: 48px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 20px;
}
}


  