/* 🔷 RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  background: linear-gradient(
  to bottom,
  #FBDC30 -10%,
  #FFFFFF 50%,
  #FBDC30 120%
);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

/* ================= FULLY RESPONSIVE HERO (NO SHADOW DESIGN) ================= */
/* .wb-hero {
  position: relative;
  min-height: 68vh;
  height: auto;
  background: url("../images/service-hero-img.png") center center / cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
 */
.wb-hero {
  position: relative;
  min-height: 70vh;
  background: url("../images/service-hero-img.png") center/cover no-repeat;
  display: flex;
  align-items: center;
   background-position: right  top;
  justify-content: first baseline; /* ✅ LEFT ALIGN */
}
.wb-hero {
  background-color: #1a4a5a;
}
/* 
/* Add soft overlay (light, not dark heavy) */
/* /* .wb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* lighter overlay }*/
 

.wb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(44, 41, 36, 0.95) 0%,
    rgba(44, 41, 36, 0.85) 35%,
    rgba(44, 41, 36, 0) 70%
  );
  z-index: 1;
}
/* .wb-hero-overlay {
  position: relative;
  inset: 0;
  z-index:1;
  /* background: linear-gradient(135deg, rgba(0, 50, 60, 0.7) 0%, rgba(27, 58, 62, 0.85) 100%); */
  /* display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px;
}
 */
.wb-hero-overlay {
  width: 100%;
  padding: 4rem 6%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start; /* ✅ LEFT */
}
/* 
.wb-hero-content {
  color: white;
  max-width: 1200px;
  width: 90%;
  padding: 0;
  animation: wbFadeIn 0.9s cubic-bezier(0.2, 0.9, 0.4, 1.1);
} */
.wb-hero-content {
  max-width: 650px;
  text-align: left;
  margin-left: 130px; /* ✅ same as about */
  margin-top: 30px;
}

@media(max-width:1300px){
 .wb-hero-content{
  margin-left: 30px;
 }
}

.wb-hero-content h1 {
  /* font-size: clamp(2rem, 5vw, 3.2rem); */
   font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  font-weight: 700;
  color: #fafafa;
  text-shadow: none; /* optional (about doesn't use heavy shadow) */
  white-space: normal; /* ❗ remove nowrap */
}
/* .wb-hero-content h1 {
   font-size: 1.4rem;
   white-space: nowrap;
  line-height: 1.2;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
 */
/* .wb-hero-content p {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  margin-top: 1rem;
  margin-bottom: 0;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-weight: 400;
} */
.wb-hero-content p {
  max-width: 520px;
  font-size: 1.1rem;
  color: #ece4d4;
  margin-top: 1rem;
}

.wb-btn-primary,
.wb-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 1.4rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.wb-btn-primary {
  background: transparent;
  color: #FBDC30 !important;
  border: #FBDC30 3px solid;
  border-radius: 10px;
  margin-top:15px;
}

.wb-btn-primary:hover {
  background: #FBDC30;
  color: #fafafa !important;
}


.wb-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  background: #2bb3c0;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: clamp(0.9rem, 3.5vw, 1.1rem);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  letter-spacing: 0.5px;
}

.wb-btn:hover {
  background: #1c7c8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ================= SERVICES SECTION - 2 CARDS PER ROW ================= */
.wb-services {
  background-color: linear-gradient(
  to bottom,
  #FBDC30 -10%,
  #FFFFFF 50%,
  #FBDC30 120%
);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 50px;
  width: min(1200px, calc(100% - 32px));
  max-width: 1200px;
  margin: 0 auto;
}

.wb-service-card {
  background: linear-gradient(145deg, #ffffff, #f7f7f7);
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  align-items: center;
  height: 100%;
  border-color: black;
}

.wb-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  border: 2px solid black;
}

.wb-service-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.wb-service-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.wb-service-card h3 {
  color: black;
  font-size: 18px;
}

.wb-service-card p {
  font-size: 14px;
  margin: 6px 0 10px;
  color: #000;
}

.wb-service-card button {
  border: none;
  padding: 6px 14px;
  border-radius: 20px;

  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
  width: fit-content;

  background: #373028;

  color: white;
  border: 2px solid black;
}

.wb-service-card button:hover {
  background: #fbdc30;
  transform: scale(1.05);
  color: black;
  border: 2px solid black;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: #efd98c;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .wb-hero {
    height: 60vh;
  }

  .wb-services {
    gap: 20px;
    width: min(1200px, calc(100% - 24px));
    padding: 34px 24px;
  }

  .wb-service-card {
    gap: 14px;
    padding: 14px;
  }

  .wb-service-card img {
    width: 150px;
    height: 150px;
  }

  .wb-faq {
    padding: 34px 24px;
  }
}

