/* 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);
}

/* ----------------------------------------------AUDIT SECTION */

/* --- container + headings --- */
.compliance-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px;
}

.ci-title {
  font-size: 1.9rem;
  margin: 0 0 8px;
  color: #28b7e7;
  font-weight: 700;
  text-align: center;
}

.ci-lead {
  max-width: 900px;
  margin: 0 auto 18px;
  text-align: center;
  color: #4b5b72;
  line-height: 1.6;
  font-size: 1rem;
}

.ci-subtitle {
  font-size: 1.15rem;
  margin: 22px 0 14px;
  text-align: center;
  color: #28b7e7;
  font-weight: 600;
}

/* --- responsive 3-card grid --- */
.ci-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 6px;
}

/* --- card --- */
.feature-card {
  position: relative;
  height: 320px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 12px 30px rgba(12, 20, 40, 0.08);
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.45s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* subtle zoom on hover */
.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(12, 20, 40, 0.14);
}

/* overlay (centers text above image) */
.feature-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 2;
  color: #fff;
  /* gradient for contrast (top-to-bottom) */
  background: linear-gradient(
    180deg,
    rgba(3, 12, 28, 0.45) 0%,
    rgba(3, 12, 28, 0.25) 40%,
    rgba(3, 12, 28, 0) 100%
  );
  transition: background 0.35s ease;
}

/* headline & subline on overlay */
.feature-overlay h4 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 10px rgba(3, 12, 28, 0.45);
}

.feature-overlay p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 86%;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 6px rgba(3, 12, 28, 0.35);
}

/* decorative light shimmer (appears on hover) */
.feature-card::after {
  content: "";
  position: absolute;
  left: -80%;
  top: -40%;
  width: 40%;
  height: 180%;
  transform: skewX(-18deg);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.25s, left 0.65s;
  pointer-events: none;
  z-index: 3;
}
.feature-card:hover::after {
  left: 120%;
  opacity: 1;
}

/* darker overlay on hover for text pop */
.feature-card:hover .feature-overlay {
  background: linear-gradient(
    180deg,
    rgba(3, 12, 28, 0.6) 0%,
    rgba(3, 12, 28, 0.3) 40%,
    rgba(3, 12, 28, 0) 100%
  );
}

/* --- responsive --- */
@media (max-width: 980px) {
  .ci-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-card {
    height: 300px;
  }
}
@media (max-width: 640px) {
  .ci-cards {
    grid-template-columns: 1fr;
  }
  .feature-card {
    height: 240px;
    border-radius: 10px;
  }
  .ci-title {
    font-size: 1.5rem;
  }
  .ci-lead {
    padding: 0 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;
  }
}
