/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= NAVBAR ================= */
.navbar {
  background: #2c3e50;
  /* Dark Navy */
  padding: 0.6rem 0;
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: #f1c40f !important;
  /* Gold */
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

.navbar-brand img {
  height: 40px;
  margin-right: 8px;
  border-radius: 6px;
}

.nav-link {
  color: #ecf0f1 !important;
  /* White */
  font-weight: 500;
  margin-right: 12px;
  position: relative;
  transition: color 0.3s ease-in-out;
  text-decoration: none !important;
  /* underline hatao */
}

.nav-link:hover,
.nav-link.active {
  color: #f8c146 !important;
  /* Gold highlight */
  text-decoration: none !important;
}

.nav-link::after {
  position: absolute;
  width: 0%;
  height: 2px;
  left: 50%;
  bottom: 0;
  background-color: #f8c046bf;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
  text-decoration: none !important;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
  /* White icon */
}

/* Call Now Button */
.btn-custom {
  background-color: #f1c40f;
  /* Gold */
  color: #2c3e50;
  /* Dark text */
  font-weight: 600;
  border-radius: 25px;
  padding: 6px 18px;
  transition: 0.3s;
}

.btn-custom:hover {
  background-color: #d4ac0d;
  /* Dark Gold */
  color: #fff;
}

/* ================= HERO SECTION ================= */
.hero-section {
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-section .carousel,
.hero-section .carousel-item {
  height: 100vh;
}

.hero-section .carousel-item img,
.hero-img {
  height: 100vh;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .45), rgba(0, 0, 0, .55));
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
  max-width: 800px;
}