/* ================= RESPONSIVE FOR CARDS - 2 PER ROW ================= */

/* Tablet (768px and below) - still 2 cards per row */
@media (max-width: 768px) {
  .wb-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: min(100%, calc(100% - 24px));
    padding: 30px 0;
  }

  .wb-service-card {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .wb-service-card img {
    width: 100%;
    height: 180px;
  }

  .wb-service-card button {
    margin: 0 auto;
  }
}

/* Mobile (600px and below) - changes to 1 card per row */
@media (max-width: 600px) {
  .wb-services {
    grid-template-columns: 1fr;
    gap: 16px;
    width: min(100%, calc(100% - 20px));
    padding: 22px 0;
  }

  .wb-service-card {
    flex-direction: row;
    text-align: left;
    padding: 14px;
    gap: 12px;
    align-items: stretch;
  }

  .wb-service-card img {
    width: 112px;
    height: auto;
    min-height: 112px;
  }

  .wb-service-card button {
    margin: 0;
  }
}
@media (max-width: 660px) {
      .wb-hero-content {
       margin-top: 30px;
    }
}
/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .wb-services {
    width: min(100%, calc(100% - 16px));
    padding: 18px 0;
    gap: 14px;
  }
  .wb-hero-content {
       margin-top: 60px;
    }

  .wb-service-card {
    flex-direction: column;
    text-align: center;
    padding: 14px;
  }

  .wb-service-card img {
    width: 100%;
    height: 170px;
    min-height: 0;
  }

  .wb-service-card button {
    margin: 0 auto;
  }

  .wb-service-card h3 {
    font-size: 16px;
  }

  .wb-service-card p {
    font-size: 13px;
  }

  .wb-faq {
    padding: 24px 12px;
  }
}

/* Very Small Mobile (below 360px) */
@media (max-width: 415px) {
.wb-hero-content {
    margin-top: 100px;
    
  }

}


@media (max-width: 360px) {
  
  .wb-hero {
    min-height: 80vh;
  }
  .wb-services {
    width: min(100%, calc(100% - 12px));
    padding: 14px 0;
    gap: 12px;
  }

  .wb-service-card {
    padding: 12px;
  }

  .wb-service-card img {
    height: 150px;
  }

  .wb-hero-content {
    margin-top: 100px;
    width: 100%;
    padding: 0.8rem;
  }

  .wb-hero-content h1 {
    /* font-size: clamp(1.7rem, 10vw, 2.2rem); */
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .wb-hero-content p {
    font-size: 0.92rem;
  }
}

/* ================= FAQ SECTION ================= */
.wb-faq {
  padding: 50px;
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(244, 251, 255, 0.9), rgba(255, 255, 255, 0.95)),
    url("../images/services_hero_img.jpeg") center/cover no-repeat;
}

.wb-faq-overlay {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px;
}

.wb-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.wb-faq-visual {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(10, 67, 101, 0.16);
}

.wb-faq-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(9, 74, 110, 0.06),
    rgba(9, 74, 110, 0.22)
  );
}

.wb-faq-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.wb-faq-content {
  padding: 8px 0;
}

.wb-faq-heading {
  margin-bottom: 20px;
}

.wb-faq h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  color: #0f4f76;
}

.wb-faq-heading p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #5e788e;
}

.wb-faq-item {
  margin-bottom: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 180, 216, 0.16);
  box-shadow: 0 10px 22px rgba(16, 88, 128, 0.08);
  overflow: hidden;
}

