body {
  margin: 0;
  padding: 0;
}
* {
  font-family: sans-serif, system-ui;
}
/* Hero Section */
/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: url("../images/hero.png") center/cover no-repeat;
  color: #fff;
  text-align: left; /* Left aligned */
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.6) 45%,
    rgba(0, 0, 0, 0.2) 75%,
    rgba(0, 0, 0, 0) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Badge */
.badge {
  display: inline-block;
  background: #155dfc;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 25px;
}

/* Heading */
.hero h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* Subtext */
.hero-subtext {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary {
  background: #155dfc;
  color: #fff;
}

.btn-primary:hover {
  background: #0f4dc4;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* Features */
.hero-features {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  background: #155dfc;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature p {
  font-size: 14px;
  color: #ccc;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-features {
    flex-direction: column;
    gap: 20px;
  }
}

/* Testimonials */
.testimonials {
    padding: 100px 20px 80px;
    background: linear-gradient(160deg, #f0f4ff 0%, #ffffff 60%);
    position: relative;
    overflow: hidden;
  }

  /* background watermark circles */
  .testimonials::before,
  .testimonials::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }
  .testimonials::before {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(21,93,252,0.06) 0%, transparent 70%);
    top: -200px; right: -100px;
  }
  .testimonials::after {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(21,93,252,0.05) 0%, transparent 70%);
    bottom: 0; left: -150px;
  }

  .container { max-width: 1200px; margin: auto; position: relative; }

  /* ── Header ── */
  .section-header { text-align: center; margin-bottom: 56px; }

  .badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: #dbeafe; color: #155dfc;
    padding: 8px 20px; border-radius: 50px;
    font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13px;
    margin-bottom: 20px; letter-spacing: .3px;
  }
  .badge::before { content: '★'; font-size: 12px; }

  .section-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800; color: #0a1628;
    margin-bottom: 14px; line-height: 1.15;
  }

  .subtitle { color: #6b7280; max-width: 560px; margin: auto; line-height: 1.65; font-size: 15px; }

  /* ── Slider wrapper ── */
  .slider-wrapper {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 72px;
  }

  .slider { overflow: hidden; width: 100%; border-radius: 4px; }

  .slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
  }
  .slider-track.dragging {
    transition: none;
    cursor: grabbing;
  }

  /* ── Card ── */
  .testimonial-card {
    flex: 0 0 calc(100% / 3);
    padding: 12px;
  }

  .card-inner {
    background: #fff;
    padding: 30px 28px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
    height: 100%;
    border: 1px solid rgba(21,93,252,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(21,93,252,0.12), 0 2px 8px rgba(0,0,0,0.05);
  }

  .stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }

  .card-inner p {
    color: #374151; line-height: 1.7; font-size: 14.5px;
    font-style: italic;
  }

  .author {
    margin-top: 22px; font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 15px; color: #155dfc;
  }

  .location { font-size: 12.5px; color: #9ca3af; margin-top: 3px; }

  /* ── Nav buttons ── */
  .slider-btn {
    flex-shrink: 0;
    background: white;
    border: 1.5px solid #e5e7eb;
    width: 52px; height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #374151;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
  }
  .slider-btn:hover {
    background: #155dfc; color: white;
    border-color: #155dfc;
    box-shadow: 0 6px 20px rgba(21,93,252,0.3);
    transform: scale(1.08);
  }
  .slider-btn:active { transform: scale(0.96); }

  /* ── Dots ── */
  .slider-dots {
    display: flex; justify-content: center; gap: 8px;
    margin-top: -48px; margin-bottom: 72px;
  }
  .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #d1d5db; cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }
  .dot.active {
    background: #155dfc; width: 24px; border-radius: 4px;
  }

  /* ── Stats ── */
  .stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; margin-bottom: 64px;
  }

  .stat {
    background: white; border-radius: 18px;
    padding: 28px 20px; text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(21,93,252,0.07);
    transition: transform 0.2s ease;
  }
  .stat:hover { transform: translateY(-3px); }

  .stat h3 {
    font-family: 'Sora', sans-serif;
    font-size: 36px; font-weight: 800;
    color: #155dfc; margin-bottom: 6px;
    line-height: 1;
  }

  .stat p { color: #6b7280; font-size: 13.5px; font-weight: 500; }

  /* ── CTA ── */
  .cta-box {
    background: linear-gradient(135deg, #155dfc 0%, #1e40af 100%);
    border-radius: 24px;
    padding: 64px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(21,93,252,0.3);
  }

  .cta-box::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -150px; right: -100px;
    pointer-events: none;
  }
  .cta-box::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    bottom: -120px; left: -80px;
    pointer-events: none;
  }

  .cta-content { position: relative; z-index: 1; max-width: 680px; margin: auto; }

  .cta-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 800; color: white;
    margin-bottom: 16px; line-height: 1.25;
  }

  .cta-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px; line-height: 1.65; font-size: 15px;
  }

  .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  .btn-primary, .btn-outline {
    padding: 14px 34px;
    border-radius: 50px;
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 14.5px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    position: relative; overflow: hidden;
  }

  .btn-primary {
    background: white; color: #155dfc;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  }
  .btn-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 32px rgba(0,0,0,0.2);
    background: #f0f4ff;
  }

  .btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
  }
  .btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
    transform: translateY(-3px) scale(1.04);
  }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    .testimonial-card { flex: 0 0 50%; }
    .stats { grid-template-columns: repeat(2,1fr); }
    .slider-btn { width: 44px; height: 44px; font-size: 16px; }
  }

  @media (max-width: 600px) {
    .testimonial-card { flex: 0 0 100%; }
    .stats { grid-template-columns: repeat(2,1fr); gap: 14px; }
    .slider-btn { display: none; }
    .cta-box { padding: 44px 24px; }
    .slider-wrapper { gap: 0; }
  }
