@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");

/**=======================================
**            Globle style
**======================================== */
*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
::scroll-behavior {
  behavior: smooth;
}
html {
  font-size: 16px;
}

@media screen and (max-width: 992px) {
  html {
    font-size: 15px;
  }
}

:root {
  --primary: #0a1f4b;
  --accent: #ac161d;
  --muted: #475569;
  --dark: #151a1f;
  --light: #f8f8f8;

  --card-bg: #fff;
  --section-bg: #eaefef;
  --text: #2b3136;

  --border: rgb(171, 174, 177);
  --border-radius: 16px;

  --shadow-1:
    rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  --shadow-2:
    rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  --shadow-3:
    rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

  --transition: all 0.3s ease;
}

body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  background: #ffffff;
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

/* H1, H2 */
h1,
h2 {
  font-size: 32px;
  line-height: 42px;
}

/* H3, H4, H5 */
h3,
h4,
h5 {
  font-size: 19px;
  line-height: 28px;
}

/* H6 */
h6 {
  font-size: 16px;
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
  color: var(--accent);
}

a,
p,
li,
label {
  font-size: 16px;
  letter-spacing: 1px;
}

@media screen and (max-width: 1200px) {
  h1,
  h2 {
    font-size: 30px;
  }

  h3,
  h4,
  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 15px;
  }
}

@media screen and (max-width: 992px) {
  h1,
  h2 {
    font-size: 28px;
  }

  h3,
  h4,
  h5 {
    font-size: 17px;
  }

  h6 {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  h1,
  h2 {
    font-size: 26px;
  }

  h3,
  h4,
  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 13px;
  }

  a,
  p,
  li,
  label {
    font-size: 16px;
  }
}
@media screen and (max-width: 576px) {
  a,
  p,
  li,
  label {
    font-size: 14px;
  }
}

.section-title {
  color: var(--primary);
  text-transform: uppercase;
}
.highlight {
  color: var(--accent);
}
.section-desc {
  color: var(--dark);
}
.text-balance {
  text-wrap: balance;
}
.section-bg {
  background-color: var(--section-bg);
}
/* ------------------------------
            btn-1
--------------------------------- */
.btn-1 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 8px 16px;
  text-align: center;
  /* font-size: 18px; */
  letter-spacing: 1px;
  line-height: normal;
  text-decoration: none;
  text-transform: capitalize;
  background: var(--accent);
  color: var(--light);
  cursor: pointer;
  transition: 0.4s;
  border: 2px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
}

/* Shine element */
.btn-1::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: rotate(15deg);
  transition: 0.7s;
}

/* Shine animation on hover */
.btn-1:hover::after {
  left: 130%;
}

.btn-1:hover {
  color: white;
}

.btn-1:active {
  transform: scale(0.95);
}
/* =================================
*           Header top
=================================== */
header {
  margin: 0 !important;
  padding: 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 996;
  background-color: var(--light);
}
.header-top {
  background: var(--primary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-1);
  transition: none;
}
.header-top.is-hidden {
  display: none;
}
/* Contact links styling */
.header-top-enquiry a {
  color: var(--light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  padding: 6px 0;
  position: relative;
}

.header-top-enquiry a:hover {
  color: var(--accent);
}

.header-top-enquiry a span {
  font-size: 1rem;
  color: var(--accent);
  transition: var(--transition);
}

.header-top-enquiry a:hover span {
  color: var(--accent);
  transform: scale(1.15);
}

/* Social links styling */

.header-top-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--light);
  border-radius: 50%;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
  margin-left: 6px;
}
.header-top-social .social-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--primary);
}
.header-top-social .social-link i {
  font-size: 1rem;
  transition: var(--transition);
}

.header-top-social .social-link:hover i {
  color: white;
}

.main-header {
  padding: 0.8rem 0;
  background: white;
  box-shadow: var(--shadow-2);
}
/* --------------- */
.header-center {
  box-shadow: var(--shadow-1);
  transition: none;
}
.header-center.is-hidden {
  display: none;
}
.header-logo {
  width: 200px;
  aspect-ratio: 5/3;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
}
.header-logo img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
@media (max-width: 576px) {
  .header-logo {
    width: 120px;
  }
}
.header-center h4 {
  color: var(--text);
  letter-spacing: -0.01em;
  font-weight: 600;
}
.header-center h6 {
  margin-top: 8px;
}
.header-center h6 a {
  text-decoration: none;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}

.header-center-call a {
  font-size: inherit;
  color: var(--accent);
  white-space: nowrap;
}
/* ----------------------------- */
/*          navigation header    */
/* ----------------------------- */
.desktop-navigation {
  background: var(--light);
  box-shadow: var(--shadow-1);
  width: 100%;
}
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 1rem 0;
  list-style: none;
  flex-wrap: wrap;
}
.nav-list-item {
  border-radius: calc(var(--border-radius) / 2);
}
.nav-list-item > a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--dark);
  padding: 0.5rem 0.75rem;
  border-radius: inherit;
  transition: var(--transition);
  white-space: nowrap;
  display: inline-block;
  text-underline-offset: 6px;
  text-transform: capitalize;
}
.nav-list-item:hover,
.nav-list-item:hover > a,
.nav-list-item > a:hover,
.nav-list-item > a.active {
  text-decoration: underline;
  background: #d8dfe8;
  color: var(--primary);
  text-decoration-thickness: 2px;
}
.nav-list-item > a > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-left: 3px;
  transition: transform 0.2s ease;
  cursor: pointer;
}

.navigation-container {
  position: relative;
}
.mega-menu {
  position: absolute;
  background: var(--light);
  width: 100%;
  left: 0;
  top: 120%;
  transition: var(--transition);
  box-shadow: var(--shadow-3);
  border-radius: var(--border-radius);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  min-height: 200px;
  max-height: calc(100vh - 250px);
  overscroll-behavior: contain;
}
.nav-list-item.dropdown-mega-menu:hover .mega-menu {
  top: 80%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-list-item.dropdown-mega-menu a > span {
  transition: var(--transition);
  transform: rotate(0deg);
}
.nav-list-item.dropdown-mega-menu:hover a > span {
  transform: rotate(180deg);
}

.mega-menu h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: capitalize;
}

