* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
  user-select: none;
}

body {
  color: #0f172a;
  background: #ffffff;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
html {
  scroll-behavior: smooth;
}

/* ===== HEADER ===== */
.header {
  background: #ffffff;
  height: 72px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  padding: 3px;
  /* box-shadow: 0 0 0 2px #2563eb,
     0 2px 6px rgba(0, 0, 0, 0.12); */
}

.logo {
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  color: #0f172a;
}

.logo span {
  color: #2563eb;
}

/* ===== NAVBAR (MODERN) ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* backdrop-filter: blur(10px); */
  background: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  padding: 6px 0;
  transition: color 0.25s ease;
}

/* Hover underline animation */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #2563eb;
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a:hover {
  color: #2563eb;
}

/* CTA Button */
.nav-btn {
  margin-left: 14px;
  padding: 10px 18px !important;
  border-radius: 8px;
  background: #2563eb;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 13px;
}

.nav-btn::after {
  display: none;
}

.nav-btn:hover {
  background: #1e40af;
}
/* nav */

/* ===== DROPDOWN ===== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: #ffffff;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #2563eb;
}

/* SHOW DROPDOWN */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;

  /* BACKGROUND IMAGE */
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

/* WHITE OVERLAY (LIKE PATHSOFT) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.85) 40%,
    rgba(255, 255, 255, 0.2) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

.hero-flex {
  position: relative;
  z-index: 2;
}

/* CONTENT */
.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: #2563eb;
}

.hero-content p {
  font-size: 19px;
  color: #475569;
  margin-bottom: 36px;
}

/* BUTTON ROW */
.hero-actions {
  display: flex;
  gap: 14px;
}

/* Buttons hero */

.btn {
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
  cursor: pointer;
}

button[type="submit"] {
  border: none;
  cursor: pointer;
}

.primary {
  background: #2563eb;
  color: #ffffff;
  background: #ffffff;
  text-decoration: none;
}

.primary:hover {
  background: #1e40af;
}

.outline {
  border: 1.8px solid #cbd5e1;
  color: #0f172a;
}

.outline:hover {
  border-color: #2563eb;
  color: #2563eb;
}

/* BUTTON ROW */
.hero-actions {
  display: flex;
  gap: 14px;
}

/* RIGHT IMAGE */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 18px;
}

.hero-content h1 {
  font-size: 44px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #2563eb;
}

.hero-content p {
  margin: 20px 0 30px;
  color: #475569;
  max-width: 520px;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #0f172a;
  transition: 0.3s;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 992px) {
  .nav {
    position: absolute;
    top: 72px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: none;
  }

  .nav.show {
    display: flex;
  }

  .nav a,
  .nav-dropdown {
    padding: 12px 24px;
  }

  .nav-btn {
    margin: 12px 24px 0;
  }

  .hamburger {
    display: flex;
  }
}

/* ===== BUTTONS ===== */
.btn {
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.primary {
  background: #2563eb;
  color: white;
}

.outline {
  border: 2px solid #2563eb;
  color: #2563eb;
  margin-left: 12px;
}

.center {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
}

/* ===== SERVICES ===== */
.services {
  padding: 90px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  text-decoration: none;
  text-decoration-color: black;
  color: black;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #2563eb;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 22px;
}

/* ===== WHY US ===== */
.why-us {
  background: #f8fafc;
  padding: 90px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-item {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.why-item i {
  font-size: 28px;
  color: #2563eb;
  margin-bottom: 14px;
}

/* ===== STATS ===== */
.stats {
  padding: 90px 0;
}

.stats-flex {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.exp-circle {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border-radius: 50%;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stats-list {
  display: flex;
  gap: 50px;
}

.stat h3 {
  font-size: 36px;
  color: #2563eb;
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 22px 0;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-flex,
  .stats-flex {
    flex-direction: column;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: 460px;
    background-position: center;
  }

  .hero::before {
    background: rgba(255, 255, 255, 0.92);
  }

  .hero-content {
    text-align: center;
    margin: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}
/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 90px 0;
  background: #f8fafc;
}

.section-description {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  color: #64748b;
}

.contact-form {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  margin-top: 24px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
}

.form-footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.checkbox {
  font-size: 14px;
  color: #475569;
  cursor: pointer;
}

.checkbox a {
  color: #2563eb;
  text-decoration: none;
  cursor: pointer;
}

.checkbox input {
  margin-right: 8px;
  cursor: pointer;
}

.captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f9;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  width: fit-content;
  cursor: pointer;
}

.captcha input {
  transform: scale(1.2);
}
.form-status {
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
}

.form-status.loading {
  color: #64748b;
}

.form-status.success {
  color: #16a34a;
}

.form-status.error {
  color: #dc2626;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 90px 0;
  background: #f8fafc;
}

.testimonial-wrapper {
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.7s ease;
}

.testimonial-card {
  min-width: 100%;
  background: #ffffff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 34px;
  color: #2563eb;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
}

.rating {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 28px;
}

.client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.client img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #2563eb;
}

.client h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.client span {
  font-size: 13px;
  color: #64748b;
}

/* ===== FOOTER EXTENDED ===== */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 70px;
}

/* .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
} */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 50px;
  align-items: start;
}

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer-logo span {
  color: #2563eb;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 320px;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #cbd5e1;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #2563eb;
}

/* CONTACT */
.footer-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #2563eb;
}

