:root {
  --nsr-green: #8cc63f;
  --nsr-green-dark: #5f9421;
  --nsr-green-deep: #315c20;
  --nsr-orange: #fbad3f;
  --nsr-orange-dark: #e78c19;
  --nsr-black: #101820;
  --nsr-text: #354239;
  --nsr-muted: #667365;
  --nsr-border: #e2eadb;
  --nsr-soft: #e4f0dd;
  --nsr-cream: #fff8ef;
  --nsr-white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(16, 24, 32, 0.06);
  --shadow-md: 0 18px 48px rgba(20, 47, 20, 0.1);
  --shadow-lg: 0 28px 72px rgba(20, 47, 20, 0.15);
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --transition: 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--nsr-text);
  background: var(--nsr-white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--nsr-green-dark);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--nsr-green-deep);
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--nsr-black);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: -4rem;
  left: 1rem;
  z-index: 1080;
  padding: 0.65rem 1rem;
  border-radius: 0 0 0.65rem 0.65rem;
  background: var(--nsr-black);
  color: #fff;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

.topbar {
  padding: 0.52rem 0;
  background: var(--nsr-green-deep);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 600;
}

.topbar a {
  color: #fff;
}

.topbar a:hover {
  color: var(--nsr-orange);
}

.topbar .topbar-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.35rem;
}

.topbar i {
  color: var(--nsr-orange);
  margin-right: 0.38rem;
}

.main-nav {
  z-index: 1030;
  padding: 0.85rem 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.97);
  transition: box-shadow var(--transition), padding var(--transition), border-color var(--transition);
}

.main-nav.scrolled {
  padding: 0.55rem 0;
  border-color: var(--nsr-border);
  box-shadow: 0 8px 26px rgba(21, 38, 24, 0.07);
}

.navbar-brand img {
  height: 93px;
  width: auto;
}

.navbar-toggler {
  border: 1px solid var(--nsr-border);
  border-radius: 0.75rem;
  color: var(--nsr-black);
  padding: 0.55rem 0.7rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(140, 198, 63, 0.22);
}

.nav-link {
  position: relative;
  margin: 0 0.12rem;
  padding: 0.75rem 0.73rem !important;
  color: var(--nsr-text);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0.72rem;
  bottom: 0.4rem;
  left: 0.72rem;
  height: 2px;
  background: var(--nsr-green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--nsr-green-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 0.65rem;
}

.btn {
  border-radius: 999px;
  padding: 0.77rem 1.38rem;
  font-size: 0.94rem;
  font-weight: 750;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: var(--nsr-green);
  background: var(--nsr-green);
  color: var(--nsr-black);
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--nsr-green-dark);
  background: var(--nsr-green-dark);
  box-shadow: 0 12px 27px rgba(91, 145, 26, 0.25);
  color: #fff;
}

.btn-accent {
  border: 1px solid var(--nsr-orange);
  background: var(--nsr-orange);
  color: var(--nsr-black);
}

.btn-accent:hover,
.btn-accent:focus {
  border-color: var(--nsr-orange-dark);
  background: var(--nsr-orange-dark);
  color: #fff;
}

.btn-outline-brand {
  border: 1px solid var(--nsr-green);
  background: transparent;
  color: var(--nsr-green-deep);
}

.btn-outline-brand:hover {
  border-color: var(--nsr-green);
  background: var(--nsr-green);
  color: var(--nsr-black);
}

.section-space {
  padding: clamp(4.2rem, 7vw, 3rem) 0;
}

.section-soft {
  background: var(--nsr-soft);
}

.section-cream {
  background: var(--nsr-cream);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  color: var(--nsr-green-dark);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  border-radius: 20px;
  background: var(--nsr-orange);
  content: "";
}

.section-title {
  max-width: 730px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.2vw, 2.85rem);
}

.section-lead {
  max-width: 720px;
  color: var(--nsr-muted);
  font-size: 1.05rem;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #fbfdf8 0%, #f4f9eb 55%, #fff8ee 100%);
}

.hero::before {
  position: absolute;
  top: 15%;
  left: -8rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: rgba(140, 198, 63, 0.12);
  content: "";
  filter: blur(8px);
}

.hero-slide {
  min-height: clamp(570px, calc(100vh - 126px), 680px);
  display: flex;
  align-items: center;
  padding: 3.2rem 0 4.8rem;
}

.hero h1 {
  max-width: 615px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.55rem, 4.9vw, 4.25rem);
}

