/* General Styles */
/* -------------------------------Body Styles---------------------- */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #00796b;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
}

.site-title i {
  font-size: 1.6rem;
  color: #00796b;
  /* Accent color for the icon */
}

.site-title div {
  line-height: 1.2;
}

.highlight-line {
  font-weight: bold;
  color: #00796b;
  /* Accent color (teal green) */
}
/* --------------------------------------------------------------- */
/* -------------Overlay Heading Section--------------------------- */
.heading-container {
  position: absolute;
  top: 54%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: left;
  /* padding: 20px 40px; */
  /* border-radius: 10px; */

  max-width: 700px;
}

.heading-container span {
  /* background-color: #28b7e7; */
  /* padding: 0.5rem; */
  /* border-radius: 1rem; */
  color: #74ffe6;
  /* font-size: 1.9rem; */
}

.heading-container h3 {
  color: white;
  font-size: 2.9rem;
  border-bottom: 1px solid #333;
  padding: 10px 0px;
}

.heading-container p {
  color: white;
}

.heading-container button {
  background: linear-gradient(135deg, #59c2ae, #34a598);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  outline: none;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.heading-container button:hover {
  background: linear-gradient(135deg, #34a598, #218374);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

/* Click Effect */
.heading-container button:active {
  transform: scale(0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Adding a Glow Effect on Hover */
.heading-container button::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.heading-container button:hover::after {
  opacity: 1;
}
/* ----------------------------------------------------------------- */
/* ------------------Breadcrumb Label------------------------------- */
.breadcrumb-label {
  margin-left: 14%;
  font-size: 1rem;
  color: #59c2ae;
  margin-top: 2rem;
  font-weight: 500;
}

.breadcrumb-label span {
  color: grey;
}
/* ----------------------------------------------------------------- */
/* -------------------Header Styling-------------------------------- */
/* Main Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.4); /* More visible white background */
  backdrop-filter: blur(12px); /* Frosted glass effect */
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow for depth */
  z-index: 1000;
  padding-bottom: 0.5rem;
}

/* First Row: Logo & Social Links */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 5rem;
  position: relative;
}

/* Logo */
.logo {
  flex-grow: 1;
  /* margin-left: 5%; */
}

.logo img {
  width: 28rem; /* Adjusted for better fit */
  transition: transform 0.3s ease-in-out;
}

.logo img:hover {
  transform: scale(1.05); /* Subtle hover zoom */
}

.tagline {
  font-size: 0.75rem;
  /* font-style: italic; */
  color: #333;
  margin-top: 0.45rem;
  font-weight: 400;
  letter-spacing: 0.3px;
  border-top: 1px solid #333;
  display: inline-block;
  padding-top: 5px;
}

/* Social Media Icons */
.social-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* margin-right: 5%; */
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

/* Common base style for all links */
.social-links a {
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  padding: 0.2rem 0.3rem;
}

/* Hover animation for all */
.social-links a:hover {
  transform: translateY(-2px);
}

/* WhatsApp (first child) */
.social-links a:first-child {
  color: #25d366;
}

/* LinkedIn (middle child) */
.social-links a:nth-child(2) {
  color: #0077b5;
}

/* Instagram (last child) */
.social-links a:last-child {
  color: #e4405f;
}

/* Optional hover color tweaks for subtle effect */
.social-links a:first-child:hover {
  color: #1ebe5d;
}

.social-links a:nth-child(2):hover {
  color: #0a66c2;
}

.social-links a:last-child:hover {
  color: #f56073;
}

/* Labels Section */
.header-labels {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  margin-top: 0.4rem;
}

.header-labels label {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.2rem 0.3rem;
  transition: color 0.4s ease-in-out;
}

.header-labels label:hover {
  color: #28b7e7;
  transform: translateY(-2px);
}

.flash-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff9800, #ffc107);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 0 8px rgba(255, 193, 7, 0.7);
  animation: flashGlow 1.5s infinite alternate;
}

@keyframes flashGlow {
  0% {
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 14px rgba(255, 193, 7, 1);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.5);
    transform: scale(1);
  }
}

/* Horizontal Divider */
.header-line {
  width: calc(100% - 10rem);
  margin: 0 auto;
}

.header-line hr {
  border: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0;
}

/* Navbar */
.navbar {
  background: transparent !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.7rem 0;
}

.navbar-collapse {
  display: flex;
  justify-content: center;
}

.navbar-nav .nav-link {
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0 1.2rem;
  transition: color 0.5s, transform 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #28b7e7;
  text-decoration: underline;
  text-underline-offset: 8px; /* More space between text and underline */
  text-decoration-color: #28b7e7; /* Underline color */
  text-decoration-thickness: 3px; /* Thicker underline */
  transform: translateY(-2px);
}

.navbar-nav .dropdown-toggle::after {
  display: none;
  /* Hide default Bootstrap arrow */
}

.navbar-nav .dropdown-menu {
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(40, 183, 231, 0.08);
  border: none;
  margin-top: 0.7rem;
  background: #fff;
  padding: 0.5rem 0;
  transition: all 0.2s;
}

.navbar-nav .dropdown-item {
  color: #333;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  transition: background 0.2s, color 0.2s;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  background: #e6f7fd;
  color: #28b7e7;
}

.navbar-nav .nav-link .fa-chevron-down {
  font-size: 0.8em;
  margin-left: 0.3em;
  transition: transform 0.3s;
}

.navbar-nav .dropdown.show .nav-link .fa-chevron-down {
  transform: rotate(180deg);
}

/* Sticky Header Effect */
.header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding-bottom: 0.3rem;
  transition: all 0.3s ease-in-out;
}

