@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Inter:600,500,400,700|DM+Sans:500,400,600|Playfair+Display:600");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

 .home-page {
  background-color: #ffffff;
  width: 100%;
  min-height: auto;
  height: auto;
  position: relative;
} 

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* ===== HEADER / HERO ===== */
.home-page .section {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(
    148deg,
    rgba(20, 31, 56, 1) 0%,
    rgba(45, 56, 83, 1) 100%
  ),
  url("assests/images/hero.jpeg");
  padding: 32px 80px;
}

/* ===== NAVIGATION ===== */

/* Nav links */
.main-navbar {
  position: fixed;       /* fixes navbar to viewport */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(15, 23, 41, 0.08);
  padding: 14px 24px;
}

/* ================= Small Mobile Devices (<480px) ================= */
@media (max-width: 479px) {

  .home-page .section {
    min-height: 100vh; /* Full viewport height */
    width: 100%;
    padding: 16px 12px; /* Minimal padding for small screens */
    background: linear-gradient(
      148deg,
      rgba(20, 31, 56, 1) 0%,
      rgba(45, 56, 83, 1) 100%
    ),
    url("assests/images/hero.jpeg");
    box-sizing: border-box;
  }
}

/* ================= Large Mobile Devices (480px–767px) ================= */
@media (min-width: 480px) and (max-width: 767px) {

  .home-page .section {
    min-height: 100vh;
    width: 100%;
    padding: 20px 16px; /* Slightly more padding for large mobiles */
    background: linear-gradient(
      148deg,
      rgba(20, 31, 56, 1) 0%,
      rgba(45, 56, 83, 1) 100%
    ),
    url("assests/images/hero.jpeg");
    box-sizing: border-box;
  }
}

/* ================= Tablet Devices (768px–1024px) ================= */
@media (min-width: 768px) and (max-width: 1024px) {

  .home-page .section {
    min-height: 100vh;
    width: 100%;
    padding: 30px 40px; /* Comfortable padding for tablets */
    background: 
    url("assests/images/hero.jpeg");
    box-sizing: border-box;
    align-items: left;
  }
}

/* ===== HERO CONTENT ===== */
.home-page .hero-content {
  max-width: 720px;
  margin-top: 120px;
}

/* Badge */
.home-page .trusted-tax-business-wrapper {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 30px;
  background: #f59f0a33;
}

.home-page .trusted-tax-business {
  font-size: 14px;
  font-weight: 500;
  color: #f59f0a;
}

