/* Reset and basic styles */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
/* new hero section css */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

/* --- Keyframes for Animation --- */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.35;
  }
}

@keyframes delayedPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.35;
  }
}

/* --- Base Styles --- */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #fff5d6;
  margin: 0;
  scroll-behavior: smooth;
}

/* --- Hero Section Layout --- */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem; /* pt-20 */
  padding-bottom: 5rem;
}

/* Gradient Overlay Background */
.bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(at top left, #00c6ff 5%, transparent 50%),
    radial-gradient(at bottom right, #6c63ff 5%, transparent 50%),
    radial-gradient(at center, #f7c948 2%, transparent 50%);
  opacity: 0.1;
}

/* Animated Blur Circles (Background Blobs) */
.bg-blobs {
  position: absolute;
  inset: 0;
}

.blob {
  position: absolute;
  width: 384px; /* w-96 */
  height: 384px; /* h-96 */
  border-radius: 50%;
  filter: blur(80px); /* blur-3xl */
  animation: pulse 4s ease-in-out infinite alternate;
}
.blob-cyan {
  top: 25%; /* top-1/4 */
  left: 25%; /* left-1/4 */
  background-color: #00c6ff;
  opacity: 0.2;
}
.blob-purple {
  bottom: 25%; /* bottom-1/4 */
  right: 25%; /* right-1/4 */
  background-color: #6c63ff;
  opacity: 0.2;
  animation: delayedPulse 5s ease-in-out infinite alternate;
}

/* --- Content Layout --- */
.hero-content {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .hero-content {
    padding: 6rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-content {
    padding: 6rem 2rem;
  }
}

/* --- Sparkles Icon --- */
.sparkles-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem; /* mb-6 */
}
.sparkles-icon {
  color: #f7c948;
  width: 32px;
  height: 32px;
  animation: pulse 2s ease-in-out infinite;
}

/* --- Heading Styles --- */
.hero-title {
  font-size: 2.25rem; /* text-4xl */
  line-height: 1.25; /* leading-tight */
  font-weight: 700;
  color: #fff5d6;
  margin-bottom: 1.5rem; /* mb-6 */
}
@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  } /* sm:text-5xl */
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  } /* md:text-6xl */
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  } /* lg:text-7xl */
}

.title-gradient-span {
  display: block;
  background-image: linear-gradient(to right, #00c6ff, #6c63ff, #f7c948);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback */
}

/* --- Subtitle/Paragraph --- */
.hero-subtitle {
  font-size: 1.125rem; /* text-lg */
  line-height: 1.6; /* leading-relaxed */
  color: rgba(255, 245, 214, 0.8); /* text-[#fff5d6]/80 */
  margin-bottom: 3rem; /* mb-12 */
  max-width: 48rem; /* max-w-3xl */
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 1.25rem;
  } /* sm:text-xl */
}
@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  } /* md:text-2xl */
}

/* --- Buttons --- */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* gap-4 */
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) {
  .button-group {
    flex-direction: row;
  }
}

.hero-button {
  padding: 1rem 2rem; /* px-8 py-4 */
  font-weight: 600; /* font-semibold */
  border-radius: 9999px; /* rounded-full */
  font-size: 1.125rem; /* text-lg */
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem; /* gap-2 */
  border: none;
  width: fit-content;
}

/* Primary Button */
.btn-primary {
  background-image: linear-gradient(to right, #00c6ff, #6c63ff);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1); /* default shadow */
}
.btn-primary:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 198, 255, 0.5),
    0 8px 10px -6px rgba(0, 198, 255, 0.5); /* hover:shadow-2xl hover:shadow-[#00C6FF]/50 */
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  border: 2px solid #f7c948;
  color: #f7c948;
}
.btn-secondary:hover {
  background-color: #f7c948;
  color: #211d1d; /* hover:text-[#211d1d] */
}

/* Arrow Icon Transition */
.btn-primary:hover .arrow-icon {
  transform: translateX(4px); /* group-hover:translate-x-1 */
}

/* --- Stats Grid --- */
.stats-grid {
  margin-top: 5rem; /* mt-20 */
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* grid-cols-2 */
  gap: 2rem; /* gap-8 */
  max-width: 48rem; /* max-w-4xl */
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr); /* md:grid-cols-4 */
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem; /* text-3xl */
  line-height: 2.25rem;
  font-weight: 700;
  background-image: linear-gradient(to right, #00c6ff, #6c63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback */
  margin-bottom: 0.5rem; /* mb-2 */
}
@media (min-width: 768px) {
  .stat-number {
    font-size: 2.25rem; /* md:text-4xl */
    line-height: 2.5rem;
  }
}

