/* General Styles */
/* -------------------------------Body Styles---------------------- */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
/* --------------------------------------------------------------- */
/* -------------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: 18rem; /* Adjusted for better fit */
  transition: transform 0.3s ease-in-out;
}

.logo img:hover {
  transform: scale(1.05); /* Subtle hover zoom */
}

/* Social Media Icons */
.social-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  /* margin-right: 5%; */
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

.social-links a:first-child {
  color: #47c355;
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  padding: 0.2rem 0.3rem;
}

.social-links a:first-child:hover {
  transform: translateY(-2px);
}

.social-links a:last-child {
  color: #12cbc4;
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  padding: 0.2rem 0.3rem;
}

.social-links a:last-child:hover {
  transform: translateY(-2px);
}

/* 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);
}

/* 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);
}

/* 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;
}

/* ------------------------------------------------------------Advanctages section */

/* Container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 80%;
  margin: 50px auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Content Wrapper */
.content-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
/* Left Column */
.left-column {
  flex: 2;
  padding: 20px;
}

.left-column h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.left-column p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.styled-quote {
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
  color: #333;
  background: linear-gradient(
    135deg,
    rgba(40, 183, 231, 0.1),
    rgba(40, 183, 231, 0.3)
  );
  padding: 1.5rem;
  border-left: 5px solid #28b7e7;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Right Column */
.right-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.right-column img {
  max-width: 100%;
  height: auto;
  width: 50%;
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

/* Button */
/* .center-button {
  margin-top: 10px;
  padding: 6px 12px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #59c2ae;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-align: center;
}

.center-button:hover {
  background-color: #1a8fb6;
} */

a {
  text-decoration: none;
  color: white;
}

.company-btn {
  background: linear-gradient(135deg, #59c2ae, #007bff);
  color: #fff;
  padding: 0.6rem 1.5rem;
  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;
}

.company-btn:hover {
  background: linear-gradient(135deg, #0056b3, #00aaff);
  box-shadow: 0 6px 15px rgba(0, 123, 255, 0.6);
  transform: translateY(-2px);
}

/* ------------------------------------------------------------------------ */
/* ----------------------------------------Services section---------------- */
.container-panel {
  display: flex;
  /* min-height: 100vh; */
  padding: 20px;
  margin-left: 10rem;
  margin-right: 10rem;
  margin-top: 50px;
  /* background-color: #1758a5; */
}

/* Left Panel (Category List) */
.left-panel {
  width: 20%;
  background: #59c2ae;
  color: white;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}

.left-panel h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.list-group-item {
  background: transparent;
  color: white;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.list-group-item:hover,
.list-group-item.active {
  background: rgba(255, 255, 255, 0.3);
  font-weight: bold;
}

/* Right Panel (Heading + Description + Cards) */
.right-panel {
  flex: 1;
  padding: 0px 10px;
  transition: opacity 0.5s ease-in-out;
}

.category-header {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
  padding: 8px;
  background: #59c2ae;
  border-radius: 10px;
}

.category-header p {
  font-size: 1rem;
  color: white;
}

.card {
  border: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  height: 260px;
  object-fit: cover;
}

.card-text {
  font-size: 0.8rem;
  color: #666;
}

.hidden {
  display: none;
}

#touch {
  scroll-margin-top: 50px; /* or the height of your navbar */
}

/* -----------------------------------------------------------Footer Starts */
footer {
  background: linear-gradient(
    135deg,
    #c0cac9,
    #59c2ae
  ); /* Gradient background */
  color: #fff;
  padding: 10px 0;
  margin-top: 5rem;
}

/* Footer Brand */
footer .col-md-3 img {
  width: 160px;
  transition: transform 0.3s ease-in-out;
}
footer .col-md-3 img:hover {
  transform: scale(1.1);
}

/* Footer Links */
footer h5 {
  font-size: 18px;
  font-weight: bolder;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #1758a5; /* Highlight color */
}
footer ul {
  padding: 0;
}
footer ul li {
  list-style: none;
  margin-bottom: 8px;
}
footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
footer ul li a:hover {
  color: #1758a5; /* Change color on hover */
  text-decoration: underline;
}

/* Contact Info */
footer p {
  margin-bottom: 8px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

/* Social Icons */
footer .fab {
  font-size: 22px;
  margin-right: 12px;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
  color: rgba(255, 255, 255, 0.8);
}
footer .fab:hover {
  transform: translateY(-5px);
  color: #1758a5;
}

/* Bottom Copyright Section */
footer .rights {
  background: rgba(23, 41, 132, 0.8);
  font-size: 14px;
  font-weight: 400;
}

.footer-container {
  width: 90%;
  /* text-align: center; */
  margin-left: auto;
  margin-right: auto;
}

.footerAbout {
  text-align: justify;
  max-width: 85%;
}
/* ------------------------------------------------------------ */

/* |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||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;
  }
}
