@font-face {
  font-family: "Lexend";
  src: url("fonts/Lexend (1)/Lexend-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/Open_Sans/OpenSans-VariableFont_wdth,wght.ttf")
    format("truetype");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/Open_Sans/OpenSans-Italic-VariableFont_wdth,wght.ttf")
    format("truetype");
  font-weight: 300 800;
  font-style: italic;
  font-display: swap;
}

:root {
  --navy: #0f2238;
  --orange: #b55418;
  --orange2: #d26a22;
  --bg: #f6f7f9;
  --card: rgba(255, 255, 255, 0.86);
  --text: #13253a;
  --muted: rgba(15, 34, 56, 0.78);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  --shadowSoft: 0 10px 28px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --max: 1160px;
}

html,
body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.35;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.modal-title,
.section-title,
.page-title {
  font-family: "Lexend", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.95;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Sticky top bar */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(15, 34, 56, 0.1);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 14px;
  font-weight: 700;
  color: var(--navy);
}

.nav-links a {
  padding: 10px 10px;
  border-radius: 12px;
}

.nav-links a:hover {
  background: rgba(15, 34, 56, 0.06);
}

/* Dropdown styles */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: var(--shadowSoft);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  padding: 10px 0;
  list-style: none;
  margin: 0;
  border: 1px solid rgba(15, 34, 56, 0.08);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display:block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  font-size: 14px;
}

.dropdown-menu a:hover {
  background: rgba(15, 34, 56, 0.04) !important;
  color: var(--orange) !important;
}

/* HERO background */
.hero-sky {
  background: url("assets/hero-sky-lightning-v2.webp") center/cover no-repeat;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 64px 0 44px;
  position: relative;
}

/* Readability overlay */
.hero-sky::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(10, 24, 40, 0.82) 0%,
      rgba(10, 24, 40, 0.4) 55%,
      rgba(10, 24, 40, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(10, 24, 40, 0.6) 0%,
      rgba(10, 24, 40, 0.15) 55%,
      rgba(246, 247, 249, 0) 100%
    );
}

.hero-sky > .container {
  position: relative;
  z-index: 1;
}

.hero-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  padding: 34px 34px 28px;
  align-items: center;
}

.h1 {
  margin: 0;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.sub {
  margin: 10px 0 0;
  font-size: 15px;
  color: rgba(15, 34, 56, 0.78);
  font-style: italic;
}

/* Who we are */

#who-we-serve {
  padding: 64px 0px 44px;
}

#service-area-section {
  padding: 22px 0px 44px;
}

/* Prominent services */
.services-prominent {
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.service-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  font-size: 14px;
}

.service-line::before {
  content: "";
  width: 4px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  box-shadow: 0 4px 14px rgba(178, 84, 24, 0.35);
}

.manifesto {
  margin: 14px 0 0;
  color: rgba(15, 34, 56, 0.86);
  font-weight: 750;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.dot {
  color: var(--orange);
  padding: 0 8px;
  font-weight: 900;
}

.scope {
  margin: 8px 0 0;
  color: rgba(15, 34, 56, 0.74);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.seal {
  /* width: min(310px, 90%); */
  height: auto;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.22));
  transform: rotate(-1deg);
  max-width: 200px;
  margin: auto;
}

.trust {
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-align: center;
}

.cta-row {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    border-color 0.15s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: white;
  box-shadow: 0 10px 20px rgba(178, 84, 24, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(178, 84, 24, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.66);
  color: var(--navy);
  border-color: rgba(15, 34, 56, 0.22);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.86);
}

/* Quick links (“What is…”) */
.quick-links {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 34px 24px;
  border-top: 1px solid rgba(15, 34, 56, 0.1);
  background: rgba(255, 255, 255, 0.62);
}

.q-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(15, 34, 56, 0.88);
  font-weight: 750;
  line-height: 1.6;
}

.q-list li::marker {
  color: var(--orange);
}

.q-center {
  display: flex;
  justify-content: center;
}

.q-right {
  display: flex;
  justify-content: flex-end;
}

/* Sections */
section {
  padding: 34px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  height: 2px;
  width: 56px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.9;
}

