* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7em;

  background-color: var(--white-color);
  color: var(--text-color);
}
.text-gradient {
  background: linear-gradient(135deg, #ff992e, #f2681a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
p {
  line-height: 1.7em;
  margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

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

.sub-heading {
  background: antiquewhite;
  color: #f46f1d !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 25px;
}
/* header */
/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-bar-wrapper {
  margin: auto;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Navigation */
.nav-list {
  display: flex;
  gap: 35px;
  list-style: none;
  margin-bottom: 0;
}
.nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #ff9a2e, #f16319);
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-list a:hover::after {
  width: 100%;
}

/* CTA Button */
.btn-cta {
  background: linear-gradient(135deg, #ff992e, #f2681a);
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Hamburger */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-icon span {
  background: #333;
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: 0.3s;
}

/* Hide checkbox */
#menu-toggle {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-list {
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  #menu-toggle:checked ~ .nav {
    max-height: 400px;
  }

  .cta-desktop {
    display: none;
  }

  .cta-mobile {
    display: block;
  }
}

@media (min-width: 769px) {
  .cta-mobile {
    display: none;
  }
}
/* ===== Sticky Scroll Effects ===== */
.site-header {
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Header default height */
.site-header .container {
  transition: padding 0.3s ease;
}

/* When scrolled */
/* .site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.site-header.scrolled .container {
  padding-top: 8px;
  padding-bottom: 8px;
} */

/* Logo shrink on scroll */
/* .site-header.scrolled .logo {
  font-size: 22px;
} */

/* CTA shrink slightly */
/* .site-header.scrolled .btn-cta {
  padding: 10px 20px;
  font-size: 14px;
} */

/* banner section */
/* ===== HERO SECTION ===== */
/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 90vh;
  background: url("../images/banner-bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

/* Dark overlay for text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45));
}

/* Content container */
.hero-container {
  position: relative;
  padding: 40px 20px;
}
.hero-content {
  animation: fadeUp 1s ease forwards;
}
.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}
/* 
.hero-content h1 span {
  color: #ff9a2e;
} */

.hero-content h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #f1f1f1;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #e0e0e0;
}

/* CTA buttons */
.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ff992e, #f2681a);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 204, 0, 0.4);
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 85vh;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content h2 {
    font-size: 18px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* Badge */

.about-kaamdaar {
  padding: 70px 0 !important;
  background: white;
}
.about-kaamdaar .badge {
  font-size: 0.85rem;
  border-radius: 30px;
}

/* Heading */
.about-kaamdaar h2 {
  font-size: 2.3rem;
  color: #1f2937;
  line-height: 1.3;
}

/* Worker Cards */
.worker-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 12px;
  text-align: center;
  font-weight: 600;
  color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: default;
}

/* Hover Effect */
.worker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  background: linear-gradient(45deg, #ff9a2e, #f16319);
  color: #ffffff;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .about-kaamdaar h2 {
    font-size: 1.8rem;
  }
}

/* ===== OUR SERVICES SECTION ===== */

.our-services {
  background: #f8f9fc;
}

/* Section title */
.our-services h2 {
  font-size: 2.4rem;
  color: #1f2937;
}

/* Service Card */
.home-service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

/* Highlight middle card */
/* .service-card.highlight {
    background: linear-gradient(135deg, #ffcc00, #ffb703);
    color: #000;
} */

/* Icon */
.service-icon {
  font-size: 42px;
}

/* List */
.home-service-card ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.home-service-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 500;
}

/* Check icon */
.home-service-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* Hover */
.home-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .our-services h2 {
    font-size: 1.9rem;
  }

  .home-service-card {
    padding: 28px 22px;
  }
}

/* ===== FLEXIBLE HIRING SECTION ===== */
/* ===== FLEXIBLE HIRING (ALTERNATE DESIGN) ===== */

/* ===== FLEXIBLE HIRING PRO ===== */

.flexible-hiring-pro {
  background: white;
}
/* Heading */
.flexible-hiring-pro h2 {
  font-size: 2.5rem;
  color: #1f2937;
  line-height: 1.25;
}

/* Trust points */
.trust-points {
  list-style: none;
  padding-left: 0;
}

.trust-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-weight: 500;
  color: #374151;
}

.trust-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #fc912b;
  font-weight: 700;
}

