:root {
  --primary: #009688;
  --primary-dark: #00796b;
  --accent: #25d366;
  --ink: #333333;
  --muted: #677078;
  --light: #f5fbfa;
  --line: #dcebe8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 74, 69, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding: 92px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f8fffd 0%, #ffffff 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(0, 150, 136, 0.1);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-title h2 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 800;
  color: #173232;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.btn-brand,
.btn-outline-brand,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-brand {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #00bfa5);
  box-shadow: 0 12px 28px rgba(0, 150, 136, 0.28);
}

.btn-outline-brand {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 150, 136, 0.25);
}

.btn-whatsapp {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.25);
}

.btn-brand:hover,
.btn-outline-brand:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 74, 69, 0.18);
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 68px;
  height: 68px;
  border: 6px solid #d8f2ef;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.topbar {
  color: #fff;
  background: #173232;
  font-size: 0.88rem;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.topbar-list,
.social-list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar i {
  color: #7fe5d9;
}

.navbar {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 150, 136, 0.12);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 10px 28px rgba(0, 64, 58, 0.1);
}

.navbar-brand img {
  width: 210px;
  max-height: 74px;
}

.navbar-nav {
  gap: 4px;
}

.nav-link {
  color: #1e3030;
  font-weight: 700;
  padding: 10px 14px !important;
  border-radius: 999px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-dark);
  background: rgba(0, 150, 136, 0.09);
}

