/* Reset default margins */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden !important;
}

/* Body */
body {
  /* font-family: "Segoe UI", Arial, sans-serif; */
  font-family: Abyssinica SIL;
  color: black;
}

/* ===== Base Header Styles ===== */
/* ===== Header Section ===== */
header {
  /* background: linear-gradient(to right, #FFFFFF, #A40525); */
  background: #dfd2d2;
  color: ghostwhite;
  padding: 10px 0;
  position: relative;
  z-index: 1000;
}

.container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
}

.logo h1 {
  color: black;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  /* color: ghostwhite; */
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffcccb;
}

/* ===== Hamburger Icon ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 28px;
  height: 22px;
  justify-content: space-between;
  z-index: 1100;
  position: absolute;
  /* stays inside header */
  top: 20px;
  right: 25px;
}

.menu-toggle span {
  background: ghostwhite;
  height: 3px;
  border-radius: 3px;
  transition: all 0.4s ease;
}

/* ===== Responsive Drawer Menu ===== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: linear-gradient(to bottom, #dfd2d2, #f8f8ff);
    /*background: linear-gradient(to bottom, #A40525, #7a0000);*/
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    transition: right 0.4s ease;
    z-index: 1050;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 18px;
  }

  /* Show hamburger on mobile */
  .menu-toggle {
    display: flex;
  }

  /* Hamburger "X" animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* Dimmed overlay behind menu */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 1040;
  }

  .overlay.active {
    display: block;
  }
}

/* ===== Header Section ===== */

/* Hero Section */
/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(75%);
}

/* Text on bottom-left corner */
.hero-text {
  position: absolute;
  bottom: 40px;
  /* distance from bottom edge */
  left: 40px;
  /* distance from left edge */
  text-align: left;
  color: ghostwhite;
  /* background: rgba(0, 0, 0, 0.5); */
  /* subtle overlay for readability */
  padding: 20px 30px;
  border-radius: 6px;
  /* max-width: 600px; */
}

.hero-text h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-decoration: solid;
  color: #fff;
  /* ensure text color stands out */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  /* subtle shadow */
}

.hero-text p {
  font-size: 1rem;
  margin: 0;
  color: #f0f0f0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  /* softer effect for body text */
}

/* .hero-text h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-decoration: solid;
}

.hero-text p {
  font-size: 1rem;
  margin: 0;
} */

/* Hero Section */
/* .hero {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: ghostwhite;
}

.hero-text h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1rem;
} */

/* Welcome Section */
.welcome-section {
  background-color: #f5f5f5;
  padding: 60px 10%;
}

.welcome-container h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  border-bottom: 3px solid #b30000;
  display: inline-block;
  padding-bottom: 5px;
}

.welcome-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.welcome-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.welcome-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

/* Gray Bar Section */
.gray-bar {
  width: 100%;
  height: 30px;
  /* You can adjust height */
  background-color: #a8a6a6;
  /* Light gray */
  border-top: 2px solid #bbb;
  border-bottom: 2px solid #bbb;
}

/* Info Section (Alternating Image & Text) */
/* .info-section {
  width: 90%;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  background-color: #fff1e5;
} */

.info-section {
  width: 100%;
  margin: 0;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  background-color: #fff1e5;
}

/* Keep inner content centered nicely within the full-width background */
.info-container {
  width: 90%;
  margin: 0 auto;
}

.info-container h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  border-bottom: 3px solid #b30000;
  display: inline-block;
  padding-bottom: 5px;
}

.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.info-row.reverse {
  flex-direction: row-reverse;
}

.info-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.info-text {
  flex: 1;
  text-align: justify;
}

.info-text h3 {
  color: #b30000;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.info-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: black;
}




/* ===== Detailed Services Section ===== */
.detailed-services {
  background-color: #fceee5;
  padding: 50px 20px;
  text-align: center;
}

.detailed-services h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-transform: uppercase;
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 8px;
}

.service-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 38px;
  margin-top: 40px;
  justify-items: center;
}



