/* General Styles */
/* Colors
#ffcf48
#00424e
#019ade
*/
/* -------------------------------Body Styles---------------------- */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
/* ----------------------------------------------------------------- */
/* Carousel Styling */
.carousel {
  position: relative;
  z-index: 0;
}

.carousel-item {
  height: 90vh;
  overflow: hidden;
  position: relative; /* Required for pseudo-element positioning */
}

/* Add dark overlay */
.carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Black transparent overlay */
  z-index: 1;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 7s ease-in-out infinite;
  position: relative;
  z-index: 0;
}

/* Keyframes for zoom effect */
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.carousel-item.active img {
  transform: scale(1.2);
}

/* Carousel Overlay Content */
.carousel-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  padding: 0 1rem;
}

.carousel-overlay h1,
.carousel-overlay p {
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.carousel-caption-custom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.overlay-divider {
  width: 460px;
  height: 4px;
  background-color: white;
  margin: 1rem auto;
  border: none;
  opacity: 0.9;
  border-radius: 2px;
}

.carousel-caption-custom .btn {
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.carousel-caption-custom .btn:hover {
  background-color: white;
  color: black;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* -------------------Header Styling-------------------------------- */
/* HEADER BASE - Transparent + Fixed */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 4rem;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(255, 255, 255, 0.2) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

/* When you scroll, you can also darken the background slightly using JS if you like */
.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Layout Container */
.header-content {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo */
.logo img {
  width: 260px;
  transition: transform 0.3s ease;
}
.logo img:hover {
  transform: scale(1.05);
}

/* Right Wrapper */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 1.2rem;
}
.social-links a {
  font-size: 1.2rem;
  color: white;
  transition: color 0.3s, transform 0.3s;
}
.social-links a:hover {
  color: #019ade;
  transform: translateY(-2px);
}

/* Labels and Button Row */
.header-labels {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-labels label {
  font-size: 0.95rem;
  font-weight: 500;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}
.header-labels label:hover {
  color: #019ade;
}

.header-btn {
  background-color: #019ade;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}
.header-btn:hover {
  background-color: #1a9ac4;
  transform: translateY(-2px);
}

/* Navbar */
.navbar {
  padding: 0;
}
.navbar-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar-nav .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s, text-decoration 0.3s;
}
.navbar-nav .nav-link:hover {
  color: #019ade;
  text-decoration: underline;
  text-underline-offset: 6px;
  transform: translateY(-2px);
}

.dashboard_anchor {
  text-decoration: none;
  color: white;
}

/* -------------------------------------------------------- */

/* Outer container to center everything horizontally */
.heading-outer-container {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  padding: 30px 0px;
}

/* Flex wrapper with vertical centering */
.heading-left-wrap {
  display: flex;
  align-items: center; /* <- This vertically centers the children */
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  /* background: rgba(255, 255, 255, 0.8); Optional styling */
  padding: 20px 15px;
  border-radius: 8px;
}

/* Left vertical colored bar */
.vertical-bar {
  width: 6px;
  height: 100%; /* Full height of container */
  background-color: #ffcf48;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Text container that stretches fully */
.heading-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Heading style */
.left-heading-title {
  font-size: 26px;
  color: #00424e;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Highlight "WE PROVIDE" */
.highlight-text {
  color: #ffcf48;
}

/* Description */
.left-heading-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.2;
}

/* ------------------------------------------ */

.custom-card {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Image at top */
.portrait-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

/* Card content area */
.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 20px;
  text-align: center;
}

/* Title styling */
.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #00424e;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

/* Description */
.card-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1; /* Takes up remaining vertical space */
}

/* Button */
.btn-custom {
  background-color: #28b7e7;
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: center;
}

.btn-custom:hover {
  background-color: #1b9bc4;
  transform: translateY(-2px);
}

/* ----------------------------------------------------------- */

.parallax-section {
  background-image: url("/assets/img/carousel/4.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  margin-top: 100px;
  padding-bottom: 50px;
}

.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: -1;
}

.parallax-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 100%;
}

.parallax-card:hover {
  transform: translateY(-8px);
}

.parallax-img {
  width: 100%;
  height: 350px; /* Increased height for better image display */
  object-fit: cover;
  border-radius: 10px;
}

.parallax-label {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #00424e;
  text-align: center;
}

/* -------------------------------------------------- */

.custom-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-weight: bold;
  color: #00424e;
}

.card-text {
  color: #555;
}

.card-body i {
  color: #28b7e7;
}

/* ------------------------------------------------------ */

.parallax-feature-section {
  background-image: url("/assets/img/carousel/2.jpg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.parallax-feature-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: -1;
}

.feature-img {
  border-radius: 15px;
  max-height: 400px;
  object-fit: cover;
}

.feature-content {
  backdrop-filter: blur(6px);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.feature-description {
  font-size: 1.1rem;
  color: #e0e0e0;
  line-height: 1.6;
}

.feature-btn {
  background-color: #28b7e7;
  color: white;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border-radius: 30px;
  font-size: 1rem;
}

.feature-btn:hover {
  background-color: #1aa3cc;
  transform: translateY(-2px);
}

/* -------------------------------------------------------------- */
.services-request-bg {
  background-image: url("/assets/img/carousel/7.jpeg");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 1rem 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 40px;
}

.services-request-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.content-box {
  text-align: center;
  padding: 40px;
  border-radius: 12px;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 60px;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.sub-description {
  font-size: 1.2rem;
  color: #ddd;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
}

.button-group .btn {
  font-size: 1rem;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
  margin-bottom: 60px;
}

.button-group .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
  background-color: #25d366; /* WhatsApp green */
  color: white;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1da851; /* Darker green on hover */
  color: white;
}

/* --------------------------------------------- */
.feature-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #00424e;
  margin-bottom: 15px;
}

.feature-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* ----------------------------------------------- */

.whatsapp-icon {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: white;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
  z-index: 1000;
  animation: bounce 2s infinite ease-in-out;
  text-decoration: none;
}

.whatsapp-icon:hover {
  background: linear-gradient(135deg, #1ebe5d, #25d366);
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-decoration: none;
}

.whatsapp-icon i {
  font-size: 42px;
}

/* Bounce animation for attention */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ----------------------------------------------- */

.footer-section {
  background: #00424e;
  color: #ffffff;
  font-size: 0.95rem;
}

.footer-logo {
  max-width: 150px;
}

.footer-line {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 15px 0;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #28b7e7;
}

.map-container iframe {
  border-radius: 10px;
  width: 100%;
}

/* ######################################################################################################################################## */
/* ----------------------------------------------------------Device Responsive CSS Starts-------------------------------------------------- */

@media screen and (max-width: 660px) {
  .header {
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.2) 80%,
      rgba(0, 0, 0, 0.4) 100%
    );
    padding: 0.8rem 1.2rem;
  }

  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .logo img {
    width: 140px;
  }

  .header-right {
    align-items: center;
    gap: 0.6rem;
    width: 100%;
  }

  .social-links {
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    display: none;
  }

  .header-labels {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .header-labels > *:not(:last-child) {
    display: none;
  }

  .header-btn {
    font-size: 0.7rem;
    padding: 0.35rem 0.9rem;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
  }

  .navbar-toggler {
    margin: 0 auto;
  }

  /* ------------------------------------------ */

  .carousel-item {
    height: 65vh; /* Reduce height for smaller screens */
  }

  .carousel-item img {
    object-fit: cover;
    height: 100%;
  }

  .carousel-caption-custom {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 1rem;
    width: 100%;
  }

  .carousel-caption-custom h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .carousel-caption-custom p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .overlay-divider {
    width: 200px;
    height: 2px;
    margin: 0.8rem auto;
  }

  .carousel-caption-custom .btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  .carousel-overlay {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 0.8rem;
    width: 100%;
    text-align: center;
  }

  .carousel-overlay h1,
  .carousel-overlay p {
    font-size: 1rem;
  }

  /* --------------------------------------- */

  .heading-outer-container {
    justify-content: center; /* Center everything */
    padding: 20px 10px;
  }

  .heading-left-wrap {
    flex-direction: row; /* Keep the vertical bar and text side by side */
    align-items: flex-start; /* Align items to the top */
    gap: 15px;
    padding: 15px 10px;
    text-align: left;
  }

  .vertical-bar {
    width: 4px;
    height: auto;
    min-height: 60px; /* Ensure it's visible next to text */
    background-color: #ffcf48;
    border-radius: 4px;
  }

  .heading-text-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .left-heading-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .left-heading-desc {
    font-size: 14px;
    line-height: 1.4;
  }

  /* ---------------------------------------------------- */

  .custom-card {
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  .portrait-img {
    height: 220px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .card-body {
    padding: 15px;
  }

  .card-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .card-text {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .btn-custom {
    padding: 0.4rem 1.2rem;
    font-size: 0.9rem;
  }
  /* ------------------------------------------------------------- */

  .parallax-section {
    margin-top: 60px;
    padding-bottom: 30px;
    background-attachment: scroll; /* Disable parallax effect on mobile for performance */
  }

  .parallax-card {
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  }

  .parallax-img {
    height: 220px;
    border-radius: 8px;
  }

  .parallax-label {
    margin-top: 8px;
    font-size: 1rem;
  }

  /* ------------------------------------------------------ */
  .custom-card {
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  .card-title {
    font-size: 1.2rem;
    text-align: center;
  }

  .card-text {
    font-size: 0.95rem;
    text-align: center;
  }

  .feature-img {
    max-height: 240px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
  }

  .feature-description {
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    padding: 10px 15px;
  }

  .feature-content {
    padding: 15px;
    border-radius: 10px;
  }

  .feature-btn {
    font-size: 0.95rem;
    padding: 8px 20px;
    display: block;
    margin: 10px auto;
  }

  .parallax-feature-section {
    background-attachment: scroll;
    padding: 40px 10px;
  }

  .services-request-bg {
    background-attachment: scroll;
    padding: 2rem 1rem;
    margin-top: 20px;
  }

  .content-box {
    padding: 20px;
  }

  .main-heading {
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .sub-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .button-group .btn {
    font-size: 0.95rem;
    padding: 8px 18px;
    margin-bottom: 40px;
  }

  .btn-whatsapp {
    font-size: 0.95rem;
    padding: 8px 20px;
  }

  /* -------------------------------------------- */

  .feature-heading {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 10px;
  }

  .feature-description {
    font-size: 1rem;
    text-align: center;
    line-height: 1.5;
    padding: 0 10px;
  }

  .footer-section {
    font-size: 0.9rem;
    text-align: center;
    padding: 20px 10px;
  }

  .footer-logo {
    max-width: 120px;
    margin: 0 auto 15px;
    display: block;
  }

  .footer-line {
    margin: 10px auto;
    width: 80%;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }

  .social-icons a {
    font-size: 1rem;
  }

  .map-container iframe {
    height: 200px;
    border-radius: 8px;
    width: 100%;
  }
}

@media screen and (min-width: 661px) and (max-width: 767px) {
  /* Header */
  .header {
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.2) 80%,
      rgba(0, 0, 0, 0.4) 100%
    );
    padding: 0.8rem 1.2rem;
  }

  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .logo img {
    width: 140px;
  }

  .header-right {
    align-items: center;
    gap: 0.6rem;
    width: 100%;
  }

  .social-links {
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    display: none;
  }

  .header-labels {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .header-labels > *:not(:last-child) {
    display: none;
  }

  .header-btn {
    font-size: 0.7rem;
    padding: 0.35rem 0.9rem;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
  }

  .navbar-toggler {
    margin: 0 auto;
  }

  /* ------------------------------------------ */

  .carousel-item {
    height: 65vh; /* Reduce height for smaller screens */
  }

  .carousel-item img {
    object-fit: cover;
    height: 100%;
  }

  .carousel-caption-custom {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 1rem;
    width: 100%;
  }

  .carousel-caption-custom h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .carousel-caption-custom p {
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  .overlay-divider {
    width: 200px;
    height: 2px;
    margin: 0.8rem auto;
  }

  .carousel-caption-custom .btn {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  .carousel-overlay {
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0 0.8rem;
    width: 100%;
    text-align: center;
  }

  .carousel-overlay h1,
  .carousel-overlay p {
    font-size: 1rem;
  }

  /* Heading Section */
  .heading-outer-container {
    padding: 15px 10px;
  }

  .heading-left-wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 10px;
    text-align: left;
  }

  .vertical-bar {
    width: 4px;
    min-height: 60px;
    background-color: #ffcf48;
    border-radius: 4px;
  }

  .left-heading-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .left-heading-desc {
    font-size: 1rem;
  }

  /* Custom Cards */
  .custom-card {
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  .portrait-img {
    height: 200px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    object-fit: contain;
  }

  .card-body {
    padding: 12px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .btn-custom {
    padding: 0.45rem 1.2rem;
    font-size: 1rem;
  }

  .parallax-section {
    margin-top: 50px;
    padding-bottom: 30px;
  }

  .parallax-card {
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  }

  .parallax-img {
    height: 200px;
  }

  .parallax-label {
    font-size: 1.1rem;
    margin-top: 8px;
  }

  /* Feature Cards */
  .feature-heading {
    font-size: 1.4rem;
    text-align: center;
  }

  .feature-description {
    font-size: 1rem;
    text-align: center;
    padding: 0 15px;
  }

  .footer-section {
    font-size: 0.9rem;
    padding: 15px 8px;
  }

  .footer-logo {
    max-width: 100px;
    margin: 0 auto;
  }

  .footer-line {
    margin: 8px auto;
    width: 85%;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
  }

  .social-icons a {
    font-size: 0.9rem;
  }

  /* Map */
  .map-container iframe {
    height: 200px;
    border-radius: 8px;
    width: 100%;
  }

  /* Buttons */
  .button-group .btn {
    padding: 8px 20px;
    margin-bottom: 30px;
  }

  .btn-whatsapp {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .carousel-caption-custom {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  }

  .carousel-item {
    height: 75vh;
  }

  .carousel-caption-custom h1 {
    font-size: 2rem;
  }

  .carousel-caption-custom p {
    font-size: 1rem;
  }

  .carousel-caption-custom .btn {
    padding: 0.5rem 1.3rem;
    font-size: 0.9rem;
  }

  .overlay-divider {
    width: 300px;
    height: 3px;
  }

  /* Header */
  .header {
    padding: 1rem 2rem;
  }

  .logo img {
    width: 200px;
  }

  .header-right {
    gap: 0.6rem;
  }

  .social-links a {
    font-size: 1.1rem;
  }

  .header-labels {
    gap: 1rem;
  }

  .header-labels label {
    font-size: 0.9rem;
  }

  .header-btn {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }

  .navbar-nav {
    gap: 1rem;
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
  }

  .dashboard_anchor {
    font-size: 0.95rem;
  }

  /* ----------------------------------------------- */

  /* Adjust heading container padding */
  .heading-outer-container {
    padding: 20px 0;
  }

  .heading-left-wrap {
    flex-direction: row;
    padding: 15px 10px;
    gap: 16px;
  }

  .left-heading-title {
    font-size: 22px;
  }

  .left-heading-desc {
    font-size: 15px;
    line-height: 1.4;
  }

  .vertical-bar {
    width: 5px;
  }

  /* Card responsiveness */
  .custom-card {
    border-radius: 16px;
  }

  .portrait-img {
    height: 280px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .card-body {
    padding: 16px;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .btn-custom {
    font-size: 0.9rem;
    padding: 0.45rem 1.2rem;
  }

  /* ------------------------------------------------- */

  /* Parallax section */
  .parallax-section {
    background-attachment: scroll;
    padding-bottom: 30px;
    margin-top: 60px;
  }

  .parallax-img {
    height: 280px;
  }

  .parallax-label {
    font-size: 1rem;
  }

  .parallax-card {
    padding: 10px;
  }

  /* Custom card */
  .custom-card {
    border-radius: 12px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  /* Parallax Feature Section */
  .parallax-feature-section {
    background-attachment: scroll;
  }

  .feature-img {
    max-height: 280px;
    width: 100%;
  }

  .feature-content {
    padding: 15px;
    border-radius: 10px;
  }

  .feature-description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .feature-btn {
    font-size: 0.95rem;
    padding: 8px 20px;
  }

  /* Services Request Background */
  .services-request-bg {
    background-attachment: scroll;
    margin-top: 20px;
    padding: 1rem 0;
  }

  .main-heading {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 15px;
  }

  .sub-description {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }

  .content-box {
    padding: 30px;
  }

  .button-group .btn {
    font-size: 0.95rem;
    padding: 8px 20px;
    margin-bottom: 40px;
  }

  .btn-whatsapp {
    font-size: 0.95rem;
  }

  /* ----------------------------------------------- */

  /* Feature Section */
  .feature-heading {
    font-size: 1.6rem;
    margin-bottom: 12px;
    text-align: center;
  }

  .feature-description {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    padding: 0 10px;
  }

  /* Footer Section */
  .footer-section {
    font-size: 0.9rem;
    text-align: center;
    padding: 20px 10px;
  }

  .footer-logo {
    max-width: 120px;
    margin-bottom: 15px;
  }

  .footer-line {
    margin: 10px 0;
  }

  .social-icons a {
    font-size: 1rem;
    margin: 0 8px;
  }

  .map-container iframe {
    height: 250px;
    border-radius: 8px;
  }
}

@media screen and (max-width: 1366px) and (min-width: 1025px) {
  /* Logo */
  .logo img {
    width: 160px;
    margin: 0;
    padding: 0;
  }

  .social-links a {
    font-size: 0.7rem;
    margin: 0px;
  }

  .header-labels label {
    font-size: 0.7rem;
    padding: 0px;
    margin: 0px;
  }

  /* Navbar */
  .navbar {
    padding: 0;
    margin: 0;
  }

  .navbar-nav {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .navbar-nav .nav-link {
    font-size: 0.7rem;
    padding: 0px;
    margin: 0px;
  }

  .header-btn {
    background-color: #019ade;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    border: none;
    padding: 0.25rem 0.7rem;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, transform 0.3s ease;
  }

  /* -------------------------------------------------- */

  .carousel-item {
    height: 70vh;
  }

  .carousel-caption-custom {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  }

  .carousel-caption-custom h1 {
    font-size: 1.5rem;
  }

  .carousel-caption-custom p {
    font-size: 1rem;
  }

  .carousel-caption-custom .btn {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }

  /* --------------------------------------------- */

  .heading-left-wrap {
    padding: 25px 20px;
    gap: 18px;
  }

  .left-heading-title {
    font-size: 20px;
  }

  .left-heading-desc {
    font-size: 13.5px;
  }

  .portrait-img {
    height: 200px;
  }

  .card-title {
    font-size: 0.9rem;
  }

  .card-text {
    font-size: 0.75rem;
  }

  .btn-custom {
    font-size: 0.9rem;
    padding: 0.45rem 1.3rem;
  }

  /* ------------------------------------------------------ */

  .parallax-section {
    margin-top: 80px;
    padding-bottom: 40px;
  }

  .parallax-img {
    height: 200px;
  }

  .parallax-label {
    font-size: 1.1rem;
  }

  .parallax-card {
    padding: 12px;
    border-radius: 12px;
  }

  .custom-card {
    border-radius: 12px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.95rem;
  }

  .parallax-feature-section {
    background-position: center;
  }

  .feature-img {
    max-height: 280px;
    border-radius: 12px;
  }

  .feature-description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .feature-btn {
    font-size: 0.95rem;
    padding: 0.45rem 1.4rem;
  }
}