.wb-faq-question {
  cursor: pointer;
  font-weight: 600;
  position: relative;
  padding: 18px 56px 18px 18px;
  font-size: clamp(1rem, 3.5vw, 1.12rem);
  color: #11496c;
}

.wb-faq-question::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: #6d5714;
  background: rgba(212, 160, 23, 0.12);
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.wb-faq-question.active::after {
  content: "-";
  background: linear-gradient(135deg, #d4a017, #6b7280);
  color: #ffffff;
}

.wb-faq-answer {
  display: none;
  padding: 0 18px 18px;
  font-size: 14px;
  color: #587086;
  line-height: 1.6;
}

.wb-show {
  display: block;
}

/* ================= ANIMATION ================= */
@keyframes wbFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= ADDITIONAL RESPONSIVE FIXES ================= */

/* Tablet and below FAQ padding */
@media (max-width: 768px) {
  .wb-faq {
    padding: 30px 20px;
  }

  .wb-faq-overlay {
    width: min(100%, calc(100% - 20px));
    padding: 18px;
  }

  .wb-faq-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .wb-faq-visual {
    min-height: 240px;
  }

  .wb-faq-content {
    padding: 0;
  }

  .wb-faq-heading {
    margin-bottom: 16px;
  }
}

/* Hero responsive adjustments */
@media (max-width: 480px) {
  .wb-hero {
    min-height: 90vh;
  }

  .wb-hero-overlay {
    padding: 1rem;
  }

  .wb-hero-content {
    width: 95%;
    padding: 1rem;
  }

  .wb-hero-content h1 {
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  .wb-btn {
    padding: 0.7rem 1.5rem;
    margin-top: 0.75rem;
  }

  .wb-faq {
    padding: 24px 0;
  }

  .wb-faq-overlay {
    width: min(100%, calc(100% - 16px));
    padding: 0;
  }

  .wb-faq-visual {
    min-height: 200px;
    border-radius: 18px;
  }

  .wb-faq-question {
    padding: 16px 50px 16px 14px;
    font-size: 0.98rem;
  }

  .wb-faq-question::after {
    right: 14px;
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .wb-faq-answer {
    padding: 0 14px 16px;
    font-size: 13px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  /* .wb-hero {
    min-height: 75vh;
  }
 */
  .wb-hero-content h1 {
    font-size: 1.4rem;
  }

  .wb-hero-content p {
    font-size: 1.1rem;
  }
}

/* Large Desktop optimization */
@media (min-width: 1400px) {
  /* .wb-hero {
    min-height: 75vh;
  }
 */
  .wb-hero-content h1 {
    font-size: 2rem;
  }

  .wb-hero-content p {
    font-size: 1.35rem;
  }

  .wb-services {
    width: min(1400px, calc(100% - 40px));
    max-width: 1400px;
    gap: 30px;
  }

  .wb-service-card img {
    width: 200px;
    height: 200px;
  }

  .wb-service-card h3 {
    font-size: 20px;
  }

  .wb-service-card p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
   .wb-hero-overlay {
    padding: 2rem;
    justify-content: flex-start;
  }
.wb-hero-content {
    margin-left: 0;   /* ✅ remove left gap */
    text-align: left; /* keep left */
  }
  .wb-hero-content h1 {
    white-space: normal;   /* ✅ allow line break */
    font-size: 1.2rem;     /* smaller for mobile */
    text-align: left;
  }
}
/* Landscape orientation on mobiles for hero */
@media (max-height: 500px) and (orientation: landscape) {
  .wb-hero {
    min-height: 90vh;
  }

  .wb-hero-content {
    padding: 0.8rem;
  }

  .wb-hero-content h1 {
    font-size: clamp(1.6rem, 6vh, 2.2rem);
  }

  .wb-hero-content p {
    font-size: 0.9rem;
    margin-top: 0.3rem;
  }

  .wb-btn {
    padding: 0.5rem 1.2rem;
    margin-top: 0.5rem;
  }
}

/* Safe area for notches */
@supports (padding: max(0px)) {
  .wb-hero-overlay {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-top: max(1rem, env(safe-area-inset-top));
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}