.mega-menu-title-icon {
  color: var(--accent);
}
.mega-menu-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mega-menu-nav-list-item {
  transform: translateX(0);
  transition: var(--transition);
}

.mega-menu-nav-list-item a {
  color: var(--text);
  font-size: 1rem;
  padding: 8px 0;
  display: block;
  transition: var(--transition);
  overflow: hidden;
  border-bottom: 1px solid var(--muted);
  text-transform: capitalize;
}
.mega-menu-nav-list-item a:hover {
  color: var(--accent);
  padding-left: 8px;
}

/* ----------------------------- */
/* overlay & mobile menu */
/* ----------------------------- */
.overly {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.overly.active {
  opacity: 1;
  visibility: visible;
}
/* ---------------------------- */
/* mobile menu */
/* --------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -70%;
  width: 70%;
  height: 100vh;
  background: var(--primary);
  box-shadow: var(--shadow-3);
  z-index: 999;
  padding: 2rem 1.5rem;
  transition: 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}
@media screen and (max-width: 768px) {
  .mobile-menu {
    right: -80%;
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .mobile-menu {
    right: -90%;
    width: 90%;
  }
}
.menu-close-btn {
  text-align: right;
  font-size: 2rem;
  color: var(--light);
  cursor: pointer;
  margin-bottom: 2rem;
}
.menu-close-btn i:hover {
  color: var(--accent);
}
.menu-links ul {
  list-style: none;
  padding: 0;
}
.menu-links li {
  margin-bottom: 0.2rem;
}
.mobile-link {
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--light);
  display: block;
  transition: var(--transition);
  cursor: pointer;
  padding: 8px 12px;
  border-bottom: 1px solid #1d65a9;
  border-radius: 12px;
}
.mobile-link.active,
.mobile-link:hover {
  color: var(--accent);
  background-color: #b7b7b7;
}
.mobile-dropdown-items {
  list-style: none;
  padding-left: 1.2rem;
  margin-top: 0.8rem;
  display: none;
}
.mobile-dropdown-items.show {
  display: block;
}
.mobile-dropdown-items li {
  margin-bottom: 0.6rem;
}
.mobile-dropdown-items li:nth-last-of-type() {
  border: none;
}
.mobile-droplink {
  display: block;
  text-decoration: none;
  color: var(--light);
  font-weight: 400;
  transition: var(--transition);
  border-bottom: 1px solid #1d65a9;
  padding: 4px;
}
.mobile-droplink:nth-last-of-type {
  border: none;
}

.mobile-droplink:hover {
  color: var(--accent);
  border-radius: 12px;
  background: var(--muted);
  padding-left: 8px;
}
.mobile-menu .btn-1 {
  margin-top: 2rem;
  width: fit-content;
}

/* =============================== */
/*        footer section            */
/* =============================== */
.footer {
  background-color: var(--section-bg);
  color: var(--dark);
  padding: 5rem 0 0rem;
  margin-top: auto;
  border-top: 6px solid var(--primary);
}
/* footer logo */
.footer-logo {
  width: 200px;
  aspect-ratio: 5 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  /* overflow: hidden; */
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 576px) {
  .footer-logo {
    width: 140px;
  }
}
/* headings */
.footer-heading {
  color: var(--primary);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  text-decoration: underline solid var(--primary) 3px;
  text-underline-offset: 8px;
}
.footer-social-heading {
  color: var(--primary);
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin: 2rem 0 1rem;
}

.footer-link-list {
  padding: 0;
  margin: 0;
}
.footer-link-list li {
  margin-bottom: 0.7rem;
}
.footer-link-list a {
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* font-size: 1rem; */
}
.footer-link-list a:hover {
  transform: translateX(5px);
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* social links */
.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.social-link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: var(--accent);
  border-radius: 50%;
  color: var(--light);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid transparent;
}
.social-link-item:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-5px);
  border-color: var(--light);
}
/* footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;

  font-size: 1rem;
  background-color: var(--primary);
  color: var(--light);
}
.footer-bottom a {
  color: #d0d5db;
  text-decoration: none;
  transition: var(--transition);
}
.footer-bottom a:hover {
  color: var(--accent);
}
.footer-legal-links a {
  font-size: 1rem;
}

/* =============================== */
/*        hero section              */
/* =============================== */

.share-inner-banner {
  min-height: 50vh;
  padding: 2rem 0;
}

.sib-left p,
.sib-left h2,
.sib-left .sib-desc,
.hero-left p,
.hero-left h2,
.hero-left .hero-desc {
  color: var(--light);
}
.sib-subTitle,
.hero-subTitle {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--light) !important;
  opacity: 0.9;
  margin-bottom: 0.75rem;
}
.sib-left h2,
.hero-left h2 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 720px;
  margin-bottom: 1.5rem;
}
.sib-desc,
.hero-desc {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  /* max-width: 600px; */
}
/* rating & review blocks */
.hero-rating-review {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--muted);
  padding-top: 32px;
}

.hero-review {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-review .stars {
  display: flex;
}
.hero-review .star:nth-child(2),
.hero-review .star:nth-child(3) {
  margin-left: -24px;
}
.hero-review .stars {
  display: flex;
}
.hero-review .star {
  background-color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  border: 2px solid var(--light);
}
.customer-count,
.hero-rating h3 {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
  color: var(--light);
}

.hero-review p,
.hero-rating p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--light);
}
.hero-rating {
  position: relative;
}
.hero-rating::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 80%;
  background-color: var(--muted);
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
}
.rating-star {
  font-size: 8px;
  color: yellow;
}
@media screen and (max-width: 768px) {
  .customer-count,
  .hero-rating h3 {
    font-size: 1.5rem;
  }
  .hero-review .star {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 576px) {
  .customer-count,
  .hero-rating h3 {
    font-size: 1.25rem;
  }
  .hero-review .star {
    width: 32px;
    height: 32px;
  }
}

/* ==============hero form============== */

.form-wrapper.sib-form-wrapper,
.form-wrapper.hero-form-wrapper {
  /* max-width: 500px; */
  margin-left: auto; /* align right on large */
}

.form-card.sib-form-card,
.form-card.hero-form-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 32px 24px;
  box-shadow: var(--shadow-3);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.sib-form-title,
.hero-form-title {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: capitalize;
}

/* radio group styling */
.sib-form-label,
.hero-form-label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  text-transform: capitalize;
  /* opacity: 0.9; */
}