.service-card {
  background: linear-gradient(135deg, #e0e0e0, #b3e9ff);
  /* gray + pastel red */
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  width: 280px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  /* ensure the icon can be positioned absolutely */
}


.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 18px;
  color: #d92d2d;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: black;
  line-height: 1.5;
  text-align: justify;
}

.service-icon {
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px;
  z-index: 2;
}

.service-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

/* Optional: add some spacing at top so image doesn’t clash with floating icon */
.service-card img:first-of-type {
  margin-top: 30px;
}

.service-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.read-more-btn,
.enquiry-btn {
  background-color: #A40525;
  color: ghostwhite;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 14px;
}

.read-more-btn:hover,
.enquiry-btn:hover {
  background-color: #b30000;
}

/* Pop-Up Enquiry Form */
.enquiry-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
}

.popup-content h3 {
  margin-bottom: 20px;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.popup-content button {
  padding: 10px 20px;
  background: red;
  color: ghostwhite;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Pop-Up Enquiry Form */
/* red Bar Section */
.red-bar {
  width: 100%;
  height: 30px;
  /* You can adjust height */
  background-color: #970505;
  /* Light gray */
  border-top: 2px solid #bbb;
  border-bottom: 2px solid #bbb;
}

/* Gallery */
/* ===== Gallery Section ===== */
.gallery-section {
  position: relative;
  background: url("./image/gallery/background.png") center/cover no-repeat;
  padding: 60px 0;
  color: black;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(165, 38, 38, 0.6); */
  background: #F4909099;
  /* semi-transparent red overlay */
  z-index: 1;
}

.gallery-container {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

.gallery-container h2 {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  display: inline-block;
  padding-bottom: 5px;
  color: ghostwhite;
}

/* ===== Grid Layout ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  justify-items: center;
}

/* ===== Box with Image Only ===== */
.gallery-box {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
  width: 220px;
  height: 140px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.gallery-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* ===== Text Outside Box ===== */
.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.gallery-item p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: ghostwhite;
  text-transform: capitalize;
  text-align: center;
  line-height: 1.3;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
  .gallery-box {
    width: 180px;
    height: 120px;
  }

  .gallery-item p {
    font-size: 13px;
  }
}

/* Gallery */

/* Why Choose Section */
/* Why Choose Section */
.whychoose-section {
  background-color: #f9f9f9;
  padding: 60px 5%;
  text-align: center;
}

.whychoose-container h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
  border-bottom: 3px solid #b30000;
  display: inline-block;
  padding-bottom: 5px;
}

/* Card Layout */
.whychoose-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}

/* Card Design */
.whychoose-card {
  background: linear-gradient(135deg, #ec7d7d, #d3d3d3);
  /* red → gray gradient */

  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 25px 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: ghostwhite;
  /* make text readable on red area */
}

.whychoose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Circular Image */
.whychoose-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  /* Makes it circular */
  border: 3px solid #b30000;
  /* Optional red border around image */
  margin-bottom: 15px;
}

/* Card Text */
.whychoose-card h3 {
  color: #b30000;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.whychoose-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: black;
  max-width: 250px;
  margin: 0 auto;
}

/* Client Success Stories */
/* ===== Client Success Stories Section ===== */
.client-stories-section {
  background-color: #FF4938;
  padding: 25px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.client-stories-container {
  width: 80%;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.client-stories-container h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: ghostwhite;
  margin-bottom: 60px;
}

/* ===== Slider Layout ===== */
.story-slider {
  position: relative;
  min-height: 225px;
}

.story-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.6s ease, transform 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.story-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
}

/* ===== Image Styling ===== */
.story-image {
  width: 650px;
  height: 320px;
  /* border-radius: 50%; */
  object-fit: cover;
  margin-bottom: 25px;
  border: 2px solid ghostwhite;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}

/* Youtube Video */
.story-video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0b1a2d;
  /* optional: match your theme */
  padding: 50px 20px;
}

.story-video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.story-video-container iframe {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0;
  border-radius: 16px;
}

/* Youtube Video */

/* ===== Text Styling ===== */
.story-content {
  max-width: 650px;
  margin: 0 auto;
}