/* -------------------------------------------------------- */

/* -------------------------------------------heading section */
/* Container for heading */
.heading-con {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Shorter Horizontal Lines */
.heading-line {
  flex: 0.1; /* Reduced width */
  height: 2px;
  background: #59c2ae;
  margin: 0 10px;
}

/* Heading */
.heading-service {
  font-size: 24px;
  font-weight: bold;
  color: #28b7e7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Description */
.heading-description {
  font-size: 14px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
}

.company-btn {
  background: linear-gradient(135deg, #59c2ae, #007bff);
  color: #fff;
  padding: 0.3rem 0.75rem;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.64rem;
}

.company-btn:hover {
  background: linear-gradient(135deg, #0056b3, #00aaff);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.6);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------------SUSTAIN SECTION */

:root {
  --bg: #f5f7fb;
  --panel: rgba(255, 255, 255, 0.85);
  --muted: #0f1724;
  --accent1: #0ea5a2;
  --accent2: #28b7e7;
  --glass: rgba(255, 255, 255, 0.16);
  --radius: 14px;
  --gap: 20px;
}

.feature-wrap {
  max-width: 1200px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--gap);
  align-items: stretch;
}
@media (max-width: 960px) {
  .feature-wrap {
    grid-template-columns: 1fr;
  }
}

/* LEFT: image panel */
.image-panel {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 240px; /* compact height */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
  /* border: 1px solid rgba(16, 24, 40, 0.04); */
  background-color: #000;
}
.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/utilities/images/energy_img.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease;
  z-index: 0;
  filter: contrast(1.02) saturate(0.98);
}
.image-panel:hover::before {
  transform: scale(1.03);
}

.image-panel-BIM {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 240px; /* compact height */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
  /* border: 1px solid rgba(16, 24, 40, 0.04); */
  background-color: #000;
}
.image-panel-BIM::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/utilities/images/bim.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease;
  z-index: 0;
  filter: contrast(1.02) saturate(0.98);
}
.image-panel-BIM:hover::before {
  transform: scale(1.03);
}

.image-overlay {
  position: relative;
  z-index: 5;
  width: 90%;
  text-align: center;
  pointer-events: none;
}

.image-paragraph {
  display: inline-block;
  background: rgba(255, 255, 255, 0.22);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #333;
  font-size: 0.92rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}

.image-sub {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  opacity: 0.95;
}

/* RIGHT: services list compact */
.list-panel {
  border-radius: var(--radius);
  padding: 12px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(249, 250, 252, 0.95)
  );
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.06);
  border: 1px solid rgba(16, 24, 40, 0.04);
  overflow: hidden;
}

