/* =====================================================
   Global Styles — Clean, Modern & Founder-Focused
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}
/* =====================================================
   HERO BASE
===================================================== */
.hero {
  position: relative;
  background: #ffffff;
  color: #202020;
  padding: 80px 20px 90px;
  /* border-radius: 0 0 70px 70px; */
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1), transparent 70%),
              radial-gradient(circle at 80% 70%, rgba(0,0,0,0.15), transparent 80%); */
  animation: heroGlow 10s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroGlow {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.2); opacity: 1; }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1 1 420px;
  text-align: left;
  min-width: 300px;
    color: #202020;

}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #202020;
  /* background: linear-gradient(90deg, #fff, #e6fff9); */
  /* -webkit-background-clip: text; */
  /* -webkit-text-fill-color: transparent; */
}
.hero-heightlight{
    color: #002f95;
}


.hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 35px;
  color: #202020;
}

.hero .btn {
  background: #121212;
  color: #f4f4f4;
  padding: 14px 38px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.hero .btn:hover {
  background: #000000;
  transform: translateY(-1px);
}

/* =====================================================
   Startup Journey Path (Integrated Right)
===================================================== */
.journey-path {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  
}

.journey-path svg {
  width: 100%;
  max-width: 450px;
  height: auto;
  overflow: visible;
}

/* Animated Path */
#rocketPath {
  stroke-dasharray: 10 6;
  animation: dashMove 8s linear infinite;
}

@keyframes dashMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -100; }
}

/* Stage Markers & Text */
.journey-path circle {
  transition: transform 0.3s ease;
}

.journey-path circle:hover {
  transform: scale(1.3);
}

.journey-path text {
  font-size: 1rem;
  font-weight: 600;
  fill: #202020;
  text-anchor: middle;
  font-family: 'Poppins', sans-serif;
  opacity: 0.9;
}

/* Rocket */
.journey-path image {
  transform-origin: center;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .journey-path {
    max-width: 360px;
    margin: 40px auto 0;
  }
  .hero h1 { font-size: 2.4rem; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 20px 80px; border-radius: 0 0 50px 50px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
}


/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 992px) {
  .hero-content { flex-direction: column-reverse; text-align: center; }
  .hero-text { text-align: center; }
  .hero h1 { font-size: 2.4rem; }
  .hero-animation { height: 400px; }
  .hero-rocket { width: 55px; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 20px 70px; border-radius: 0 0 50px 50px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .stage { font-size: 1rem; }
  .stage span { font-size: 0.75rem; }
}

/* Container */
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
/* Primary button (existing look) */
.primary-btn {
  background: #121212;
  color: #f4f4f4;
}

/* Android Download Button */
.android-btn {
  background: #ffffff;
  color: #121212;
  border: 2px solid #121212;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  position: relative;
}

.android-btn img {
  width: 20px;
  height: 20px;
}

/* Hover effects */
.android-btn:hover {
  background: #121212;
  color: #ffffff;
}

/* .android-btn:hover img {
  filter: invert(1);
} */

/* Mobile friendly */
@media (max-width: 600px) {
  .hero-actions {
    justify-content: center;
  }
}
/* Modal Styles */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 12% auto;
  padding: 20px 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.modal-content h3 {
  margin-bottom: 12px;
  color: #121212;
}

.modal-content p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: #121212;
}

/* =====================================================
   Section Headings
===================================================== */
section {
  padding: 100px 20px;
}

section h2 {
  font-size: 2.4rem;
  text-align: center;
  color: #1d4ed8;
  margin-bottom: 15px;
  font-weight: 700;
}

section p.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 60px;
}

/* =====================================================
   Benefits Section (Why Choose Us)
===================================================== */


.why-choose-us {
  background: #ffffff;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  /* background: radial-gradient(circle, rgba(37,99,235,0.1), transparent 70%); */
  top: 60px;
  left: -80px;
  border-radius: 50%;
  z-index: 0;
}

.why-choose-us::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  /* background: radial-gradient(circle, rgba(0,207,193,0.1), transparent 70%); */
  bottom: 60px;
  right: -120px;
  border-radius: 50%;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.section-header h2 span {
  background: #1e3a8a;
  font-weight: 800;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1.05rem;
  color: #6d6d6d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Benefits Grid */
.benefits-grid {
    background: #ffffff;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  position: relative;
  z-index: 1;
}

/* Benefit Cards */
.benefit-card {
  background: #fff;
  padding: 20px 10px;
  /* border-radius: 18px; */
  /* box-shadow: 0 15px 35px rgba(37,99,235,0.08); */
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(37,99,235,0.05), rgba(0,207,193,0.05)); */
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 20px 50px rgba(37,99,235,0.15); */
}

/* Icon Box */
.icon-box {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3978ff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(37,99,235,0.3);
  transition: transform 0.4s ease;
}

.benefit-card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}

.icon-box i {
  font-size: 1.8rem;
  color: #fff;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
}

.benefit-card p {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2rem;
  }
  .benefit-card {
    padding: 40px 25px;
  }
  .icon-box {
    width: 60px;
    height: 60px;
  }
}


/* =====================================================
   Process Section
===================================================== */

.process {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.process h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.process .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
}

.step {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  /* box-shadow: 0 1px 3px rgba(37, 99, 235, 0.08); */
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
}

/* .step:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.15);
} */