.hero-slide {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 45, 47, 0.88), rgba(5, 45, 47, 0.58), rgba(5, 45, 47, 0.24));
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-one {
  background-image: url("https://images.pexels.com/photos/9408640/pexels-photo-9408640.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.hero-two {
  background-image: url("https://images.pexels.com/photos/8533040/pexels-photo-8533040.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.hero-three {
  background-image: url("https://images.pexels.com/photos/6627667/pexels-photo-6627667.jpeg?auto=compress&cs=tinysrgb&w=1800");
}

.hero-content {
  max-width: 780px;
}

.hero-content h1,
.hero-content h2 {
  font-size: clamp(2.45rem, 6vw, 5.3rem);
  line-height: 1.05;
  margin: 18px 0;
  font-weight: 900;
}

.hero-content p {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  line-height: 1.8;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

.feature-card,
.service-card,
.package-card,
.blog-card,
.test-card,
.value-card,
.contact-panel,
.doctor-card,
.faq-wrap {
  height: 100%;
  border: 1px solid rgba(0, 150, 136, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.feature-card,
.value-card {
  padding: 28px;
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #00bfa5);
  border-radius: 8px;
  box-shadow: 0 14px 24px rgba(0, 150, 136, 0.22);
  font-size: 1.35rem;
}

.service-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.test-card:hover,
.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 52px rgba(0, 74, 69, 0.18);
}

.service-img,
.test-img,
.blog-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.service-body,
.test-body,
.blog-body {
  padding: 26px;
}

.service-body h3,
.test-body h3,
.blog-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #173232;
}

.service-body p,
.test-body p,
.blog-body p,
.value-card p,
.feature-card p {
  color: var(--muted);
  line-height: 1.75;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.package-card {
  position: relative;
  padding: 34px;
  overflow: hidden;
}

.package-card.featured {
  color: #fff;
  background: linear-gradient(135deg, #00796b, #00a896);
}

.package-card .price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--primary-dark);
}

.package-card.featured .price,
.package-card.featured p,
.package-card.featured li {
  color: #fff;
}

.check-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
}

.check-list i {
  margin-top: 4px;
  color: var(--primary);
}

.package-card.featured .check-list i {
  color: #c8fff7;
}

.stats-section {
  color: #fff;
  background: linear-gradient(rgba(0, 66, 60, 0.84), rgba(0, 66, 60, 0.84)), url("https://images.pexels.com/photos/8442369/pexels-photo-8442369.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover fixed;
}

.stat-item {
  text-align: center;
}

.stat-item .number {
  font-size: clamp(2.3rem, 5vw, 4rem);
  font-weight: 900;
}

.timeline {
  position: relative;
}

.step-card {
  position: relative;
  height: 100%;
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(0, 74, 69, 0.08);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-weight: 800;
}

.doctor-card {
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #eefaf8 100%);
}

.doctor-photo {
  min-height: 420px;
  background: url("https://images.pexels.com/photos/9574556/pexels-photo-9574556.jpeg?auto=compress&cs=tinysrgb&w=1000") center/cover;
}

.doctor-copy {
  padding: 46px;
}

.testimonial-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.stars {
  color: #f7b731;
}

.accordion-item {
  border: 1px solid var(--line) !important;
  border-radius: 8px !important;
  overflow: hidden;
  margin-bottom: 12px;
}

.accordion-button {
  font-weight: 800;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-dark);
  background: #ecfbf8;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #00796b, #00bfa5);
  border-radius: 8px;
  padding: 52px;
}

.contact-panel {
  padding: 34px;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.map-frame {
  width: 100%;
  min-height: 430px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-control,
.form-select {
  min-height: 50px;
  border: 1px solid #d7e6e3;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 150, 136, 0.14);
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(90deg, rgba(4, 47, 48, 0.88), rgba(4, 47, 48, 0.5)), url("https://images.pexels.com/photos/8851362/pexels-photo-8851362.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 900;
}

.contact-hero {
  background: linear-gradient(90deg, rgba(4, 47, 48, 0.88), rgba(4, 47, 48, 0.5)), url("https://images.pexels.com/photos/8851362/pexels-photo-8851362.jpeg?auto=compress&cs=tinysrgb&w=1800") center/cover;
}

.breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.75);
}

.breadcrumb a,
.breadcrumb-item.active {
  color: #fff;
}

.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.certificate {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.footer {
  color: rgba(255, 255, 255, 0.82);
  background: #173232;
  padding-top: 72px;
}

.footer h3,
.footer h4 {
  color: #fff;
  font-weight: 800;
}

.footer-logo {
  width: 230px;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
}

.footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.footer a:hover {
  color: #7fe5d9;
}

.footer-bottom {
  margin-top: 48px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-whatsapp,
.scroll-top {
  position: fixed;
  z-index: 1000;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.floating-whatsapp {
  right: 22px;
  bottom: 92px;
  background: var(--accent);
  font-size: 1.55rem;
}

.scroll-top {
  right: 22px;
  bottom: 28px;
  border: 0;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1199px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .topbar .container,
  .topbar-list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .navbar-brand img {
    width: 178px;
  }

  .hero-slide {
    min-height: 650px;
  }

  .navbar-collapse {
    padding: 16px 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 68px 0;
  }

  .topbar {
    display: none;
  }

  .hero-slide {
    min-height: 610px;
  }

  .hero-badges {
    display: none;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner,
  .doctor-copy,
  .contact-panel {
    padding: 28px;
  }

  .doctor-photo {
    min-height: 320px;
  }

  .floating-whatsapp,
  .scroll-top {
    width: 48px;
    height: 48px;
    right: 16px;
  }
}

/* Client update: actual logo, 24 hour services and offer page */
.navbar-brand img {
  width: 92px;
  max-height: 92px;
  object-fit: contain;
  border-radius: 50%;
}
.footer-logo {
  width: 128px;
  max-height: 128px;
  object-fit: contain;
  border-radius: 50%;
}
.services-hero {
  background: linear-gradient(90deg, rgba(4, 47, 48, 0.88), rgba(4, 47, 48, 0.52)), url("../images/health-camp-rickshaw-services.jpg") center/cover;
}
.offer-card {
  padding: 34px;
  border: 1px solid rgba(0, 150, 136, 0.14);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.offer-card h3 {
  font-weight: 900;
  color: #173232;
  margin: 18px 0 14px;
}
.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #00bfa5);
  font-weight: 800;
}
.offer-image-card {
  height: 100%;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.offer-image-card img {
  width: 100%;
  border-radius: 12px;
  border: 6px solid #fff;
}
.mini-service {
  height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 74, 69, 0.08);
}
.mini-service i {
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.mini-service h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.mini-service p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.gallery-img-large {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
@media (max-width: 991px) {
  .navbar-brand img { width: 78px; max-height: 78px; }
}


/* Gallery page and improved header logo */
.navbar-brand { display:flex; align-items:center; }
.navbar-brand img {
  width: 132px !important;
  max-height: 82px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}
.navbar.scrolled .navbar-brand img { max-height: 72px !important; }
.gallery-hero {
  background: linear-gradient(90deg, rgba(4, 47, 48, 0.9), rgba(4, 47, 48, 0.58)), url("../images/gallery/gallery-01.jpg") center/cover;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 150, 136, 0.14);
  box-shadow: 0 14px 34px rgba(0, 74, 69, 0.12);
  cursor: pointer;
}
.gallery-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-card .gallery-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: #fff;
  border-radius: 999px;
  background: rgba(4, 47, 48, 0.78);
  backdrop-filter: blur(8px);
  font-weight: 700;
}
.gallery-modal .modal-content { background: transparent; border: 0; }
.gallery-modal img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
}
.gallery-modal .btn-close {
  position: absolute;
  right: 10px;
  top: -42px;
  filter: invert(1);
  opacity: 1;
}
@media (max-width: 991px) {
  .navbar-brand img { width: 112px !important; max-height: 72px !important; }
  .gallery-card img { height: 220px; }
}

/* Final header logo fit: compact cropped logo without squeezing */
.navbar-brand img {
  width: auto !important;
  height: 76px !important;
  max-height: 76px !important;
  object-fit: contain !important;
}
.navbar.scrolled .navbar-brand img {
  height: 66px !important;
  max-height: 66px !important;
}
@media (max-width: 991px) {
  .navbar-brand img {
    height: 64px !important;
    max-height: 64px !important;
    width: auto !important;
  }
}


/* Final client corrections: header logo fit + uniform gallery lightbox */
.navbar-brand {
  display: inline-flex !important;
  align-items: center !important;
  padding: 4px 0 !important;
}
.navbar-brand img {
  width: 64px !important;
  height: 64px !important;
  max-width: 64px !important;
  max-height: 64px !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  background: #fff !important;
  padding: 2px !important;
  box-shadow: 0 6px 18px rgba(0, 74, 69, 0.10) !important;
}
.navbar.scrolled .navbar-brand img {
  width: 58px !important;
  height: 58px !important;
  max-width: 58px !important;
  max-height: 58px !important;
}
.gallery-card {
  display: block !important;
  position: relative !important;
  overflow: hidden !important;
  height: 270px !important;
  border-radius: 18px !important;
  background: #f7fbfb !important;
  border: 1px solid rgba(0, 150, 136, 0.14) !important;
  box-shadow: 0 14px 34px rgba(0, 74, 69, 0.12) !important;
  text-decoration: none !important;
}
.gallery-card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transition: transform 0.35s ease !important;
}
.gallery-card:hover img { transform: scale(1.04) !important; }
.custom-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0,0,0,0.86);
}
.custom-lightbox.show { display: flex; }
.custom-lightbox img {
  max-width: 96vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.lightbox-close {
  position: absolute;
  right: 24px;
  top: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,0.18);
  font-size: 34px;
  line-height: 40px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .navbar-brand img { width: 56px !important; height: 56px !important; max-width: 56px !important; max-height: 56px !important; }
  .gallery-card { height: 230px !important; }
}


/* FINAL FIX: professional header logo and equal gallery boxes */
.navbar {
  min-height: 92px !important;
}
.navbar .container {
  align-items: center !important;
}
.navbar-brand {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin-right: 24px !important;
  flex: 0 0 auto !important;
}
.navbar-brand img {
  width: 92px !important;
  height: 78px !important;
  max-width: 92px !important;
  max-height: 78px !important;
  object-fit: contain !important;
  object-position: center !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  display: block !important;
}
.navbar.scrolled .navbar-brand img {
  width: 86px !important;
  height: 72px !important;
  max-width: 86px !important;
  max-height: 72px !important;
}
.gallery-grid-final {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}
.gallery-item-final {
  display: block !important;
  width: 100% !important;
  height: 260px !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 150, 136, 0.16) !important;
  box-shadow: 0 14px 34px rgba(0, 74, 69, 0.12) !important;
  text-decoration: none !important;
}
.gallery-item-final img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
}
.gallery-item-final:hover img { transform: scale(1.04); transition: transform .35s ease; }
.gallery-item-final .gallery-caption {
  position: absolute !important;
  left: 14px !important;
  right: 14px !important;
  bottom: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: rgba(4, 47, 48, 0.82) !important;
  font-weight: 700 !important;
}
.custom-lightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 999999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
  background: rgba(0, 0, 0, 0.88) !important;
}
.custom-lightbox.show { display: flex !important; }
.custom-lightbox img {
  max-width: 96vw !important;
  max-height: 90vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: 0 18px 60px rgba(0,0,0,.45) !important;
}
.lightbox-close {
  position: absolute !important;
  top: 18px !important;
  right: 24px !important;
  z-index: 2 !important;
  width: 46px !important;
  height: 46px !important;
  border: 0 !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: rgba(255,255,255,0.18) !important;
  font-size: 34px !important;
  line-height: 42px !important;
  cursor: pointer !important;
}
@media (max-width: 991px) {
  .navbar { min-height: 78px !important; }
  .navbar-brand img { width: 78px !important; height: 66px !important; max-width: 78px !important; max-height: 66px !important; }
  .gallery-grid-final { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 18px !important; }
  .gallery-item-final { height: 220px !important; }
}
@media (max-width: 575px) {
  .gallery-grid-final { grid-template-columns: 1fr !important; }
  .gallery-item-final { height: 230px !important; }
}