.list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.list-head h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--accent2);
  font-weight: 700;
}
.list-head p {
  margin: 0;
  color: #475569;
  font-size: 0.85rem;
}

/* service items - 2 columns */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  margin-top: 10px;
}
.service-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(247, 249, 250, 0.95)
  );
  border: 1px solid rgba(16, 24, 40, 0.03);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.05);
}

/* Icon with glass effect */
.svc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12); /* glass effect */
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 4px 12px rgba(16, 24, 40, 0.06);
}

.svc-icon.i1,
.svc-icon.i2,
.svc-icon.i3,
.svc-icon.i4,
.svc-icon.i5,
.svc-icon.i6,
.svc-icon.i7,
.svc-icon.i8,
.svc-icon.i9,
.svc-icon.i10 {
  background: linear-gradient(
    135deg,
    #59c2ae,
    #34a598
  ); /* gradient behind icon */
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; /* icon color */
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.svc-icon.i1:hover,
.svc-icon.i2:hover,
.svc-icon.i3:hover,
.svc-icon.i4:hover,
.svc-icon.i5:hover,
.svc-icon.i6:hover,
.svc-icon.i7:hover,
.svc-icon.i8:hover,
.svc-icon.i9:hover,
.svc-icon.i10:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.svc-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.svc-title {
  font-weight: 700;
  color: #0b1220;
  margin: 0;
  font-size: 0.88rem;
}
.svc-desc {
  margin: 0;
  color: #475569;
  font-size: 0.77rem;
}

@media (max-width: 720px) {
  .feature-wrap {
    grid-template-columns: 1fr;
  }
  .image-panel {
    min-height: 220px;
    margin-bottom: 16px;
  }
  .services-list {
    grid-template-columns: 1fr;
  }
  .svc-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .service-item {
    padding: 6px;
  }
  .svc-title {
    font-size: 0.85rem;
  }
  .svc-desc {
    font-size: 0.78rem;
  }
}

/* ----------------------------------------------------------MODERN DIV SECTION --------------------------- */

.modern-card-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 2rem auto;
}

.card-item {
  position: relative;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.card-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* dark overlay for better text visibility */
  backdrop-filter: blur(0.8px);
}

.card-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 0 15px;
}