.hero h1 span,
.page-hero h1 span {
  color: var(--nsr-green-dark);
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 2rem;
  color: var(--nsr-muted);
  font-size: clamp(1rem, 1.6vw, 1.13rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
}

.hero-visual {
  position: relative;
  
}

.hero-visual img {
  width: min(100%, 560px);
  margin-left: auto;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
}

.hero-badge {
  position: absolute;
  bottom: 2.4rem;
  left: 0;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  min-width: 185px;
  padding: 0.82rem 1rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--shadow-md);
  color: var(--nsr-muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  color: var(--nsr-black);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.hero-badge i {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 173, 63, 0.19);
  color: var(--nsr-orange-dark);
  font-size: 1.28rem;
}

.carousel-indicators {
  bottom: 1.4rem;
  /*justify-content: flex-start;*/
  margin-left: max(calc((100% - 1320px) / 2 + 0.75rem), 6%);
}

.carousel-indicators [data-bs-target] {
  width: 32px;
  height: 5px;
  border: 0;
  border-radius: 30px;
  background-color: var(--nsr-green-dark);
}

.stats-panel {
  position: relative;
  z-index: 2;
  margin-top: -2rem;
  border: 1px solid var(--nsr-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.stat {
  padding: 1.75rem 1.35rem;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid var(--nsr-border);
}

.stat-number {
  color: var(--nsr-green-deep);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  margin-top: 0.55rem;
  color: var(--nsr-muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.feature-card {
  height: 100%;
  
  border: 1px solid var(--nsr-border);
  border-radius: var(--radius);
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(140, 198, 63, 0.55);
  box-shadow: var(--shadow-md);
}

.contact-card {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--nsr-border);
  border-radius: var(--radius);
  background: #fff;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(140, 198, 63, 0.55);
  box-shadow: var(--shadow-md);
}

.icon-box {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 1.15rem;
  place-items: center;
  border-radius: 16px;
  background: rgba(251, 173, 63, 0.16);
  color: var(--nsr-orange-dark);
  font-size: 1.55rem;
}

.feature-card h3 {
  font-size: 1.14rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  color: var(--nsr-muted);
  font-size: 1rem;
}

.media-panel {
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--nsr-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.media-panel img {
  width: 100%;
  height: 100%;
  max-height: 530px;
  object-fit: cover;
}

.content-card {
  height: 100%;
  padding: clamp(1.6rem, 4vw, 2.65rem);
  border: 1px solid var(--nsr-border);
  border-radius: var(--radius);
  background: #fff;
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
}

.check-list i {
  margin-top: 0.16rem;
  color: var(--nsr-green-dark);
  font-size: 1.05rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.6rem);
  border-radius: var(--radius-lg);
  background: var(--nsr-green-deep);
  color: rgba(255, 255, 255, 0.82);
}

.cta-panel::after {
  position: absolute;
  right: -4rem;
  bottom: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(140, 198, 63, 0.28);
  content: "";
}

.cta-panel h2 {
  color: #fff;
}

.cta-panel .eyebrow {
  color: #d8eca9;
}

.cta-panel .btn {
  position: relative;
  z-index: 1;
}

.map-wrap {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--nsr-border);
  border-radius: var(--radius);
  background: #e8eee5;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.location-card {
  padding: clamp(1.6rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  background: var(--nsr-soft);
}

.contact-row {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.1rem;
}

.contact-row i {
  flex: 0 0 auto;
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  color: var(--nsr-orange-dark);
  font-size: 1.17rem;
}

.contact-row small {
  display: block;
  color: var(--nsr-muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row span {
  color: var(--nsr-text);
  font-weight: 650;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.7rem, 8vw, 1.5rem) 0;
  background: linear-gradient(118deg, #f3fae8, #fff 50%, #fff6eb);
}

.page-hero::after {
  position: absolute;
  top: -7rem;
  right: -6rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(140, 198, 63, 0.13);
  content: "";
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 3.65rem);
}

.page-hero p {
  max-width: 690px;
  color: var(--nsr-muted);
  font-size: 1.08rem;
}

.breadcrumb {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--nsr-orange);
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding-left: 2.2rem;
}

.timeline::before {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 0.48rem;
  width: 2px;
  background: #dce9cf;
  content: "";
}

.timeline-item {
  position: relative;
  padding: 1.5rem;
  border: 1px solid var(--nsr-border);
  border-radius: 1rem;
  background: #fff;
}

.timeline-item::before {
  position: absolute;
  top: 1.8rem;
  left: -2.25rem;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--nsr-green);
  box-shadow: 0 0 0 1px var(--nsr-green);
  content: "";
}

.timeline-year {
  margin-bottom: 0.3rem;
  color: var(--nsr-orange-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-block {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--nsr-border);
  border-radius: var(--radius);
  background: #fff;
}

.product-head {
  padding: 1.75rem 1.75rem 1.1rem;
}

.product-block .icon-box {
  margin-bottom: 1.25rem;
}

.product-body {
  padding: 0 1.75rem 1.75rem;
}

.product-benefits {
  margin: 1.25rem 0 0;
  padding: 1.15rem 1.25rem;
  border-radius: 0.9rem;
  background: var(--nsr-soft);
}

.product-benefits h4 {
  font-size: 0.94rem;
  letter-spacing: 0;
}

.product-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 255px;
  margin-bottom: 1.2rem;
}

.product-image img {
  width: min(100%, 250px);
  max-height: 250px;
  object-fit: contain;
  margin: 0 auto;
}

.mini-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--nsr-muted);
  font-size: 0.9rem;
}

.mini-list li {
  display: flex;
  gap: 0.55rem;
}

.mini-list li::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--nsr-green);
  content: "";
}

