/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top:0;
  font-family: Arial, Helvetica, sans-serif;
  /* Full-page fixed background image */
  background: url("image/background.png") center / cover no-repeat fixed;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* LAYOUT */
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  padding-top: 2rem;
  flex: 1;
}

/* NAVBAR */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding:5px;
  background: rgba(0, 0, 0, 0.25); /* transparent dark glass */
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: bold;
  font-size: 1.3rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #00e676;
}


/* MOBILE NAV */
.nav-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #444;
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}

/* HERO (HOME) */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 4rem;
  padding-bottom: 10rem;
  background: transparent;
  text-align: center;
}

.hero-overlay {
  padding: 7rem 1.5rem;
}

/* apply box sizing reset (optional but useful) */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Wrap for animation underline + clipping */
.hero-title-animated {
  position: relative;
  display: inline-block;
}

/* Animated underline */
.hero-title-animated::before {
  content: "";
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #cf0000; /* red line */
  transform-origin: center center;
  transform: scaleX(0);
  animation: line-animation 3s ease infinite alternate;
}

/* Clip reveal for hero title */
.hero-title {
  font-size: 2rem;
  font-weight: bold;
  animation: clip-path-reveal-1 3s ease infinite alternate;
}

@keyframes line-animation {
  0% { transform: scaleX(0); }
  15% { transform: scaleX(0); }
  20%, 25% { transform: scaleX(1); top: calc(100% - 2px); }
  50% { transform: scaleX(1); top: 0; }
  70% { transform: scaleX(0.2); top: 0; }
  80%, 100% { transform: scaleX(0.2); top: 0; }
}

@keyframes clip-path-reveal-1 {
  0%, 25% { clip-path: polygon(0 100%,100% 100%,100% 100%,0 100%); }
  50% { clip-path: polygon(0 0,100% 0,100% 100%,0 100%); }
  100% { clip-path: polygon(0 0,100% 0,100% 100%,0 100%); }
}

.hero-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  border-radius: 15px;
  border: 3px solid #fff;
  animation: logo-pop 3s ease infinite alternate;
}

@keyframes logo-pop {
  0% { opacity: 0; scale: 0.7; }
  50% { opacity: 1; scale: 1; }
}


/* MAP SECTION (HOME) */
.map-section {
  background: #fff;
}

.map-section iframe,
.map-placeholder {
  width: 100%;
  height: 320px;
  border: none;
}

/* GENERIC SECTION TITLE */
.section {
  padding: 3rem 1.5rem;
  background: transparent;
}

.section.light {
  background: transparent;
}

/* .section-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
} */

/* PROCESS PAGE: HERO-LIKE TITLE*/
.process-title, .section-title{
  text-align: center;
  position: relative;
  margin: 0.5rem 0 2rem 0;
  padding: 0.4rem 2.5rem;
  font-family: "Segoe UI", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 4px 18px rgb(0, 0, 0);
}

.process-title::before, .section-title::before {
  content: "";
  position: absolute;
  inset: -0.6rem -2.2rem;
  border-radius: 999px;
  background: rgba(223, 220, 220, 0.844);
  box-shadow: 0 20px 45px rgba(224, 212, 212, 0.8);
  filter: blur(3px);
  z-index: -1;
}

/* ABOUT PAGE BLOCKS */
.about-intro {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
  line-height: 1.6;
}

.split {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.split ul {
  list-style: none;
  line-height: 1.6;
}

.split ul li::before {
  content: "• ";
  color: #0fda64;
}

/* ICON GRID (WHY WORK & BENEFITS) */
.icon-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-content: center; /* centers all columns horizontally */
  justify-items: center;   /* centers each item in its column */
}

.icon-card:nth-child(4) {
  grid-column: 1;
}

.icon-card:nth-child(5) {
  grid-column: 2;
}

.icon-card {
  background: linear-gradient(135deg, #202040, #404070);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  color: white;
}

.icon-card-icon {
  font-size: 2rem; /* or width/height for svg */
  margin-bottom: 0.7rem;
}

.icon-card-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.icon-card-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 1rem;
}

/* Scroling effect */
@keyframes appear{
  from{
    opacity:0;
    transform: translateX(-100px);
  }
  to{
    opacity:1;
    transform: translateX(0px);
  }
}