.section-sub {
  text-align: center;
  margin: 0 0 20px;
  color: rgba(15, 34, 56, 0.76);
  font-weight: 700;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
  padding: 18px 18px 16px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.rule {
  height: 3px;
  width: 64px;
  background: linear-gradient(90deg, var(--orange2), var(--orange));
  border-radius: 999px;
  margin: 6px 0 12px;
}

.bullets {
  margin: 0;
  padding-left: 18px;
  color: rgba(15, 34, 56, 0.86);
  font-weight: 750;
  line-height: 1.7;
}

.bullets li::marker {
  color: var(--orange);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.label {
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 12px;
}

.muted {
  color: rgba(15, 34, 56, 0.72);
  font-weight: 650;
}

.districts {
  margin: 10px 0 0;
  color: rgba(15, 34, 56, 0.9);
  font-weight: 900;
}

.districts span {
  color: var(--orange);
  padding: 0 8px;
}

.quote-center {
  display: flex;
  justify-content: center;
  margin: 6px 0 18px;
}

footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.86);
  padding: 26px 0;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  height: 44px;
  width: auto;
}

.footnote {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .nav-links {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
  }

  .hero-sky {
    min-height: 62vh;
    padding: 44px 0 28px;
    background-position: 70% 30%;
    background: url("assets/hero-sky-lightning-v2-mobile.webp") center/cover
      no-repeat;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }

  .hero-right {
    order: -1;
  }

  #who-we-serve {
    padding: 44px 0px 28px;
  }

  #service-area-section {
    padding: 22px 0px 28px;
  }

  .quick-links {
    grid-template-columns: 1fr;
    padding: 16px 20px 22px;
  }

  .q-right {
    justify-content: flex-start;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

/* Mobile Sidebar */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 100;
  padding: 10px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 34, 56, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 1001;
  padding: 30px 20px;
  transition: left 0.3s ease;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar.active {
  left: 0;
}

.sidebar .brand img {
  height: 36px;
  margin-bottom: 20px;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-links a {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  padding: 12px 15px;
  border-radius: 12px;
  transition: background 0.2s;
}

.sidebar-links a:hover,
.sidebar-links a.active {
  background: rgba(15, 34, 56, 0.05);
  color: var(--orange);
}

.sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--navy);
}

@media (max-width: 767px) {
  .footer-brand {
    flex-direction: column;
    text-align: center;
  }

  footer .container {
    flex-direction: column;
    align-items: center;
  }
}
/* Top Bar */
.top-bar {
  background: #cb641f;
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 34, 56, 0.08);
  font-weight: 600;
}

.top-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-center {
  letter-spacing: 0.02em;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  transition: color 0.2s;
}

.info-item:hover {
    color: var(--navy);
}

.info-item svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.quote-trigger {
  background: var(--navy);
  color: white;
  padding: 6px 14px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  border: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.quote-trigger:hover {
  background: var(--orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(181, 84, 24, 0.2);
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 34, 56, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  color: var(--text);
  max-height:90vh;
  overflow: scroll;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  opacity: 1;
}

.modal-title {
  font-size: 28px;
  font-weight: 1000;
  color: var(--navy);
  margin-bottom: 10px;
  text-align: center;
}

.modal-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 30px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 2px solid rgba(15, 34, 56, 0.1);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
  background: var(--bg);
}

.form-control:focus {
  outline: none;
  border-color: var(--orange);
  background: white;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(180deg, var(--orange2), var(--orange));
  color: white;
  border: none;
  border-radius: 14px;
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(178, 84, 24, 0.3);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(178, 84, 24, 0.4);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 768px) {
  .top-bar-center {
    display: none;
  }
  .top-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .modal-content {
    padding: 40px 24px;
  }
}
.text-white {
  color: #fff !important;
}

/* Rodhini page */

/* Hero */
.page-hero {
  padding: 60px 0;
  background: var(--navy);
  color: white;
  text-align: center;
}

.hero-img-container {
  margin-top: 30px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-img-container img {
  width: 100%;
  display: block;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.img-rounded {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadowSoft);
  max-width: 100%;
  height: auto;
}

.orange-text {
  color: var(--orange);
  font-weight: 800;
}

.alert-box {
  background: var(--navy);
  color: white;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
}

/* List styling */
ul.check-list {
  list-style: none;
  padding: 0;
}

ul.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 600;
}

ul.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

@media (max-width: 991px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none !important;
  }
  .mobile-toggle {
    display: flex !important;
  }
}

