:root {
  --bg: #edf2fb;
  --surface: #ffffff;
  --surface-soft: #f7f9ff;
  --text: #111827;
  --muted: #5b6777;
  --primary: #001f5d;
  --primary-soft: #d9e1ff;
  --border: rgba(17, 24, 39, 0.08);
  --shadow: 0 28px 80px rgba(17, 24, 39, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  background-color: #f3f7ff;
  background-image:
    radial-gradient(circle at 0 0, rgba(0, 31, 93, 0.12) 1px, transparent 0),
    radial-gradient(circle at 20px 20px, rgba(0, 31, 93, 0.08) 1px, transparent 0),
    linear-gradient(180deg, #f8fbff 0%, #e9effc 100%);
  background-size: 42px 42px, 42px 42px, auto;
  color: var(--text);
  overflow-x: hidden;
}

.page-dots {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.page-dot {
  position: fixed;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 31, 93, 0.14);
  box-shadow: 0 0 20px rgba(0, 31, 93, 0.08);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.14s ease, opacity 0.14s ease;
  opacity: 0.55;
}

.page-dot:nth-child(2) {
  width: 12px;
  height: 12px;
  opacity: 0.4;
}

.page-dot:nth-child(3) {
  width: 10px;
  height: 10px;
  opacity: 0.28;
}

img {
  display: block;
  max-width: 100%;
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.navbar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: 0.05em;
  font-weight: 700;
  display:flex;
  gap:0.5rem;
  align-items:center;
}
.logo img {
  border-radius: 3rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary);
  transform: translateY(-1px);
}

/* ACTIVE LINK */
.nav-links a.active {
  color: var(--primary);
  transform: translateY(-1px);
}

/* Animated underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* Expand underline on hover or active */
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Optional glow effect for active */
.nav-links a.active {
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.menu-toggle:hover {
  background: var(--surface-soft);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: 100px;
  background: radial-gradient(circle at center, rgba(0, 31, 93, 0.12), transparent 30%);
}

.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 31, 93, 0.22);
  box-shadow: 0 0 18px rgba(0, 31, 93, 0.24);
  pointer-events: none;
}

.hero-dot.large {
  width: 80px;
  height: 80px;
  background: rgba(0, 31, 93, 0.12);
  box-shadow: 0 0 80px rgba(0, 31, 93, 0.18);
}

.carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s ease, transform 1.1s ease;
}

.carousel img.active {
  opacity: 1;
  transform: scale(1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 31, 93, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(0, 31, 93, 0.35), rgba(0, 31, 93, 0.60));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  text-align: center;
  padding: 0 24px;
  color: #f8fafc;
  transition: transform 0.25s ease;
}

.hero-subtitle {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e2e8f0;
  font-size: 0.92rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.4rem, 4.8vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  max-width: 720px;
}

.hero-content p {
  font-size: 1.1rem;
  max-width: 680px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
}

.hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 40px rgba(0, 31, 93, 0.18);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(0, 31, 93, 0.24);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.btn-secondary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}

.stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 22px 18px;
  color: #f8fafc;
  backdrop-filter: blur(14px);
}

.stat strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 800;
}

section {
  padding: 100px 10%;
}

.section-title {
  font-size: clamp(2.15rem, 2.6vw, 3.4rem);
  text-align: center;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 60px;
  line-height: 1.85;
  font-size: 1rem;
}

.section-label {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-alt {
  background: var(--surface-soft);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.grid-2 .image-box {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.grid-2 .image-box img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.grid-2 .image-box img:hover {
  transform: scale(1.03);
}

.grid-2 p {
  font-size: 1.03rem;
  line-height: 1.9;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.card {
  background: var(--surface);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.12);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-content {
  padding: 30px;
}

.card-content i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(0, 31, 93, 0.12);
  color: var(--primary);
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.card-content h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
  color: var(--text);
}

.card-content p,
.card-content li {
  color: var(--muted);
  line-height: 1.85;
  font-size: 0.98rem;
}

.card-content ul {
  margin-top: 16px;
  padding-left: 20px;
  list-style: disc;
  color: var(--muted);
}

.process-container,
.marketing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.process-box,
.marketing-item {
  background: var(--surface);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 24px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-box:hover,
.marketing-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 48px rgba(15, 23, 42, 0.12);
  border-color: rgba(0, 31, 93, 0.16);
}

.process-box i,
.marketing-item i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(0, 31, 93, 0.1);
  color: var(--primary);
  font-size: 1.55rem;
  margin-bottom: 18px;
}

.process-box h3,
.marketing-item h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
  color: var(--text);
}

.process-box p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: start;
}

.contact-details {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 255, 0.92));
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 40px;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text);
  margin-bottom: 24px;
  font-size: 1rem;
}

.contact-details p i {
  color: var(--primary);
  font-size: 1.2rem;
  min-width: 28px;
}

.contact-details a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--primary);
}

.contact-qr {
  margin-top: 24px;
  text-align: center;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.contact-qr img {
  width: 190px;
  max-width: 100%;
  border-radius: 0;
  border: 1px solid rgba(17, 24, 39, 0.09);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

.contact-qr p {
  margin-top: 14px;
  font-size: 0.96rem;
  color: var(--muted);
}

.form-status {
  min-height: 1.5rem;
  margin-bottom: 16px;
  font-size: 0.98rem;
  color: var(--primary);
}

form {
  background: var(--surface);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: var(--shadow);
}

form input,
form textarea {
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  color: var(--text);
  font-size: 0.98rem;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: rgba(0, 31, 93, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 31, 93, 0.12);
}

form button {
  width: 100%;
  padding: 18px 22px;
  border: none;
  border-radius: 16px;
  background: var(--primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

form button:hover {
  background: #001f5d;
  transform: translateY(-1px);
}

footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 34px 24px;
  font-size: 0.95rem;
}
footer {
  background: linear-gradient(135deg, #0f172a, #111827, #1f2937);
  color: #d1d5db;
  text-align: center;
  padding: 34px 24px;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.6;
  pointer-events: none;
}
footer * {
  position: relative;
  z-index: 1;
}
@media (max-width: 1120px) {
  section {
    padding: 90px 8%;
  }

  .cards,
  .process-container,
  .marketing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .navbar {
    padding: 18px 24px;
    position: relative;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: flex;
    width: auto;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 1001;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    text-align: left;
    font-size: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .cards,
  .process-container,
  .marketing-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 3.15rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (min-width: 861px) {
  .nav-links {
    position: static;
    inset: auto;
    width: auto;
    max-width: none;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    flex-direction: row;
    gap: 24px;
  }

  .nav-links a {
    padding: 0;
    font-size: 0.95rem;
    text-align: left;
  }

  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 620px) {
  .navbar {
    padding: 16px 18px;
  }

  .hero {
    padding-top: 92px;
  }

  .nav-links {
    left: 12px;
    right: 12px;
    top: 74px;
    padding: 20px;
  }

  section {
    padding: 70px 6%;
  }
}

