/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  /* background-color: #fffdee; */
  background-color: #fff;
  color: #0b2953;
}

/* herosection */
.hero {
  display: flex;
  flex-direction: row;
  background-color: #051837;
  justify-content: space-between;
  padding: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.tagline {
  /* color: #ffd700; */
  color:#fff;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color:#FEBE10;
  margin-bottom: 1rem;
}

.subtext {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.6;
}

.highlight {
  background: #FEBE10;
  color: #000;
  padding: 0.2rem 0.4rem;
  border-radius: 5px;
  font-weight: 600;
}

.cta-button {
  padding: 0.75rem 1.5rem;
  background: white;
  color: #051837;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.reviews {
  display: flex;
  color:#fff;
  gap: 2rem;
  align-items: center;
  font-size: 1rem;
}

.rating {
  background: #1a2a5f;
  padding: 0.5rem 1rem;
  border-radius: 30px;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* 🔽 MEDIA QUERIES 🔽 */

/* Medium devices (tablets, 768px and up) */
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }

  .subtext {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1rem;
  }
}

/* Small devices (phones, less than 768px) */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text, .hero-image {
    max-width: 100%;
  }

  .reviews {
    flex-direction: column;
    gap: 1rem;
  }
}
/* herosection ended */



/* why */
.why-section {
  padding: 4rem 2rem;
  text-align: center;
}

.why-tag {
  display: inline-block;
  background: #fff3c4;
  color: #f7b500;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.why-header h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blue-text {
  color: #0066ff;
  border-bottom: 3px solid #0066ff;
  display: inline-block;
}

.why-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  color: #666;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.features-grid {
  align-items: stretch; /* Equal height rows */
}
.feature-item .bar {
  margin-top: auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 1.5rem;
  width: 280px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* base no shadow */
  min-height: 100%; /* Allow stretch */
}
.feature-item:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px) scale(1.02);
}
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 28px;
  height: 28px;
}

.icon-box.blue {
  background: #f5f9ff;
}
.icon-box.yellow {
  background: #fffbe6;
}
.icon-box.green {
  background: #f3fbf7;
}
.icon-box.red {
  background: #fff1f2;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature-item p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.bar {
  height: 4px;
  width: 100%;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.bar.blue {
  background: #0066ff;
}
.bar.yellow {
  background: #f7b500;
}
.bar.green {
  background: #0a8754;
}
.bar.red {
  background: #e11d48;
}

/* Hover Interactions */
.feature-item:hover .bar.blue,
.feature-item:hover h3.blue {

  color: #0052cc;
}
.feature-item:hover .bar.yellow,
.feature-item:hover h3.yellow {

  color: #e0a000;
}
.feature-item:hover .bar.green,
.feature-item:hover h3.green {

  color: #087443;
}
.feature-item:hover .bar.red,
.feature-item:hover h3.red {

  color: #b91c1c;
}

/* Add color classes to h3 for hover targeting */
.feature-item h3.blue { color: #333; }
.feature-item h3.yellow { color: #333; }
.feature-item h3.green { color: #333; }
.feature-item h3.red { color: #333; }

/* Responsive Design */
@media (max-width: 992px) {
  .why-header h2 {
    font-size: 1.7rem;
  }

  .why-header p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    width: 90%;
  }

  .why-header h2 {
    font-size: 1.5rem;
  }
}

/* why ended*/


/* SERVICES */
.services-section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1300px;
  margin: auto;
}

.mini-title {
  color: #1963c5;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.main-title {
  color: #1963c5;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 50px;
}

.main-title span {
  color: #456fc5;
  font-weight: 400;
}

.services-container {
  display: flex;
  flex-wrap: nowrap; /* prevents wrapping */
  justify-content: center;
  gap: 30px;
  overflow-x: auto; /* enables horizontal scroll on smaller screens */
}


.service-card {
   flex: 0 0 23%; /* ensures 4 cards fit in 100% width with some spacing */
  min-width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
  padding: 30px 20px;
  max-width: 300px;
  transition: all 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 1.1rem;
  color: #0d165f;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  text-align: justify;
  margin-bottom: 20px;
}

.learn-more {
  color: #ff2e00;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
}

.learn-more span {
  display: inline-block;
  margin-left: 6px;
  border: 1px dotted #ff2e00;
  border-radius: 50%;
  padding: 2px 6px;
}

@media (max-width: 768px) {
  .services-container {
    flex-direction: column;
    align-items: center;
  }
}
.services-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/* SERVICES ENDED */


/* Working Process */
.roadmap-section {
  background-color: #000;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}

.roadmap-section h2 {
  font-size: 2rem;
  color: white;
  font-weight: bold;
}
.roadmap-section h2 span {
  color: #f4b122;
}
.subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.roadmap {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.step {
  flex: 1 1 180px;
  text-align: center;
  padding: 1rem;
  position: relative;
  max-width: 200px;
}

.circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  position: relative;
}

/* Colored Circles */
.circle1 { border-color: #9e8fce; }
.circle2 { border-color: #f4d03f; color: #f4d03f; }
.circle3 { border-color: #e74c3c; color: #e74c3c; }
.circle4 { border-color: #1abc9c; color: #1abc9c; }
.circle5 { border-color: #3498db; color: #3498db; }

.step h4 {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #febe10;
}
.step p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.4;
}
.step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .roadmap {
    flex-direction: column;
    align-items: center;
  }

  .step {
    max-width: 300px;
  }
  .step::after {
    display: none;
  }
}
/* Workprocess ended */

/* WhatsApp Chat Section */
.wt-container {
  background: #fefefe;
  display: flex;
  justify-content: center;
  align-items: center;
  
  padding: 30px 15px;

}

.cta-container {
  text-align: center;
  max-width: 800px;
  animation: fadeIn 1.2s ease-out;
}

.cta-subtitle {
  font-size: 1rem;
  color: #f5a623;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 15px;
}

.cta-desc {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 10px;
}

.cta-highlight {
  font-weight: 600;
  color: #333;
}

.cta-button {
  margin-top: 25px;
  padding: 14px 26px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background-color: #25D366;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.cta-button:hover {
  background-color: #1ebe5c;
}

.cta-button i {
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .cta-title {
    font-size: 1.9rem;
  }
  .cta-desc {
    font-size: 1rem;
  }
}
/* WhatsApp Chat Section ended*/