.stat-label {
  font-size: 0.875rem; /* text-sm */
  line-height: 1.25rem;
  color: rgba(255, 245, 214, 0.7); /* text-[#fff5d6]/70 */
}
@media (min-width: 768px) {
  .stat-label {
    font-size: 1rem; /* md:text-base */
    line-height: 1.5rem;
  }
}

/* Icon SVG Base Style */
.svg-icon {
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s;
}

/* Header Navigation */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 1000;
  transition: background-color 0.5s ease-in;
}
header.scrolled {
  background-color: rgba(26, 23, 23, 0.9);
  backdrop-filter: blur(5px);
}

/* Logo */
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  user-select: none;
}
.logo .blue {
  color: #1e90ff; /* bright blue */
}
.logo .purple {
  color: #8a79c2; /* purple*/
  margin-left: 0.2rem;
}
.logo .gold {
  color: #e39a2d; /* gold */
  margin-left: 0.2rem;
}

.logo .purple {
  background: linear-gradient(90deg, #8a79c2, #cfa15d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation Menu */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav ul li {
  font-weight: 600;
  font-size: 1rem;
}
nav ul li a {
  text-decoration: none;
  color: #f5deb3; /* wheat/golden text */
  transition: color 0.3s ease;
  cursor: pointer;
}
nav ul li a:hover {
  color: #cfa15d; /* gold on hover */
}

/* Responsive adjustments for header */
@media (max-width: 768px) {
  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }
}

/* why choose us section css */

section {
  margin: 0;
  background-color: #1a1818;
  color: #f8f1d4;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
  padding: 3rem 1rem; /* Reduce horizontal padding on mobile */
  min-height: 100vh;
  overflow-x: hidden; /* Add this */
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
  font-weight: 900;
  color: #fef1d0;
  text-align: center;
}
p.lead {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  font-weight: 500;
  font-size: 1.15rem;
  color: #d3c9a3;
  text-align: center;
}

/* Container for all boxes */
.features-container {
  display: grid;
  grid-template-columns: 1fr; /* Mobile first: 1 column */
  gap: 1.75rem 2rem;
  max-width: 100%;
  margin: 0 auto;
}

