html, body {
  width: 100%;
  overflow-x: hidden; 
}

.nav,
.hero-split {
  background: #f3f3f3; 
}


/* === HERO SPLIT SECTION === */
.hero-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; 
  height: 90vh;
  position: relative;
  overflow: hidden;
  margin: 40px;
  padding: 140px 50px 50px; 
  background: #f3f3f3;
  border-radius: 20px;
  gap: 10px;
}

/* === SIDE IMAGES === */
.side-image {
  width: 150px;
  height: 200px;
  margin-top: 150px;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* === CENTER CONTENT === */
.hero-center {
  max-width: 1100px;
  color: #000;
  text-align: center;
  padding: 10px 0;
}
.fixed-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.fixed-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Call button */
.call-btn {
  background: #f9b233;
}

/* WhatsApp button */
.whatsapp-btn {
  background: #25D366;
}

/* Hover effects */
.fixed-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .fixed-buttons a {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

.hero-center h1 {
  font-family: 'Shantell Sans', cursive;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #222; /* adjust based on your background */
}

/* Optional subtle animation for entry */
.hero-center h1 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .hero-center h1 {
    font-size: 2.2rem;
  }
}


.hero-center p {
  font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;

  margin-bottom: 40px;
  color: #333;
}

/* === SEARCH AREA CONTAINER === */
.hero-search-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* space between box and button */
  margin-top: 40px;
}

