/* ================= RESET ================= */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800;900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:  'Nunito', sans-serif;
  background: #ffffff;
  color: #111;
  padding-top: 70px;
}

.hero-video {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent overlay */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  background: linear-gradient(135deg, #a8c523, #d2fd13);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(142, 181, 63, 0.4);
  transition: all 0.25s ease;
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(191, 242, 88, 0.4);
}

.hero-btn:active {
  transform: translateY(0);
}


.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px; /* more spacing if needed */
  flex-wrap: wrap; /* responsive for small screens */
}

.calendly-btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  background: linear-gradient(135deg, #a8c523, #d2fd13);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(142, 181, 63, 0.4);
  transition: all 0.25s ease;
}

.calendly-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(191, 242, 88, 0.4);
}

.calendly-btn:active {
  transform: translateY(0);
}

/* ================= ABOUT ================= */
.about-brief {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 60px;
  padding: 100px 10%;
  background: #fafafa;
}

.about-img img {
  width: 100%;
  border-radius: 18px;
}

.about-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #444;
}

.about-btn {
  margin-top: 26px;
  background: #111;
  color: #fff;
}

.about-btn:hover {
  background: #000;
}

/* ================= PROCESS ================= */
.process-section {
  padding: 100px 10%;
  background: #ffffff;
  text-align: center;
}

.process-section h2 {
  font-size: 36px;
  margin-bottom: 70px;
}
.process-section h2::after{
  content: "";
  width: 60px;
  height: 3px;
  background: #a8c523; /* brand color */
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}
.workflow-expanded {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
 grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.workflow-item {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: all 0.35s ease;
}

.workflow-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.workflow-header {
  padding: 26px;
  font-size: 20px;
  font-weight: 600;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

.workflow-body {
  background: #ffffff;
}

.workflow-body img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.workflow-body p {
  padding: 22px;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  text-align: left;
}

.workflow-expanded {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .workflow-expanded {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .workflow-expanded {
    grid-template-columns: 1fr;
  }
}


/* ================= FACILITY ================= */
.facility-section {
  padding: 100px 10%;
  background: #111;
  color: #fff;
}

.facility-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
}

.facility-header p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

.facility-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 22px;
}

.facility-media img,
.facility-media video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
}

/* ================= CTA ================= */
.quote-section {
  padding: 90px 10%;
  background: #fafafa;
  text-align: center;
}

.quote-btn {
  background: #111;
  color: #fff;
}

.quote-btn:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}
.quote-section h2 {
  font-size: 34px;
  margin-bottom: 14px;
}

.quote-section p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: #555;
  font-size: 16px;
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content {
    padding: 0 7%;
  }

  .about-brief,
  .process-section,
  .facility-section,
  .quote-section {
    padding: 70px 7%;
  }
}

.trust-strip {
  padding: 60px 10%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 30px;
}

.trust-grid h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.trust-grid p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.audience-section {
  padding: 90px 10%;
  background: #fafafa;
  text-align: center;
}

.audience-section h2 {
  font-size: 36px;
  margin-bottom: 50px;
}
.audience-section h2::after{
  content: "";
  width: 60px;
  height: 3px;
  background: #a8c523; /* brand color */
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}
.audience-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
  gap: 40px;
}

.audience-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #eee;
}

.audience-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

.metrics-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #111;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.metrics-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #a8c523; /* brand color */
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

@media (max-width: 600px) {
  .metrics-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}

.metrics-section {
  padding: 80px 10%;
  background: #ffffff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
  text-align: center;
}

.metrics-grid h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.metrics-grid p {
  font-size: 14px;
  color: #555;
}
/* Hero Buttons Container */
.hero-buttons {
  display: flex;          /* flex row for buttons */
  justify-content: center; 
  gap: 20px;             /* spacing between buttons */
  flex-wrap: wrap;        /* responsive wrap */
  margin-top: 20px;       /* spacing from paragraph */
  position: relative;     /* keep above overlay */
  z-index: 4;
}

/* Individual Buttons */
.hero-buttons a {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  background-color: #a8c523;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-buttons a:hover {
  background-color: #d0f722;
  transform: translateY(-2px);
}