/* Heading */
.home-page h1 {
  margin-top: 24px;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

/* Description */
.home-page .comprehensive-tax {
  margin-top: 20px;
  font-size: 20px;
  color: #f8fafcb2;
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.home-page .hero-features {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-top: 32px;
  align-items: left;
}

.home-page .hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}

.home-page .hero-features img {
  width: 20px;
  height: 20px;
}

/* ===== ACTION BUTTONS ===== */
.home-page .hero-actions {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}

.home-page .frame-2 {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  border-radius: 15px;
  background: linear-gradient(166deg, #f59f0a, #fbc02d);
  text-decoration: none;
}

.home-page .text-wrapper-7 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.home-page .link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  border: 2px solid #f8fafc4c;
  text-decoration: none;
}

.home-page .text-wrapper-8 {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}
/* effect and hover for hero section */
.home-page .frame,
.home-page .frame-2 {
  position: relative;
  overflow: hidden;
}

.home-page .frame::before,
.home-page .frame-2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.home-page .frame:hover,
.home-page .frame-2:hover {
  transform: scale(1.06);
  box-shadow:
    0 0 0 0 rgba(245, 159, 10, 0.6),
    0 10px 30px rgba(245, 159, 10, 0.55),
    0 0 40px rgba(245, 159, 10, 0.35);
}

.home-page .frame:hover::before,
.home-page .frame-2:hover::before {
  opacity: 1;
}
/* secondary cta */
.home-page .link-button {
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.home-page .link-button:hover {
  transform: scale(1.05);
  background: rgba(248, 250, 252, 0.08);
  border-color: rgba(245, 159, 10, 0.7);
  box-shadow:
    0 0 20px rgba(245, 159, 10, 0.35),
    inset 0 0 12px rgba(245, 159, 10, 0.25);
}


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

  /* Navbar */
  .main-navbar {
    padding: 12px 20px;
  }

  /* Hero spacing */
  .home-page .hero-content {
    max-width: 640px;
    margin-top: 110px;
  }

  /* Heading */
  .home-page h1 {
    font-size: 40px;
  }

  /* Description */
  .home-page .comprehensive-tax {
    font-size: 18px;
  }

  /* Features */
  .home-page .hero-features {
    gap: 24px;
    flex-wrap: wrap;
  }

  /* Buttons */
  .home-page .frame-2,
  .home-page .link-button {
    padding: 14px 28px;
  }

  .home-page .text-wrapper-7,
  .home-page .text-wrapper-8 {
    font-size: 16px;
  }
}
@media (max-width: 768px) {

  /* Navbar */
  .main-navbar {
    padding: 10px 16px;
  }

  /* Hero container */
  .home-page .hero-content {
    margin-top: 96px;
    max-width: 100%;
  }

  /* Badge */
  .home-page .trusted-tax-business-wrapper {
    padding: 6px 14px;
  }

  .home-page .trusted-tax-business {
    font-size: 13px;
  }

  /* Heading */
  .home-page h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  /* Description */
  .home-page .comprehensive-tax {
    font-size: 16px;
  }

  /* Features */
  .home-page .hero-features {
    flex-direction: column;
    gap: 16px;
  }

  /* Actions */
  .home-page .hero-actions {
    flex-direction: column;
    gap: 16px;
  }

  .home-page .frame-2,
  .home-page .link-button {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

  


/* our services */
/* Base */
.services-section {
  padding: 100px 80px;
  background: #f8fafc;
  text-align: center;
  font-family: system-ui, sans-serif;
}
.services-sections {
  position: relative;
  width: 100%;
  height: 368px;
  background: linear-gradient(169deg, #141f38 0%, #2d3853 100%);
  overflow: hidden;
}

/* Badge */
.services-badge {
  position: absolute;
  top: 94px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 14px;
  background-color: rgba(245, 159, 10, 0.2);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services-badge:hover {
  background-color: rgba(245, 159, 10, 0.3);
  transform: translateX(-50%) scale(1.05);
}

.services-badge-text {
  font-size: 14px;
  font-weight: 500;
  color: #f59f0a;
  line-height: 18px;
  text-align: center;
}

/* Title */
.services-title {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 42px;
  margin: 0;
}

.services-highlight {
  color: #f59f0a;
}

/* Subtitle */
.services-subtitle {
  position: absolute;
  top: 226px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 760px;
  width: 90%;
  font-size: 18px;
  font-weight: 400;
  color: rgba(248, 250, 252, 0.7);
  text-align: center;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .services-sections {
    height: 340px;
  }

  .services-badge {
    top: 80px; 
  }
  .services-badge:hover {
  background-color: rgba(245, 159, 10, 0.3);
  transform: translateX(-50%) scale(1.05);
}

  .services-title {
    top: 140px;
    font-size: 32px;
    line-height: 40px;
    width: 90%;
  }

  .services-subtitle {
    top: 210px;
    font-size: 17px;
    line-height: 26px;
    max-width: 680px;
  }
}
@media (max-width: 768px) {
  .services-sections {
    height: auto;
    padding: 80px 16px 60px;
  }

  .services-badge,
  .services-title,
  .services-subtitle {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .services-badge {
    margin: 0 auto 16px;
    display: inline-block;
  }

  .services-title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 14px;
  }

  .services-subtitle {
    font-size: 15px;
    line-height: 24px;
    max-width: 100%;
  }

  .services-subtitle br {
    display: none;
  }
}
@media (max-width: 480px) {
  .services-title {
    font-size: 22px;
    line-height: 30px;
  }

  .services-subtitle {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Badge */
.badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(245, 159, 10, 0.15);
  color: #f59f0a;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Heading */
.heading {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
}

/* Subtext */
.subtext {
  max-width: 720px;
  margin: 14px auto 60px;
  color: #64748b;
  line-height: 1.7;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.service-card {
  position: relative;
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  text-align: left;
  transition: all 0.35s ease;
  overflow: hidden;
}

/* Glow layer */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
    rgba(245, 159, 10, 0.25),
    transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Hover effect */
.service-card:hover,
.service-card:active {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 25px 50px rgba(0,0,0,0.12),
    0 0 30px rgba(245, 159, 10, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

/* Icon */
.service-card img {
  width: 56px;
  margin-bottom: 20px;
  transition: transform 0.35s ease;
}

.service-card:hover img {
  transform: scale(1.1) rotate(-3deg);
}

/* Title */
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: #f59f0a;
}

/* Text */
.service-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* Link */
.service-card a {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f59f0a;
  font-weight: 500;
  text-decoration: none;
}

.service-card a span {
  transition: transform 0.3s ease;
}

.service-card:hover a span {
  transform: translateX(6px);
}

/* Button */
.view-all-btn {
  display: inline-block;
  margin-top: 60px;
  padding: 14px 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f59f0a, #fbbf24);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 35px rgba(245, 159, 10, 0.45);
}

/* ================= Mobile Devices ================= */


/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .services-section {
    padding: 70px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .heading {
    font-size: 26px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {

  .view-all-btn {
    margin-top: 40px;
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 10px;
  }

  .view-all-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 14px 28px rgba(245, 159, 10, 0.4);
  }
}













.home-page .SVG-4 {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: -1.00px;
}

.home-page .rectangle-7 {
  position: absolute;
  top: 3071px;
  left: 0;
  width: 1440px;
  height: 496px;
  background: linear-gradient(
    168deg,
    rgba(20, 31, 56, 1) 0%,
    rgba(45, 56, 83, 1) 100%
  );
}

.home-page .get-a-free {
  position: absolute;
  top: 3308px;
  left: calc(50.00% - 381px);
  width: 763px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .link-button-2 {
  left: calc(50.00% - 321px);
  width: 343px;
  box-shadow: 0px 4px 14px #f59f0a4c;
  background: linear-gradient(
    171deg,
    rgba(245, 159, 10, 1) 0%,
    rgba(251, 192, 45, 1) 100%
  );
  position: absolute;
  top: 3404px;
  height: 56px;
  border-radius: 12px;
}

.home-page .text-wrapper-12 {
  position: absolute;
  top: calc(50.00% - 12px);
  left: calc(50.00% - 131px);
  width: 239px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", Helvetica;
  font-weight: 600;
  color: #0f1729;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

.home-page .SVG-5 {
  position: absolute;
  top: calc(50.00% - 8px);
  left: calc(50.00% + 115px);
  width: 16px;
  height: 16px;
}

.home-page .link-button-3 {
  left: calc(50.00% + 38px);
  width: 284px;
  border: 2px solid;
  border-color: #f8fafc4c;
  position: absolute;
  top: 3404px;
  height: 56px;
  border-radius: 12px;
}

.home-page .SVG-6 {
  position: absolute;
  top: calc(50.00% - 8px);
  left: calc(50.00% - 100px);
  width: 16px;
  height: 16px;
}

.home-page .text-wrapper-13 {
  position: absolute;
  top: calc(50.00% - 12px);
  left: calc(50.00% - 76px);
  width: 176px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", Helvetica;
  font-weight: 500;
  color: #f8fafc;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
  white-space: nowrap;
}

.home-page .rectangle-8 {
  position: absolute;
  top: 3567px;
  left: 0;
  width: 1440px;
  height: 485px;
  background: linear-gradient(
    171deg,
    rgba(20, 31, 56, 1) 0%,
    rgba(45, 56, 83, 1) 100%
  );
}

.home-page .heading-contact-us {
  position: absolute;
  top: 3664px;
  left: 1069px;
  width: 102px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  color: #f8fafc;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .SVG-7 {
  position: absolute;
  top: 3716px;
  left: 1069px;
  width: 20px;
  height: 20px;
}

.home-page .element-business-center {
  position: absolute;
  top: 3717px;
  left: 1101px;
  width: 226px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .SVG-8 {
  position: absolute;
  top: 3772px;
  left: 1069px;
  width: 20px;
  height: 20px;
}

.home-page .text-wrapper-14 {
  position: absolute;
  top: 3773px;
  left: 1101px;
  width: 121px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .SVG-9 {
  position: absolute;
  top: 3808px;
  left: 1069px;
  width: 20px;
  height: 20px;
}

.home-page .text-wrapper-15 {
  position: absolute;
  top: 3809px;
  left: 1101px;
  width: 121px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .SVG-10 {
  position: absolute;
  top: 3844px;
  left: 1069px;
  width: 20px;
  height: 20px;
}

.home-page .text-wrapper-16 {
  position: absolute;
  top: 3844px;
  left: 1101px;
  width: 209px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .text-wrapper-17 {
  top: 3822px;
  left: 805px;
  width: 60px;
  height: 18px;
  color: #f8fafcb2;
  font-size: 14px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .text-wrapper-18 {
  position: absolute;
  top: 3786px;
  left: 805px;
  width: 68px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .text-wrapper-19 {
  position: absolute;
  top: 3750px;
  left: 805px;
  width: 63px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .text-wrapper-20 {
  top: 3714px;
  left: 805px;
  width: 44px;
  height: 18px;
  color: #f8fafcb2;
  font-size: 14px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .heading-quick {
  position: absolute;
  top: 3659px;
  left: 805px;
  width: 113px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  color: #f8fafc;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .your-trusted-partner {
  position: absolute;
  top: 3705px;
  left: 113px;
  width: 313px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .link-5 {
  position: absolute;
  top: 3818px;
  left: 113px;
  width: 40px;
  height: 40px;
}

.home-page .link-6 {
  position: absolute;
  top: 3818px;
  left: 165px;
  width: 40px;
  height: 40px;
}

.home-page .link-7 {
  position: absolute;
  top: 3818px;
  left: 217px;
  width: 40px;
  height: 40px;
}

.home-page .link-8 {
  position: absolute;
  top: 3818px;
  left: 269px;
  width: 40px;
  height: 40px;
}

.home-page .heading-our {
  position: absolute;
  top: 3659px;
  left: 539px;
  width: 139px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 600;
  color: #f8fafc;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .text-wrapper-21 {
  position: absolute;
  top: 3714px;
  left: 539px;
  width: 113px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .text-wrapper-22 {
  position: absolute;
  top: 3750px;
  left: 539px;
  width: 174px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .text-wrapper-23 {
  position: absolute;
  top: 3786px;
  left: 539px;
  width: 182px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .text-wrapper-24 {
  position: absolute;
  top: 3822px;
  left: 539px;
  width: 176px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .text-wrapper-25 {
  position: absolute;
  top: 3858px;
  left: 539px;
  width: 124px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafcb2;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .text-wrapper-26 {
  top: 3894px;
  left: 539px;
  width: 169px;
  height: 18px;
  color: #f8fafcb2;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .text-wrapper-27 {
  position: absolute;
  top: 3986px;
  left: 113px;
  width: 236px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafc99;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 20px;
  white-space: nowrap;
}

.home-page .text-wrapper-28 {
  position: absolute;
  top: 3986px;
  left: 1098px;
  width: 96px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafc99;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .text-wrapper-29 {
  position: absolute;
  top: 3986px;
  left: 1211px;
  width: 115px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #f8fafc99;
  font-size: 14px;
  letter-spacing: 0;
  line-height: normal;
}

.home-page .line {
  position: absolute;
  top: 3958px;
  left: 113px;
  width: 1214px;
  height: 1px;
}

.home-page .text-wrapper-30 {
  max-width: 600px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Inter", system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 2.2vw, 16px);
  line-height: 1.6;
  text-align: center;

  color: #64748b; /* modern off-gray (better than pure #65758b) */
}


.trusted-section {
  padding: 80px 20px;
  text-align: center;
}
.badge {
  display: inline-flex;
  padding: 8px 18px;
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
}
.section-title {
  max-width: 760px;
  margin: 0 auto 48px;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  color: #0f172a;
}
.color-primary {
  background: linear-gradient(90deg, #111827, #374151);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.color-secondary {
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 1024px) {

  .home-page .rectangle-7,
  .home-page .rectangle-8 {
    width: 100%;
    height: auto;
    padding: 80px 24px;
    position: relative;
    top: auto;
  }

  /* CTA Section */
  .home-page .get-a-free {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    font-size: 16px;
    padding: 0 20px;
  }

  .home-page .link-button-2,
  .home-page .link-button-3 {
    position: relative;
    top: auto;
    left: auto;
    margin: 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Footer layout */
  .home-page .heading-our,
  .home-page .heading-quick,
  .home-page .heading-contact-us {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 12px;
  }

  .home-page .text-wrapper-21,
  .home-page .text-wrapper-22,
  .home-page .text-wrapper-23,
  .home-page .text-wrapper-24,
  .home-page .text-wrapper-25,
  .home-page .text-wrapper-26,
  .home-page .text-wrapper-17,
  .home-page .text-wrapper-18,
  .home-page .text-wrapper-19,
  .home-page .text-wrapper-20 {
    position: relative;
    left: auto;
    top: auto;
    justify-content: flex-start;
    margin-bottom: 10px;
  }

  /* Social icons */
  .home-page .link-5,
  .home-page .link-6,
  .home-page .link-7,
  .home-page .link-8 {
    position: relative;
    left: auto;
    top: auto;
    margin: 8px;
  }

}
@media (max-width: 768px) {

  /* Stack everything vertically */
  .home-page {
    overflow-x: hidden;
  }

  .home-page .get-a-free {
    font-size: 15px;
    line-height: 1.6;
  }

  .home-page .link-button-2,
  .home-page .link-button-3 {
    width: 100%;
    max-width: 320px;
  }

  .home-page .text-wrapper-12,
  .home-page .text-wrapper-13 {
    font-size: 16px;
  }

  /* Footer text center */
  .home-page .your-trusted-partner {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  /* Contact icons */
  .home-page .SVG-7,
  .home-page .SVG-8,
  .home-page .SVG-9,
  .home-page .SVG-10 {
    position: relative;
    left: auto;
    top: auto;
  }

  /* Footer bottom */
  .home-page .text-wrapper-27,
  .home-page .text-wrapper-28,
  .home-page .text-wrapper-29 {
    position: relative;
    left: auto;
    top: auto;
    text-align: center;
    margin: 8px 0;
  }

  .home-page .line {
    position: relative;
    width: 100%;
    left: auto;
    top: auto;
    margin: 24px 0;
  }

  /* Trusted section */
  .trusted-section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: clamp(22px, 6vw, 32px);
  }

}

/* stats grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 820px;
  margin: 0 auto 80px;
}

.stat-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card h3 {
  font-size: 30px;
  color: #f59e0b;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  color: #65758b;
}

/* Hover */
.stat-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 24px;
  border: 1px solid #e5e7eb;
  text-align: left;
  transition: all 0.35s ease;
}

.feature-card img {
  width: 48px;
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: #65758b;
  line-height: 1.5;
}

/* Hover effect */
.feature-card:hover {
  transform: translateY(-10px);
  border-color: #f59e0b;
  box-shadow: 0 25px 50px rgba(245, 158, 11, 0.15);
}
@media (max-width: 768px) {
  .trusted-section {
    padding: 60px 16px;
  }

  .feature-card {
    text-align: center;
  }
}

/* Insert original CSS code here */
  
/* Additional semantic and accessibility improvements */

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.service-card {
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 0 113px;
  gap: 40px;
}

.footer-column {
  flex: 1;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 27px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 113px;
}

.footer-bottom nav {
  display: flex;
  gap: 17px;
}

address {
  font-style: normal;
}

a {
  cursor: pointer;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

a:focus {
  outline: 2px solid #f59f0a;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #f59f0a;
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1024px) {

  /* Hero actions */
  .hero-actions {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Services & Features → 2 columns */
  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Footer */
  .footer-content {
    padding: 0 48px;
    flex-wrap: wrap;
  }

  .footer-column {
    flex: 1 1 45%;
  }

  .footer-bottom {
    padding: 0 48px;
  }

}
@media (max-width: 768px) {

  /* Hero features */
  .hero-features {
    text-align: center;
  }

  /* Buttons stack */
  .hero-actions {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  /* Services & Features → 1 column */
  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .service-card {
    max-width: 420px;
    margin: 0 auto;
  }

  /* Footer layout */
  .footer-content {
    flex-direction: column;
    padding: 0 20px;
    gap: 32px;
    text-align: center;
  }

  .footer-column {
    flex: 1;
  }

  .footer-column ul li {
    margin-bottom: 14px;
  }

  /* Contact alignment */
  .contact-item {
    justify-content: center;
    text-align: left;
  }

  /* Social icons center */
  .social-links {
    justify-content: center;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
    text-align: center;
  }

  .footer-bottom nav {
    justify-content: center;
    flex-wrap: wrap;
  }

}




/* about page */
.about-us {
  background-color: #ffffff;
  width: 100%;
   min-height: auto;
  height: auto;
  position: relative;
}

/* Header Section */
.section {
  position: relative;
  width: 100%;
  height: 368px;
  background: linear-gradient(169deg, #141f38 0%, #2d3853 100%);
  overflow: hidden;
}

.SVG {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  height: 160px;
  object-fit: cover;
}

.about-section {
  position: relative;
  width: 100%;
  height: auto;
  background: linear-gradient(169deg, #141f38 0%, #2d3853 100%);
  overflow: hidden;
}

/* Badge */
.about-badge {
  position: absolute;
  top: 94px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 14px;
  background-color: rgba(245, 159, 10, 0.2);
  border-radius: 9999px;
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.about-badge:hover {
  background-color: rgba(245, 159, 10, 0.3);
  transform: translateX(-50%) scale(1.05);
}

.about-badge-text {
  font-weight: 500;
  color: #f59f0a;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
}

/* Heading */
.about-title {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  line-height: 42px;
  text-align: center;
  margin: 0;
}

.about-highlight {
  color: #f59f0a;
}

/* Subheading */
.about-subtitle {
  position: absolute;
  top: 226px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 739px;
  width: 90%;
  font-size: 18px;
  font-weight: 400;
  color: rgba(248, 250, 252, 0.7);
  text-align: center;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .about-section {
    height: 340px;
  }

  .about-badge {
    top: 80px;
  }
  .about-badge-text {
    font-size: 13px;
    line-height: 17px;
  }
  .about-title {
    top: 140px;
    font-size: 32px;
    line-height: 40px;
    width: 90%;
  }

  .about-subtitle {
    top: 210px;
    font-size: 17px;
    line-height: 26px;
    max-width: 680px;
  }
}
@media (max-width: 768px) {
  .about-section {
    height: auto;
    padding: 80px 16px 60px;
  }

  .about-badge,
  .about-title,
  .about-subtitle {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .about-badge {
    margin: 0 auto 16px;
    display: inline-block;
  }
  .about-badge-text {
    font-size: 12px;
    line-height: 16px;
  }
  .about-title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 14px;
  }

  .about-subtitle {
    font-size: 15px;
    line-height: 24px;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .about-badge-text {
    font-size: 11px;
    line-height: 15px;
  }
  .about-title {
    font-size: 22px;
    line-height: 30px;
  }

  .about-subtitle {
    font-size: 14px;
    line-height: 22px;
  }
}

/* Navigation */
/* =========================
   MAIN NAVBAR
========================= */
.main-navbar1 {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px; /* More top & bottom space */
    background: linear-gradient(
        148deg,
        rgba(20, 31, 56, 1) 0%,
        rgba(45, 56, 83, 1) 100%
    );
    box-shadow: 0 4px 20px rgba(15, 23, 41, 0.08);
}

.nav-container1 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.logo {
    position: absolute;
    left: 150px;
    top: 60%;
    transform: translateY(-50%);

    font-size: 30px;
    font-weight: 900;
    color: whitesmoke;
    text-decoration: none;
    white-space: nowrap;
}

/* ===== NAV LINKS ===== */

.nav-links1 {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: auto; /* pushes nav links to the right */
}

.nav-link {
    font-size: 20px;
    font-weight: 500;
    color: whitesmoke;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

/* underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f59f0a;
    transition: width 0.3s ease;
}

.nav-link:hover {
  color: #f59f0a;
}

.nav-link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {

  .nav-links1 {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: linear-gradient(
      148deg,
      rgba(20, 31, 56, 1) 0%,
      rgba(45, 56, 83, 1) 100%
    );
    flex-direction: column;
    gap: 22px;
    padding: 26px 0;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.35s ease;
  }

  .nav-links1.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 16px;
  }
}

/* ===== HAMBURGER → CLOSE ANIMATION ===== */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  padding: 10px 22px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #f59f0a, #fbbf24);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 159, 10, 0.4);
  text-decoration: none;
}

/* ===== HAMBURGER MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: whitesmoke;
  transition: all 0.35s ease;
}

@media (max-width: 768px) {

  .main-navbar1 {
    position: relative;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;

    position: absolute;
    right: 20px;   /* Right corner */
    top: 50%;
    transform: translateY(-50%);

    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle span {
    width: 26px;
    height: 2px;
    background: whitesmoke;
    transition: all 0.35s ease;
  }
}
/* Remove focus outline box */
a:focus,
a:focus-visible,
button:focus,
button:focus-visible {
  outline: none;
  box-shadow: none;
}
/* Container for links */
.nav-links {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

/* Nav links */
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: #0f1729;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: #f59f0a;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #f59f0a;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA Button */
.div-wrapper {
  background: #f59f0a;
  padding: 10px 18px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.div-wrapper span {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
}

.div-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 159, 10, 0.35);
}
.div-wrapper:hover::after{
  content: none;
}
/* ================= Tablet Devices ================= */
@media (min-width: 768px) and (max-width: 1024px) {
  
  .main-navbar {
    padding: 12px 20px;
  }

  .nav-links {
    gap: 25px; /* Reduce spacing between links */
  }

  .nav-links a {
    font-size: 14px; /* Slightly smaller font for tablet */
  }

  .div-wrapper {
    padding: 8px 16px;
  }

  .div-wrapper span {
    font-size: 13px;
  }
}

/* ================= Mobile Devices ================= */
@media (max-width: 767px) {

  .main-navbar {
    padding: 10px 16px;
  }

  .nav-links {
    gap: 15px;
    flex-direction: column; /* Stack links vertically if needed */
    justify-content: center;
    align-items: center;
  }

  .nav-links a {
    font-size: 13px;
  }

  .div-wrapper {
    padding: 8px 14px;
  }

  .div-wrapper span {
    font-size: 12px;
  }

  /* Optional: make navbar scrollable horizontally if links overflow */
  .nav-links {
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Optional: reduce hover effect distance */
  .nav-links a::after {
    bottom: -4px;
    height: 2px;
  }
}

/* =========================
   HAMBURGER MENU
========================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #0f1729;
  border-radius: 4px;
  transition: all 0.3s ease;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 41, 0.12);
    display: none;
  }

  .nav-links.active {
    display: flex;
    animation: slideDown 0.4s ease;
  }

  .div-wrapper {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    right: 16px;
    gap: 6px;
  }

  .menu-toggle span {
    width: 24px;
    height: 3px;
  }
}
@media (max-width: 480px) {
  .menu-toggle span {
    width: 22px;
    height: 2.5px;
  }
}

/* =========================
   ANIMATION
========================= */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Our Story Section */

/* Container for left and right sections */
.about-stats-container {
  display: flex;
  gap: 50px; /* space between left and right */
  padding: 50px 20px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap; /* responsive stacking */
}

/* Left: Our Story */
.our-story {
  flex: 1 1 600px; /* takes available space, minimum 600px */
}

/* Right: Statistics */
.rightstats-container {
  flex: 1 1 400px; /* right section */
  display: flex;
  gap: 10px; /* space between two cards */
  flex-wrap: wrap; /* wrap if screen too small */
  justify-content: flex-start;
   margin-top: 150px; /* space above the cards */
}
/* Frame and heading styles (unchanged) */
.frame-4 {
  margin: 60px auto 20px;
  width: fit-content;
  padding: 9px 14px;
  background-color: rgba(245, 159, 10, 0.1);
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.frame-4:hover {
  background-color: rgba(245, 159, 10, 0.2);
  transform: scale(1.05);
}

.text-wrapper-7 {
  font-weight: 500;
  color: #f59f0a;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
}

.heading-building {
  text-align: center;
  margin: 20px auto;
  font-weight: 700;
  color: #0f1729;
  font-size: 36px;
  letter-spacing: 0;
  line-height: 40px;
  animation: fadeInUp 0.6s ease;
}

.founded-in,
.our-team-of,
.today-we-continue-to {
  max-width: 657px;
  margin: 20px auto;
  padding: 0 20px;
  font-weight: 400;
  color: #65758b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  animation: fadeInUp 0.6s ease;
}

/* Statistics Cards */
.stat-card {
  background-color: #f8f6f2;
  border-radius: 12px;
  border: 1px solid #cccccc;
  padding: 15px 20px; /* reduced padding */
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 200px; 
  height: 100px;/* optional fixed width */
  margin: 0 auto; /* center if fixed width */
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #f59f0a;
}

.stat-number {
  font-weight: 700;
  color: #f59f0a;
  font-size: 36px;
  text-align: center;
  letter-spacing: 0;
  line-height: 40px;
  margin-bottom: 10px;
}

.stat-label {
  font-weight: 400;
  color: #65758b;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-stats-container {
    flex-direction: column;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr; /* two-column stats on smaller screens */
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: 1fr; /* single column for very small screens */
  }
}
/* Tablet screens */
@media (max-width: 900px) {
  .about-stats-container {
    flex-direction: column; /* stack sections vertically */
    gap: 40px;
  }

  .stats-container {
    grid-template-columns: 1fr 1fr; /* two cards per row */
    gap: 15px;
  }
}

/* Mobile screens */
@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: 1fr; /* single column cards */
    gap: 15px;
  }
}

/* Values Section */
/* Frame/Badge */
.frame-5 {
  margin: 80px auto 20px;
  width: fit-content;
  padding: 9px 14px;
  background-color: rgba(245, 159, 10, 0.1);
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.frame-5:hover {
  background-color: rgba(245, 159, 10, 0.2);
  transform: scale(1.05);
}

/* Section Heading */
.text-wrapper-16 {
  font-weight: 500;
  color: #f59f0a;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 18px;
}

.heading-what {
  text-align: center;
  margin: 20px auto;
  font-weight: 700;
  color: #0f1729;
  font-size: 36px;
  letter-spacing: 0;
  line-height: 40px;
  animation: fadeInUp 0.8s ease forwards;
}

.p {
  text-align: center;
  max-width: 515px;
  margin: 20px auto 60px;
  padding: 0 20px;
  font-weight: 400;
  color: #65758b;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 24px;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* Values Container Grid */
.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

/* Value Card */
.value-card {
  background-color: #ffffff;
  border-radius: 16px;
  border: 0.8px solid #cccccc;
  box-shadow: 0px 4px 6px -1px rgba(15, 23, 41, 0.1),
              0px 2px 4px -2px rgba(15, 23, 41, 0.1);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  transform: translateY(0);
  animation: fadeInUp 0.8s ease forwards;
}

.value-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0px 12px 24px rgba(15, 23, 41, 0.15);
  border-color: #f59f0a;
}

/* Value Icon */
.value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.15) rotate(10deg);
}

/* Value Text */
.value-title {
  font-weight: 600;
  color: #0f1729;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
  margin-bottom: 15px;
}

.value-description {
  font-weight: 400;
  color: #65758b;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 22px;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Journey Section */
.frame-6 {
  margin: 80px auto 20px;
  width: fit-content;
  padding: 9px 14px;
  background-color: rgba(245, 159, 10, 0.1);
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.frame-6:hover {
  background-color: rgba(245, 159, 10, 0.2);
  transform: scale(1.05);
}

.text-wrapper-17 {
  font-weight: 500;
  color: #f59f0a;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0;
  line-height: 18px;
}

.heading-milestones {
  text-align: center;
  margin: 20px auto 60px;
  font-weight: 700;
  color: #0f1729;
  font-size: 36px;
  letter-spacing: 0;
  line-height: 40px;
}

/* ===== Timeline Wrapper ===== */
.timeline-container {
  max-width: 900px;
  margin: 0 auto 100px;
  padding: 0 20px;
  position: relative;
}

/* Center vertical line */
.vertical-divider {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #e1e7ef;
}

/* ===== Timeline Item ===== */
.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 70px;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Reveal on scroll */
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Year Badge ===== */
.timeline-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
  background-color: rgba(245, 159, 10, 0.1);
  border-radius: 50%;
  border: 4px solid #f9fafb;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  color: #f59f0a;
  font-size: 14px;
  z-index: 2;

  transition: transform 0.35s ease, background-color 0.35s ease;
}

/* Badge hover */
.timeline-item:hover .timeline-badge {
  background-color: rgba(245, 159, 10, 0.3);
  transform: translateX(-50%) scale(1.12);
}

/* ===== Content Card ===== */
.timeline-content {
  width: calc(50% - 60px)wds;
  padding: 22px 26px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0px 4px 12px rgba(15, 23, 41, 0.08);

  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

/* Left / Right alignment */
.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  padding-left: 40px;
  text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-right: auto;
  padding-right: 40px;
  text-align: right;
}

/* Card hover lift */
.timeline-item:hover .timeline-content {
  transform: translateY(-8px);
  box-shadow: 0px 18px 40px rgba(15, 23, 41, 0.15);
  border-color: #f59f0a;
}

/* ===== Text ===== */
.timeline-title {
  font-weight: 600;
  color: #0f1729;
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-description {
  font-weight: 400;
  color: #65758b;
  font-size: 14px;
  line-height: 22px;
}
@media (max-width: 1024px) {

  .heading-milestones {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 48px;
  }
  .timeline-container {
    max-width: 100%;
    padding: 0 24px;
  }

  .timeline-content {
    width: calc(50% - 40px);
    padding: 20px 22px;
  }

  .timeline-title {
    font-size: 18px;
  }

  .timeline-description {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 768px) {

  .frame-6 {
    margin: 60px auto 16px;
    padding: 8px 14px;
  }

  .heading-milestones {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 36px;
  }
   
  /* Timeline layout switch */
  .vertical-divider {
    left: 32px;
    transform: none;
  }
   .timeline-container {
    padding-left: 24px;
    padding-right: 16px;
  }
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }

  .timeline-badge {
    left: 24px;
    transform: none;
    width: 52px;
    height: 52px;
    font-size: 13px;
  }

  .timeline-item:hover .timeline-badge {
    transform: scale(1.1);
  }

  .timeline-content {
    width: calc(50% - 60px);
    padding: 20px 22px;
    margin-top: 16px;
    margin-left: 10px;
    margin-right: 0 !important;
    padding: 18px 20px;
    text-align: left !important;
  }

  /* Remove alternating alignment */
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
  }

  .timeline-title {
    font-size: 17px;
  }

  .timeline-description {
    font-size: 13px;
    line-height: 20px;
  }

}
@media (max-width: 480px) {
  .timeline-container {
    padding-left: 20px;
    padding-right: 12px;
  }

  .timeline-badge {
    width: 46px;
    height: 46px;
    font-size: 12px;
  }

  .timeline-title {
    font-size: 16px;
  }

  .timeline-description {
    font-size: 13px;
    line-height: 20px;
  }
}




/* CTA Section */
.cta-section {
  position: relative;
  background: linear-gradient(168deg, #141f38 0%, #2d3853 100%);
  padding: 80px 20px;
  overflow: hidden;
}
.cta-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.cta-content {
  max-width: 760px;
  margin: 0 auto;
}
.call-head {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  color: #f8fafc; /* base color */
  text-align: left;
  justify-content: center;
}

.call-head .highlight {
  color: #f59e0b; /* primary highlight (amber) */
}

.call-head .accent {
  color: #38bdf8; /* secondary accent (blue) */
}
.call-head1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  color: #f8fafc; /* base color */
  text-align: center;
}

.call-head1 .highlight {
  color: #f59e0b; /* primary highlight (amber) */
}

.call-head1 .accent {
  color: #38bdf8; /* secondary accent (blue) */
}
.call-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(248, 250, 252, 0.75);
  margin-bottom: 40px;
  margin-top: 20px;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Primary Button */
.cta-btn.primary {
  background: linear-gradient(165deg, #f59f0a 0%, #fbc02d 100%);
  color: #0f1729;
  box-shadow: 0 4px 14px rgba(245, 159, 10, 0.35);
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(245, 159, 10, 0.45);
}

/* Outline Button */
.cta-btn.outline {
  background: transparent;
  border: 1.5px solid rgba(248, 250, 252, 0.4);
  color: #f8fafc;
}

.cta-btn.outline:hover {
  background: rgba(248, 250, 252, 0.08);
  transform: translateY(-4px);
}
.cta-btn img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.cta-btn.primary:hover img {
  transform: translateX(5px);
}
@media (max-width: 640px) {
  .call-text {
    font-size: 16px;
    line-height: 26px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 1024px) {

  .cta-section {
    padding: 70px 20px;
  }

  .cta-container {
    max-width: 900px;
  }

  .call-text {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 36px;
  }

  .cta-btn {
    padding: 13px 26px;
    font-size: 15px;
  }

}
@media (max-width: 768px) {

  .cta-section {
    padding: 56px 16px;
  }

  .cta-content {
    max-width: 100%;
  }

  .call-head,
  .call-head1 {
    font-size: clamp(22px, 6vw, 30px);
    line-height: 1.3;
  }

  .call-text {
    font-size: 15px;
    line-height: 24px;
    margin-top: 14px;
    margin-bottom: 32px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 14px;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 22px;
  }

  .cta-btn img {
    width: 14px;
    height: 14px;
  }

  /* Reduce hover lift for touch devices */
  .cta-btn.primary:hover,
  .cta-btn.outline:hover {
    transform: none;
  }

}



/* Footer */
.footer {
  background: linear-gradient(171deg, #141f38 0%, #2d3853 100%);
  padding: 80px 20px 40px;
}

/* Footer top content */
.footer-content {
  max-width: 1440px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* Footer Section Titles */
.footer-section h2 {
  font-weight: 600;
  color: #f8fafc;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}

/* Footer Section text and links */
.footer-section p,
.footer-section a {
  font-weight: 400;
  color: rgba(248, 250, 252, 0.7);
  font-size: 14px;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #f59f0a;
}

/* Lists */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

/* Contact items */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
}

.social-links img {
  width: 100%;
  height: 100%;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(248, 250, 252, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-weight: 400;
  color: rgba(248, 250, 252, 0.6);
  font-size: 14px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-weight: 400;
  color: rgba(248, 250, 252, 0.6);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f59f0a;
}
@media (max-width: 1024px) {

  .footer {
    padding: 64px 20px 32px;
  }

  .footer-content {
    gap: 32px;
  }

  .footer-section h2 {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .footer-bottom {
    padding-top: 24px;
  }

}
@media (max-width: 768px) {

  .footer {
    padding: 56px 16px 28px;
  }

  /* Footer content stacks naturally via grid */
  .footer-content {
    gap: 28px;
  }

  .footer-section h2 {
    font-size: 16px;
    text-align: center;
  }

  .footer-section p,
  .footer-section a {
    text-align: center;
  }

  .contact-item {
    justify-content: center;
    text-align: left;
  }

  /* Social links center */
  .social-links {
    justify-content: center;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .footer-links {
    justify-content: center;
    gap: 16px;
  }

}



/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Utility Classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .heading-building,
  .heading-what,
  .heading-milestones,
  .heading-ready-to {
    font-size: 32px;
  }

  .div,
  .text-wrapper-28 {
    font-size: 16px;
  }

  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    width: calc(50% - 50px);
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 768px) {
  .rectangle {
    height: auto;
    min-height: 80px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .rectangle nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }

  .rectangle nav.active {
    display: flex;
  }

  .rectangle a {
    width: 100%;
    padding: 10px;
    font-size: 18px;
  }

  .frame-2,
  .frame-3 {
    width: 100%;
  }

  .div-wrapper {
    width: 100%;
    text-align: center;
  }

  .heading-building,
  .heading-what,
  .heading-milestones,
  .heading-ready-to {
    font-size: 28px;
  }

  .div,
  .text-wrapper-28 {
    font-size: 14px;
  }

  .stats-container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .stat-number {
    font-size: 28px;
  }

  .values-container {
    grid-template-columns: 1fr;
  }

  .vertical-divider {
    left: 30px;
  }

  .timeline-badge {
    left: 30px;
    transform: translateX(0);
    width: 50px;
    height: 50px;
    font-size: 12px;
  }

  .timeline-item:hover .timeline-badge {
    transform: translateX(0) scale(1.1);
  }

  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    text-align: left !important;
    padding-left: 20px !important;
    padding-right: 0 !important;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section {
    height: 300px;
  }

  .frame {
    top: 70px;
  }

  .div {
    top: 180px;
    font-size: 14px;
  }

  .heading-building,
  .heading-what,
  .heading-milestones,
  .heading-ready-to {
    font-size: 24px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 12px;
  }

  .value-title,
  .timeline-title {
    font-size: 18px;
  }

  .value-description,
  .timeline-description {
    font-size: 13px;
  }
}




/* contact page */
.contact-page {
  width: 100%;
  background-color: var(--color-white);
  position: relative;
  overflow-x: visible;
}
/* ========== HEADER / NAVIGATION ========== */
.contact-sections {
  position: relative;
  width: 100%;
  height: 368px;
  background: linear-gradient(169deg, #141f38 0%, #2d3853 100%);
  overflow: hidden;
}

/* Badge */
.contact-badge {
  position: absolute;
  top: 94px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 14px;
  background-color: rgba(245, 159, 10, 0.2);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-badge:hover {
  background-color: rgba(245, 159, 10, 0.3);
  transform: translateX(-50%) scale(1.05);
}

.contact-badge-text {
  font-size: 14px;
  font-weight: 500;
  color: #f59f0a;
  line-height: 18px;
  text-align: center;
}

/* Title */
.contact-title {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 42px;
  margin: 0;
}

.contact-highlight {
  color: #f59f0a;
}

/* Subtitle */
.contact-subtitle {
  position: absolute;
  top: 226px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 740px;
  width: 90%;
  font-size: 18px;
  font-weight: 400;
  color: rgba(248, 250, 252, 0.7);
  text-align: center;
  line-height: 28px;
}
@media (max-width: 1024px) {
  .contact-sections {
    height: 340px;
  }

  .contact-badge {
    top: 80px;
  }
  
  .contact-title {
    top: 140px;
    font-size: 32px;
    line-height: 40px;
    width: 90%;
  }

  .contact-subtitle {
    top: 210px;
    font-size: 17px;
    line-height: 26px;
    max-width: 680px;
  }
}
@media (max-width: 768px) {
  .contact-sections {
    height: auto;
    padding: 80px 16px 60px;
  }

  .contact-badge,
  .contact-title,
  .contact-subtitle {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
  }

  .contact-badge {
    margin: 0 auto 16px;
    display: inline-block;
  }
  .contact-badge:hover {
    transform: translateX(-50%) scale(1);
    background-color: rgba(245, 159, 10, 0.2);
  }
  .contact-title {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 14px;
  }

  .contact-subtitle {
    font-size: 15px;
    line-height: 24px;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .contact-title {
    font-size: 22px;
    line-height: 30px;
  }

  .contact-subtitle {
    font-size: 14px;
    line-height: 22px;
  }
}
/* contactsection */
.contact-section {
  padding: 80px 20px;
 
}

.contact-container {
  max-width: 1200px;
  min-height: auto;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

/* --------------------
   LEFT INFO
-------------------- */
.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.subtitle {
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.6;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.info-list li:hover {
  background: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.icon {
  min-width: 42px;
  height: 42px;
  background: #fff3e0;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 18px;
}

.info-list strong {
  font-size: 15px;
  display: block;
}

.info-list p {
  color: #6b7280;
  font-size: 14px;
  margin-top: 4px;
}

/* --------------------
   RIGHT FORM
-------------------- */
.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
}

.form-icon {
  background: #fff3e0;
  padding: 10px;
  border-radius: 12px;
  color: #f59e0b;
  font-size: 16px;
}

.form-sub {
  margin: 12px 0 25px;
  color: #6b7280;
  font-size: 15px;
}

/* --------------------
   FORM GRID
-------------------- */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  transition: all 0.25s ease;
  background: #ffffff;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #f59e0b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

textarea {
  margin-top: 16px;
  resize: none;
}

/* --------------------
   BUTTON
-------------------- */
button {
  margin-top: 22px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #000;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}
html, body {
  overflow-x: hidden;   /* OK */
  overflow-y: auto;     /* REQUIRED */
}
@media (max-width: 1024px) {

  .contact-section {
    padding: 64px 20px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 900px;
  }

  .contact-info h2 {
    font-size: 28px;
  }

  .contact-form {
    padding: 32px;
  }

}
@media (max-width: 768px) {

  .contact-section {
    padding: 48px 16px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Left info */
  .contact-info h2 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .info-list li {
    padding: 14px;
    gap: 14px;
  }

  .icon {
    min-width: 38px;
    height: 38px;
    font-size: 16px;
  }

  /* Form */
  .contact-form {
    padding: 24px;
    border-radius: 18px;
  }

  .contact-form h3 {
    font-size: 20px;
  }

  .form-sub {
    font-size: 14px;
  }

  /* Form grid → single column */
  .grid {
    grid-template-columns: 1fr;
  }

  input,
  select,
  textarea {
    font-size: 14px;
    padding: 13px 14px;
  }

  textarea {
    margin-top: 14px;
  }

  button {
    font-size: 15px;
    padding: 14px;
  }

  /* Reduce hover lift on touch */
  .info-list li:hover,
  button:hover {
    transform: none;
    box-shadow: none;
  }

}

/* --------------------
   RESPONSIVE
-------------------- */


/* services page */
/* CARD WRAPPER */
.gst-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid #eef2f7;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* TRENDING HOVER EFFECT */
.gst-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
}

.gst-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(120deg, transparent, rgba(245,159,10,0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gst-card:hover::after {
  opacity: 1;
}

/* LEFT SIDE */
.gst-card-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gst-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff7e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.gst-title {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.gst-desc {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* BUTTON */
.gst-btn {
  position: relative;
  z-index: 9999;
  width: 160px;
  background: #f59f0a;
  color: #ffffff;
  border: none;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.gst-btn:hover {
  background: #e08b00;
  transform: translateX(4px);
}

/* RIGHT SIDE */
.gst-card-right {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #eef2f7;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.gst-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

/* FEATURES LIST */
.gst-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gst-feature-list li {
  font-size: 15px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gst-feature-list li::before {
  content: "✔";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(245, 159, 10, 0.12);
  color: #f59f0a;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* services section 2 */
.gst-cards {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  border: 1px solid #eef2f7;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
}

/* TRENDING HOVER EFFECT */
.gst-cards:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.12);
}

.gst-cards::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(120deg, transparent, rgba(245,159,10,0.12), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gst-cards:hover::after {
  opacity: 1;
}

/* Right SIDE */
.gst-cards-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* move items to right */
  margin-left: auto;      /* push block to right */
  text-align:left;      /* text alignment */
}

.gst-icons-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff7e6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.gst-titles {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.gst-descs {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* BUTTON */
.gst-btns {
  width: 160px;
  background: #f59f0a;
  color: #ffffff;
  border: none;
  padding: 14px 26px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap:10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gst-btns:hover {
  background: #e08b00;
  transform: translateX(4px);
}

/* LEFT SIDE */
.gst-cards-left {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #eef2f7;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 👈 LEFT alignment */
}
.gst-features-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}

/* FEATURES LIST */
.gst-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.gst-features-list li {
  font-size: 15px;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gst-features-list li::before {
  content: "✔";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(245, 159, 10, 0.12);
  color: #f59f0a;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* cta section services */
.cta-sections {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sections::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 159, 10, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-contents {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-titles {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out;
}

.cta-descriptions {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-btns {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f59f0a;
  color: white;
  border: none;
  padding:12px 28px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(245, 159, 10, 0.3);
  animation: fadeInUp 0.8s ease-out 0.4s both;
  width: auto;
}

.cta-btns:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(245, 159, 10, 0.4);
}

.cta-btns svg {
  transition: var(--transition);
}

.cta-btns:hover svg {
  transform: translateX(4px);
}
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 34px;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
@media (max-width: 1024px) {

  /* GST MAIN CARD */
  .gst-card,
  .gst-cards {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 32px;
  }

  .gst-card-right,
  .gst-cards-left {
    padding: 28px;
  }

  .gst-title,
  .gst-titles {
    font-size: 24px;
  }

  .gst-desc,
  .gst-descs {
    font-size: 15px;
  }

  .gst-feature-list,
  .gst-features-list {
    grid-template-columns: 1fr;
  }

  .gst-btn,
  .gst-btns {
    width: auto;
  }

  /* CTA */
  .cta-titles {
    font-size: 30px;
  }

  .cta-descriptions {
    font-size: 15px;
  }
}
@media (max-width: 768px) {

  /* GST CARDS */
  .gst-card,
  .gst-cards {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 20px;
    gap: 24px;
  }

  /* LEFT & RIGHT STACK */
  .gst-card-left,
  .gst-cards-right,
  .gst-card-right,
  .gst-cards-left {
    width: 100%;
    margin: 0;
    align-items: flex-start;
    text-align: left;
  }

  /* ICONS */
  .gst-icon-wrap,
  .gst-icons-wrap {
    width: 48px;
    height: 48px;
  }

  /* TITLES */
  .gst-title,
  .gst-titles {
    font-size: 22px;
  }

  .gst-feature-title,
  .gst-features-title {
    font-size: 18px;
  }

  /* TEXT */
  .gst-desc,
  .gst-descs {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* FEATURES */
  .gst-feature-list,
  .gst-features-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gst-feature-list li,
  .gst-features-list li {
    font-size: 14px;
  }

  /* BUTTONS */
  .gst-btn,
  .gst-btns {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  /* CTA SECTION */
  .cta-sections {
    padding: 60px 20px;
  }

  .cta-titles {
    font-size: 26px;
  }

  .cta-descriptions {
    font-size: 14px;
  }

  .cta-btns {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
  }
}
@media (max-width: 480px) {

  .gst-card,
  .gst-cards {
    padding: 20px;
  }

  .gst-title,
  .gst-titles {
    font-size: 20px;
  }

  .cta-titles {
    font-size: 22px;
  }

  .cta-descriptions {
    font-size: 13px;
  }
}

/* map */
.card.map {
  width: 100%;
  background: linear-gradient(180deg, #020617, #0f172a);
  padding: 90px 24px 100px;
  position: relative;
  overflow: hidden;
}

/* Glow background */
.card.map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(56,189,248,0.12), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(99,102,241,0.12), transparent 45%);
  z-index: 0;
}

/* Inner content */
.card.map .map {
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.card.map h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 6px;
}

.card.map p {
  font-size: 1rem;
  color: #94a3b8;
  margin-bottom: 32px;
}

/* Map box */
.card.map {
  width: 100%;
  background: #2b3657e6;              /* WHITE BACKGROUND */
  padding: 90px 24px 100px;
  position: relative;
  overflow: visible;                /* IMPORTANT */
}
.maph {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #132364;
  margin-bottom: 6px;
  position: relative;
}

.mapp {
  text-align: center;
  font-size: 1rem;
  color: #173259;
  margin-bottom: 28px;
  position: relative;
}
.map__frame {
  width: 100%;
  height: 500px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(207, 174, 235, 0.315);
  backdrop-filter: blur(12px);
  box-shadow:
    0 30px 70px rgb(46, 44, 44),
    inset 0 0 0 1px rgba(36, 34, 34, 0.868);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map__frame:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.75),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}

@media (max-width: 1024px) {

  .card.map {
    padding: 70px 20px 80px;
  }

  .maph {
    font-size: 2rem;
  }

  .mapp {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .map__frame {
    height: 420px;
    border-radius: 22px;
  }
}
@media (max-width: 768px) {

  .card.map {
    padding: 60px 16px 70px;
    overflow: hidden;   /* stop side scroll */
  }

  .maph {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .mapp {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .map__frame {
    height: 320px;
    border-radius: 18px;
    box-shadow:
      0 18px 40px rgba(0,0,0,0.55),
      inset 0 0 0 1px rgba(255,255,255,0.08);
  }

  .map__frame:hover {
    transform: none; /* disable hover lift on mobile */
  }
}
@media (max-width: 480px) {

  .card.map {
    padding: 50px 14px 60px;
  }

  .maph {
    font-size: 1.45rem;
  }

  .mapp {
    font-size: 0.85rem;
  }

  .map__frame {
    height: 260px;
    border-radius: 14px;
  }
}