/* Hire Option Cards */
.hire-option {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 28px;
  height: 100%;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Accent bar */
.hire-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: #e5e7eb;
  transition: 0.35s;
}

/* Time label */
.option-time {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fc912b;
  letter-spacing: 1px;
}
/* Highlight card */
.hire-option.highlight::before {
  background: linear-gradient(45deg, #ff9a2e, #f16319);
}

/* Hover */
.hire-option:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.hire-option:hover::before {
  background: linear-gradient(45deg, #ff9a2e, #f16319);
}

/* Text */
.hire-option h5 {
  margin-top: 12px;
  font-weight: 700;
  color: #111827;
}

.hire-option p {
  margin-top: 8px;
  color: #6b7280;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .flexible-hiring-pro h2 {
    font-size: 2rem;
  }
}

/* ===== TRUST KAAMDAAR SECTION ===== */

.trust-kaamdaar {
  background: #f8fafc;
}

/* Heading */
.trust-kaamdaar h2 {
  font-size: 2.4rem;
  color: #1f2937;
}

/* Trust Cards */
.trust-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

/* Highlight secure card */
.trust-card.highlight {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
}

.trust-card.highlight p {
  color: #e0e7ff;
}

/* Icons */
.trust-icon {
  font-size: 42px;
  margin-bottom: 15px;
}

/* Text */
.trust-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 15px;
  color: #6b7280;
}

/* Hover */
.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
  .trust-kaamdaar h2 {
    font-size: 2rem;
  }
}

.simplify-section-v2 {
  background: white;
  position: relative;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff6b00;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 30px;
  margin-bottom: 12px;
}

.simplify-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2937;
}

.simplify-title span {
  color: #ff6b00;
}

/* Cards */
.simplify-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 107, 0, 0.15);
}

.simplify-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 107, 0, 0.15),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.simplify-card:hover::after {
  opacity: 1;
}

.simplify-card:hover {
  transform: translateY(-12px);
}

/* Highlight Middle Card */
.simplify-card.highlight {
  border: none;
  background: linear-gradient(145deg, #ff6b00, #ff8c42);
  color: #ffffff;
}

.simplify-card.highlight h5,
.simplify-card.highlight p {
  color: #ffffff;
}

.simplify-card.highlight .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
}

/* Icon */
.icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00, #ff9f43);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  transition: transform 0.4s ease;
}

.simplify-card:hover .icon-wrapper {
  transform: rotate(8deg) scale(1.08);
}

/* Text */
.simplify-card h5 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.simplify-card p {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/*  */
.promise-section {
  background: #f8f9fc;
}

/* Heading */
.promise-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
}

.promise-title span {
  color: #ff6b00;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff6b00;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 30px;
  margin-bottom: 12px;
}

.promise-intro {
  font-size: 1.05rem;
  color: #6b7280;
  margin-bottom: 25px;
}

/* List */
.promise-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #374151;
  margin-bottom: 18px;
  line-height: 1.6;
}

.promise-list i {
  font-size: 18px;
  color: #ff6b00;
  margin-top: 4px;
}

/* Image */
.promise-image img {
  max-width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); */
  transition: transform 0.4s ease;
}

.promise-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 992px) {
  .promise-title {
    font-size: 2rem;
  }
}

.nationwide-section-modern {
  background: white;
  position: relative;
  overflow: hidden;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 30px;
  margin-bottom: 12px;
}

.nationwide-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
}

.nationwide-title span {
  color: #2563eb;
}

.nationwide-text {
  font-size: 1rem;
  color: #4b5563;
  margin-top: 15px;
}

/* Feature Boxes */
.feature-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.feature-box i {
  font-size: 22px;
  color: #fe6b00;
}
.feature-box p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1f2937;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

/* Right Image */
.nationwide-img {
  max-width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08); */
  transition: transform 0.4s ease;
}

.nationwide-img:hover {
  transform: scale(1.03);
}

/* Floating Points */
.floating-point {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #2563eb;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
  animation: float 2.5s ease-in-out infinite alternate;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .nationwide-title {
    font-size: 2rem;
  }
  .feature-box {
    justify-content: flex-start;
    gap: 12px;
  }
}