.form-check.hero-form-check,
.form-check.sib-form-check {
  display: flex;
  align-items: center;
}
.hero-form-check-input,
.sib-form-check-input {
  width: 24px;
  height: 24px;
  margin-top: 0;
  border: 2px solid var(--muted);
  box-shadow: none;
  cursor: pointer;
}
.hero-form-check-input:checked,
.sib-form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.hero-form-check-label,
.sib-form-check-label {
  color: var(--text);
  font-weight: 500;
  font-size: 0.85rem;
  padding-left: 0.25rem;
  text-transform: capitalize;
}
/* form controls */
.hero-form-control,
.sib-form-control {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 1rem;
  background-color: #fff;
  transition: var(--transition);
  font-size: 0.85rem;
}
.hero-form-control:focus,
.sib-form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 65, 116, 0.15);
}
@media (max-width: 991px) {
  .hero-form-check-label,
  .sib-form-check-label {
    font-size: 0.8rem;
  }
}
@media (max-width: 767px) {
  .hero-left h2,
  .sib-left h2 {
    font-size: 2rem;
  }
  .hero-rating-review {
    justify-content: center;
  }
  .form-wrapper.sib-form-wrapper,
  .form-wrapper.hero-form-wrapper {
    margin: 2rem auto 0;
    max-width: 100%;
  }
}

/* SG shower (and similar): one outer .sg-form-card — strip nested form card chrome */
.sg-form-card .form-wrapper.sg-cgse-form-wrap {
  margin-left: 0;
  max-width: none;
}
.sg-form-card .form-card.sg-cgse-form-inner {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

/* Custom mirrors intro: one outer .form-card — strip nested hero/sib form card */
.form-card .form-wrapper.cm-mirrors-form-wrap {
  margin-left: 0;
  max-width: none;
}
.form-card .form-card.cm-mirrors-form-inner {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

/* Navy IGU / specialties blocks (custom mirrors, multi-pane, etc.): card body must stay light */
.igu-section h2.sec-title {
  color: #fff;
}
.igu-section h2.sec-title span {
  color: #ff8a8e;
}
.igu-section .sec-desc,
.igu-section .sec-desc p {
  color: rgba(255, 255, 255, 0.7);
}
.igu-section .igu-point h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.igu-section .igu-point p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* .sib-form-bottom {
  margin-top: -50px;
} */
/* =============================== */
/*        feature cards section    */
/* =============================== */

.feature-cards {
  padding: 3rem 0;
  background: var(--section-bg);
}
/* feature card styling */
.feature-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-3);
}
.feature-card:hover {
  transform: translateY(-6px);
}
/* image area */
.feature-card .image-box {
  border-radius: var(--border-radius);
}
.feature-card .card-img-top {
  height: 220px;
  object-fit: cover;
  background-color: var(--muted); /* fallback while images load */
  border-radius: inherit;
}
.feature-card .card-body {
  padding: 1.5rem 1rem 1rem;
  flex: 1;
}

.feature-card .card-title {
  color: var(--primary);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.feature-card .card-text {
  color: var(--dark);
  line-height: 1.5;
}

/* =======================================
            trust-section
=========================================*/

/* ===== IMAGE SECTION STYLING ===== */
.trust-section-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  height: 100%;
  min-height: 400px;
  transition: var(--transition);
}

.trust-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Image hover effect */
.trust-section-image:hover img {
  transform: scale(1.05);
}

.trust-card {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: var(--shadow-3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--primary);
  opacity: 1;
}

/* Hover effect */
.trust-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Header */
.trust-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* Icon styling */
.trust-card-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ac151c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Title */
.trust-card-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #0a1f4b;
  margin: 0;
}

/* Text */
.trust-card-text {
  color: #0c0d0f;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* subtle glow border effect */
.trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  opacity: 0;
  transition: 0.3s;
  box-shadow: 0 0 0 2px var(--primary);
}

.trust-card:hover::after {
  opacity: 0.15;
}

.trust-section-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 65, 116, 0.2) 0%,
    rgba(197, 0, 34, 0.1) 100%
  );
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.trust-section-image:hover::before {
  opacity: 1;
}
/* ====================================== */
/*                trust cta section       */
/* ====================================== */
.trust-cta-section {
  position: relative;
  background: var(--primary);
  background:
    linear-gradient(to right, #0a4174c0, #0a4174b5),
    url("../assects/homeGlass.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  isolation: isolate;
}

/* title */
.trust-cta-title {
  color: var(--light);
}

.trust-cta-section .container > .d-flex {
  gap: 1rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 767.98px) {
  .trust-cta-section .container > .d-flex {
    flex-direction: column;
    align-items: stretch !important;
  }

  .trust-cta-section .trust-cta-title {
    margin-bottom: 0.25rem;
  }

  .trust-cta-section .btn-1 {
    width: 100%;
    justify-content: center;
  }
}

/* ================================== */
/*                 Testimonial        */
/* ================================== */
.testimonial-section {
  background: var(--section-bg);
}

/* CARD */

.testimonial-card {
  background: var(--card-bg);
  padding: clamp(20px, 3vw, 40px);
  border-radius: 20px;
  color: var(--dark);
  line-height: 1.4;
  margin: 10px;
  min-height: clamp(220px, 26vw, 260px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-3);
}
.testimonial-card-star {
  position: absolute;
  left: 50%;
  top: clamp(-46px, -6vw, -50px);
  width: clamp(84px, 14vw, 120px);
  height: clamp(84px, 14vw, 120px);
  border-radius: 50%;
  background: var(--primary);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: clamp(28px, 6vw, 48px);
  border: clamp(5px, 1vw, 8px) solid var(--card-bg);
  z-index: 11;
}

/* Allow the star badge to sit outside the card without being clipped */
.testimonial-slider .slick-list {
  overflow: hidden;
  padding-top: 56px;
}

/* Smooth rendering */
.testimonial-slider .slick-track {
  will-change: transform;
}
.testimonial-slider .slick-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* stars */

.stars {
  color: rgb(255, 170, 0);
  font-size: 20px;
  line-height: 0;
}

/* text */

.testimonial-card p {
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .testimonial-card p {
    font-size: 1.25rem;
    text-align: center;
  }
}
/* client */
.client-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.client-info img {
  width: clamp(48px, 8vw, 64px);
  height: clamp(48px, 8vw, 64px);
  border-radius: 50%;
  border: 3px solid var(--light);
  object-fit: cover;
}
.client-info h5 {
  margin: 0;
  font-weight: 700;
}
.client-info small {
  opacity: 0.8;
}
/* slick dots */
.slick-dots li button:before {
  color: var(--primary);
}

.slick-dots {
  position: static;
}
.slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--muted);
}
.slick-dots li.slick-active button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0a4174;
}

