/* General Styles */
/* Colors
#ffcf48
#00424e
#019ade
*/
/* -------------------------------Body Styles---------------------- */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
/* ----------------------------------------------------------------- */

/* -------------------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.15) 50%,
    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;
}

/* ------------------------------------------ */
/* -------------Overlay Heading Section--------------------------- */
.heading-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; /* optional: center text */
  max-width: 1000px;
}

.heading-container h3 {
  color: white;
  font-size: 3.4rem;
  border-bottom: 3px solid #ffcf48;
  padding: 10px 0px;
}

.heading-container p {
  color: white;
  font-size: 1.4rem;
}

.heading-container button {
  background: linear-gradient(135deg, #ffcf48, #fcb034);
  border: none;
  border-radius: 12px;
  padding: 10px 24px;
  color: #4a3200;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 14px rgba(255, 207, 72, 0.4);
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.heading-container button:hover {
  background: linear-gradient(135deg, #fcb034, #e39c20);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 195, 50, 0.5);
  color: #3a2400;
}

/* Click Effect */
.heading-container button:active {
  transform: scale(0.96);
  box-shadow: 0 4px 10px rgba(255, 195, 50, 0.3);
}

/* Glowing Ripple Effect */
.heading-container button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160%;
  height: 160%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: 0;
}

.heading-container button:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.heading-container button span {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------------- */

/* ----------------------------------------------------------------- */

.carousel-container {
  position: relative;
  width: 90%;
  margin: auto;
  overflow: hidden;
}

.image-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}

.image-slider::-webkit-scrollbar {
  display: none; /* Chrome */
}

.image-card {
  flex: 0 0 auto;
  width: 30%;
  margin: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

/* ----------------------------------------------- */

.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;
  margin-top: 70px;
}

.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-footer 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;
  }

  /* ------------------------------------------ */

  .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;
  }

  /* ---------------------------------------------------- */

  .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%;
  }

  /* --------------------------------------- */

  .heading-container {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    text-align: center;
    padding: 20px;
    top: 35%;
    left: 0;
  }

  .heading-container h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .heading-container p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .heading-container button {
    padding: 6px 15px;
    font-size: 0.8rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 207, 72, 0.3);
  }

  .heading-container button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 195, 50, 0.5);
  }

  .heading-container button:active {
    transform: scale(0.95);
  }

  /* -------------------------------------------------- */

  /* Gallery Image Box */
  .gallery-img-box {
    border-radius: 12px; /* Adjusted for smaller devices */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
  }

  /* Gallery Image */
  .gallery-img-box img {
    width: 100%;
    height: 350px; /* Adjusted height for better fit on smaller screens */
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
    border-radius: 12px; /* Adjusted rounded corners for mobile */
  }

  /* Hover Effect */
  .gallery-img-box:hover {
    transform: translateY(-4px); /* Slightly reduced hover effect */
  }

  .gallery-img-box:hover img {
    transform: scale(1.03); /* Slightly reduced scale effect for mobile */
  }
}

@media (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;
  }

  /* ------------------------------------------ */

  .heading-outer-container {
    padding: 25px 20px;
  }

  .heading-left-wrap {
    gap: 20px;
    padding: 20px 15px;
  }

  .vertical-bar {
    min-height: 80px;
  }

  .left-heading-title {
    font-size: 22px;
  }

  .left-heading-desc {
    font-size: 15px;
  }

  .heading-container {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; /* optional: center text */
    max-width: 1000px;
  }

  .heading-container h3 {
    font-size: 2rem;
  }

  .heading-container p {
    font-size: 1.1rem;
  }

  .heading-container button {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  .footer-section {
    padding: 25px 15px;
  }

  .footer-logo {
    max-width: 140px;
  }

  .social-icons a {
    font-size: 1.1rem;
  }

  .map-container iframe {
    height: 240px;
  }
}

@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;
  }
  /* --------------------------------------------- */

  .heading-left-wrap {
    padding: 25px 20px;
    gap: 18px;
  }

  .left-heading-title {
    font-size: 20px;
  }

  .left-heading-desc {
    font-size: 13.5px;
  }

  /* ------------------------------------------------------ */

  .heading-container h3 {
    color: white;
    font-size: 2.4rem;
    border-bottom: 3px solid #ffcf48;
    padding: 10px 0px;
  }

  .heading-container p {
    color: white;
    font-size: 1.1rem;
  }

  .heading-container button {
    background: linear-gradient(135deg, #ffcf48, #fcb034);
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    color: #4a3200;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 14px rgba(255, 207, 72, 0.4);
    position: relative;
    overflow: hidden;
  }

  /* Hover Effect */
  .heading-container button:hover {
    background: linear-gradient(135deg, #fcb034, #e39c20);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255, 195, 50, 0.5);
    color: #3a2400;
  }

  /* Click Effect */
  .heading-container button:active {
    transform: scale(0.96);
    box-shadow: 0 4px 10px rgba(255, 195, 50, 0.3);
  }

  /* Glowing Ripple Effect */
  .heading-container button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160%;
    height: 160%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 0;
  }

  .heading-container button:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .heading-container button span {
    position: relative;
    z-index: 1;
  }

  /* ------------------------------------------------- */

  .gallery-img-box img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
    border-radius: 15px; /* ✅ Rounded corners for images */
  }

  /* --------------------------------------------------- */
}