.cta-section {
  background: linear-gradient(135deg, #ff6b00, #ff9f43);
  color: #ffffff;
  padding: 80px 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  transition: all 0.35s ease;
}

.cta-btn i {
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(4px);
}

/* Primary Button */
.btn-primary.cta-btn {
  background: #ffffff;
  color: #ff6b00;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.35);
}

.btn-primary.cta-btn:hover {
  background: #ffe6d5;
  color: #ff6b00;
  transform: translateY(-4px);
}

/* Secondary Button */
.btn-secondary.cta-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary.cta-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 12px;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }
}

.footer-section {
  background: #1f2937; /* dark gray background */
  color: #e5e7eb;
  font-size: 0.95rem;
}

.footer-logo img {
  max-width: 150px;
}

.footer-about {
  margin-top: 10px;
  color: #d1d5db;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b00;
}

.footer-contact {
  color: #d1d5db;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #374151;
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 16px;
}

.footer-social .social-icon:hover {
  background: #ff6b00;
  color: #fff;
  transform: translateY(-3px);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

.footer-copy {
  color: #9ca3af;
}

/* about section */
.about-banner {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/about-banner.jpg"); /* change image path */
  background-size: cover;
  background-position: center;
  color: #fff;
}

/* Badge */
.about-banner {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #ff992e, #f2681a);
  background-size: cover;
  background-position: center;
  color: #fff;
}
/* Title */
.about-banner-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-banner {
    padding: 90px 0;
    text-align: center;
  }

  .about-banner-title {
    font-size: 34px;
  }

  .about-banner-text {
    font-size: 16px;
    margin: auto;
  }
}

.about-who-we-are {
  padding: 70px 0;
  background: white;
}

/* Tag */

/* Text */
.section-text {
  font-size: 17px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Problem Box */
.problem-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.problem-box::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255, 107, 0, 0.12);
  border-radius: 50%;
}

.problem-title {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 25px;
}

/* List */
.problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #374151;
  margin-bottom: 16px;
}

.problem-list li i {
  width: 36px;
  height: 36px;
  background: rgba(255, 107, 0, 0.15);
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
}

/* Bottom Highlight */
.solution-highlight {
  margin-top: 70px;
  padding: 50px 20px;
  background: linear-gradient(135deg, #ff6b00, #ff8533);
  border-radius: 24px;
  color: #ffffff;
}

.solution-highlight h3 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 10px;
}

.solution-highlight p {
  font-size: 17px;
  max-width: 750px;
  margin: auto;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .solution-highlight h3 {
    font-size: 24px;
  }
}

.about-what-we-do {
  padding: 70px 0;
  background: #f8f9fc;
}

/* Service Cards */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 26px 15px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
  height: 100%;
}

.service-card i {
  font-size: 26px;
  color: #ff6b00;
  margin-bottom: 10px;
}

.service-card span {
  display: block;
  font-weight: 600;
  color: #111827;
  font-size: 15px;
}

.service-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #ff6b00, #ff8c3a);
  box-shadow: 0 20px 40px rgba(255, 107, 0, 0.35);
}

.service-card:hover i,
.service-card:hover span {
  color: #ffffff;
}

/* Features */
.features-box {
  background: #ffffff;
  border-radius: 26px;
  padding: 50px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.feature-item i {
  width: 44px;
  height: 44px;
  background: rgba(255, 107, 0, 0.15);
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.feature-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
}

/* Mobile */
@media (max-width: 768px) {
  .features-box {
    padding: 30px 22px;
  }
}

.about-our-purpose {
  padding: 70px 0;
  background: white;
}

/* Purpose Cards */
.purpose-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 42px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.purpose-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 2px solid transparent;
  background: linear-gradient(
      135deg,
      rgba(255, 107, 0, 0.35),
      rgba(255, 255, 255, 0)
    )
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.purpose-card:hover {
  transform: translateY(-10px);
}

/* Icon */
.purpose-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, #ff6b00, #ff924a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
}

/* Text */
.purpose-card p {
  font-size: 17px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}
.platform-benefits {
  padding: 30px 0;
}

/* Cards */
.benefit-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  height: 100%;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  top: -60px;
  right: -60px;
  opacity: 0.12;
}

.benefit-customer::before {
  background: #2563eb;
}

.benefit-worker::before {
  background: #ff6b00;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

/* Icon */
.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 26px;
  color: #ffffff;
}