/* Testimonial Slider Arrows */
.testimonial-section .col-lg-9 {
  position: relative;
}

.slick-prev-custom,
.slick-next-custom {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: var(--dark);
  background-color: transparent;
  border: none;
  /* border-radius: 50%; */
  /* width: 44px;
  height: 44px; */
  font-size: clamp(3.5rem, 8vw, 8rem);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: var(--shadow-3); */
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
  transform: translateY(-50%) scale(1.1);
}

.slick-prev-custom {
  left: clamp(
    -60px,
    -8vw,
    -100px
  ); /* Half of its width to be centered on the edge */
}

.slick-next-custom {
  right: clamp(
    -60px,
    -8vw,
    -100px
  ); /* Half of its width to be centered on the edge */
}

@media (max-width: 768px) {
  /* Hide on mobile, dots are usually sufficient */
  .slick-prev-custom,
  .slick-next-custom {
    display: none !important;
  }
}

/* ================================== */
/*               our services      */
/* ================================== */
.our-solutions {
  /* background-color: white; */
  overflow: hidden;
  padding: 0;
}

/* tabs */

.service-tabs {
  display: flex;
  justify-content: center;
}

.service-tabs button {
  border: none;
  padding: 12px 30px;
  background: #d7dde7;
  font-weight: 500;
}

.service-tabs button.active {
  background: #0f2a56;
  color: white;
}

/* service card */

.service-box {
  background: white;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
}

.service-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #0f2a56;
}

.service-icon {
  width: 38px;
  height: 38px;
  background: #0f2a56;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-icon {
  font-size: 18px;
  color: #0f2a56;
}

.service-content {
  padding: 25px 30px;
  border-top: 1px solid #eee;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  margin-bottom: 12px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list li::before {
  content: "•";
  color: #0f2a56;
  font-size: 20px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* No results message */
.no-results {
  text-align: center;
  padding: 60px;
  color: var(--muted);
  background: var(--light);
  border-radius: var(--border-radius);
  margin-top: 30px;
}

.no-results h4 {
  color: var(--dark);
  margin: 15px 0 5px;
}

/* ================================== */
/*           helpful-resources        */
/* ================================== */
.helpful-resources {
  /* background: var(--section-bg); */
  overflow: hidden;
  z-index: 2;
}

/* ================================== */
/*               join our team        */
/* ================================== */
.join-our-team {
  position: relative;
  padding-block: 1.5rem;
  background: var(--section-bg);
}
.join-our-team-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(10, 65, 116, 0.08);
  background: var(--card-bg);
  padding: 32px 24px;
  align-items: stretch;
  border: 1px solid var(--dark);
}
.join-our-team-wrapper::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), #0f87d1, var(--secondary));
}
.join-our-team-image {
  position: relative;
  height: 100%;
  min-height: 360px;
  max-height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.45s ease;
  border: 2px solid var(--dark);
}

.join-our-team-image:hover {
  transform: scale(1.01);
}

.join-our-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
  filter: saturate(1.05) contrast(1.04);
}

.join-our-team-image:hover img {
  transform: scale(1.07);
}
.join-our-team-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(10, 65, 116, 0.24), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.join-our-team-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* .join-our-team-content .section-title {
  margin-bottom: 0.35rem;
  line-height: 1.2;
} */
.join-our-team-content .section-desc {
  max-width: 62ch;
  margin-bottom: 0;
  color: #4c5462;
  line-height: 1.75;
}
.join-our-team-content .btn-1 {
  min-width: 210px;
}
@media screen and (max-width: 1199px) {
  .join-our-team-content {
    padding: 2.2rem 0;
  }
}
@media screen and (max-width: 991px) {
  .join-our-team-wrapper {
    border-radius: 20px;
  }
  .join-our-team-image {
    min-height: 280px;
    max-height: 400px;
  }
  .join-our-team-content {
    padding: 1.8rem 0;
  }
}
@media screen and (max-width: 576px) {
  .join-our-team {
    padding-block: 0.5rem;
  }
  .join-our-team-wrapper {
    border-radius: 16px;
  }
  .join-our-team-image {
    min-height: 230px;
  }
  .join-our-team-content {
    padding: 1.3rem 0;
  }
  .join-our-team-content.ps-5 {
    padding-left: 1.3rem !important;
  }
}
/* ================================== */
/*               home-faq             */
/* ================================== */

.home-faq {
  /* background-color: var(--section-bg); */
}