.card-content p {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ------------------------------------------------EES SERVICES CSS */

/* ------------ container (single-row) ------------ */
.glass-services {
  display: flex;
  justify-content: center; /* centers the row when not overflowing */
  align-items: stretch;
  gap: 26px;
  padding: 56px 80px;
  background: #fff;
  overflow-x: auto;
  scroll-behavior: smooth;
  align-items: stretch;
}

/* keeps the flex row centered even if smaller than container width */
.glass-services > * {
  flex-shrink: 0;
}

/* optional: hide scrollbar on desktop (still scrollable) */
.glass-services::-webkit-scrollbar {
  height: 8px;
}
.glass-services::-webkit-scrollbar-thumb {
  background: rgba(16, 24, 40, 0.08);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

/* ------------ glass card (modern upgrade) ------------ */
.glass-card {
  flex: 0 0 220px; /* reduced width */
  height: 340px; /* taller card */
  padding: 34px 22px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.42),
    rgba(255, 255, 255, 0.28)
  );
  border: 1px solid rgba(255, 255, 255, 0.65); /* soft white edge */
  box-shadow: 0 6px 22px rgba(16, 24, 40, 0.08),
    0 18px 40px rgba(3, 10, 30, 0.06); /* layered depth */
  backdrop-filter: blur(10px) saturate(120%);
  transform-origin: center;
  transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.42s,
    filter 0.42s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* subtle gradient stroke using pseudo-element */
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 21px;
  padding: 1px;
  background: linear-gradient(
    90deg,
    rgba(99, 164, 255, 0.22),
    rgba(124, 58, 237, 0.14)
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* decorative soft glyph / pattern */
.glass-card::after {
  content: "";
  position: absolute;
  width: 180%;
  height: 60%;
  left: -40%;
  top: -30%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(99, 164, 255, 0.06),
      transparent 12%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(124, 58, 237, 0.04),
      transparent 12%
    );
  transform: rotate(12deg) translateZ(0);
  pointer-events: none;
}

/* hover: lift + tilt + stronger stroke */
.glass-card:hover {
  transform: translateY(-14px) rotateX(6deg) rotateY(2deg);
  box-shadow: 0 22px 60px rgba(16, 24, 40, 0.12),
    0 36px 80px rgba(3, 10, 30, 0.08);
  filter: saturate(110%) contrast(102%);
}
.glass-card:hover::before {
  opacity: 1;
}

/* ------------ icon badge (round) ------------ */
.glass-card i {
  width: 84px;
  height: 84px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  box-shadow: inset 0 3px 10px rgba(255, 255, 255, 0.18),
    0 8px 20px rgba(16, 24, 40, 0.06);
  font-size: 34px;
  color: #28b7e7; /* primary icon color */
  transition: transform 0.36s, color 0.36s, box-shadow 0.36s;
  z-index: 2;
}

/* icon hover pop */
.glass-card:hover i {
  transform: translateY(-6px) scale(1.08) rotate(-3deg);
  color: #ff9800;
  box-shadow: inset 0 6px 18px rgba(255, 255, 255, 0.22),
    0 12px 30px rgba(12, 34, 70, 0.12);
}

/* ------------ title + body ------------ */
.glass-card h4 {
  margin: 6px 0 10px;
  font-size: 1.05rem;
  color: #07254d;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.2px;
}
.glass-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(7, 37, 68, 0.82);
  line-height: 1.5;
  z-index: 2;
  padding: 0 8px;
}

/* ------------ shimmer effect (animated) ------------ */
.glass-card .shimmer {
  position: absolute;
  left: -60%;
  top: -40%;
  width: 40%;
  height: 180%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.glass-card:hover .shimmer {
  animation: shimmer-slide 1s ease forwards;
  opacity: 1;
}
@keyframes shimmer-slide {
  0% {
    left: -60%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}

/* ------------ responsive tuning ------------ */
@media (max-width: 1100px) {
  .glass-services {
    padding: 46px 36px;
    gap: 20px;
  }
  .glass-card {
    flex: 0 0 200px;
    height: 320px;
    padding: 30px 18px;
  }
  .glass-card i {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .glass-services {
    padding: 30px 20px;
    gap: 14px;
  }
  .glass-card {
    flex: 0 0 180px;
    height: 300px;
    padding: 26px 14px;
  }
  .glass-card i {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }
}

/* ------------------------------------------------------COMPLIANCE SECTION  */

:root {
  --compliance-width: 460px;
  --compliance-radius: 16px;
  --accent-color: #1565c0;
  --text-dark: #1b2a4a;
  --text-muted: #475569;
}

/* layout container */
.compliance-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
  padding: 30px 20px;
}

/* card styling */
.compliance-card {
  width: var(--compliance-width);
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--compliance-radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12, 20, 40, 0.12);
  border: 1px solid rgba(200, 200, 200, 0.3);
  backdrop-filter: blur(8px);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

/* image container */
.compliance-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.compliance-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.compliance-card:hover .compliance-image img {
  transform: scale(1.08);
}

/* overlay paragraph on image */
.compliance-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.5;
  width: 90%;
  font-weight: 500;
  z-index: 2;
  padding: 10px 15px;
}

/* dark overlay for contrast */
.compliance-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  transition: background 0.3s ease;
}

.compliance-card:hover .compliance-image::before {
  background: rgba(0, 0, 0, 0.55);
}

/* content below image */
.compliance-content {
  padding: 20px 24px 26px;
}

/* list styling */
.compliance-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.compliance-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.compliance-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: var(--accent-color);
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-size: 12px;
  box-shadow: 0 3px 10px rgba(21, 101, 192, 0.25);
}