/* SOCIAL */
.footer-social {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e293b;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #ffffff;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #2563eb;
}

.footer-divider {
  margin: 0 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom p {
    line-height: 1.6;
  }
}
/* Privacy Policy and terms services */
/* ===== LEGAL PAGES (TERMS & PRIVACY) ===== */
.legal-page {
  padding: 90px 0;
  background: #f8fafc;
}

.legal-card {
  background: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin: auto;
}

.legal-card h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #0f172a;
}

.legal-card .updated {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 30px;
}

.legal-card h2 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #0f172a;
}

.legal-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #475569;
}

.legal-card ul {
  padding-left: 18px;
  margin-top: 10px;
}

.legal-card li {
  font-size: 15px;
  color: #475569;
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .legal-card {
    padding: 30px;
  }

  .legal-card h1 {
    font-size: 28px;
  }
}
/* Mobile Friendly */
@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .container {
    width: 92%;
  }
}

/* ---------- HERO MOBILE ---------- */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-image img {
    height: 320px;
    margin-top: 30px;
  }
}

/* ---------- SERVICES ---------- */
@media (max-width: 600px) {
  .services {
    padding: 70px 0;
  }

  .section-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .service-card {
    padding: 32px 24px;
  }
}

/* ---------- WHY US ---------- */
@media (max-width: 600px) {
  .why-us {
    padding: 70px 0;
  }

  .why-item {
    padding: 26px;
  }
}

/* ---------- STATS ---------- */
@media (max-width: 768px) {
  .stats {
    padding: 70px 0;
  }

  .stats-flex {
    gap: 30px;
  }

  .stats-list {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
  }

  .exp-circle {
    width: 160px;
    height: 160px;
  }

  .stat h3 {
    font-size: 30px;
  }
}

/* ---------- CONTACT FORM ---------- */
@media (max-width: 768px) {
  .contact-form {
    padding: 30px 24px;
  }

  .form-footer {
    align-items: flex-start;
  }

  .captcha {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- TESTIMONIALS ---------- */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 36px 24px;
  }

  .testimonial-card p {
    font-size: 15px;
  }
}

/* ---------- FOOTER GRID ---------- */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-social {
    margin-top: 18px;
  }

  .footer-bottom {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* ---------- LEGAL PAGES ---------- */
@media (max-width: 600px) {
  .legal-page {
    padding: 70px 0;
  }

  .legal-card p,
  .legal-card li {
    font-size: 14px;
  }
}

/* ---------- NAV TOUCH IMPROVEMENT ---------- */
@media (max-width: 992px) {
  .nav a {
    font-size: 15px;
  }

  .nav a::after {
    display: none;
  }
}

/* ===== FOOTER MAP ===== */
.footer-map {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
  background: #0f172a;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%) contrast(1.05);
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.footer-map a:hover iframe {
  transform: scale(1.03);
  filter: grayscale(0%);
}

/* Mobile */
@media (max-width: 768px) {
  .footer-map {
    height: 180px;
  }
}

/* =========================
   LEGAL / PRIVACY PAGES
========================= */

.legal-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fafc, #eef2ff);
  padding: 80px 16px;
}

.legal-card {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(2, 6, 23, 0.08);
}

/* Page Title */
.legal-card h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

/* Updated text */
.legal-card .updated {
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 32px;
}

/* Section Headings */
.legal-card h2 {
  font-size: 1.35rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #2563eb;
  position: relative;
  padding-left: 14px;
}

.legal-card h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 18px;
  background: #2563eb;
  border-radius: 2px;
}

/* Paragraphs */
.legal-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 12px;
}

/* Lists */
.legal-card ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-card li {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 6px;
}

/* Email highlight */
.legal-card strong {
  color: #0f172a;
}

/* Links (if added later) */
.legal-card a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.legal-card a:hover {
  text-decoration: underline;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {
  .legal-card {
    padding: 32px 24px;
  }

  .legal-card h1 {
    font-size: 2rem;
  }

  .legal-card h2 {
    font-size: 1.2rem;
  }

  .legal-card p,
  .legal-card li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .legal-page {
    padding: 60px 12px;
  }

  .legal-card {
    padding: 24px 18px;
    border-radius: 12px;
  }
}