.accordion-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--border-radius) !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: var(--transition);
}
.accordion-item:hover {
  box-shadow: var(--shadow-2);
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  background: transparent;
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  border: none;
  box-shadow: none !important;
  transition: var(--transition);
  position: relative;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(10, 65, 116, 0.1), transparent);
  color: var(--primary);
}
.accordion-button:hover {
  background: linear-gradient(90deg, rgba(10, 65, 116, 0.08), transparent);
  color: var(--primary);
  padding-left: 2rem;
}
.accordion-button::after {
  background-size: 1rem;
  transition: var(--transition);
  opacity: 0.9;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(505%)
    hue-rotate(169deg) brightness(92%) contrast(95%);
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text);
  background: var(--card-bg);
  border-top: 1px solid rgba(10, 65, 116, 0.1);
  font-size: 1rem;
  line-height: 1.7;
}
.accordion-body strong {
  color: var(--primary);
  font-weight: 600;
}
.accordion-body code {
  background: var(--section-bg);
  color: var(--accent);
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  font-size: 0.9rem;
  border: 1px solid var(--border);
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(10, 65, 116, 0.15);
}
.accordion-collapse {
  transition: var(--transition);
}

/* ================================== */
/*              shower hero            */
/* ================================== */
.shower-hero {
  height: 75vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}
/* .shower-hero-container {
  position: relative;
  z-index: 2;
} */
.shower-hero-content {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 600px;
  width: 100%;
  background: rgba(10, 31, 75, 0.8);
  /* backdrop-filter: blur(8px); */
  /* -webkit-backdrop-filter: blur(8px); */
  border-radius: calc(var(--border-radius) / 2);
  padding: 4rem 3.5rem;
  box-shadow: var(--shadow-3);
  color: var(--light);
  transition: var(--transition);
  text-align: center;
  text-wrap: balance;
}

.shower-hero-content h2 {
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
  text-wrap: balance;
}

@media screen and (max-width: 991px) {
  .shower-hero {
    height: 50vh;
  }
  .shower-hero-content {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 576px) {
}

/* ================================== */
/*       shower-frameless-design      */
/* ================================== */
.sfd-cards {
  width: 100%;
  height: 100%;
  max-height: 480px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
  border-radius: calc(var(--border-radius) / 2);
  transition: var(--transition);
  position: relative;
  cursor: pointer; /* indicates interactivity */
}

.sfd-cards:hover {
  transform: translateY(-8px); /* slightly more pronounced lift */
  box-shadow:
    var(--shadow-3),
    0 20px 30px -10px rgba(10, 31, 75, 0.3);
}
.sfd-card-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  position: relative;
}

.sfd-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.sfd-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.sfd-card-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, #132a5e 100%);
  color: var(--light);
  text-align: center;
  padding: 2rem 1.5rem;
  text-wrap: balance;
  transition: top 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(0px);
}

.sfd-cards:hover .sfd-card-content {
  top: 0;
}
@media screen and (max-width: 991px) {
  .sfd-cards {
    max-height: 400px;
  }
}
/* ================================== */
/*                     */
/* ================================== */
.shower-our-services {
  background: var(--section-bg);
}
.sos-card {
  /* background: var(--card-bg); */
  border-radius: calc(var(--border-radius) / 2);
  /* box-shadow: var(--shadow-1); */
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  /* position: relative; */
}

.sos-card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  /* position: relative; */
  border-radius: inherit;
  background: var(--section-bg);
}

.sos-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

.sos-card:hover .sos-card-img img {
  transform: scale(1.025);
}
.sos-card-content {
  width: 90%;
  margin: -50px auto 0;
  padding: 1.5rem;
  background: var(--card-bg);
  flex-grow: 1;
  border-top: 1px solid var(--border);
  z-index: 11;
  position: static;
  border-radius: calc(var(--border-radius) / 2);
}
.sos-card-content h3 {
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  text-transform: capitalize;
}
.sos-card-content p {
  color: var(--text);
}
/* ================================== */
/*               .shower-aboutUs      */
/* ================================== */
/* .shower-aboutUs {
  position: relative;
  overflow: hidden;
} */
.shower-about-left {
  padding-right: 2rem;
  height: 100%;
}

.shower-about-left > p {
  color: var(--text);
}
.sa-card {
  background: var(--primary);
  color: var(--light);
  padding: 1.75rem 1rem;
  border-radius: calc(var(--border-radius) / 2);
  box-shadow: var(--shadow-1);
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sa-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}
.sa-card h3 {
  color: var(--light);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.sa-card p {
  color: var(--light);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.sa-image {
  height: 100%;
  max-height: 500px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.sa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.sa-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 767px) {
  .sa-image {
    max-height: 420px;
  }
}
/* ================================== */
/*               shower-gallery       */
/* ================================== */

.shower-gallery {
  background: var(--section-bg);
}
.sg-slider-wrapper {
  padding: 20px 10px;
  margin: 20px 0;
  position: relative;
}

.sg-slide {
  padding: 0 12px;
  transition: transform 0.3s ease;
}
.sg-slide img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-2);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.sg-slide img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-3);
}
.sg-prev,
.sg-next {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: var(--shadow-2);
  z-index: 10;
  transition: var(--transition);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.sg-prev:hover,
.sg-next:hover {
  background: var(--light);
  transform: translateY(-50%) scale(1.08);
}
.sg-prev:before,
.sg-next:before {
  color: var(--dark);
  font-size: 24px;
  opacity: 0.8;
}
/* .sg-prev {
  left: 10px;
}
.sg-next {
  right: 10px;
} */
.sg-dots {
  bottom: -36px;
}
.sg-dots li button:before {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.3;
  transition: var(--transition);
}
.sg-dots li.sg-active button:before {
  opacity: 1;
  color: #1e40af;
  transform: scale(1.3);
}
@media (max-width: 768px) {
  .sg-slide img {
    height: 280px;
  }
  .sg-prev,
  .sg-next {
    width: 36px;
    height: 36px;
  }
  .sg-prev:before,
  .sg-next:before {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .sg-slide img {
    height: 220px;
  }
  .sg-slider-wrapper {
    border-radius: 24px;
    padding: 12px 5px;
  }
  .sg-slide {
    padding: 0 6px;
  }
}
/* ================================== */
/*                shower-locations     */
/* ================================== */
.shower-locations {
  background: linear-gradient(135deg, var(--primary) 0%, #0a4174 100%);
  color: var(--light);
  position: relative;
  overflow: hidden;
}

.shower-locations .section-title {
  color: var(--light);
}

.sl-card {
  background: var(--card-bg);
  color: var(--text);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-2);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}
.sl-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
}
.sl-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
  font-size: 2.2rem;
  box-shadow: var(--shadow-2);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.sl-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.sl-card p {
  color: var(--text);
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.sl-card p strong {
  color: var(--primary);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sl-card p small {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
  opacity: 0.9;
}
.sl-card h5 {
  font-size: 1.1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px dashed var(--border);
  color: var(--primary);
}

.sl-card h5 strong {
  color: var(--primary);
  font-weight: 600;
}

.sl-card h5 span {
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  transition: var(--transition);
}

.sl-card:hover h5 span {
  color: var(--primary);
  transform: scale(1.05);
}
/* ================================== */
/*             key-benefits           */
/* ================================== */
/* .key-benefits {
  background-color: var(--section-bg);
} */
.benefits-list {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style-position: inside;
}
.benefits-list-item {
  padding: 0.25rem 0.5rem;
  padding-left: 32px;
  border-radius: calc(var(--border-radius) / 2);
  color: var(--text);
  transition: var(--transition);
  position: relative;
}
.benefits-list-item:hover {
}
.benefits-list-item::before {
  position: absolute;
  left: 0;
  content: "✦";
  font-size: 1.3rem;
  color: var(--primary);
  display: inline-block;
  text-align: left;
}
.benefits-list-item strong {
  color: var(--dark);
  font-weight: 700;
  margin-right: 0.3rem;
}

/* ---------------------------------- */
.kbs-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-2);
  width: 100%;
  height: 100%;
}

.kbs-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* Hover effect */
.kbs-image:hover img {
  transform: scale(1.021);
}

/* Optional overlay effect */
.kbs-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.kbs-image:hover::after {
  opacity: 1;
}
/* ---------------------------------- */
/* grid wrapper — all classes start with kbs- */
.kbs-cards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

/* small card component: clean, no border-top, no icons */
.kbs-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  width: 100%;
  height: 100%;
  box-shadow:
    0 6px 12px rgba(0, 0, 0, 0.04),
    0 1px 2px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  border: 1px solid #e4e9f0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.kbs-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 22px -10px rgba(0, 0, 0, 0.12);
  border-color: #cfddee;
}