/* Services Section */

.gradient-overlay-1 {
  position: absolute;
  inset: 0; /* top: 0; right: 0; bottom: 0; left: 0; */

  background: linear-gradient(
    to top,
    rgba(127, 29, 29, 0.8) 0%,
    /* red-900 / 80% */ rgba(127, 29, 29, 0.6) 50%,
    /* red-900 / 60% */ rgba(127, 29, 29, 0) 100% /* transparent */
  );
}
.gradient-overlay-2 {
  position: absolute;
  inset: 0; /* top: 0; right: 0; bottom: 0; left: 0; */

  background: linear-gradient(
    to top,
    rgba(30, 58, 138, 0.8) 0%,
    /* blue-900 / 80% */ rgba(30, 58, 138, 0.6) 50%,
    /* blue-900 / 60% */ rgba(30, 58, 138, 0) 100% /* transparent */
  );
}
.gradient-overlay-3 {
  position: absolute;
  inset: 0; /* top: 0; right: 0; bottom: 0; left: 0; */

  background: linear-gradient(
    to top,
    rgba(124, 45, 18, 0.8) 0%,
    /* orange-900 / 80% */ rgba(124, 45, 18, 0.6) 50%,
    /* orange-900 / 60% */ rgba(124, 45, 18, 0) 100% /* transparent */
  );
}
.services-section {
  background: #fff;
  padding: 100px 20px;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .subtitle {
  display: inline-block;
  background: #dbeafe;
  color: #155dfc;
  padding: 5px 15px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.service-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.service-info {
  position: absolute;
  bottom: 0;
  padding: 25px;
  color: #fff;
  z-index: 2;
  transition: transform 0.3s;
}

.service-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  transform: translateY(0);
  transition: transform 0.3s;
}

.service-card:hover .service-info h3 {
  transform: translateY(-5px);
}

.service-info p {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
  opacity: 0;
}

.service-card:hover .service-info p {
  max-height: 150px;
  opacity: 1;
}

.btn-services {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #155dfc;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition:
    transform 0.3s,
    background 0.3s;
}

.btn-services span {
  display: inline-block;
  transition: transform 0.3s;
}

.service-card:hover .btn-services span {
  transform: translateX(5px);
}

.btn-services:hover {
  background: #0f4acb;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 20px;
  }

  .service-info h3 {
    font-size: 24px;
  }
}