/* Client final correction: logo must keep original ratio, never stretch */
.navbar { min-height: 92px !important; }
.navbar-brand { display:flex !important; align-items:center !important; padding:0 !important; margin-right:24px !important; flex:0 0 auto !important; }
.navbar-brand img { height:82px !important; width:auto !important; max-width:none !important; max-height:82px !important; object-fit:contain !important; object-position:center !important; display:block !important; border-radius:0 !important; background:transparent !important; box-shadow:none !important; }
.navbar.scrolled .navbar-brand img { height:74px !important; width:auto !important; max-height:74px !important; }
@media (max-width:991px){ .navbar{min-height:82px !important;} .navbar-brand img{height:70px !important; width:auto !important; max-height:70px !important;} }
@media (max-width:575px){ .navbar-brand img{height:62px !important; width:auto !important; max-height:62px !important;} }

/* Client final correction: logo must keep original ratio, never stretch */
.navbar { min-height: 92px !important; }
.navbar-brand { display:flex !important; align-items:center !important; padding:0 !important; margin-right:24px !important; flex:0 0 auto !important; }
.navbar-brand img { height:82px !important; width:auto !important; max-width:none !important; max-height:82px !important; object-fit:contain !important; object-position:center !important; display:block !important; border-radius:0 !important; background:transparent !important; box-shadow:none !important; }
.navbar.scrolled .navbar-brand img { height:74px !important; width:auto !important; max-height:74px !important; }
@media (max-width:991px){ .navbar{min-height:82px !important;} .navbar-brand img{height:70px !important; width:auto !important; max-height:70px !important;} }
@media (max-width:575px){ .navbar-brand img{height:62px !important; width:auto !important; max-height:62px !important;} }