.benefit-customer .benefit-icon {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.benefit-worker .benefit-icon {
  background: linear-gradient(135deg, #ff6b00, #ff924a);
}

/* Text */
.benefit-card h4 {
  font-size: 24px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 18px;
  color: #374151;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .benefit-card {
    padding: 45px 30px;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .purpose-card,
  .benefit-box {
    padding: 32px 24px;
  }
}

.about-marketplace-model {
  padding: 70px 0;
  background: #f8f9fc;
}

/* Heading */
.section-head h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 70px;
}

/* Cards */
.marketplace-card {
  background: white;
  border-radius: 26px;
  padding: 45px 25px;
  text-align: center;
  height: 100%;
  border: 1px solid #eef2f7;
  transition: all 0.35s ease;
}

.marketplace-card .icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 0, 0.1);
  color: #ff6b00;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 18px;
  font-size: 26px;
}

.marketplace-card p {
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  margin: 0;
}

/* Hover */
.marketplace-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  border-color: transparent;
}

/* Divider */
.marketplace-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #e5e7eb, transparent);
  margin: 80px 0 60px;
}

/* Disclaimer */
.marketplace-disclaimer {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 45px 50px;
  background: #ffffff;
  border-radius: 24px;
  border-left: 6px solid #ff6b00;
}

.marketplace-disclaimer p {
  font-size: 18px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 12px;
}

.marketplace-disclaimer p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .section-head h2 {
    font-size: 30px;
    margin-bottom: 50px;
  }

  .marketplace-disclaimer {
    padding: 30px 24px;
  }
}

.about-purpose {
  padding: 70px 0;
  background: white;
}

/* Header */
.purpose-header .section-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ff6b00;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.purpose-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 30px;
}

/* Intro */
.purpose-intro {
  font-size: 20px;
  font-weight: 500;
  color: #374151;
  text-align: center;
  margin-bottom: 70px;
}

/* Belief Cards */
.belief-card {
  height: 100%;
  background: #ffffff;
  border-radius: 26px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #fde7d6;
  transition: all 0.35s ease;
}

.belief-card i {
  font-size: 34px;
  color: #ff6b00;
  margin-bottom: 18px;
}

.belief-card p {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.belief-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(255, 107, 0, 0.18);
}

/* Statement */
.purpose-statement {
  margin-top: 80px;
  padding: 55px 60px;
  background: #0f172a;
  border-radius: 30px;
  text-align: center;
}

.purpose-statement h4 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.purpose-statement p {
  font-size: 18px;
  color: #e5e7eb;
  margin: 0;
}

/* Made in India */
.made-in-india {
  margin-top: 50px;
}

.made-in-india i {
  font-size: 26px;
  color: #ff6b00;
  margin-bottom: 8px;
}

.made-in-india p {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
}

/* Responsive */
@media (max-width: 768px) {
  .purpose-header h2 {
    font-size: 30px;
  }

  .purpose-intro {
    font-size: 17px;
  }

  .purpose-statement {
    padding: 35px 25px;
  }
}

/* SECTION */
.vision-mission {
  padding: 60px 0;
  background: #f8f9fc;
}

/* COMMON BOX STYLE */
.vision-box,
.mission-box {
  height: 100%;
  padding: 60px 55px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vision-box:hover,
.mission-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* VISION LOOK */
.vision-box {
  background: white;
}

.vision-box::before {
  content: "VISION";
  position: absolute;
  top: 10px;
  right: -10px;
  font-size: 90px;
  font-weight: 900;
  color: rgba(255, 107, 0, 0.08);
  letter-spacing: 6px;
}

/* MISSION LOOK */
.mission-box {
  background: white;
}

.mission-box::before {
  content: "MISSION";
  position: absolute;
  top: 0;
  right: -10px;
  font-size: 90px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.06);
  letter-spacing: 6px;
}

/* TITLES */
.vm-title {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.vm-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 14px;
  border-radius: 10px;
  background: #ff6b00;
}

/* TEXT */
.vm-lead {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.7;
  color: #1f2937;
  margin-bottom: 24px;
}

.vm-sub {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #374151;
}

/* VISION LIST */
.vision-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.vision-list li {
  font-size: 17px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 14px;
  padding-left: 36px;
  position: relative;
}