/* About Us */
/* About Section Styles */
.about-section {
  background-color: #f9fafb;
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Left Column */
.about-left {
  flex: 1 1 500px;
}

.about-tagline {
  display: inline-block;
  background-color: #dbf0ff;
  color: #1a66ff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.about-title {
  font-size: 40px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

.about-description {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

/* Checklist */
.about-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.about-checklist li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.about-checkmark {
  color: #1a66ff;
  font-weight: bold;
  margin-right: 10px;
}

/* Buttons */
.about-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-btn-primary {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  background-color: #1a66ff;
  color: #fff;
  border: none;
  transition: all 0.2s ease;
}

.about-btn-primary:hover {
  background-color: #1453c6;
}

.about-btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  background-color: #fff;
  color: #1a66ff;
  border: 2px solid #1a66ff;
  transition: all 0.2s ease;
}

.about-btn-secondary:hover {
  background-color: #e6f0ff;
}

/* Right Column Cards */
.about-right {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-card {
  background-color: #f9fafb; /* or your desired background */
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* centers horizontally */
  justify-content: center; /* centers vertically */
  text-align: center; /* center text */
  min-height: 180px; /* optional, ensures cards are uniform height */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.about-card-blue {
  background-color: #155dfc; /* your blue card */
  color: #fff;
}

.about-card-white {
  background-color: #fff;
  color: #333;
  border: 1px solid #ddd;
}

.about-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.about-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
}

.about-card-text {
  font-size: 14px;
  margin-top: 4px;
  line-height: 1.4;
}

/* Checklist as 2 Columns */
.about-checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 40px; /* row-gap 12px, column-gap 40px */
}

.about-checklist li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

.about-checkmark {
  color: #1a66ff;
  font-weight: bold;
  margin-right: 10px;
}

/* Card SVG icon sizing */
.about-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px auto;
  display: block;
}

/* Founders */
.founders-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
  text-align: center;
  font-family: sans-serif;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Image under heading */
.founders-image img {
  max-width: 55%;
  width: 100%;
  height: auto;
  margin: 0 auto 3rem;
  border-radius: 1rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .founders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Smaller profile cards */
.founder-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 1rem;
  padding: 1.5rem; /* slightly smaller */
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s;
}

.founder-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.founder-icon {
  width: 60px; /* smaller */
  height: 60px; /* smaller */
  background: #ebf4ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75rem;
}

.founder-name {
  font-size: 1.25rem; /* smaller */
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.founder-title {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.founder-subtitle {
  color: #4b5563;
  margin-bottom: 1rem;
}

.founder-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left; /* left-align the text */
}

.founder-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #374151;
  text-align: left; /* ensure items are left-aligned */
}

.founder-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
}
.founder-list svg {
  stroke: #2563eb; /* Tailwind blue-600 */
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  flex-shrink: 0;
}

/* Why Choose Us Section */ /* Container */
.why-choose-us-section {
  padding: 80px 20px;
  background-color: #fff;
  font-family: sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.why-choose-us-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.why-choose-us-header .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #dbeafe;
  color: #155dfc;
  padding: 6px 16px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.why-choose-us-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111827;
}

.why-choose-us-header p {
  font-size: 1.125rem;
  color: #4b5563;
}

/* Grid */
.why-choose-us-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.feature-card {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 32px 24px;
  transition: all 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: #155dfc;
}

.feature-card .icon {
  width: 64px;
  height: 64px;
  background-color: #155dfc;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #fff;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111827;
}

.feature-card p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

/* Responsive Grid */
@media (min-width: 768px) {
  .why-choose-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-choose-us-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 on top, 3 on bottom */
  }
}

/* Call to Action */
/* Container */
.why-choose-section {
  padding: 4rem 1rem;
  position: relative;
  font-family: sans-serif;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 2rem;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  border: 2px solid #f3f4f6;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
}

/* Background circles */
.bg-circle {
  position: absolute;
  border-radius: 9999px;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -10;
}

.top-right {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background-color: #bfdbfe;
}
.bottom-left {
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background-color: #93c5fd;
}