.story-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: ghostwhite;
  margin-bottom: 15px;
}

.story-author {
  font-size: 1rem;
  font-weight: 600;
  color: ghostwhite;
}

/* ===== Navigation Button ===== */
.story-controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.story-controls button {
  background: rgba(255, 255, 255, 0.25);
  border: none;
  color: ghostwhite;
  font-size: 32px;
  cursor: pointer;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.story-controls button:hover {
  background: rgba(255, 255, 255, 0.45);
  transform: scale(1.1);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .story-slider {
    min-height: 450px;
  }

  .story-text {
    font-size: 1rem;
  }

  .story-image {
    width: 280px;
    height: 220px;
  }

  .story-controls button {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
}

/* Client Success Stories */
.contactus-section {
  width: 90%;
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  padding: 50px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, orange, #1e90ff);
  /* gradient from orange to blue */
  color: ghostwhite;
  /* make text readable on gradient */
}

.contactus-container h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 3px solid ghostwhite;
  /* border visible on gradient */
  display: inline-block;
  padding-bottom: 5px;
}

.contactus-container p {
  font-size: 0.9rem;
  color: #f9f9f9;
  margin-bottom: 30px;
}

.contactus-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contactus-form input,
.contactus-form textarea {
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

.contactus-form button {
  padding: 12px;
  font-size: 1rem;
  background-color: #b30000;
  /* red background */
  color: ghostwhite;
  /* ghostwhite text */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contactus-form button:hover {
  background-color: #800000;
  /* darker red on hover */
}


.map-container {
  margin-top: 40px;
  width: 100%;
  /* max-width: 900px; */
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); */
}

.map-container h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  border-bottom: 3px solid ghostwhite;
  /* border visible on gradient */
  display: inline-block;
  padding-bottom: 5px;
}


.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 12px;
}

/* Existing main footer styling */
.main-footer {
  background: linear-gradient(to bottom right, #f9f2f2, #e6cfcf);
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #000;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.footer-col {
  width: 30%;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-col h3 {
  color: #000;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #000;
}

.footer-logo {
  width: 80px;
  margin-bottom: 10px;
}

.footer-col p {
  margin: 6px 0;
  font-size: 14px;
}

.footer-col i {
  color: #ff4040;
  /* red icon color */
  margin-right: 8px;
}

/* 🔻 Red bottom footer bar */
.footer-bottom {
  background-color: #ff4040;
  color: ghostwhite;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  width: 100%;
}

.footer-left,
.footer-right {
  margin: 0;
}


/* Responsive Design */
@media (max-width: 992px) {
  .whychoose-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .whychoose-cards {
    grid-template-columns: 1fr;
  }

  .whychoose-card img {
    width: 100px;
    height: 100px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .hero-text h2 {
    font-size: 1.3rem;
  }

  .hero-text p {
    font-size: 0.9rem;
  }

  .welcome-content {
    flex-direction: column;
    text-align: center;
  }

  .welcome-text {
    text-align: justify;
  }

  .info-row,
  .info-row.reverse {
    flex-direction: column;
    text-align: center;
  }


  @media (max-width: 992px) {
    .whychoose-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .whychoose-cards {
      grid-template-columns: 1fr;
    }

    .whychoose-card img {
      width: 100px;
      height: 100px;
    }
  }
}

/* Terms of Use */
/* Modal Background */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  padding-top: 60px;
}

/* Modal Box */
.modal-content-box {
  background: #fff;
  margin: auto;
  padding: 25px 30px;
  border-radius: 8px;
  width: 90%;
  max-width: 650px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease-out;
}

.modal-content-box h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 24px;
  text-align: center;
  text-decoration: underline;
}

/* Close Button */
.close-modal {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.close-modal:hover {
  color: #e74c3c;
}

/* Headings */
.modal-content-box h2 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 24px;
  text-align: center;
}

.modal-content-box h3 {
  margin-top: 15px;
  font-size: 18px;
}

/* Smooth Fade Animation */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Terms of Use */