html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  /* background: #f8f9fc; */
  color: #222;
}

/* Navbar */
/* Navbar */
.navbar {
  background: transparent;
  /* border-bottom: 1px solid #e5e7eb; */
}

.nav-container {
  /* max-width: 1200px; */
  margin: auto;
  padding: 3px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #1f1b4a 0%, #3a1c7a 40%, #5b2bbf 100%);
}

.logo {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
}

.nav-links a {
  margin-left: 28px;
  text-decoration: none;
  font-size: 16px;
  color: #cfd4de;
  font-weight: 600;
}

/* Hero */
.hero-section {
  position: relative;
  padding: 120px 20px;
  background: linear-gradient(135deg, #1e1b4b, #6d28d9);
  overflow: hidden;
  text-align: center;
}

.hero-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero-circle.left {
  left: -140px;
  top: 80px;
}

.hero-circle.right {
  right: -140px;
  bottom: -100px;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.hero-content p {
  margin-top: 18px;
  font-size: 15px;
  color: #e5e7eb;
  line-height: 1.7;
}

/* Buttons */
.hero-buttons {
  margin-top: 36px;
}

.btn-text {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-right: 24px;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}

/* Buttons */
.btn-primary {
  background: white;
  color: #5f2eea;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
}

/* Services */
.services-section {
  padding: 100px 60px;
  background: #f9fafb;
  text-align: center;
}

.section-dot {
  display: inline-block;
  width: 20px;
  height: 3px;
  background: #ec4899;
  border-radius: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
}

.section-subtitle {
  margin-top: 10px;
  font-size: 14px;
  color: #6b7280;
}

.services-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.service-card p {
  margin-top: 10px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Icons */
.icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon.blue {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.icon.cyan {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
}

.icon.pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.icon.lightblue {
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
}

.icon.green {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}

.icon.orange {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

/* Why */
.why-choose {
  padding: 100px 60px;
  background: #ffffff;
  text-align: center;
}

.section-dot {
  display: inline-block;
  width: 18px;
  height: 3px;
  background: #ec4899;
  border-radius: 2px;
  margin-bottom: 12px;
}

.why-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
}

.why-subtitle {
  margin-top: 10px;
  font-size: 14px;
  color: #6b7280;
}

.why-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.why-card {
  max-width: 220px;
  margin: auto;
}

.why-card h4 {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.why-card p {
  margin-top: 8px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* Icons */
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.why-icon.blue {
  background: linear-gradient(135deg, #6366f1, #3b82f6);
}

.why-icon.cyan {
  background: linear-gradient(135deg, #22d3ee, #38bdf8);
}

.why-icon.pink {
  background: linear-gradient(135deg, #ec4899, #a855f7);
}

.why-icon.green {
  background: linear-gradient(135deg, #22c55e, #4ade80);
}

/* About */
.about-section {
  padding: 100px 60px;
  background: #f8fbff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.about-content p {
  margin-top: 18px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  max-width: 520px;
}

.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 30px;
}

.stat span {
  font-size: 26px;
  font-weight: 700;
  color: #7c3aed;
}

.stat p {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

/* Right Gradient Box */
.about-visual {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  background: linear-gradient(135deg, #6d28d9, #38bdf8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* CTA */
.cta-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #3b1b5a, #6d28d9);
  overflow: hidden;
  text-align: center;
}

/* Background circles */
.cta-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-circle.left {
  top: -120px;
  left: -120px;
}

.cta-circle.right {
  bottom: -140px;
  right: -140px;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.cta-content h2 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
}

.cta-content p {
  margin-top: 16px;
  font-size: 15px;
  color: #e5e7eb;
}

/* Button */
.cta-btn {
  margin-top: 30px;
  background: #ffffff;
  color: #6d28d9;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

/* Contact */
.contact-section {
  padding: 100px 20px;
  background: #f9fafb;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
}

.contact-subtitle {
  margin-top: 10px;
  font-size: 14px;
  color: #6b7280;
}

/* Card */
.contact-card {
  margin: 50px auto 0;
  max-width: 460px;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  text-align: left;
}

/* Form */
.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  outline: none;
}

.form-group textarea {
  min-height: 100px;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

/* Button */
.send-btn {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  background: linear-gradient(135deg, #6d28d9, #38bdf8);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #9ca3af;
  padding: 70px 60px 30px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand h3 {
  color: #22d3ee;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  color: #9ca3af;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
  font-size: 13px;
  cursor: pointer;
}

.footer-column li a {
  color: #888;
}
.footer-column li:hover a {
  color: #ffffff;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons span {
  width: 34px;
  height: 34px;
  background: #1f2933;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 14px;
  cursor: pointer;
}

/* Bottom */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f8fafc;
  color: #1f2937;
  line-height: 1.7;
}

/* Header */
.policy-header {
  background: linear-gradient(135deg, #1e1b4b, #6d28d9);
  color: white;
  padding: 70px 20px;
  text-align: center;
}

.policy-header h1 {
  font-size: 38px;
  font-weight: 800;
}

.policy-header p {
  margin-top: 10px;
  font-size: 14px;
  color: #e5e7eb;
}

/* Content */
.policy-content {
  padding: 70px 20px;
}

.policy-container {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.policy-container h2 {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.policy-container p {
  margin-top: 12px;
  font-size: 15px;
  color: #374151;
}

.policy-container ul {
  margin-top: 12px;
  padding-left: 20px;
}

.policy-container ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #374151;
}

/* Contact Box */
.contact-box {
  margin-top: 20px;
  padding: 18px;
  background: #f1f5f9;
  border-radius: 10px;
  font-size: 14px;
}

/* Footer */
.policy-footer {
  margin-top: 60px;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}
.policy-footer a {
  color: #6d28d9;
  text-decoration: none;
  font-weight: 600;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f8fafc;
  color: #1f2937;
  line-height: 1.7;
}

/* Header */
.tos-header {
  background: linear-gradient(135deg, #1e1b4b, #6d28d9);
  color: white;
  padding: 70px 20px;
  text-align: center;
}

.tos-header h1 {
  font-size: 38px;
  font-weight: 800;
}

.tos-header p {
  margin-top: 10px;
  font-size: 14px;
  color: #e5e7eb;
}

/* Content */
.tos-content {
  padding: 70px 20px;
}

.tos-container {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tos-container h2 {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.tos-container p {
  margin-top: 12px;
  font-size: 15px;
  color: #374151;
}

.tos-container ul {
  margin-top: 12px;
  padding-left: 20px;
}

.tos-container ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #374151;
}

/* Contact Box */
.contact-box {
  margin-top: 20px;
  padding: 18px;
  background: #f1f5f9;
  border-radius: 10px;
  font-size: 14px;
}

/* Footer */
.tos-footer {
  margin-top: 60px;
  padding: 20px;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
}

/* =====================================
   GLOBAL MOBILE SAFETY
===================================== */
html,
body {
  overflow-x: hidden;
}

/* =====================================
   TABLET (<=1024px)
===================================== */
@media (max-width: 1024px) {
  .nav-container {
    padding: 16px 32px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-stats {
    justify-content: center;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================
   MOBILE (<=768px)
===================================== */
@media (max-width: 768px) {
  /* Navbar */
  .nav-container {
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    display: flex;
    gap: 16px;
    justify-content: center;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 13px;
    text-align: center;
  }

  /* Hero */
  .hero-section {
    padding: 90px 16px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .btn-outline {
    width: 100%;
  }

  /* Services */
  .services-section {
    padding: 70px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Why Choose */
  .why-choose {
    padding: 70px 20px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* About */
  .about-section {
    padding: 70px 20px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-stats {
    flex-direction: column;
    gap: 20px;
  }

  .about-visual {
    height: 220px;
  }

  /* CTA */
  .cta-section {
    padding: 80px 20px;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .cta-btn {
    width: 100%;
  }

  /* Contact */
  .contact-card {
    padding: 24px;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* =====================================
   SMALL MOBILE (<=480px)
===================================== */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }

  .section-title,
  .why-title,
  .contact-section h2 {
    font-size: 26px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .policy-container,
  .tos-container {
    padding: 28px;
  }
}