/* Header */
.why-choose-header {
  text-align: center;
  margin-bottom: 3rem;
}
.why-choose-header .label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #2563eb;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.why-choose-header h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #111827;
}
.why-choose-header p {
  font-size: 1.125rem;
  color: #4b5563;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  border-radius: 1rem;
  padding: 1.5rem;
  color: white; /* text white */
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-inner {
  display: flex;
  align-items: start;
  gap: 1rem;
}

.feature-inner .icon {
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-text .title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.feature-text .subtitle {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
.feature-text p {
  font-size: 0.875rem;
  color: #fff;
}

/* Gradient backgrounds */
.gradient-blue {
  background: linear-gradient(to bottom right, #2563eb, #1d4ed8);
}
.gradient-gray {
  background: linear-gradient(to bottom right, #1f2937, #111827);
}
.gradient-green {
  background: linear-gradient(to bottom right, #16a34a, #15803d);
}
.gradient-orange {
  background: linear-gradient(to bottom right, #f97316, #ea580c);
}

/* 2x2 grid on laptops */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet: 2 columns */
@media (min-width: 640px) and (max-width: 1023px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 column */
@media (max-width: 639px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Call-to-action */
.call-to-action {
  text-align: center;
}
.call-to-action a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #2563eb;
  color: white;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  transition: all 0.2s;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.call-to-action a:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
}
/* Service Area */
/* Container */
.service-area {
  padding: 5rem 1rem;
  background: #fff;
  font-family: sans-serif;
}
.service-area-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.service-area-header {
  text-align: center;
  margin-bottom: 4rem;
}
.service-area-label {
  display: inline-block;
  background: #bfdbfe;
  color: #1d4ed8;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.service-area-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}
.service-area-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

/* Card */
.service-area-card {
  background: linear-gradient(to bottom right, #eff6ff, #fff);
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid #dbeafe;
}
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .service-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Info section */
.service-area-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.service-area-icon {
  padding: 0.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bg-blue {
  background-color: #2563eb;
}
.service-area-info-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.25rem;
}
.service-area-info-text {
  color: #4b5563;
}

/* Highlight box */
.service-area-highlight {
  background-color: #2563eb;
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
}
.highlight-title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.highlight-subtitle {
  color: #dbeafe;
}

/* Description */
.service-area-description {
  color: #4b5563;
}

/* Service list */
.service-area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.service-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  font-weight: 500;
}
.service-item svg {
  flex-shrink: 0;
  color: #2563eb;
  width: 2.25rem;
}
/* Contact */
/* Container */
.contact {
  padding: 5rem 1rem;
  background: #f9fafb;
  font-family: sans-serif;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-label {
  display: inline-block;
  background: #bfdbfe;
  color: #1d4ed8;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}
.contact-subtitle {
  font-size: 1.25rem;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: box-shadow 0.3s ease;
}
.contact-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.contact-card-icon {
  width: 4rem;
  height: 4rem;
  background: #bfdbfe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}
.contact-card-link {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
  color: #2563eb;
  text-decoration: none;
  margin-bottom: 0.5rem;
}
.contact-card-link:hover {
  color: #1d4ed8;
}
.contact-card-text {
  color: #4b5563;
  margin-top: 0.25rem;
}
.contact-card-day {
  font-weight: 600;
  color: #374151;
  margin: 0;
}
.contact-card-time {
  color: #4b5563;
  margin: 0;
}
/* FAQ Accordian */

/* Section spacing */
.faq-section {
  background: linear-gradient(to bottom, #f9fafb, #ffffff);
  padding: 5rem 0;
  margin-bottom: 4rem; /* margin at the bottom of section */
}

/* Container */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Accordion items */
.faq-item {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 0.6rem; /* gap between accordions */
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Accordion button */
.faq-question {
  display: flex;
  width: 100%;
  justify-content: space-between; /* icon at far right */
  align-items: center;
  padding: 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #2563eb;
}

/* Arrow icon */
.faq-question svg {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #2563eb;
  transition:
    transform 0.4s ease,
    color 0.3s ease;
}

/* Active state */
.faq-question.active {
  color: #1e40af;
}

.faq-question.active svg {
  transform: rotate(180deg);
  color: #1e40af;
}

/* Accordion answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    padding 0.3s ease;
  background: #f9fafb;
}

.faq-answer.open {
  padding: 1rem 1.5rem;
}

/* Answer text */
.faq-answer p {
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* Res */

/* ============================================
   MOBILE RESPONSIVE OVERRIDES
   Paste at the very end of your CSS file
   ============================================ */

/* ---------- Large Tablet (max 1024px) ---------- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 42px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-title {
    font-size: 32px;
  }
  .section-header h2 {
    font-size: 30px;
  }
  .why-choose-header h3 {
    font-size: 2rem;
  }
  .contact-title {
    font-size: 2rem;
  }
  .service-area-title {
    font-size: 2rem;
  }
}

/* ---------- Tablet (max 900px) ---------- */
@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    flex-direction: column;
  }
  .about-right {
    grid-template-columns: repeat(2, 1fr);
  }
  .founders-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Mobile (max 768px) ---------- */
@media (max-width: 768px) {
  /* --- Global --- */
  .container {
    width: 95%;
  }

  /* --- Hero --- */
  .hero {
    min-height: 100svh;
    text-align: left;
    padding: 40px 0;
  }
  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  .hero-subtext {
    font-size: 15px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    box-sizing: border-box;
  }
  .hero-features {
    flex-direction: column;
    gap: 16px;
  }
  .feature {
    align-items: flex-start;
  }

  /* --- Section Headers --- */
  .section-header h2 {
    font-size: 26px;
  }
  .section-header p {
    font-size: 15px;
  }
  .subtitle {
    font-size: 15px;
  }

  /* --- Testimonials --- */
  .testimonials {
    padding: 60px 16px;
  }
  .testimonial-card {
    flex: 0 0 100%;
  }
  .slider-btn {
    display: none;
  }
  .slider-wrapper {
    gap: 0;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat h3 {
    font-size: 28px;
  }
  .cta-box {
    padding: 40px 20px;
  }
  .cta-content h3 {
    font-size: 22px;
  }
  .cta-content p {
    font-size: 15px;
  }

  /* --- Services --- */
  .services-section {
    padding: 60px 16px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    height: 380px;
  }
  .service-info h3 {
    font-size: 22px;
  }
  /* Always show description on mobile (no hover) */
  .service-info p {
    max-height: 200px;
    opacity: 1;
  }

  /* --- About --- */
  .about-section {
    padding: 60px 16px;
  }
  .about-grid {
    flex-direction: column;
    gap: 24px;
  }
  .about-left {
    flex: unset;
  }
  .about-right {
    flex: unset;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .about-title {
    font-size: 28px;
  }
  .about-description {
    font-size: 16px;
  }
  .about-checklist {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .about-buttons {
    flex-direction: column;
  }
  .about-btn-primary,
  .about-btn-secondary {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  /* --- Founders --- */
  .founders-section {
    padding: 0 16px;
  }
  .founders-image img {
    max-width: 100%;
  }
  .founders-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.5rem;
  }

  /* --- Why Choose Us --- */
  .why-choose-us-section {
    padding: 60px 16px;
  }
  .why-choose-us-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-us-header h2 {
    font-size: 1.75rem;
  }

  /* --- Why Choose (CTA cards) --- */
  .why-choose-section {
    padding: 40px 12px;
  }
  .why-choose-container {
    padding: 2rem 1.25rem;
    border-radius: 1.25rem;
  }
  .why-choose-header h3 {
    font-size: 1.5rem;
  }
  .why-choose-header p {
    font-size: 0.95rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .feature-card {
    padding: 1.25rem;
  }
  .feature-text .title {
    font-size: 1.2rem;
  }
  .feature-text .subtitle {
    font-size: 0.9rem;
  }
  .call-to-action a {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
  }

  /* --- Service Area --- */
  .service-area {
    padding: 60px 16px;
  }
  .service-area-grid {
    grid-template-columns: 1fr;
  }
  .service-area-title {
    font-size: 1.75rem;
  }
  .service-area-list {
    grid-template-columns: 1fr;
  }
  .highlight-title {
    font-size: 1.4rem;
  }

  /* --- Contact --- */
  .contact {
    padding: 60px 16px;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-card {
    padding: 1rem;
  }
  .contact-title {
    font-size: 1.75rem;
  }
  .contact-subtitle {
    font-size: 1rem;
  }

  /* --- FAQ --- */
  .faq-section {
    padding: 3rem 0;
  }
  .faq-container {
    padding: 0 12px;
  }
  .faq-question {
    font-size: 1rem;
    padding: 1.25rem;
  }
  .faq-answer.open {
    padding: 0.875rem 1.25rem;
  }
}

/* ---------- Small Mobile (max 480px) ---------- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
  .badge {
    font-size: 12px;
    padding: 6px 14px;
  }
  .btn {
    font-size: 14px;
    padding: 12px 16px;
  }
  .about-right {
    grid-template-columns: 1fr;
  }
  .about-card {
    min-height: auto;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .stat h3 {
    font-size: 26px;
  }
  .service-area-card {
    padding: 1.25rem;
  }
  .why-choose-container {
    padding: 1.5rem 1rem;
  }
  .cta-box {
    padding: 30px 16px;
  }
  .cta-content h3 {
    font-size: 20px;
  }
  .section-header h2 {
    font-size: 22px;
  }
  .about-title {
    font-size: 24px;
  }
  .contact-title,
  .service-area-title {
    font-size: 1.5rem;
  }
  .feature-inner {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ---------- Prevent horizontal scroll globally ---------- */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}


@media (max-width:768px){

    .home-hero-buttons .btn.btn-primary{
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }

}