.step-number {
  position: absolute;
  top: 35px;
  left: 5px;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(139, 216, 255, 0.15);
  z-index: 0;
}

.step i {
  font-size: 2.5rem;
  background: #3978ff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}

.step h3 {
  font-size: 1.25rem;
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.step p {
  font-size: 0.95rem;
  color: #555;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* ✅ Responsive adjustments */
@media (max-width: 992px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}



/* =====================================================
   Services Section (Enhanced, 4 in a Row)
===================================================== */
.services {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.services h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.services .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 60px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
}

.service-card {
  background: #fff;
  /* border-radius: 20px; */
  padding: 45px 30px;
  /* box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08); */
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 18px 40px rgba(37, 99, 235, 0.15); */
}

.service-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(0,207,193,0.1)); */
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  /* background: linear-gradient(135deg, #2563eb, #00cfc1); */
  transform: scale(1.05);
}

.service-icon i {
  font-size: 2.3rem;
  background: #3978ff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.btn-container {
  margin-top: 0px;
}

.btn.btn-primary {
  background:  #0c0c0c;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.btn-primary:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 10px 25px rgba(37,99,235,0.25); */
}

/* ✅ Responsive Layout */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   Case Studies (Enhanced)
===================================================== */
.case-studies {
  padding: 100px 0;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  text-align: center;
}

.case-studies h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.case-studies .section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto 60px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.case-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.case-image {
  position: relative;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.case-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(37, 99, 235, 0.7);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.btn-view {
  background: #fff;
  color: #2563eb;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background: #f0f4ff;
  transform: translateY(-3px);
}

.case-card:hover .case-overlay {
  opacity: 1;
}

.case-card:hover img {
  transform: scale(1.1);
}

.case-content {
  padding: 25px 25px 30px;
  text-align: left;
}

.case-content h3 {
  font-size: 1.25rem;
  color: #1e3a8a;
  margin-bottom: 10px;
  font-weight: 600;
}

.case-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.15);
}

.btn-container {
  margin-top: 20px;
}
/* 
.btn.btn-primary {
  background: linear-gradient(90deg, #2563eb, #00cfc1);
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

.btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.25);
} */

/* Responsive */
@media (max-width: 992px) {
  .case-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .case-content {
    text-align: center;
  }
}


/* =====================================================
   Call-To-Action (Enhanced)
===================================================== */
.cta {
  position: relative;
  padding: 80px 10px;
  text-align: center;
  /* border-radius: 30px; */
  overflow: hidden;
  background: #181818;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.25);
  isolation: isolate;
}

/* Subtle gradient shine effect */
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 60%);
  opacity: 0.4;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

.cta h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.95);
}

.cta p {
  font-size: 1.15rem;
  margin: 0 auto 40px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.95);
}

.btn-cta {
  display: inline-block;
  background: #fff;
  color: #2563eb;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 38px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(255,255,255,0.25);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Button hover glow */
.btn-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.6), transparent 60%);
  transition: all 0.4s ease;
}

.btn-cta:hover::after {
  left: 100%;
}

/* .btn-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255,255,255,0.35);
} */

/* Responsive */
@media (max-width: 768px) {
  .cta {
    padding: 80px 20px;
    /* border-radius: 20px; */
  }
  .cta h2 {
    font-size: 2rem;
  }
  .cta p {
    font-size: 1rem;
  }
}

/* =====================================================
   Responsive
===================================================== */
@media (max-width: 992px) {
  .benefits-grid,
  .process-steps,
  .service-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.3rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
/* =========================
   Case Studies - Premium Layout
========================= */

/* Hero Section */
.hero-case2 {
  padding: 140px 20px 100px;
  background: linear-gradient(135deg, #2563eb, #00cfc1);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-case2::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 150px;
  background: #f9f9f9;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.hero-case2 h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-case2 p {
  font-size: 1.2rem;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.95;
}

/* =========================
   Case Study Rows
========================= */

#case-studies {
  background: #f9f9f9;
  padding: 100px 0;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1rem;
  margin-bottom: 60px;
}

.case-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 100px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.case-row.reverse {
  flex-direction: row-reverse;
}

.case-image {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-row:hover .case-image img {
  transform: scale(1.05);
}

.case-text {
  flex: 1;
  padding: 50px 60px;
}

.case-text h3 {
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 25px;
  font-weight: 700;
}

.case-summary {
  list-style: none;
  margin-bottom: 30px;
}

.case-summary li {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

.case-summary strong {
  color: #2563eb;
}

.btn-case {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #00cfc1);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-case:hover {
  background: linear-gradient(135deg, #1e4db7, #00b5a7);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4);
}

/* =========================
   CTA Section
========================= */
.cta-case {
  background: linear-gradient(135deg, #2563eb, #00cfc1);
  text-align: center;
  color: #fff;
  padding: 20px 20px;
  border-radius: 0;
}

.cta-case h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-case p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.btn-cta {
  background: #fff;
  color: #2563eb;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* .btn-cta:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
} */

/* =========================
   Responsive Design
========================= */
@media (max-width: 992px) {
  .case-row {
    flex-direction: column;
    text-align: center;
  }

  .case-row.reverse {
    flex-direction: column;
  }

  .case-text {
    padding: 40px 25px;
  }

  .case-text h3 {
    font-size: 1.5rem;
  }

  .case-summary li {
    font-size: 1rem;
  }

  .case-image img {
    height: 250px;
  }
}