/* lightning-protection */

/* Hero */
.page-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 20px;
}

/* Layout */
.content-box {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadowSoft);
  margin-bottom: 40px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Content Elements */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
}
.pricing-table td {
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Slider Mockup */
.slider-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
}
.slider-item {
  flex: 0 0 80%;
  scroll-snap-align: center;
}
.slider-item img {
  width: 100%;
  border-radius: 18px;
}

@media (max-width: 991px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .pricing-table td {
    display: block;
    width: 100%;
  }
}

/* ligntning-protection */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Content Elements */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
}
.pricing-table .label {
  font-weight: 800;
  color: var(--navy);
  width: 250px;
}

.light_project_slider img {
  border-radius: 0.25rem;
  width: 100%;
  object-fit: cover;
}
.light_project_slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.text-danger {
  color: rgba(220, 53, 69, 1) !important;
}
.fst-italic {
  font-style: italic !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.text-center {
  text-align: center !important;
}
.orderd-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 520px;
}
.orderd-list li {
  counter-increment: step;
  position: relative;
  padding-left: 45px;
  margin-bottom: 18px;
  color: #373738;
  font-size: 14px;
  line-height: 1.6;
}
.orderd-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
}

.image-box {
  position: relative;
  max-width: 930px;
  margin: auto;
}
.image-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;
  border-radius: 8px;
}
.img-box-content {
  z-index: 3;
  position: relative;
  padding: 60px;
  max-width: 650px;
  margin: auto;
  color: #fff;
}
.image-box::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.54;
  z-index: 2;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}
/* electrical earthing */

#home_details img {
  width: 100% !important;
  border-radius: 8px;
  object-fit: contain;
  max-height: 200px;
  overflow: hidden;
  width: fit-content;
  margin: auto;
}
.img-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  flex-wrap: wrap;
}

.img-flex img {
  max-width: 100%;
  height: auto;
  flex: 1 1 300px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .img-flex img {
    flex: 1 1 100%;
  }
}

/* Mobile responsive adjustments */
@media (max-width: 991px) {
  .nav-inner {
    padding: 10px 15px !important;
    gap: 8px !important;
  }

  .brand img {
    height: 42px !important;
    max-width: 180px !important;
  }

  .top-bar-inner {
    flex-direction: column;
    gap: 5px;
    padding: 8px 10px;
  }

  .top-bar-left,
  .top-bar-right {
    gap: 12px;
  }

  .hero-inner {
    padding: 20px 15px !important;
  }

  .h1 {
    font-size: 32px !important;
    line-height: 1.1 !important;
  }

  .seal {
    width: 140px !important;
    max-width: 140px !important;
    margin: 10px auto !important;
  }

  /* Sidebar Accordion */
  .sidebar-dropdown {
    width: 100%;
  }

  .sidebar-dropdown-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    border-radius: 12px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
  }

  .sidebar-dropdown-toggle:hover {
    background: rgba(15, 34, 56, 0.05);
    color: var(--orange);
  }

  .sidebar-dropdown-toggle::after {
    content: "▼";
    font-size: 10px;
    opacity: 0.5;
    transition: transform 0.3s;
  }

  .sidebar-dropdown.active .sidebar-dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .sidebar-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding-left: 15px;
  }

  .sidebar-dropdown.active .sidebar-submenu {
    max-height: 400px;
  }

  .sidebar-submenu a {
    font-size: 16px !important;
    padding: 10px 15px !important;
    opacity: 0.8 !important;
    background: none !important;
  }

  .sidebar-submenu a:hover {
    color: var(--orange) !important;
    opacity: 1 !important;
  }
}

@media (max-width: 480px) {
  .brand img {
    height: 38px !important;
    max-width: 160px !important;
  }
  .h1 {
    font-size: 26px !important;
  }
  .seal {
    width: 110px !important;
  }
  .hero-inner {
    padding: 15px 12px !important;
  }
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 320px) {
  .h1 {
    font-size: 22px !important;
  }
  .top-bar {
    font-size: 11px;
  }
  .brand img {
    height: 34px !important;
    max-width: 140px !important;
  }
}

/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