.vision-list li::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #ff6b00;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 6px;
}

.vm-footer {
  font-size: 16px;
  font-weight: 600;
  color: #ff6b00;
}

/* MISSION PILLARS */
.mission-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 35px 0;
}

.mission-pillars .pillar {
  background: rgba(255, 255, 255, 0.85);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pillar h5 {
  font-size: 17px;
  font-weight: 800;
  color: #ff6b00;
  margin-bottom: 6px;
}

.pillar p {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  margin: 0;
}

/* MISSION GOALS */
.mission-goals {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-goals li {
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 12px;
  padding-left: 26px;
  position: relative;
}

.mission-goals li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #ff6b00;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .vision-mission {
    padding: 120px 0;
  }

  .vision-box,
  .mission-box {
    padding: 45px 35px;
  }

  .vm-title {
    font-size: 32px;
  }
}

.our-reach {
  padding: 70px 0;
  background: white;
}

/* LEFT CONTENT */
.reach-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ff6b00;
  margin-bottom: 14px;
}

.reach-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 24px;
}

.reach-title span {
  color: #ff6b00;
}

.reach-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 30px;
}

/* POINTS */
.reach-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.reach-points li {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 18px;
  padding-left: 34px;
  position: relative;
}

.reach-points li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #ff6b00, #ff8f3f);
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 5px;
}

.reach-footer {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

/* RIGHT VISUAL */
.reach-visual {
  position: relative;
  background: #ffffff;
  border-radius: 40px;
  padding: 60px;
  height: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.origin,
.expansion,
.nation {
  background: #f8fafc;
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.origin span,
.expansion span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
}

.origin h4,
.expansion h4 {
  font-size: 20px;
  font-weight: 800;
  margin-top: 6px;
  color: #ff6b00;
}

.path {
  width: 3px;
  height: 50px;
  background: linear-gradient(to bottom, #ff6b00, transparent);
  margin: 18px auto;
}

.nation {
  margin-top: 30px;
  background: linear-gradient(135deg, #ff6b00, #ff8f3f);
  color: #ffffff;
}

.nation h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 6px;
}

.nation p {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .our-reach {
    padding: 120px 0;
  }

  .reach-title {
    font-size: 34px;
  }

  .reach-visual {
    padding: 40px;
  }
}

/* contact us */
.contact-page {
  padding: 120px 0;
  background: #ffffff;
}

/* LEFT FORM */
.contact-form-box {
  padding-right: 40px;
}

.contact-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #0f172a;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
  display: block;
}

.form-control {
  width: 100%;
  height: 48px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  transition: border 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #7c3aed;
}

.textarea {
  height: 110px;
  resize: none;
}

/* PHONE FIELD */
.phone-field {
  display: flex;
  gap: 10px;
}

.country-code {
  width: 90px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  padding: 0 10px;
  font-size: 14px;
}

/* BUTTON */
.btn-submit {
  margin-top: 15px;
  padding: 12px 26px;
  background: linear-gradient(135deg, #ff992e, #f2681a);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-submit:hover {
    background: #fc8f2a;
}
/* RIGHT INFO STACK */
.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 18px 20px;
  background: #ffffff;
}

.info-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.info-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}

.info-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #fb8927;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-form-box {
    padding-right: 0;
  }

  .contact-title {
    font-size: 28px;
  }
}

.terms-layout {
  padding: 120px 0;
  background: #f9fafb;
}

/* SIDEBAR */
.terms-sidebar {
  position: sticky;
  top: 120px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
}

.terms-sidebar h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.terms-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-sidebar li {
  margin-bottom: 10px;
}

.terms-sidebar a {
  font-size: 13px;
  color: #374151;
  text-decoration: none;
}

.terms-sidebar a:hover {
  color: #ff6b00;
}

/* MAIN CARD */
.terms-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px;
  border: 1px solid #e5e7eb;
}

/* HEADER */
.terms-header h1 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}

.terms-header p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
}

/* SECTIONS */
.terms-section {
  margin-top: 50px;
}

.terms-section h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 14px;
}

.terms-section p {
  font-size: 15px;
  line-height: 1.9;
  color: #374151;
}

/* MOBILE */
@media (max-width: 991px) {
  .terms-card {
    padding: 35px;
  }

  .terms-header h1 {
    font-size: 30px;
  }
}