/* === SEARCH BOX === */
.hero-search {
  background: transparent;
  border-radius: 10px;
  border: 1px solid rgb(97, 97, 112); 
  width: 100%;
  max-width: 500px;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* === INPUT === */
.search-input {
  flex: 1;
  padding: 10px 25px;
  border: none; 
  font-size: 1.1rem;
  outline: none;
  border-radius: 10px;
  background: transparent;
}

/* === BUTTON === */
.search-btn {
  background: #2f243f;
  color: #fff;
  padding: 14px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-btn:hover {
  background: #333;
}

/* === IMAGE FLEX SECTION (ZERO GAP) === */
.image-flex-section {
  width: 100%;
  margin: 0 50px;          
  padding: 0;         
  display: flex;
  justify-content: center;
}

.image-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;             
  width: 100%;
}

/* === IMAGE SIZES === */
.img-large,
.img-medium,
.img-small {
  object-fit: cover;
  border-radius: 10px;   
  margin: 0;          
  padding: 0;
  display: block;
}

/* Size proportions */
.img-large {
  width: 470px;
  height: 350px;
}

.img-medium {
  width: 400px;
  height: 250px;
}

.img-small {
  width: 300px;
  height: 350px;
}

/* === CARD OVERLAY === */
.img-with-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.satisfaction-card {
  position: absolute;
  width: 400px;
  height: 15vh;
  bottom: -105px;
  background: #2f243f;
  color: #fff;
  padding: 18px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.satisfaction-card h3 {
  font-size: 1.8rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.satisfaction-card p {
  font-size: 0.95rem;
  margin: 0;
}
/* === CUSTOMER AVATARS INSIDE CARD === */
.customer-avatars {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

/* overlap effect */
.avatar-1 {
  z-index: 2;
  transform: translateX(10px);
}

.avatar-2 {
  z-index: 1;
  transform: translateX(-10px);
}

/* subtle hover effect */
.avatar:hover {
  transform: scale(1.1);
}

/* === IMAGE WITH TEXT === */
.img-with-text {
  position: relative;
  display: inline-block;
  width: fit-content;
}
@media (max-width: 900px) {
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  .hero-split {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; /* keep text aligned left */
    padding: 0;
    margin: 0;
    height: auto;
    padding-top: 100px;
    width: 100%;
    box-sizing: border-box;
  }

  .side-image {
    display: none;
  }

  .hero-center {
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 0 16px; /* small inner padding, equal left/right */
    box-sizing: border-box;
  }

  .hero-center h1 {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .hero-center p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  /* === SEARCH AREA === */
  .hero-search-area {
    display: flex;
    flex-direction: column; /* stack vertically */
    width: 100%;
    gap: 12px;
  }

  .hero-search {
    width: 100%;
  }

  .search-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
  }

  .search-btn {
    width: 100%;
    padding: 14px 16px;
    border: none;
    border-radius: 10px;
    background-color: #2b5a4c;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .search-btn:hover {
    background-color: #1f4033;
  }
    .image-flex-section {
    width: 100%;
    margin: 0;
    padding: 0 10px;
    display: flex;
    justify-content: flex-start;
    overflow-x: auto; /* allows horizontal scrolling */
    scroll-behavior: smooth;
  }

  .image-container {
    display: flex;
    flex-direction: row; /* side-by-side */
    align-items: center;
    gap: 10px;
    width: max-content; /* prevent shrinking */
  }

  .img-large,
  .img-medium,
  .img-small {
   
    flex-shrink: 0; /* prevent images from shrinking */
    border-radius: 10px;
  }
  .img-large {
  width: 470px;
  height: 350px;
}

.img-medium {
  width: 400px;
  height: 250px;
}

.img-small {
  width: 300px;
  height: 350px;
}

.satisfaction-card {
  position: relative;
  width: 90%;
  height: auto;
  bottom: 0;
  margin: 20px auto;
}


/* Left side text */
.left-text-v2 {
  flex: 1;
}

.left-text-v2 h3 {
  font-family: 'Rock Salt', 'Permanent Marker', cursive;
  font-size: 2rem;
  line-height: 1.3;
  color: #2b5a4c;
  margin: 0;
}



/* Button */
.explore-btn-v2 {
 
  display: none;
}

.explore-btn-v2:hover {
  background-color: #1e4035;
}

  .services-info-v2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    gap: 30px;
  }

  .left-text-v2 h3 {
    font-size: 1.7rem;
  }

  .right-text-v2 {
    align-items: center;
  }

  .right-text-v2 p {
    max-width: 100%;
    text-align: center;
  }

  .explore-btn-v2 {
    width: 100%;
    max-width: 300px;
  }
 
  .faqs{
    margin-top: -130px;
  }
}






/* === TEXT INSIDE IMAGE === */
.image-text {
  position: absolute;
  bottom: 5px; /* 5px from the bottom */
  left: 10px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
}




/* === SERVICES SECTION === */
.services-showcase {
  width: 100%;
  padding: 80px 10%;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Header */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-header h2 {
  font-size: 2rem;
  color: #2f243f;
}

.service-buttons {
  display: flex;
  gap: 15px;
}

.service-buttons .btn {
  padding: 10px 20px;
  border: 1px solid #2f243f;
  border-radius: 25px;
  background: transparent;
  color: #2f243f;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-buttons .btn.active,
.service-buttons .btn:hover {
  background: #2f243f;
  color: #fff;
}

/* Middle Info Section */
.services-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.left-text h3 {
  font-size: 1.6rem;
  color: #2f243f;
}

.right-text {
  max-width: 50%;
}

.right-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.explore-btn {
  background: #2f243f;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #ff6600;
}

/* Cards Section */
.services-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service-card {
  background: #882727;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  flex: 1 1 30%;
  transition: all 0.4s ease;
  min-width: 300px;
  max-width: 400px;
}

.service-card:hover {
  transform: scale(1.05);
  flex: 1 1 35%;
}

.card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.card-text {
  flex: 1;
}

.card-text h4 {
  font-size: 1.2rem;
  color: #2f243f;
  margin-bottom: 8px;
}

.card-text p {
  color: #777;
  font-size: 0.95rem;
}

.card-content img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.service-card:hover img {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 900px) {
  .services-info {
    flex-direction: column;
    text-align: center;
  }

  .right-text {
    max-width: 100%;
  }

  .services-cards {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }
}
/* === SERVICES SECTION === */
.services-showcase {
  width: 100%;
  padding: 80px 10%;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Header */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-header h2 {
  font-size: 2rem;
  color: #2f243f;
}

.service-buttons {
  display: flex;
  gap: 15px;
}

.service-buttons .btn {
  padding: 10px 20px;
  border: 1px solid #2f243f;
  border-radius: 25px;
  background: transparent;
  color: #2f243f;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-buttons .btn.active,
.service-buttons .btn:hover {
  background: #2f243f;
  color: #fff;
}

/* Middle Info Section */
.services-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.left-text h3 {
  font-size: 1.6rem;
  color: #2f243f;
}

.right-text {
  max-width: 50%;
}

.right-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.explore-btn {
  background: #2f243f;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore-btn:hover {
  background: #ff6600;
}

/* === CARDS SECTION === */
.services-cards {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

/* Each card */
.service-card {
  position: relative;
  background: #2a24dd;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  width: 350px;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
  cursor: pointer;
}

/* Hidden image by default */
.card-image {
  width: 0;
  overflow: hidden;
  transition: width 0.5s ease;
}

.card-image img {
  width: 200px;
  height: 180px;
  object-fit: cover;
  border-radius: 0 15px 15px 0;
  transition: transform 0.3s ease;
}

/* Text */
.card-text {
  padding: 25px;
  flex: 1;
  transition: all 0.5s ease;
}

.card-text h4 {
  font-size: 1.2rem;
  color: #2f243f;
  margin-bottom: 8px;
}

.card-text p {
  color: #777;
  font-size: 0.95rem;
}

/* Hover effect — reveal image & expand card */
.service-card:hover {
  width: 500px;
}

.service-card:hover .card-image {
  width: 200px;
}

.service-card:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .services-info {
    flex-direction: column;
    text-align: center;
  }

  .right-text {
    max-width: 100%;
  }

  .services-cards {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }

  .service-card:hover {
    width: 95%;
  }
}
/* === SERVICES SECTION V2 === */
.services-showcase-v2 {
  width: 100%;
  padding: 80px 10%;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* Header */
.services-header-v2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.services-header-v2 h2 {
  font-size: 2rem;
  color: #2f243f;
}

.service-buttons-v2 {
  display: flex;
  gap: 15px;
}

.service-buttons-v2 .btn {
  padding: 10px 20px;
  border: 1px solid #2f243f;
  border-radius: 25px;
  background: transparent;
  color: #2f243f;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-buttons-v2 .btn.active,
.service-buttons-v2 .btn:hover {
  background: #2f243f;
  color: #fff;
}

/* Info Section */
.services-info-v2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.left-text-v2 h3 {
  font-size: 1.6rem;
  color: #2f243f;
  margin-top: -40px! important;
}

.right-text-v2 {
  max-width: 100%;
  margin-top:-20px;
}

.right-text-v2 p {
  font-size: 1rem;
  color: #555;
  margin-bottom: -20px;
}

.explore-btn-v2 {
  background: #2f243f;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  
}

.explore-btn-v2:hover {
  background: #ff6600;
}

/* === Cards === */
.services-cards-v2 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;

  scrollbar-width: none;
  -ms-overflow-style: none;
}
.services-cards-v2::-webkit-scrollbar {
  display: none;
}

/* Card */
.service-card-v2 {
  flex: 0 0 calc(25% - 15px);
  height: 380px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
padding-top: 20px;  transition: all 0.6s ease;
  color: #fff;
  scroll-snap-align: start;
}
/* === TEXT === */
.card-text-v2 {
  padding: 20px;
  z-index: 2;
  flex: 1;
  transition: all 0.3s ease;
  position: relative;
  max-width: 100%; /* default full width */
  word-wrap: break-word;
}

/* When card is hovered, constrain text so it doesn't overlap image */
.service-card-v2:hover .card-text-v2 {
  max-width: calc(100% - 200px); /* leave space for the image width */
}



/* Hover enlarge */
.service-card-v2:hover {
  flex: 0 0 500px;
  z-index: 5;
}

/* Text */


.card-text-v2 h4 {
  font-size: 1.3rem;
  margin-bottom: 110px;
  margin-top: 10px;
}

.card-text-v2 p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Image */
.card-image-v2 {
  position: absolute;
  top: 0;
  right: -100%;
  height: 100%;
  width: 50%;
  transition: right 0.6s ease;
  overflow: hidden;
}

.card-image-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 20px 20px 0;
}

/* Slide in image */
.service-card-v2:hover .card-image-v2 {
  right: 0;
}
/* Common icon styling */
.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;  /* circular background */
  padding: 15px;       /* space around icon */
  margin-bottom: 10px;
  width: 60px;          /* fixed size for uniformity */
  height: 60px;
  transition: transform 0.3s ease;
}

/* Hover effect (optional) */
.service-card-v2:hover .icon-wrapper {
  transform: scale(1.1);
}

/* Specific background colors */
.icon-1 {
  background-color: rgba(255, 140, 0, 0.8); /* matches card-1 gradient */
  color: #fff;
}

.icon-2 {
  background-color: rgba(0, 176, 155, 0.8); /* matches card-2 gradient */
  color: #fff;
}

.icon-3 {
  background-color: rgba(78, 84, 200, 0.8); /* matches card-3 gradient */
  color: #fff;
}

.icon-4 {
  background-color: rgba(255, 65, 108, 0.8); /* matches card-4 gradient */
  color: #fff;
}

/* Make SVG fill inherit the wrapper color */
.icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: currentColor; /* takes color from wrapper */
}


/* Gradients */
.card-1-v2 {
  background: linear-gradient(135deg, #ff8c00, #ff5947);
}

.card-2-v2 {
  background: linear-gradient(135deg, #02312c, #96c93d);
}
.card-3-v2 {
  background: linear-gradient(135deg, #212459, #8f94fb);
}
.card-4-v2 {
  background: linear-gradient(135deg, #a1092c, #a31e06);
}

/* Responsive */
@media (max-width: 1100px) {
  .service-card-v2 {
    flex: 0 0 45%;
  }
}

@media (max-width: 700px) {
  .service-card-v2 {
    flex: 0 0 90%;
  }
}
.why-choose-us {
  background-color: #001f4d; /* Navy blue */
  color: #fff;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.why-choose-us .container {
  margin: 0 auto;
  max-width: 1200px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 20px;
  font-size: 2rem;
}

/* === Cards Section === */
.cards {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap; /* keeps them in a row */
  overflow-x: auto; /* allows scroll on small screens */
  margin-bottom: 60px;
  padding-bottom: 10px;
}

.card {
  background-color: #fff;
  color: #001f4d;
  padding: 50px 25px 0;
  border-radius: 16px;
  flex: 0 0 350px; /* card width */
  height: 400px; /* taller cards */
  text-align: left; /* no center alignment */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Badge at top */
.card .badge {
  position: absolute;
  top: 20px;
  left: 25px;
  background-color: transparent;
  padding: 10px;
  border: 1px solid rgb(107, 98, 98);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card .badge img {
  max-width: 70%;
  max-height: 70%;
}

/* Text Styling */
.card h3 {
  margin-top: 50px;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: monospace;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 10px;
  color: #333;
  flex-grow: 1;
}

.card .card-img {
  width: 100%;               
  height: 150px;             
  object-fit: cover;         
  border-radius: 0 0 16px 16px; 
  position: absolute;
  bottom: 0;
  left: 0;
}

/* === Info Section === */
.info-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.info-text {
  flex: 1 1 400px;
  text-align: left;
}

.info-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.info-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.info-text button {
  background-color: transparent;
  color: #fff;
  border: .5px solid grey;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.info-text button:hover {
  background-color: #e68900;
}

.info-svg {
  flex: 1 1 400px;
  text-align: center;
}

.info-svg img {
  max-width: 100%;
  height: 350px;
}
.bordered-text {
  text-align: center;
  font-size: 0.9em;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.bordered-text span {
  display: inline-block;
  border: .5px solid #4e4d4c; 
  padding: 6px 12px;
  margin: 0 6px;
  border-radius: 20px;
  transition: background-color 0.3s, color 0.3s;
}
.testimonials {
  background-color: #f8f9fc;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.testimonial-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Text Section */
.testimonial-text {
  flex: 1 1 450px;
}

.testimonial-text .quote p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  color: #001f4d;
  position: relative;
  padding-left: 50px;
}

.testimonial-text .quote p::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: #ff9800;
  opacity: 0.6;
}

.author {
  margin-top: 25px;
}

.author h4 {
  font-size: 1.2rem;
  color: #001f4d;
  margin-bottom: 5px;
}

.author p {
  color: #666;
  font-size: 0.95rem;
}

/* Navigation Buttons */
.testimonial-nav {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.testimonial-nav button {
  background-color: #001f4d;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background-color 0.3s;
}

.testimonial-nav button:hover {
  background-color: #ff9800;
}

/* Image Section */
.testimonial-image {
  flex: 1 1 400px;
  text-align: center;
}

.testimonial-image img {
  max-width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .testimonial-text .quote p {
    padding-left: 0;
  }

  .testimonial-text .quote p::before {
    display: none;
  }
}
/* === FAQs Section === */
.faqs {
  background-color: #001f3f; /* navy blue */
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.faqs .container {
  max-width: 800px;
  margin: 0 auto;
}

.faqs h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.faqs h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #00bcd4;
  border-radius: 10px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #00bcd4;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #dcdcdc;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 10px;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}
.about-us {
  background: #001f3f; /* Navy Blue */
  color: #fff;
  padding: 100px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 350px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.about-content {
  flex: 1.2;
  min-width: 350px;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.about-content h2 span {
  color: #00bcd4;
}

.about-content .intro {
  font-size: 1.2rem;
  color: #e6e6e6;
  margin-bottom: 15px;
  line-height: 1.7;
}

.about-content p {
  font-size: 1rem;
  color: #dcdcdc;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 30px;
}

.highlight {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  flex: 1;
  min-width: 250px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.highlight:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.highlight h3 {
  color: #00bcd4;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.about-btn {
  display: inline-block;
  background: transparent;
  color: #dfe4e8;
  border: .5px solid #ece3e3;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 30px;
}
.contact-us{
  background: #43f70d;
  color: #fff;

}

.about-btn:hover {
  background: #fff;
  color: #001f3f;
}
.about-content, .about-image, .highlight {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}
.about-us.scrolled{
  background-color: #fff;
  color: #000;

}
.footer {
  position: relative;
  background: url("../logo/footer.jpeg") no-repeat center center / cover;
  background-attachment: fixed;
  padding: 80px 8% 50px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.footer .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7); /* dark overlay */
  z-index: 1;
}

.footer-container,
.footer-bottom {
  position: relative;
  z-index: 2; /* content above overlay */
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-column h3,
.footer-column h4 {
  color: #f9b233;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-column p,
.footer-column ul li a {
  color: #eee;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #f9b233;
}

.social-icons a {
  color: #f9b233;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.85rem;
  color: #ccc;
}

.blogs {
  background: #f9f9f9;
  padding: 100px 0;
  text-align: center;
}

.blogs .section-title {
  font-family: 'Kaushan Script', cursive;
  font-size: 2.8rem;
  color: #222;
  margin-bottom: 10px;
}

.blogs .section-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 0 40px;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
  text-align: left;
}

.blog-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 10px;
}

.blog-content p {
  font-family: 'Poppins', sans-serif;
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.read-more {
  text-decoration: none;
  color: #f9b233;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more:hover {
  color: #d98c0f;
}
  /* Search overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 50px 20px;
  overflow-y: auto;
}

.search-results {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 1000px;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Make background content blurred */
body.search-active .page-content {
  filter: blur(5px);
  pointer-events: none; /* prevent clicking behind */
}

/* Close button */
.close-search {
  margin-top: 20px;
  padding: 10px 20px;
  background: #2b5a4c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* ====== Responsive Fixes ====== */
@media (max-width: 768px) {
  .search-results {
    padding: 20px;
    border-radius: 8px;
  }

  .blog-grid {
    grid-template-columns: 1fr; /* One per row */
    gap: 20px;
  }

  .blog-card img {
    height: 180px;
  }

  .blog-content {
    padding: 10px 12px;
  }

  .search-overlay {
    padding: 20px 10px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .search-results {
    padding: 15px;
  }

  .blog-content h3 {
    font-size: 16px;
  }

  .blog-content p {
    font-size: 13px;
  }
}