/* 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-section {
  position: relative;
  width: 100%;
  height: 60vh;
  background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Dark overlay */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 24, 72, 0.75);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-in-out;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
}

.breadcrumb {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #ddd;
}

.breadcrumb span {
  color: #fff;
  font-weight: 500;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
section.service {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 8%;
  gap: 40px;
  flex-wrap: wrap;
}

.service-image {
  flex: 1 1 45%;
}

.service-image img {
  width: 100%;
  /* border-radius: 6px; */
  object-fit: cover;
}

.service-content {
  flex: 1 1 50%;
}

.service-content small {
  display: block;
  color: #6c7a91;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.service-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a1d3a;
  margin-bottom: 15px;
}

.service-content p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-features {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.feature {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature i {
  font-size: 1.2rem;
  color: #0066ff;
  margin-bottom: 10px;
  background-color: #cfe3fe;
  border-radius: 50px;
  padding: 5px;
}

.feature h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #0a1d3a;
  margin-bottom: 8px;
}

.feature p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}
.section-container {
  max-width: 1300px;
  margin: auto;
  padding: 60px 20px;
}

/* Header */
.section-header {
  text-align: left;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f172a;
  max-width: 700px;
}

.section-header p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
  margin-bottom: 20px;
}

.action-btn {
  display: inline-block;
  background: #1d4ed8;
  color: #fff;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
}

/* Grid Layout */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Card */
.card-item {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 25px;
  position: relative;
  min-height: 180px;
}

.card-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 15px;
}

.card-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: 600;
  color: #d1d5db;
}
.support-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 0px;
  /* background: linear-gradient(to right, #e0f7fa, #ffffff); */
  max-width: 1300px;
  margin: 0 auto;
}

.support-text {
  /* flex: 1 1 400px; */
  max-width: 600px;
  padding: 20px;
}

.support-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.support-text p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.6;
}

#privacy,
#terms {
  color: #111;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.support-text .call {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 26px;
  background-color: #0077cc;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.call-info {
  font-size: 8px;
  color: #888;
  margin-top: 10px;
}

.support-image {
  flex: 1 1 300px;
  text-align: center;
  padding: 20px;
}

.support-image img {
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  object-fit: contain;
}
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-section {
    height: 50vh;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .breadcrumb {
    font-size: 0.85rem;
  }
  .support-section {
    flex-direction: column-reverse;
    text-align: left;
  }
  .support-text h1 {
    font-size: 2rem;
  }
  .support-image {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
}
/* Responsive */
@media (max-width: 992px) {
  section.service {
    flex-direction: column;
    text-align: center;
  }
  .service-features {
    justify-content: center;
  }
  .feature {
    align-items: center;
    text-align: center;
  }
}