.warning-panel {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-left: 5px solid var(--nsr-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--nsr-cream);
}

.step-card {
  position: relative;
  height: 100%;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.step-number {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  color: rgba(140, 198, 63, 0.18);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.tag {
  display: inline-flex;
  padding: 0.48rem 0.88rem;
  border: 1px solid #d9e9c7;
  border-radius: 999px;
  background: #fff;
  color: var(--nsr-text);
  font-size: 0.88rem;
  font-weight: 650;
}

.form-card {
  padding: clamp(1.4rem, 4vw, 2.55rem);
  border: 1px solid var(--nsr-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.form-label {
  margin-bottom: 0.45rem;
  color: var(--nsr-black);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 50px;
  border: 1px solid #d7e1d0;
  border-radius: 0.72rem;
  padding: 0.72rem 0.92rem;
  color: var(--nsr-text);
}

textarea.form-control {
  min-height: 128px;
  resize: vertical;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--nsr-green);
  box-shadow: 0 0 0 0.21rem rgba(140, 198, 63, 0.18);
}

.form-check-input:checked {
  border-color: var(--nsr-green-dark);
  background-color: var(--nsr-green-dark);
}

.form-note {
  color: var(--nsr-muted);
  font-size: 1rem;
}

.accordion-item {
  margin-bottom: 0.8rem;
  overflow: hidden;
  border: 1px solid var(--nsr-border) !important;
  border-radius: 0.85rem !important;
}

.accordion-button {
  padding: 1.15rem 1.25rem;
  color: var(--nsr-black);
  font-weight: 750;
}

.accordion-button:not(.collapsed) {
  background: var(--nsr-soft);
  color: var(--nsr-green-deep);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(140, 198, 63, 0.18);
}

.site-footer {
  padding: 4rem 0 1.3rem;
  background: #101a14;
  color: rgba(255, 255, 255, 0.7);
}

.footer-logo {
  width: min(100%, 320px);
  margin-bottom: 1.25rem;
  border-radius: 0.35rem;
}

.site-footer h2 {
  margin-bottom: 1.25rem;
  color: #fff;
  font-size: 1.06rem;
  letter-spacing: 0;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: var(--nsr-green);
}

.footer-contact {
  display: grid;
  gap: 0.75rem;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.76);
}

.footer-contact i {
  color: var(--nsr-orange);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.87rem;
}

.floating-whatsapp,
.back-top {
  position: fixed;
  right: 1.25rem;
  z-index: 1020;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(20, 42, 23, 0.2);
  font-size: 1.45rem;
}

.floating-whatsapp {
  bottom: 1.25rem;
  background: #25d366;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.floating-whatsapp.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-whatsapp:hover {
  background: #18ad4e;
  color: #fff;
  transform: translateY(-3px);
}

.back-top {
  right: 1.55rem;
  bottom: 5.35rem;
  width: 45px;
  height: 45px;
  border: 0;
  background: var(--nsr-black);
  color: #fff;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity var(--transition), transform var(--transition);
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top:hover {
  background: var(--nsr-green-deep);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(23px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 80ms !important;
}

.delay-2 {
  transition-delay: 160ms !important;
}

.delay-3 {
  transition-delay: 240ms !important;
}

.thank-you-card {
  max-width: 650px;
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid var(--nsr-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.thank-you-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.4rem;
  place-items: center;
  border-radius: 50%;
  background: var(--nsr-soft);
  color: var(--nsr-green-dark);
  font-size: 2rem;
}

@media (max-width: 1199.98px) {
  .nav-link {
    padding-right: 0.54rem !important;
    padding-left: 0.54rem !important;
    font-size: 0.87rem;
  }

  .nav-link::after {
    right: 0.54rem;
    left: 0.54rem;
  }
}

@media (max-width: 991.98px) {
  .topbar .topbar-message {
    text-align: center;
  }

  .topbar .topbar-links {
    justify-content: center;
    margin-top: 0.4rem;
  }

  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 0.45rem 0 0.85rem;
    border-top: 1px solid var(--nsr-border);
  }

  .nav-link {
    margin: 0;
    padding: 0.72rem 0 !important;
    font-size: 0.96rem;
  }

  .nav-link::after {
    right: auto;
    bottom: 0.48rem;
    left: 0;
    width: 33px;
  }

  .nav-cta {
    display: inline-flex;
    margin: 0.6rem 0 0;
  }

  .hero-slide {
    padding: 3.2rem 0 5rem;
  }

  .hero-visual {
    margin-top: 2.7rem;
    padding-left: 1rem;
  }

  .hero-visual img {
    width: min(100%, 525px);
    margin: 0 auto;
  }

  .hero-badge {
    left: max(calc(50% - 275px), 0);
  }
}

 .gallery-card{
      overflow:hidden;
      border-radius:20px;
      background:#fff;
      box-shadow:0 10px 30px rgba(0,0,0,0.08);
      transition:0.3s;
      height:100%;
    }

    .gallery-card:hover{
      transform:translateY(-5px);
    }

    .gallery-card img{
      width:100%;
      height:260px;
      object-fit:cover;
    }

    .gallery-card-body{
      padding:20px;
    }

    .gallery-title{
      font-size:20px;
      font-weight:700;
      margin-bottom:10px;
    }

    .gallery-section{
      padding:80px 0;
    }
    

@media (max-width: 767.98px) {
  body {
    font-size: 0.96rem;
  }

  .navbar-brand img {
    height: 70px;
    max-width: 240px;
  }

  .topbar {
    display: none;
  }

  .hero-slide {
    min-height: 0;
    padding-top: 2.7rem;
  }

  .hero h1 {
    font-size: clamp(2.16rem, 11vw, 2.65rem);
  }

  .hero-badge {
    bottom: 1rem;
    left: 0.25rem;
  }

  #heroCarousel{
    cursor: grab;
  }

  #heroCarousel:active{
    cursor: grabbing;
  } 

  .carousel-control-prev,
  .carousel-control-next{
      width: 60px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon{

    background-color: rgb(171 199 136);
    border-radius: 50%;
    padding: 20px;

  }

  .stats-panel {
    margin-top: -1rem;
  }

  .stat + .stat {
    border-top: 1px solid var(--nsr-border);
    border-left: 0;
  }

  .carousel-indicators {
    bottom: 1rem;
    margin-left: 7%;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
  }

  .site-footer {
    padding-top: 3.2rem;
  }

  .floating-whatsapp {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .row.g-5 {
    --bs-gutter-x: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Style the list container */
    .custom-icon-list {
      list-style: none; /* Removes the default bullet points */
      padding: 0;
      margin: 0;
    }

 /* Style the list items */
    .custom-icon-list li {
      font-size: 18px; /* Sets font size to 18px */
      line-height: 1.5;
      padding-left: 30px; /* Creates space for the custom icon */
      margin-bottom: 12px; /* Adds spacing between items */
      background-image: url('../images/drop-icon.png'); /* Replace with your image URL */
      background-repeat: no-repeat;
      background-position: left top; /* Aligns icon to the left and centers vertically */
      background-size: 15px auto; /* Restricts the size of your icon image */
    }


.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    
  }

  .navbar .dropdown-menu {
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.navbar .dropdown-item {
    padding: 10px 20px;
}

.navbar .dropdown-item:hover {
    background: #f5f7fa;
    
}

/* Triggers the dropdown menu on desktop hover */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; 
  }
}
