 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #fff;
      overflow-x: hidden;
    }

 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

/* === HEADER === */
header {
  background-image: url("https://images.pexels.com/photos/9462162/pexels-photo-9462162.jpeg?_gl=1*119rm5t*_ga*MTQ0Nzk3OTAyNC4xNzYyODAyNjU5*_ga_8JE65Q40S6*czE3NjI4MDI2NTgkbzEkZzEkdDE3NjI4MDI2NzQkajQ0JGwwJGgw");
  color: #fff;
  background-size: cover;
  min-height: 80vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.overlay {
  background: rgba(0,0,0,0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
      top: 0;
    left: 0;
}

/* === NAVIGATION === */
nav {
  text-align: center;
  padding: 30px 10%;
  position: relative;
  z-index: 2;
}

/* Logo */
nav .logo img {
  height: 130px;
}

/* Desktop Menu */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-top: 15px;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #ff7501;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none; /* hidden on desktop */
  cursor: pointer;
  color: #fff;
  font-size: 1.5rem;
  position: absolute;
  top: 20px;
  right: 10%;
  z-index: 10;
}

/* Off-Canvas Menu */
.offcanvas-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #26423b;
  color: #fff;
  overflow-y: auto;
  transition: left 0.3s ease;
  z-index: 9999;
  padding-top: 50px;
  display: none; /* hidden by default */
}

.offcanvas-menu.active {
  left: 0;
}

.offcanvas-menu ul {
  list-style: none;
  padding: 0 20px;
}

.offcanvas-menu ul li {
  margin-bottom: 20px;
}

.offcanvas-menu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.offcanvas-menu ul li a:hover {
  color: #ffc107;
}

.offcanvas-menu .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 1.5rem;
}

/* Offcanvas Overlay */
.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 9998;
  display: none;
}

.offcanvas-overlay.active {
  display: block;
}

/* === HERO === */
.hero {
  text-align: center;
  margin-top: 80px;
  z-index: 2;
  position: relative;
  padding: 0px 0 30px;
}

.hero span {
  background: rgba(255,255,255,0.15);
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto;
  margin-top: 20px;
}

.hero p {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #eee;
}

.hero button {
  margin-top: 30px;
  background: #ff7501;
  color: #111;
  border: none;
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1rem;
}

.hero button:hover {
  transform: scale(1.05);
  background: #ff7301a8;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
 .nav-links li a {
    font-size: 14px;}
  

  header {
    padding: 20px 5%;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 1.8rem;
  }
}



    .why-choose {
    background: #fff;
    padding: 80px 10%;
    text-align: center;
  }

  .why-choose h2 {
    font-size: 2rem;
    color: #ff7501;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .why-choose .subtext {
    color: #555;
    margin-bottom: 60px;
    font-size: 1rem;
  }

  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
  }

  .feature {
    background: #f8f9ff;
    border-radius: 20px;
    padding: 40px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    animation: fadeUp 0.8s ease both;
  }

  .feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .feature-icon {
    font-size: 2.2rem;
    background: #ff7501;
    color: #fff;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }

  .feature h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #111;
  }

  .feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* === ANIMATION === */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .why-choose {
      padding: 60px 5%;
    }
    .feature {
      padding: 30px 20px;
    }
  }


  /* === SERVICES SECTION === */
.services-section {
  padding: 80px 10%;
  background: #f7faff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.section-title {
  font-size: 2.5rem;
  color: #ff7501;
  margin-bottom: 10px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #111;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: #6c757d;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 123, 255, 0.15);
}

.service-card .icon i {
  width: 100%;
  /* height: 80px; */
  margin-bottom: 25px;
  transition: transform 0.4s ease;
  font-size: 30px;
}

.service-card:hover .icon img {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.3rem;
  color: #ff7501;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
}
.learn-more-button {
    padding: 12px 24px; 
    font-weight: 600; 
    color: #fff; 
    background-color: #ff7501; 
    border: 1px solid #ddd;
    border-radius: 12px; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 
    cursor: pointer;
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none;
    transition: background-color 0.2s, box-shadow 0.2s, border-color 0.2s;
    margin-top: 15px;
}


.learn-more-button:hover {
    border-color: #ccc; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 30px 20px;
  }
}

/* How It Works Section */
.how-it-works {
  text-align: center;
  padding: 100px 20px;
  background: #fff;
}

.how-it-works h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ff7501;
}

.how-it-works p {
  color: #555;
  font-size: 18px;
  margin-bottom: 60px;
}

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.step {
  text-align: center;
  position: relative;
  margin: 20px;
  z-index: 2;
  animation: fadeUp 1.2s ease-in-out;
}

.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  color: white;
  font-size: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.circle:hover {
  transform: scale(1.1);
}

.circle .icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle .icon img {
  width: 20px;
  height: 20px;
}

.blue {
  background: #1e64ff;
}

.purple {
  background: #a020f0;
}

.gold {
  background: #c47a00;
}

.step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.step p {
  color: #666;
  font-size: 15px;
}

.line {
  width: 80px;
  height: 2px;
  background: #ddd;
  margin: 0 10px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .steps {
    flex-direction: column;
  }

  .line {
    width: 2px;
    height: 60px;
  }
}

/* Call To Action Section */
.cta-section {
  background: linear-gradient(135deg, #1e64ff, #a020f0);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  border-radius: 40px;
  max-width: 1300px;
  margin: 0px auto;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-in-out;
}

.cta-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1.3s ease-in-out;
}

.cta-btn {
  background: #fff;
  color: #1e64ff;
  padding: 15px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  animation: fadeInUp 1.6s ease-in-out;
}

.cta-btn:hover {
  background: #c47a00;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 28px;
  }

  .cta-content p {
    font-size: 16px;
  }

  .cta-btn {
    font-size: 16px;
    padding: 12px 30px;
  }
}