/* hover */
.compliance-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(12, 20, 40, 0.2);
}

/* responsive */
@media (max-width: 880px) {
  :root {
    --compliance-width: 92vw;
  }
  .compliance-section {
    gap: 18px;
    padding: 20px 12px;
  }
}

/* -----------------------------------------------------------Footer Starts */

:root {
  --footer-bg: linear-gradient(180deg, #061016 0%, #062026 60%);
  --bg-image: url("/utilities/images/Carousel/3.jpg");
  --accent: #37c6b2;
  --accent-2: #3ea18f;
  --muted: #a8b5b3;
  --phase-accent: #cc990f;
  --phase-accent-2: #3ea18f;
  --phase-card-bg: rgba(255, 255, 255, 0.3);
}
.smc-footer {
  background: var(--footer-bg);
  color: #e9f6f4;
  padding: 60px 0 20px;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.35);
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.footer-col h5 {
  font-size: 1rem;
  color: #dff6f2;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-logo {
  width: 80px;
  max-width: 100%;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.4));
}
.footer-logo:hover {
  transform: scale(1.05);
}

.footerAbout {
  color: #cde7e2;
  font-weight: 500;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: justify;
  margin: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: #cfeeea;
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}
.footer-col ul li a:hover {
  color: var(--accent);
  margin-left: 4px;
}