/* card inner content padding */
.kbs-card-content {
  padding: 1rem 1rem 1.2rem 1rem;
}

/* title styling: bold, clean, no icon, no top border */
.kbs-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--primary);
  margin-bottom: 0.65rem;
  padding-bottom: 0;
  border-bottom: none;
}

/* description text */
.kbs-card-desc {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* preserve strong emphasis inside description */
.kbs-card-desc strong {
  font-weight: 600;
  color: var(--dark);
}

/* responsive: smaller screens adapt cards */
@media (max-width: 580px) {
  .kbs-card {
    width: 100%;
    max-width: 300px;
  }
  .kbs-cards-grid {
    gap: 1rem;
  }
  .kbs-card-title {
    font-size: 1rem;
  }
  .kbs-card-desc {
    font-size: 0.78rem;
  }
}

/* ================================== */
/*         common-feature-section     */
/* ================================== */
.common-feature-section {
  background: var(--section-bg);
}
.common-feature-right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.common-feature-image {
  max-width: 540px;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--muted);
  transition: var(--transition);
}
.common-feature-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background: var(--muted);
  color: transparent;
  border-radius: inherit;
  transition: var(--transition);
}
.common-feature-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-3);
}
.common-feature-image:hover img {
  transform: scale(1.05);
}
/* ================================== */
/*             common-feature-list    */
/* ================================== */
.common-feature-list {
  list-style-position: inside;
  padding-left: 32px;
}
.common-feature-list-item {
  position: relative;
  padding-left: 16px;
  font-size: 90%;
}
.common-feature-list-item::before {
  position: absolute;
  left: 0;
  content: "●";
  color: var(--primary);
  display: inline-block;
  text-align: left;
}

@media screen and (max-width: 991px) {
  .common-feature-list-item {
    font-size: 100%;
  }
}
/* ================================== */
/*          service-overview          */
/* ================================== */
.sov-content-item h4 {
  color: var(--primary);
  text-transform: capitalize;
  font-weight: 600;
}

/* ================================== */
/*         glass-care-tips&advice     */
/* ================================== */
.glass-care-tips-advice {
  background: var(--section-bg);
}
/* ================================== */
/*     simple-description-cards        */
/* ================================== */
.simple-description-cards-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.simple-description-card {
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  background: var(--card-bg);
  box-shadow: var(--shadow-1);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
  overflow: hidden;
}
.simple-description-card h4 {
  color: var(--primary);
}
.simple-description-card h4 .sdc-icon {
  color: var(--accent);
}
.simple-description-card:hover {
  box-shadow: var(--shadow-3);
  transform: translateY(-4px);
}
/* -------------------------------- */
/* disclaimer */
.disclaimer {
  box-shadow: var(--shadow-2);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  background: #d1e7f8;
  color: var(--dark);
  & h4 {
    font-weight: 500;
    line-height: 1.4;
  }
}
/* ================================== */
/*          all-testimonial           */
/* ================================== */
.all-testimonial-wrapper {
  width: 100%;
}

.at-card {
  background: var(--card-bg);
  padding: 2.5rem 1.5rem 1.5rem;
  border-radius: var(--border-radius);
  color: var(--dark);
  line-height: 1.4;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-3);
}
.at-card-star {
  position: absolute;
  left: 50%;
  top: -32px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--primary);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 32px;
  border: 5px solid var(--card-bg);
  z-index: 11;
}
/* stars */
.at-stars {
  color: rgb(255, 170, 0);
  font-size: 20px;
  line-height: 0;
}

.all-testimonials .at-page-reviews-title {
  font-size: 34px;
  font-weight: 600;
}

.all-testimonials .at-quote-mark {
  font-size: 28px;
  color: #ac161d;
  line-height: 1;
}

.all-testimonials .at-quote-text {
  color: #555;
  line-height: 26px;
  text-align: left;
}