.hero-section h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.hero-section .lead {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.hero-section p {
  font-size: 1rem;
}

/* Chips, Cards */
.chip {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: .9rem;
  padding: .3rem .6rem;
  border-radius: 999px;
  backdrop-filter: blur(2px);
}

.trust-row .trust-item {
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.lead-card {
  background: rgba(255, 255, 255, .9);
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(6px);
}

@media (max-width: 991px) {
  .lead-card {
    padding: 16px;
  }
}

/* ================= QUICK ACTIONS ================= */
.quick-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1050;
}

.quick-btn {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform .2s;
}

.quick-btn:hover {
  transform: scale(1.1);
}

.quick-btn.call {
  background: #e74c3c;
  color: white;
}

.quick-btn.whatsapp {
  background: #25d366;
  color: white;
}

/* Sticky WhatsApp / Call Button */
.sticky-btn,
.sticky-btn-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 1.8rem;
  padding: 12px;
  border-radius: 50%;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-btn-call {
  background: #f1c40f;
  right: 80px;
}

.sticky-btn:hover,
.sticky-btn-call:hover {
  opacity: 0.85;
}

/* ================= BUTTONS & HOVER ================= */
.btn-gradient {
  background: linear-gradient(45deg, #ff9800, #ff5722);
  color: #fff !important;
  border: none;
  transition: 0.3s ease-in-out;
}

.btn-gradient:hover {
  background: linear-gradient(45deg, #ff5722, #e64a19);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hover-scale {
  transition: transform 0.3s;
}

.hover-scale:hover {
  transform: translateY(-5px);
}

.hover-zoom {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-zoom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pc-hover {
  transition: transform .2s ease, box-shadow .2s ease;
}

.pc-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

/* ================= SERVICE CARDS ================= */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 350px;
  object-fit: cover;
  border-top-left-radius: .75rem;
  border-top-right-radius: .75rem;
}

/* ================= PRODUCT CARD ================= */
.product-card img {
  height: 220px;
  object-fit: cover;
}

.product-card:hover img {
  transform: scale(1.03);
  transition: .3s;
}

.cursor-pointer {
  cursor: pointer;
}

.table td,
.table th {
  vertical-align: middle;
}

/* ================= IMAGE ZOOM ================= */
.zoom-wrap {
  position: relative;
  overflow: hidden;
  border-radius: .5rem;
}

.zoom-wrap .zoom-img {
  width: 100%;
  display: block;
  transition: transform .25s ease, transform-origin .1s ease;
  will-change: transform;
  cursor: zoom-in;
}

.zoom-wrap:hover .zoom-img {
  transform: scale(2);
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.image-wrapper img,
.zoom-img {
  width: 100%;
  transition: transform 0.3s ease, transform-origin 0.3s ease;
}

.image-wrapper:hover .zoom-img {
  transform: scale(2);
  cursor: zoom-in;
}

/* ================= FOOTER ================= */
.footer {
  background-color: #2b2d42;
  color: #edf2f4;
  padding: 50px 0 20px;
  width: 100%;
  margin-top: 50px;
}

/* Footer Fix */
.footer {
  margin: 0;
  padding-bottom: 0;
}
.footer .copyright {
  margin-bottom: 0;
  padding-bottom: 10px;
}

/* Mobile */
@media (max-width: 767px) {

  .footer .footer-logo,
  .footer .footer-title,
  .footer .contact-info,
  .footer .footer-links {
    text-align: center;
  }

  .footer .social-icons {
    justify-content: center;
  }

  .footer .d-flex.flex-wrap {
    justify-content: center;
  }
}

.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #c89b3c;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
}

.contact-info i {
  margin-right: 10px;
  color: #c89b3c;
  margin-top: 4px;
}

.service-areas span {
  background: rgba(141, 153, 174, 0.2);
  padding: 5px 12px;
  border-radius: 20px;
  margin: 0 6px 6px 0;
  font-size: 0.85rem;
  color: #edf2f4;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #3a3e5b;
  color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #c89b3c;
  transform: translateY(-4px);
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-logo span {
  color: #ffc107;
}

.btn-appointment {
  background: #8d5f2a;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.btn-appointment:hover {
  background: #c89b3c;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.copyright {
  background-color: #1d1f2e;
  padding: 15px 0;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #adb5bd;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  background: #f9fbfd;
}

.contact-section h2,
.contact-section h3,
.contact-section h5 {
  font-family: 'Poppins', sans-serif;
}

.contact-section .card {
  transition: transform 0.3s ease-in-out;
}

.contact-section .card:hover {
  transform: translateY(-5px);
}

.contact-section .form-control {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ddd;
}

.contact-section .btn {
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-section .btn:hover {
  background: #0056b3;
}

/* ================= TESTIMONIALS ================= */
#testimonials .swiper {
  padding-bottom: 50px;
}

#testimonials .swiper-pagination {
  bottom: 10px !important;
  position: absolute;
  text-align: center;
}

#testimonials .swiper-pagination-bullet {
  background: #007bff;
  opacity: 0.7;
}

#testimonials .swiper-pagination-bullet-active {
  background: #007bff;
  opacity: 1;
}

.testimonial-text {
  font-style: italic;
  color: #8d99ae;
  border-left: 3px solid #8d5f2a;
  padding-left: 15px;
}

.client-name {
  color: #c89b3c;
  font-weight: 600;
}

/* ================= MODAL ================= */
.modal-premium {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.modal-header {
  background: linear-gradient(45deg, #ff9800, #ff5722);
  color: #fff;
  border-bottom: none;
}

.modal-header .modal-title {
  font-size: 1.25rem;
}

.modal-img {
  border-radius: 10px;
  max-height: 350px;
  object-fit: cover;
}

.modal-body {
  padding: 1.5rem;
}

.custom-close {
  filter: invert(1);
  opacity: 0.9;
}

.custom-close:hover {
  opacity: 1;
}

@media (max-width: 576px) {
  .modal-dialog {
    margin: 0.5rem;
    max-width: 100%;
  }

  .modal-img {
    max-height: 220px;
  }
}

/* ================= UTILITIES ================= */
.rel {
  text-align: center;
  background-color: #2c3e50;
  color: aliceblue;
  margin-top: 10px;
}

.rrs {
  margin-top: 30px;
}

.pp {
  height: 280px;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 18px;
}

.btn {
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.rating .bi-star-fill,
.rating .bi-star-half {
  color: #f5b50a;
}

.rating .bi-star {
  color: #d8d8d8;
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  footer .row {
    text-align: center;
  }

  footer .social-icons {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
  }
}

@media (max-width: 576px) {

  .btn-custom,
  .btn-outline-dark {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .gallery-item {
    flex: 0 0 48%;
    max-width: 48%;
  }
}

@media (max-width: 575px) {
  .gallery-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* About section heading */
#about h2 {
  font-size: 1.8rem;
}

@media (min-width: 992px) {
  #about h2 {
    font-size: 2.2rem;
  }
}