/* Reset */
* {
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #f8f8ff, #ecebff);
  color: #222;
}
/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: #5c3aff;
}

.logo i {
  margin-right: 0.5rem;
  font-size: 1.6rem;
}

nav a {
  margin: 0 1rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #5c3aff;
}

.btn {
  background: #111;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #5c3aff;
}

/* Hero */
.hero {
  text-align: center;
  padding: 5rem 5% 3rem;
  animation: fadeIn 1.2s ease-in-out;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero h1 span {
  color: #5c3aff;
}

.hero p {
  max-width: 650px;
  margin: 0 auto 2rem;
  color: #555;
  font-size: 1.1rem;
}

.hero .cta {
  background: #5c3aff;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(92, 58, 255, 0.4);
}

.hero .cta:hover {
  background: #4327c6;
  transform: translateY(-3px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 3rem 6%;
}
.services-grid a {
  text-decoration: none;
}
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
  font-size: 2rem;
  color: #7c3aed;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #111;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero */
.hero {
  text-align: center;
  animation: fadeIn 1.2s ease-in-out;
  max-width: 1300px;
  margin: 0 auto;
  padding: 70px 10px;
  margin-top: 30px;
}

.hero h1 {
  font-size: 2.8rem;
  /* margin-bottom: 1rem; */
  line-height: 1.3;
}

.hero h1 span {
  color: #5c3aff;
}

.hero p {
  max-width: 650px;
  margin: 0 auto 2rem;
  color: #555;
  font-size: 0.9rem;
}

.hero .cta {
  background: #5c3aff;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(92, 58, 255, 0.4);
}

.hero .cta:hover {
  background: #4327c6;
  transform: translateY(-3px);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  padding: 0rem 6%;
  max-width: 1300px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card i {
  font-size: 2rem;
  color: #7c3aed;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #111;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
  margin-top: 100px;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Decorative corner effect */
.card::before,
.card::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid #1e3a8a; /* Deep blue accent */
  transition: all 0.3s ease;
}

.card::before {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
  border-radius: 10px 0 0 0;
}

.card::after {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 10px 0;
}

.card:hover::before,
.card:hover::after {
  border-color: #2563eb; /* Lighter blue on hover */
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 15px;
  margin-left: 5px;
}

.icon-box i {
  font-size: 28px;
  color: #2563eb;
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: #111;
}

.card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 15px;
  line-height: 1.5;
}

.card a {
  font-weight: 600;
  text-decoration: none;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.card a:hover {
  color: #1e3a8a;
}

.card a i {
  margin-left: 5px;
  font-size: 16px;
}
.help-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1300px;
  width: 100%;
  align-items: center;
  margin-top: 100px;
}

/* Left Column */
.help-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  text-align: left;
}

.help-highlight {
  background: #d6c8ff;
  color: #333;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-weight: 600;
  margin-left: 0.3rem;
}

.help-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: left;
}

.help-text p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 90%;
  text-align: left;
}

.help-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  /* width: fit-content; */
  background: #1a1a1a;
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.help-btn:hover {
  background: #6c63ff;
  transform: translateY(-2px);
}

/* Right Column */
.help-content {
  display: flex;
  flex-direction: column;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.help-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: #fafafa;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.help-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.help-icon {
  background: #ede6ff;
  color: #6c63ff;
  font-size: 1.3rem;
  padding: 0.5rem;
  border-radius: 8px;
  flex-shrink: 0;
}