/* text */
.at-card p {
  /* font-size: 1.5rem; */
  text-align: center;
}
.masonry-grid {
  column-count: 3;
  column-gap: 1.5rem;
  padding-top: 1.5rem;
}

.masonry-grid .at-card {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 1.75rem 0;
}


/*section 1*/
.about-home {
    margin: auto;
    display: flex;
    
    align-items: center;
}

.about-image {
    flex: 1;
    box-shadow: -8px 9px 0 0px #000;
    border-radius: 12px;
    margin-right: 30px;
}
.about-content {
    flex: 1;
}
.about-image img {
    width: 100%;
    border-radius: 12px;
}
.about-content h2 {
    color:#000;
    margin-bottom: 20px;
}
.about-content p {
    margin-bottom: 15px;
}
.about-section {
    padding: 80px 0px;
}
/*section 1 End*/



/*section 2*/
.online-health-check {
    position: relative;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0px;
}

.online-health-check-heading {
    text-align: center;
    max-width: 70%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    color: #fff;
    z-index: 1;
}

.online-health-check:after {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    background: #0a1f4bb8;
    top: 0px;
    content: "";
}
/*section 2 End*/


/*section 3*/
.contant-img {
    background-color: #efefef;
    padding: 80px 0px;
}

.contant-img-main {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

.contant-img-left {
    width: 50%;
}
.contant-img-right {
    width: 50%;
}
.contant-img-right img {
    border-radius: 20px;
    width: 100%;
}

/*section 3 End*/


/* section 4 */
.ourlocation {
    background: #f5f5f5;
    clear: both;
    padding: 80px 0px;
}

.ourlocation-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.ourlocation-img {
    width: 60%;
}
.ourlocation-text {
    width: 50%;
    background: #0a1f4b;
    padding: 80px 30px;
    text-align: center;
    position: absolute;
    right: 0px;
    border-radius: 10px;
    color: #fff;
}

.ourlocation-img img {
    border-radius: 10px;
    width: 100%;
    box-shadow: -9px 10px 2px 0 #0a1f4b;
}
/* section 4 End */


/* section 5 */

section.home-about {
    padding: 80px 0px;
    clear: both;
}

.home-about-main {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
}
.home-about-main-img {
    width: 40%;
    position: relative;
}
.home-about-main-img-icoen {
    position: absolute;
    top: -30px;
    z-index: -1;
    left: 0px;
}

.home-about-main-img-home {
    position: relative;
}

.home-about-main-img-home img {
    box-shadow: 0 0 11px 3px #d5d5d5;
    border-radius: 50%;
    width: 100%;
    height: 450px;
    border: 2px solid #000;
    padding: 4px;
}

.home-about-main-text {
    background: #000000c2;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    text-align: center;
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about-main-text h4 {
   
    color: #fff;
}

.home-about-main-text p {
    color: #fff;
}

.home-about-main-content {
    width: 60%;
}

.home-about-icone-contant {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

/* section 5 End */

 /* section 6*/
.welcome {
   
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
    padding: 80px 0px;
}
.wel-img-one {
    position: relative;
}

.wel-img-one img {

box-shadow: 5px 6px 2px 0 #0a1f4b;

}


.wel-img-one img {
    width: 80%;
    border-radius: 11px;
}
.wel-img-two {
    position: absolute;
    content: "";
    width: 100%;
    left: 238px;
    bottom: 0px;
}
.wel-img-both {
    position: relative;
}
.wel-img-two img {
    width: 50%;
     border-radius: 11px;
}
  /* section 6 End */

  /* section 7  */
.section-7 img {
    width: 100%;
}

.section-7 img {
    width: 100%;
    box-shadow: 5px 6px 2px 0 #0a1f4b;
}
.section-7 {
    padding: 80px 0px;
}

 /* section 7 End  */

 /* section 8  */
.section-8-img img {
    width: 100%;
} 

.section-8 {
    background: #0a1f4b;
    color: #fff;
    padding: 80px 0px;
}

.section-8-img img {
    border-radius: 10px;
}

.section-8 .row:nth-child(odd) {
    display: flex;
    flex-direction: row-reverse;
}

.section-8 .row {
    display: flex;
    align-items: center;
}
/* section 8 End  */

section.section-9 {
    padding-top: 0px;
    padding-bottom: 60px;
}
.section-9-bg {
    background: #af161d;
    height: 200px;
}
.section-9-text {
    background: #fff;
    margin: -70px 0 0 0px;
    padding: 30px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0px 0px 4px #c1c1c1;
}


@media screen and (max-width: 768px) {
  .at-card p {
    font-size: 1.25rem;
    text-align: center;
  }
}
/* client */
.at-client-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.at-client-info h5 {
  margin: 0;
  font-weight: 700;
}
.at-client-info small {
  opacity: 0.8;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .masonry-grid {
    column-count: 3;
  }
}

@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}



@media (max-width: 768px) {
    
  


  .at-card p {
    font-size: 1.25rem;
  }

  .at-card-star {
    width: 70px;
    height: 70px;
    font-size: 28px;
    top: -28px;
  }

  .masonry-grid {
    column-count: 2;
    column-gap: 1rem;
  }
}

@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }

  .masonry-grid .at-card {
    margin: 1.25rem 0;
  }

  .at-card {
    padding: 2.25rem 1.25rem 1.25rem;
  }

  .at-card p {
    font-size: 1.1rem;
  }

  .at-stars {
    font-size: 18px;
  }

  .at-client-info h4 {
    font-size: 1.1rem;
  }

  .at-card-star {
    width: 60px;
    height: 60px;
    font-size: 24px;
    top: -25px;
  }
}

/* Tablet specific adjustments */
@media (min-width: 577px) and (max-width: 768px) {
  .at-card p {
    font-size: 1.2rem;
  }
}