.icon-card {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.icon-card:nth-child(1) { animation-delay: 0.05s; }
.icon-card:nth-child(2) { animation-delay: 0.10s; }
.icon-card:nth-child(3) { animation-delay: 0.15s; }
.icon-card:nth-child(4) { animation-delay: 0.20s; }
.icon-card:nth-child(5) { animation-delay: 0.25s; }

/* Vertical list like your screenshot */
.benefit-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  padding: 1.3rem 6rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #202040, #404070);
  color: #fff;
}

/* icon on the left */
.benefit-icon {
  flex: 0 0 60px;
  margin-right: 0.5rem;
}

.benefit-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

/* text on the right */
.benefit-content {
  flex: 1;
}

.benefit-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.benefit-content p {
  margin: 0;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Scroll animation for benefit rows */
@keyframes benefit-appear {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.benefit-item {
  animation: benefit-appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

/* PROCESS / STEPS */
.steps {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
}

.step-card {
  position: relative;
  background: transparent;
  padding: 1.1rem 2.6rem;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.779);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: none; /* prevents looping */
}

.step-card:hover {
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0%   { transform: translateX(0); }
  20%  { transform: translateX(-4px); }
  40%  { transform: translateX(4px); }
  60%  { transform: translateX(-4px); }
  80%  { transform: translateX(4px); }
  100% { transform: translateX(0); }
}



.step-title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.step-number {
  color: #ffed22;
  margin-right: 0.4rem;
  font-weight: 900;
}

.step-card p {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

/* SERVICE PAGE: CARDS + FORM */
.section.light {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  /* Use the global page background, keep layout full-width */
  background: transparent;
  text-align: center;
  padding: 3rem 1rem ;
}

.section.light .split img:hover {
  transform: scale(1.2);
  filter: drop-shadow(8px 8px 10px gray);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.pop-outin {
  animation: 4s anim-popoutin ease infinite;
}

@keyframes anim-popoutin {
  0% {
    color: rgb(251, 251, 251);
    transform: scale(0);
    opacity: 0;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  25% {
    color: rgb(255, 127, 63);
    transform: scale(1.5);
    opacity: 1;
    text-shadow: 3px 10px 5px rgba(0, 0, 0, 0.5);
  }
  50% {
    color: rgb(255, 255, 255);
    transform: scale(1);
    opacity: 1;
    text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
  }
}

.section.light .split h3 {
  margin: 10px;
  font-size: 2.5rem;
  font-family: Verdana, sans-serif;
}

.section.light .split ul{
  margin: 3px;
  font-size: 1.1rem;
}

.about-intro {
  font-size: 1.1rem;
}

.about-intro span{
  font-size: 1.4rem;
  color: #ffed22;
  font-weight:bold;
}


.service-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.service-card-area {
  background: linear-gradient(145deg, #202040, #404070);
  padding: 2rem;
  border-radius: 10px;
}

.service-icons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-item {
  text-align: center;
  font-size: 0.9rem;
}

.service-item-icon {
  width: 85px;        
  height: 85px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-item-icon img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

/* APPLY FORM */
.apply-form textarea {
  resize: none;
}

.apply-form {
  background: linear-gradient(180deg, #004d40, #00bfa5);
  padding: 1.5rem;
  border-radius: 8px;
}

.apply-form h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.apply-form label, .apply-form select {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.apply-form input,
.apply-form textarea, .apply-form select {
  width: 100%;
  padding: 0.55rem 0.6rem;
  margin-bottom: 0.7rem;
  border-radius: 4px;
  border: none;
  font-size: 0.9rem;
  font-family: inherit;
}

.apply-form select {
  color: #999; /* grey */
}

/* When user selects a real option */
.apply-form select option {
  color: #000; /* black */
}

/* Force selected value to turn black */
.apply-form select:focus,
.apply-form select:valid {
  color: #000;
}

.apply-form button {
  width: 100%;
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
  background: #00c853;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}

.apply-form button:hover{
  box-shadow: #f3ff51 0px 1px 25px;
  background: #f3ff51;
  color: #000000;
}

/* CONTACT + HOURS FOOTER BLOCK */
.footer-top {
  background: #000;
  color: #fff;
  padding: 2.5rem 1.5rem 1.7rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

.footer-item {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.social-icons {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.8rem;
  font-size: 1.4rem;
}

/* COPYRIGHT BAR */
.footer-bottom {
  background: #050505;
  text-align: center;
  padding: 0.9rem;
  font-size: 0.8rem;
  color: #aaa;
}

/* WHATSAPP FLOATING */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  z-index: 99;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .split,
  .service-wrapper,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .section {
    padding: 2.3rem 1rem;
  }

  .footer-top {
    padding: 2rem 1rem 1.3rem;
  }
}