.help-card h3 {
  font-size: 1rem;
  font-weight: 600;
}

 .choose-us-section {
      max-width: 1300px;
      margin: 0 auto;
      padding: 60px 20px;
      text-align: center;
    }

    .choose-us-subtitle {
      font-size: 0.9rem;
      letter-spacing: 5px;
      color: #f36d5d;
      font-weight: 500;
      margin-bottom: 10px;
    }

    .choose-us-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 50px;
    }

    .choose-us-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      justify-content: center;
      align-items: stretch;
    }

    .choose-card {
      background: #fff;
      border-radius: 12px;
      padding: 30px 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease-in-out;
    }

    .choose-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .choose-icon {
      font-size: 2rem;
      padding: 15px;
      border-radius: 10px;
      margin-bottom: 15px;
      color: white;
      display: inline-flex;
      justify-content: center;
      align-items: center;
    }

    .icon-red { background: #f36d5d; }
    .icon-blue { background: #2b50ec; }
    .icon-green { background: #22c55e; }

    .choose-number {
      font-size: 1rem;
      font-weight: 600;
      color: #888;
      margin-bottom: 10px;
    }

    .choose-card h3 {
      font-size: 1.2rem;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .choose-card p {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.6;
    }

.info{
  max-width: 1300px;
  margin: 0 auto;
  /* padding: 0 20px; */
  /* margin-top: 100px;  */
}
.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 60px 10%; */
  gap: 50px;
  flex-wrap: wrap;
  text-align: left;
}

.section-left {
  position: relative;
  flex: 1 1 350px;
  max-width: 600px;
}

.section-left img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.caption {
  position: absolute;
  bottom: -20px;
  left: 20px;
  right: 20px;
  background: white;
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 1.5;
}

.caption strong {
  display: block;
  font-size: 16px;
  color: #000;
}

.section-right {
  flex: 1 1 350px;
  max-width: 600px;
}

.section-right h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.section-right p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.highlight {
  border-left: 4px solid #f6c700;
  padding-left: 15px;
  font-style: italic;
  color: #444;
  background: #fffbea;
  padding: 10px 15px;
  border-radius: 6px;
}
  footer {
      background-color: #111;
      padding: 40px 20px;
      text-align: center;
      margin-top: 100px;
    }

    /* Logo Section */
    .footer-logo {
      font-size: 1.5rem;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      color: #fff;
    }

    .footer-logo span {
      background: #fff;
      height: 14px;
      width: 18px;
      border-radius: 2px;
      display: inline-block;
    }

    /* Top Nav */
    .footer-top {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      font-size: 0.9rem;
      margin-bottom: 30px;
      opacity: 0.85;
    }

    .footer-top a {
      text-decoration: none;
      color: #fff;
      transition: color 0.3s ease;
      text-transform: uppercase;
    }

    .footer-top a:hover {
      color: #aaa;
    }

    /* Middle Nav */
    .footer-mid {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 25px;
      font-size: 1rem;
      margin-bottom: 25px;
    }

    .footer-mid a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-mid a:hover {
      color: #aaa;
    }

    /* Social Icons */
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 25px;
    }

    .social-icons a {
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      background: #222;
      border-radius: 10px;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .social-icons a:hover {
      transform: translateY(-5px);
      background: #444;
    }

    .social-icons img {
      width: 20px;
      height: 20px;
      filter: invert(1);
    }

    /* Bottom Links */
    .footer-bottom {
      font-size: 0.8rem;
      color: #aaa;
      margin-bottom: 10px;
    }

    .footer-bottom a {
      color: #aaa;
      margin: 0 10px;
      text-decoration: none;
    }

    .footer-bottom a:hover {
      color: #fff;
    }

    .copyright {
      font-size: 0.8rem;
      color: #666;
    }

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
  }

  header {
    width: auto;
    padding: 20px 20px;
    margin: 0px 0px;
    border-radius: 0px;
  }

  .download-btn {
    padding: 6px 16px;
    font-size: 0.9rem;
  }
   .choose-us-title {
        font-size: 2rem;
      }
}

@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }
}
/* RESPONSIVE */
@media (max-width: 900px) {
  .help-section {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    width: auto;
  }

  .help-text h1 {
    font-size: 1.9rem;
  }

  .help-text p {
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
  }

  .help-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
}

@media (max-width: 600px) {
  .help-grid {
    grid-template-columns: 1fr;
  }
  .help-card {
    justify-content: flex-start;
  }
  .about-section {
    padding: 30px 20px;
  }
  .image-grid {
    display: none; /* Hide images on small screens */
  }
  
}
/* Responsive Design */
@media (max-width: 992px) {
  .about-section {
    grid-template-columns: 1fr;
  }
 
}