/* Hide masonry script version by default */
.masonry-js {
  display: none;
}
/* ================================== */
/*                contact page        */
/* ================================== */
.acf-header {
  border-bottom: 1px solid #ced4da;
}
.actual-contact-form {
  background-color: var(--card-bg);
  padding: 2rem;
  box-shadow: var(--shadow-1);
  border-radius: var(--border-radius);
}
/* Form Inputs */
.actual-contact-form .input-field-group {
  display: flex;
  flex-direction: column;
}
.actual-contact-form label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.actual-contact-form input,
.actual-contact-form select,
.actual-contact-form textarea {
  border: 1px solid #ced4da;
  border-radius: calc(var(--border-radius) / 2);
  padding: 6px 12px;
  font-size: 1rem;
  transition: var(--transition);
  overflow: hidden;
}
.actual-contact-form input:focus,
.actual-contact-form select:focus,
.actual-contact-form textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.05);
  outline: none;
}

/* Aside Styling */
.contact-form.aside {
}
.contact-form.aside .contact-info-item p {
  margin: 0;
  color: #495057;
  font-size: 0.95rem;
}

.contact-info-item {
  border: 1px solid #ced4da;
  padding: 1.5rem;
  border-radius: calc(var(--border-radius) / 2);
  box-shadow: var(--shadow-1);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-3);
}
.contact-info-item h4 {
  color: var(--primary);
}
.contact-info-item .fw-bold > span {
  color: var(--accent);
}

/* ================================== */
/*          all Blog           */
/* ================================== */
/* Blog Card Styling */
.blog-card {
  background: #ffffff;
  border-radius: var(--border-radius);
  overflow: hidden;
  /* box-shadow: var(--shadow-1); */
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-3);
}

.blog-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-meta i {
  color: var(--accent);
}

.blog-title {
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  transition: var(--transition);
}
.blog-excerpt {
  color: var(--text);
  /* font-size: 0.95rem;
  line-height: 1.6; */
  flex: 1;
}

/* Sidebar Cards Styling */
.blog-categories-card,
.blog-about-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.blog-categories-card:hover,
.blog-about-card:hover {
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

.blog-categories-card h3,
.blog-about-card h3 {
  color: var(--primary);
  position: relative;
  padding-bottom: 10px;
}

.blog-categories-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-categories-card ul li {
  margin-bottom: 12px;
  border-bottom: 1px solid var(--muted);
  padding-bottom: 12px;
}

.blog-categories-card ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.blog-categories-card ul li a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--text);
  position: relative;
  transition: var(--transition);
}
.blog-categories-card ul li a:hover {
  color: var(--accent);
  padding-left: 4px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bac-img {
  width: 100%;
  height: 220px;
  border-radius: calc(var(--border-radius) / 2);
  overflow: hidden;
  margin-bottom: 20px;
}

.bac-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  border-radius: inherit;
}
/* ================================== */
/*             ELG    section        */
/* ================================== */

/* Modern list styling with icons */
.egl-list {
  list-style: none;
  padding: 0;
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.egl-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(10, 31, 75, 0.1);
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary);
  transition: var(--transition);
  backdrop-filter: blur(2px);
}
.egl-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
}

.egl-list li:hover {
  background: rgba(172, 22, 29, 0.08);
  transform: translateY(-2px);
}
/* Modern image card with hover effects */
.egr-card-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  transition: var(--transition);
  background: var(--card-bg);
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.egr-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.egr-card-image:hover {
  box-shadow: var(--shadow-3);
  transform: scale(1.01);
}

.egr-card-image:hover img {
  transform: scale(1.05);
}
.egr-title {
  color: var(--light);
  font-weight: 600;
}
/* ================================== */
/*                     */
/* ================================== */
/* ================================== */
/*                     */
/* ================================== */
/* ================================== */
/*                     */
/* ================================== */
/* ================================== */
/*                     */
/* ================================== */

.form-container-fluid.new-form-bg {
    background: #f0f0f0;
}

.sib-left.banner-center h2 {
    width: 100%;
    max-width: 100%;
    text-align: center;
}
.sib-left.banner-center-width {
    margin: 0 auto;
    max-width: 100%;
    width: 50%;
    text-align: center;
}

.form-container-fluid.new-form-bg {
    background: #f0f0f0;
}

.frmd-en-gallery.container-fluid {
  background: #f0f0f0;
}

.ccg-gallery.container-fluid {
    background: #f0f0f0;
}

.new-form-bg h2 {
    color: #0a1f4b;
}

/* Light form-band background: undo hero .sib-left light text (was invisible on #f0f0f0) */
.new-form-bg .sib-left h2,
.new-form-bg .sib-left .section-title {
    color: #0a1f4b;
}

.new-form-bg .sib-left .section-title .highlight {
    color: #ac151c;
}

.new-form-bg p.sib-desc,
.new-form-bg .sib-left .sib-desc,
.new-form-bg .sib-left .sib-desc p,
.new-form-bg .sib-left p {
    color: #555;
}
.share-inner-banner {

    position: relative;
    background: linear-gradient(
        90deg,
        rgba(10, 31, 75, 0.45) 0%,
        rgba(10, 31, 75, 0.2) 40%,
        rgba(0, 0, 0, 0.05) 100%
    );
      z-index: 1;
    
}
.banner-btn {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding: 30px 35px;
    border-radius: 16px;

    border: 1px solid rgba(255, 255, 255, 0.4);

    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.5);

    max-width: 600px;
    width: 100%;

    transition: all 0.3s ease;
}
.banner-btn h2 {
    margin-bottom: 18px;
    text-shadow: 0px 2px #ffffff;
}



.form-wrapper.sib-form-wrapper {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    box-shadow: var(--shadow-3);
    border: 1px solid var(--border);
    transition: var(--transition);
}

@media(min-width: 767px) and (max-width: 1024px){
.section-title {
    margin-top: 20px;
}
    

}

@media screen and (max-width:767px){
  .banner-btn {
    top: 50%;
    margin: 0px auto;
    left: 0;
    right: 0px;
    padding: 11px;
    max-width: 365px;
    width: 100%;
    transition: all 0.3s ease;
}
.section-title {
    color: var(--primary);
    text-transform: uppercase;
    margin-top: 20px;
}
.shower-about-left {
    padding-right: 0;
    height: 100%;
}
    

}