/* Each feature box */
.feature-box {
  background-color: var(#2a2626);
  border-radius: 1rem; /* rounded-2xl */
  padding: 2rem; /* p-8 */
  border: 1px solid rgba(255, 245, 214, 0.1); /* border-text-light/10 */
  transition: all 300ms ease;
}

.feature-box:hover,
.feature-box:focus-within {
  border-color: rgba(0, 198, 255, 0.5); /* hover:border-[#00C6FF]/50 */
  box-shadow: 0 10px 15px -3px rgba(0, 198, 255, 0.1),
    0 4px 6px -2px rgba(0, 198, 255, 0.05); /* hover:shadow-xl hover:shadow-[#00C6FF]/10 */
  transform: translateY(-8px); /* hover:-translate-y-2 */
  cursor: pointer;
}

/* Icon circle */
.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 1.35rem;
}
/* Gradient backgrounds for icons */
.icon-blue {
  background: linear-gradient(135deg, #1ec7ff, #3d75ff);
}
.icon-purple-yellow {
  background: linear-gradient(135deg, #8a79c2, #cfa15d);
}
.icon-green-yellow {
  background: linear-gradient(135deg, #90d99d, #30d2e9);
}

/* Feature title */
.feature-title {
  font-weight: 2.25rem;
  font-size: 1.15rem;
  color: #fef1d0;
  margin: 0;
}

/* Feature description */
.feature-desc {
  font-weight: 400;
  font-size: 0.95rem;
  color: #b2a884;
  line-height: 1.4;
  margin: 0;
}

/* Flex for icon + text */
.feature-top {
  display: flex;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 500px) {
  h2 {
    font-size: 1.9rem;
  }
  .features-container {
    grid-template-columns: 1fr;
  }
}
/* Tablet: 2 columns */
@media (min-width: 640px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large tablet/small desktop: 3 columns */
@media (min-width: 900px) {
  .features-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop: 4 columns */
@media (min-width: 1200px) {
  .features-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* footer css */

/*
 * CSS Variables for Color Palette (Mimicking Tailwind/Component structure)
 */
:root {
  --color-primary-dark: #1a1717; /* bg-[#1a1717] */
  --color-text-light: #fff5d6; /* The off-white text color */
  --color-text-muted: rgba(255, 245, 214, 0.7); /* text-[#fff5d6]/70 */
  --color-text-faint: rgba(255, 245, 214, 0.6); /* text-[#fff5d6]/60 */
  --color-border: rgba(255, 245, 214, 0.1); /* border-[#fff5d6]/10 */
  --color-social-bg: #2a2626; /* bg-[#2a2626] */
  --color-highlight-blue: #00c6ff; /* Accent color 1 */
  --color-highlight-purple: #6c63ff; /* Accent color 2 */
  --color-highlight-yellow: #f7c948; /* Accent color 3 */
}

/* Base Styles and Layout */

.footer {
  /* font-family: Arial, sans-serif; */
  background-color: var(--color-primary-dark);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem 0; /* pt-16 pb-8 */
  margin: 0;
}

.max-w-7xl {
  max-width: 1280px; /* 80rem */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  /* sm:px-6 */
  .max-w-7xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  /* lg:px-8 */
  .max-w-7xl {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Grid Layout for Main Content */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem; /* gap-12 */
  margin-bottom: 3rem; /* mb-12 */
}
.footer-grid a {
  text-decoration: none;
  color: var(--color-text-light);
}
@media (min-width: 768px) {
  /* md:grid-cols-2 */
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  /* lg:grid-cols-4 */
  .footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* 1. Company Info Section */
.company-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: bold;
  margin-bottom: 1rem; /* mb-4 */
  /* Mimicking bg-gradient-to-r... bg-clip-text text-transparent */
  background: linear-gradient(
    to right,
    var(--color-highlight-blue),
    var(--color-highlight-purple),
    var(--color-highlight-yellow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback */
}

.company-description {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem; /* mb-6 */
  line-height: 1.625; /* leading-relaxed */
}

.social-links {
  display: flex;
  gap: 1rem; /* gap-4 */
}

.social-link-item {
  width: 2.5rem; /* w-10 */
  height: 2.5rem; /* h-10 */
  border-radius: 50%; /* rounded-full */
  background-color: var(--color-social-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: all 300ms ease-in-out;
  text-decoration: none;
}

.social-link-item:hover {
  background: linear-gradient(
    to bottom right,
    var(--color-highlight-blue),
    var(--color-highlight-purple)
  );
  transform: scale(1.1); /* hover:scale-110 */
}
.social-link-item svg {
  stroke-width: 2; /* Adjust icon thickness if necessary */
}

/* 2, 3, 4. Service, Quick Links, Contact Sections */
.section-title {
  color: var(--color-text-light);
  font-weight: bold;
  font-size: 1.125rem; /* text-lg */
  margin-bottom: 1rem; /* mb-4 */
}

.section-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* space-y-3 (except for contact) */
}

.section-list a,
.section-list button {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 300ms;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 100%;
}

.section-list a:hover,
.section-list button:hover {
  color: var(--color-highlight-blue);
}

/* Contact Section Specifics */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space-y-4 */
}
.contact-list li {
  display: flex;
  align-items: flex-start; /* items-start for MapPin */
  gap: 0.75rem; /* gap-3 */
}
.contact-list li:nth-child(2),
.contact-list li:nth-child(3) {
  align-items: center; /* items-center for Phone and Mail */
}
.contact-list svg {
  color: var(--color-highlight-blue);
  flex-shrink: 0; /* flex-shrink-0 */
  margin-top: 0.25rem; /* mt-1 for MapPin */
}
.contact-list li:nth-child(2) svg,
.contact-list li:nth-child(3) svg {
  margin-top: 0;
}

/* 5. Copyright and Policy Section */
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem; /* pt-8 */
}

.footer-bottom-content {
  display: flex;
  flex-direction: column; /* flex-col */
  justify-content: space-between;
  align-items: center;
  gap: 1rem; /* gap-4 */
}
@media (min-width: 768px) {
  /* md:flex-row */
  .footer-bottom-content {
    flex-direction: row;
  }
}

.copyright {
  color: var(--color-text-faint);
  font-size: 0.875rem; /* text-sm */
  text-align: center;
}
@media (min-width: 768px) {
  /* md:text-left */
  .copyright {
    text-align: left;
  }
}

.policy-links {
  display: flex;
  gap: 1.5rem; /* gap-6 */
  font-size: 0.875rem; /* text-sm */
}

.policy-links a {
  color: var(--color-text-faint);
  text-decoration: none;
  transition: color 300ms;
}

.policy-links a:hover {
  color: var(--color-highlight-blue);
}

/* Call to Action Banner */
.cta-banner {
  margin-top: 4rem;
  background: linear-gradient(
    to right,
    rgba(0, 198, 255, 0.1),
    rgba(108, 99, 255, 0.1),
    rgba(247, 201, 72, 0.1)
  );
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(0, 198, 255, 0.3);
  max-width: 100%; /* Remove the specific max-width */
}
@media (min-width: 768px) {
  /* md: */
  .cta-banner {
    padding: 3rem;
    max-width: 100%; /* Remove the 1080px constraint */
    margin: 4rem auto 0 auto;
    width: 100%;
  }
  .content-container {
    padding-left: 3rem; /* Increase padding on larger screens */
    padding-right: 3rem;
  }
}
.cta-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700;
  color: var(#fff5d6);
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .cta-title {
    font-size: 1.875rem; /* md:text-3xl */
  }
}
.cta-subtitle {
  font-size: 1.125rem; /* text-lg */
  color: var(#fff5d6);
  opacity: 0.8;
  margin-bottom: 2rem; /* mb-8 */
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
}
.cta-button {
  padding: 1rem 2rem;
  background: linear-gradient(to right, #00c6ff, #6c63ff); /* CORRECT */
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 300ms ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.06);
  border: none; /* Add this to remove any default button border */
  cursor: pointer; /* Add this for better UX */
}
.cta-button:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 198, 255, 0.5),
    0 10px 15px -3px rgba(0, 198, 255, 0.2); /* hover:shadow-2xl hover:shadow-[#00C6FF]/50 */
}
.text-center {
  text-align: center;
}
.content-container {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* Reduce from 2rem */
  padding-right: 1rem; /* Reduce from 2rem */
  position: relative;
  z-index: 10;
  width: 100%; /* Add this */
}
@media (min-width: 768px) {
  section {
    padding: 3rem 2rem; /* Restore padding on larger screens */
  }

  .content-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1024px) {
  .content-container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/* faq css */
.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background: linear-gradient(to bottom, #211d1d, #2a2626, #211d1d);
}

.max-w-container {
  max-width: 56rem; /* Equivalent to max-w-4xl */
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.inline-flex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --- Typography --- */
.subtitle {
  font-size: 1.125rem; /* lg */
  color: rgba(255, 245, 214, 0.7);
}

/* --- FAQ Accordion Item --- */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: #2a2626;
  border-radius: 1rem; /* rounded-2xl */
  border: 1px solid rgba(255, 245, 214, 0.1); /* #fff5d6/10 */
  overflow: hidden;
  transition: border-color 0.3s ease-in-out;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.faq-item:hover {
  border-color: rgba(0, 198, 255, 0.5); /* hover:border-[#00C6FF]/50 */
}

.faq-button {
  width: 100%;
  padding: 1.5rem 1.5rem; /* px-6 py-4 to px-8 py-6 */
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.faq-button:hover {
  background-color: rgba(255, 245, 214, 0.05); /* hover:bg-[#fff5d6]/5 */
}

.faq-question {
  font-size: 1.125rem; /* lg */
  font-weight: 600;
  color: #fff5d6;
  padding-right: 1rem;
}

/* --- Chevron Icon --- */
.chevron-icon {
  flex-shrink: 0;
  color: #00c6ff;
  transition: transform 0.3s ease-in-out;
}
.chevron-icon.rotate {
  transform: rotate(180deg);
}

/* --- Answer Content (Accordion Effect) --- */
.faq-answer-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
}

.faq-answer-container.open {
  /* Fixed height for smooth transition, must be large enough for all content */
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem; /* px-6 pb-4 to px-8 pb-6 */
  color: rgba(255, 245, 214, 0.8); /* #fff5d6/80 */
  border-top: 1px solid rgba(255, 245, 214, 0.1);
}

/* --- Call to Action Button --- */
.cta-text {
  color: rgba(255, 245, 214, 0.7);
}

/* --- Responsive Adjustments --- */
@media (min-width: 768px) {
  .h2-title {
    font-size: 3rem;
  } /* md:text-5xl */
  .section-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* how we work sections css */
/* Section Layout */
.how-we-work-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) {
  .how-we-work-section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .how-we-work-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Background Overlay */
.background-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    #211d1d 0%,
    rgba(42, 38, 38, 0.5) 50%,
    #211d1d 100%
  );
}

/* Optional: smooth fade in */
.nav-overlay {
  transition: opacity 0.4s ease;
}
/* Header */
.header-content {
  text-align: center;
  margin-bottom: 4rem;
}
.header-title {
  font-size: 2.25rem;
  line-height: 2.5rem;
  font-weight: 800;
  color: #fff5d6;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .header-title {
    font-size: 3rem;
    line-height: 1;
  }
}
.header-subtitle {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: #fff5d6;
  opacity: 0.7;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .header-subtitle {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Step Card */
.step-item-wrapper {
  position: relative;
}
.step-card {
  background-color: #2a2626;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  border: 1px solid rgba(255, 245, 214, 0.1);
  transition: all 300ms ease;
}
.step-card:hover {
  border-color: rgba(0, 198, 255, 0.5);
  box-shadow: 0 10px 15px -3px rgba(0, 198, 255, 0.1),
    0 4px 6px -2px rgba(0, 198, 255, 0.05);
}
.step-card:hover .step-icon-wrapper {
  transform: scale(1.1);
}

/* Icon Wrapper */
.step-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 300ms ease;
}
/* Gradient Classes */
.gradient-1 {
  background: linear-gradient(to bottom right, #00c6ff, #6c63ff);
}
.gradient-2 {
  background: linear-gradient(to bottom right, #6c63ff, #f7c948);
}
.gradient-3 {
  background: linear-gradient(to bottom right, #f7c948, #00c6ff);
}
.gradient-4 {
  background: linear-gradient(to bottom right, #00c6ff, #6c63ff);
}

/* Number */
.step-number {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #00c6ff, #6c63ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Title & Description */
.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff5d6;
  margin-bottom: 0.75rem;
}
.step-description {
  color: #fff5d6;
  opacity: 0.7;
  line-height: 1.625;
}

/* Separator Arrow */
.separator-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  display: none;
}
@media (min-width: 1024px) {
  .separator-arrow {
    display: block;
  }
}
.separator-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
  animation: pulse-arrow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-arrow {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* CTA Footer */
.cta-footer {
  background: linear-gradient(to right, #2a2626, #211d1d);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(0, 198, 255, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  .cta-footer {
    padding: 3rem;
  }
}
/* Promo Card (Bottom Section) */
.promo-card {
  margin-top: 4rem;
  background: linear-gradient(to bottom right, #2a2626, #211d1d);
  border-radius: 1.5rem; /* rounded-3xl */
  padding: 2rem; /* p-8 */
  border: 1px solid rgba(0, 198, 255, 0.3); /* border-[#00C6FF]/30 */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); /* shadow-2xl */
}
@media (min-width: 768px) {
  /* md: */
  .promo-card {
    padding: 3rem; /* md:p-12 */
  }
}

.promo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem; /* gap-8 */
}
@media (min-width: 768px) {
  /* md: */
  .promo-content {
    flex-direction: row;
    text-align: left;
  }
}

.promo-icon-box {
  flex-shrink: 0;
  width: 8rem; /* w-32 */
  height: 8rem; /* h-32 */
  background: linear-gradient(to bottom right, #00c6ff, #6c63ff, #f7c948);
  border-radius: 1rem; /* rounded-2xl */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2); /* shadow-2xl */
}
@media (min-width: 768px) {
  /* md: */
  .promo-icon-box {
    width: 10rem; /* md:w-40 */
    height: 10rem; /* md:h-40 */
  }
}

.promo-text-wrapper {
  flex: 1;
  text-align: center;
}
@media (min-width: 768px) {
  /* md: */
  .promo-text-wrapper {
    text-align: left;
  }
}

.promo-title {
  font-size: 1.5rem; /* text-2xl */
  line-height: 2rem;
  font-weight: 700;
  color: #fff5d6;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  /* md: */
  .promo-title {
    font-size: 1.875rem; /* md:text-3xl */
    line-height: 2.25rem;
  }
}

.promo-description {
  color: #fff5d6;
  opacity: 0.8; /* /80 */
  margin-bottom: 1rem;
  line-height: 1.625;
}

/* Verified Badge */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  background-color: rgba(0, 198, 255, 0.2);
  border-radius: 9999px;
  color: #00c6ff;
  font-weight: 600;
  font-size: 0.875rem;
}