/* Contact and socials */
.contact-block h6 {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #dff6f2;
}
.contact-block p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #dff6f2;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: translateY(-5px);
  color: #fff;
}
.social-btn.whatsapp:hover {
  background: linear-gradient(135deg, #25d366, #1fae54);
}
.social-btn.instagram:hover {
  background: #f56073;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 32px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom .copyright {
  font-size: 0.9rem;
  color: #bfeee6;
}
.policy-links a {
  color: var(--muted);
  margin-left: 16px;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.policy-links a:hover {
  color: var(--accent);
}
/* ------------------------------------------------------------ */

/* |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||MEDIA QUERIES|||||||||||||||||||||||||||||||||||| */

@media (max-width: 660px) {
  /* Adjust header padding */
  .top-header {
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
  }

  /* Logo resizing */
  .logo img {
    width: 10rem;
  }

  /* Hide social icons or stack them */
  .social-container {
    align-items: center;
    margin-top: 0.5rem;
    display: none; /* or flex if you want to show them vertically */
  }

  /* Stack labels or hide */
  .header-labels {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    display: none; /* or flex if needed */
  }

  /* Divider width */
  .header-line {
    width: 90%;
  }

  /* Navbar adjustments */
  .navbar {
    padding: 0.5rem 0;
  }

  .navbar-collapse {
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
    margin: 0.3rem 0;
  }

  /* Header scrolled state for mobile */
  .header.scrolled {
    padding-bottom: 0.2rem;
  }

  /* --------------------------------------- */

  .heading-container {
    position: relative;
    top: 140px;
    left: auto;
    transform: none;
    text-align: center;
    padding: 1rem;
    margin: 0 auto;
    max-width: 90%;
  }

  .heading-container h3 {
    font-size: 1.5rem;
    padding: 8px 0;
  }

  .heading-container span {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
  }

  .heading-container p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .heading-container button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  /* --------------------------------- */

  .breadcrumb-label {
    margin-left: 1rem;
    margin-right: 1rem;
    font-size: 0.95rem;
    text-align: left;
    margin-top: 1.5rem;
  }

  .breadcrumb-label span {
    font-size: 0.9rem;
  }

  /* ----------------------------------- */

  .heading-service {
    font-size: 18px;
    text-align: center;
  }

  .heading-description {
    font-size: 12px;
    margin-left: 20px;
    margin-right: 20px;
  }

  /* ------------------------------------- */

  /* Container */
  .container {
    max-width: 95%;
    margin: 30px auto;
    padding: 15px;
    border-radius: 8px;
  }

  /* Content Wrapper */
  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  /* Left Column */
  .left-column {
    padding: 10px;
  }

  .left-column h2 {
    font-size: 1.4rem;
    text-align: center;
  }

  .left-column p {
    font-size: 0.95rem;
    text-align: center;
  }

  .styled-quote {
    font-size: 1rem;
    padding: 1rem;
    border-left: 4px solid #28b7e7;
    margin-top: 1rem;
  }

  /* Right Column */
  .right-column {
    padding: 10px;
    justify-content: center;
  }

  .right-column img {
    width: 80%;
  }

  /* Button */
  .company-btn {
    width: 100%;
    padding: 0.7rem;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1rem;
  }

  /* ------------------------------------ */

  /* Container */
  .container-panel {
    flex-direction: column;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: 10px;
  }

  /* Left Panel (Category List) */
  .left-panel {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
  }

  .left-panel h3 {
    font-size: 1.2rem;
  }

  .list-group-item {
    font-size: 0.95rem;
    padding: 8px 10px;
  }

  /* Right Panel */
  .right-panel {
    padding: 10px 0;
  }

  .category-header {
    font-size: 1.5rem;
    padding: 10px;
  }

  .category-header p {
    font-size: 0.95rem;
  }

  .card {
    margin-bottom: 20px;
  }

  .card img {
    height: auto;
    width: 100%;
    object-fit: cover;
  }

  .card-text {
    font-size: 0.9rem;
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 20px 10px;
  }

  footer .col-md-3 img {
    width: 120px;
    margin-bottom: 10px;
  }

  footer h5 {
    font-size: 1rem;
    margin-top: 15px;
  }

  footer ul li {
    margin-bottom: 6px;
  }

  footer ul li a {
    font-size: 0.95rem;
  }

  footer p {
    font-size: 0.9rem;
  }

  footer .fab {
    font-size: 20px;
    margin-right: 10px;
  }

  .footer-container {
    width: 100%;
    padding: 0 10px;
  }

  .footerAbout {
    max-width: 100%;
    text-align: center;
    font-size: 0.95rem;
  }
}

@media (min-width: 661px) and (max-width: 767px) {
  /* Adjust header padding */
  .top-header {
    flex-direction: column;
    align-items: center;
    padding: 0.6rem 1.2rem;
  }

  .logo img {
    width: 11rem;
  }

  .social-container {
    display: none;
    margin-top: 0.5rem;
    justify-content: center;
  }

  .header-labels {
    display: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }

  .header-line {
    width: 85%;
  }

  .navbar {
    padding: 0.6rem 0;
  }

  .navbar-collapse {
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav .nav-link {
    font-size: 1rem;
    margin: 0.3rem 0;
  }

  .header.scrolled {
    padding-bottom: 0.2rem;
  }

  .heading-container {
    top: 120px;
    padding: 1rem;
    max-width: 90%;
  }

  .heading-container h3 {
    font-size: 1.6rem;
  }

  .heading-container span {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .heading-container p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .heading-container button {
    font-size: 1rem;
    padding: 10px 24px;
  }

  .breadcrumb-label {
    margin: 1.5rem 1rem 0;
    font-size: 0.95rem;
  }

  .breadcrumb-label span {
    font-size: 0.9rem;
  }

  .heading-service {
    font-size: 19px;
  }

  .heading-description {
    font-size: 13px;
    margin: 0 20px;
  }

  .container {
    max-width: 95%;
    padding: 15px;
    margin: 30px auto;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .left-column,
  .right-column {
    padding: 10px;
    text-align: center;
  }

  .left-column h2 {
    font-size: 1.4rem;
  }

  .left-column p {
    font-size: 0.95rem;
  }

  .styled-quote {
    font-size: 1rem;
    padding: 1rem;
    margin-top: 1rem;
    border-left: 4px solid #28b7e7;
  }

  .right-column img {
    width: 85%;
  }

  .company-btn {
    width: 100%;
    padding: 0.7rem;
    font-size: 0.95rem;
  }

  /* Category Panels */
  .container-panel {
    flex-direction: column;
    margin: 1rem;
    padding: 10px;
  }

  .left-panel {
    width: 100%;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
  }

  .left-panel h3 {
    font-size: 1.3rem;
  }

  .list-group-item {
    font-size: 1rem;
    padding: 10px 12px;
  }

  .right-panel {
    padding: 10px 0;
  }

  .category-header {
    font-size: 1.6rem;
    padding: 12px;
  }

  .category-header p {
    font-size: 1rem;
  }

  .card {
    margin-bottom: 20px;
  }

  .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .card-text {
    font-size: 1rem;
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 20px 10px;
  }

  footer .col-md-3 img {
    width: 130px;
    margin-bottom: 10px;
  }

  footer h5 {
    font-size: 1.05rem;
    margin-top: 15px;
  }

  footer ul li {
    margin-bottom: 6px;
  }

  footer ul li a {
    font-size: 0.95rem;
  }

  footer p {
    font-size: 0.9rem;
  }

  footer .fab {
    font-size: 21px;
    margin-right: 10px;
  }

  .footer-container {
    width: 100%;
    padding: 0 10px;
  }

  .footerAbout {
    max-width: 100%;
    font-size: 0.95rem;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* Header adjustments */
  .top-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.5rem;
  }

  .logo img {
    width: 12rem;
  }

  .social-container {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 0;
  }

  .header-labels {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .header-line {
    width: 95%;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .navbar-collapse {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }

  .navbar-nav .nav-link {
    font-size: 1rem;
    margin: 0 0.5rem;
  }

  .header.scrolled {
    padding-bottom: 0.3rem;
  }

  /* Heading section */
  .heading-container {
    top: 100px;
    text-align: center;
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 80%;
  }

  .heading-container h3 {
    font-size: 2rem;
  }

  .heading-container span {
    font-size: 1.2rem;
  }

  .heading-container p {
    font-size: 1rem;
  }

  .heading-container button {
    font-size: 1.05rem;
    padding: 12px 28px;
  }

  /* Breadcrumb */
  .breadcrumb-label {
    margin: 2rem 2rem 1rem;
    font-size: 1.05rem;
  }

  .breadcrumb-label span {
    font-size: 1rem;
  }

  /* Service Heading */
  .heading-service {
    font-size: 22px;
    text-align: center;
  }

  .heading-description {
    font-size: 15px;
    margin: 0 30px;
    text-align: center;
  }

  /* Generic Container */
  .container {
    max-width: 90%;
    margin: 40px auto;
    padding: 20px;
    border-radius: 10px;
  }

  .content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 30px;
  }

  .left-column,
  .right-column {
    width: 50%;
    padding: 15px;
  }

  .left-column h2 {
    font-size: 1.8rem;
  }

  .left-column p {
    font-size: 1.1rem;
  }

  .styled-quote {
    font-size: 1.1rem;
    padding: 1rem;
    border-left: 4px solid #28b7e7;
    margin-top: 1rem;
  }

  .right-column img {
    width: 100%;
  }

  .company-btn {
    width: auto;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    text-align: center;
    margin-top: 1rem;
  }

  /* Category Panels */
  .container-panel {
    flex-direction: row;
    margin: 2rem;
    padding: 15px;
    gap: 20px;
  }

  .left-panel {
    width: 30%;
    padding: 15px;
    border-radius: 8px;
  }

  .left-panel h3 {
    font-size: 1.3rem;
  }

  .list-group-item {
    font-size: 1rem;
    padding: 10px 12px;
  }

  .right-panel {
    width: 70%;
    padding: 10px;
  }

  .category-header {
    font-size: 1.8rem;
    padding: 12px;
  }

  .category-header p {
    font-size: 1.1rem;
  }

  .card {
    margin-bottom: 20px;
  }

  .card img {
    height: auto;
    width: 100%;
    object-fit: cover;
  }

  .card-text {
    font-size: 1rem;
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 30px 15px;
  }

  footer .col-md-3 img {
    width: 140px;
    margin-bottom: 10px;
  }

  footer h5 {
    font-size: 1.2rem;
    margin-top: 15px;
  }

  footer ul li {
    margin-bottom: 8px;
  }

  footer ul li a {
    font-size: 1rem;
  }

  footer p {
    font-size: 1rem;
  }

  footer .fab {
    font-size: 22px;
    margin-right: 10px;
  }

  .footer-container {
    width: 100%;
    padding: 0 15px;
  }

  .footerAbout {
    max-width: 100%;
    text-align: center;
    font-size: 1rem;
  }
}

@media (min-width: 1025px) and (max-width: 1366px) {
  /* Adjusted Header */
  .header {
    padding-bottom: 0.2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  /* Top Header */
  .top-header {
    padding: 0.7rem 2rem;
  }

  .logo img {
    width: 14rem; /* Slightly smaller logo */
  }

  .social-links a {
    font-size: 0.7rem;
  }

  .header-labels {
    gap: 1rem;
  }

  .header-labels label {
    font-size: 0.7rem;
  }

  .header-line {
    width: calc(100% - 4rem);
  }

  .navbar-nav .nav-link {
    font-size: 0.8rem;
    margin: 0 0.8rem;
  }

  .navbar-nav .nav-link:hover {
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
  }

  /* ------------------------------------ */

  .heading-container {
    top: 60%;
    left: 28%;
    transform: translate(-50%, -50%);
    max-width: 550px;
  }

  .heading-container span {
    font-size: 1.4rem; /* reduced from 1.7rem */
    text-shadow: 1px 1px 3px rgba(71, 166, 148, 0.5);
  }

  .heading-container h3 {
    font-size: 2rem; /* reduced from 2.4rem */
    padding: 6px 0;
  }

  .heading-container p {
    font-size: 0.85rem; /* reduced from 0.95rem */
  }

  .heading-container button {
    font-size: 0.85rem; /* reduced from 0.95rem */
    padding: 6px 12px;
  }

  /* --------------------------------------------- */

  .breadcrumb-label {
    margin-left: 7%;
    font-size: 0.8rem;
  }

  /* --------------------------------------------- */

  /* Container for heading */
  .heading-con {
    margin-top: 30px;
  }

  /* Heading */
  .heading-service {
    font-size: 20px;
  }

  /* Description */
  .heading-description {
    font-size: 12px;
  }

  /* --------------------------------------------- */

  .container {
    max-width: 90%;
    margin: 40px auto;
    padding: 15px;
  }

  .content-wrapper {
    flex-direction: row;
    gap: 20px;
  }

  .left-column {
    padding: 15px;
  }

  .left-column h2 {
    font-size: 1.2rem;
  }

  .left-column p {
    font-size: 0.85rem;
  }

  .styled-quote {
    font-size: 0.9rem;
    padding: 1.2rem;
  }

  .right-column {
    padding: 15px;
  }

  .right-column img {
    width: 70%;
  }

  .company-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }

  /* ------------------------------------ */

  footer {
    padding: 8px 0;
    margin-top: 3rem;
  }

  footer .col-md-3 img {
    width: 120px;
  }

  footer h5 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  footer ul li {
    margin-bottom: 6px;
  }

  footer ul li a {
    font-size: 14px;
  }

  footer p {
    font-size: 12px;
  }

  footer .fab {
    font-size: 20px;
    margin-right: 10px;
  }

  footer .rights {
    font-size: 12px;
  }

  .footer-container {
    width: 95%;
  }

  .footerAbout {
    max-width: 90%;
    font-size: 12px;
  }

  .text-white {
    font-size: 12px;
  }

  /* ---------------------------------------------- */

  .container-panel {
    margin-left: 5rem;
    margin-right: 5rem;
    padding: 15px;
  }

  .left-panel {
    width: 25%;
    padding: 15px;
  }

  .left-panel h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .list-group-item {
    font-size: 0.95rem;
  }

  .right-panel {
    padding: 0 8px;
  }

  .category-header {
    font-size: 1.2rem;
    padding: 6px;
    margin-bottom: 15px;
  }

  .category-header p {
    font-size: 0.85rem;
  }

  .card img {
    height: 220px;
  }

  .card-text {
    font-size: 0.75rem;
  }
}
