:root {
  --blue: #0b4f9e;
  --blue-dark: #08386f;
  --orange: #f7931e;
  --orange-dark: #e07b00;
  --green: #1e8a4c;
  --bg: #f6f8fb;
  --text: #1c2733;
  --text-light: #5b6b7b;
  --white: #ffffff;
  --border: #e4e9f0;
  --shadow: 0 8px 24px rgba(11, 79, 158, 0.08);
  --radius: 14px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Sticky topbar+header would otherwise cover the top of whichever section
   an anchor link (#home, #services, etc.) scrolls to - reserve space for it. */
#home, #services, #about, #contact { scroll-margin-top: 112px; }

body {
  font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(247, 147, 30, 0.35);
}
.btn-outline {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* Sticky top info bar + header, scroll together as one unit */
.sticky-head {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* Topbar */
.topbar {
  background: var(--blue-dark);
  color: #dce9fb;
  font-size: 0.82rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
  gap: 12px;
  flex-wrap: wrap;
}

/* Header */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(11,79,158,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-title { font-weight: 700; font-size: 1.05rem; color: var(--blue-dark); }
.brand-sub { font-size: 0.72rem; color: var(--text-light); font-family: 'Poppins', sans-serif; }

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--blue); }
.main-nav a.active { color: var(--blue); font-weight: 700; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: flex;
  border: 2px solid var(--blue);
  border-radius: 999px;
  overflow: hidden;
  background: none;
  cursor: pointer;
}
.lang-opt {
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
}
.lang-opt.active {
  background: var(--blue);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  padding: 70px 0;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-text { flex: 1 1 420px; }
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}
.hero-text h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.hero-text p {
  font-size: 1.02rem;
  color: #d9e6f7;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-art {
  flex: 1 1 300px;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-circle {
  position: absolute;
  right: 20px;
  top: 10px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,147,30,0.35), transparent 70%);
}
.hero-slide-card {
  position: relative;
  width: 220px;
  height: 180px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  backdrop-filter: blur(4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.hero-slide-card.fade {
  opacity: 0;
  transform: translateY(8px);
}
.hero-slide-icon { font-size: 3rem; line-height: 1; }
.hero-slide-label {
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  padding: 0 12px;
}

/* Services ticker */
.ticker-section {
  display: flex;
  align-items: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-label {
  flex-shrink: 0;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  white-space: nowrap;
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  display: flex;
}
.ticker-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 12px 0;
  font-weight: 600;
  color: var(--blue);
  font-size: 0.9rem;
  animation: ticker-scroll 65s linear infinite;
}
.ticker-content .dot { color: var(--orange); margin: 0 22px; font-weight: 700; }
.ticker-track:hover .ticker-content { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--blue-dark);
  font-size: 0.95rem;
}
.trust-icon { font-size: 1.4rem; }

/* Section head */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 42px; }
.section-tag {
  display: inline-block;
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}
.section-head h2, .about-text h2 {
  font-size: 1.8rem;
  color: var(--blue-dark);
  font-weight: 700;
}

/* Services */
.services { padding: 80px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11,79,158,0.14);
}
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf1fc, #fdeedd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: 12px;
}
.service-card ul li {
  padding: 5px 0;
  color: var(--text-light);
  font-size: 0.93rem;
  position: relative;
  padding-left: 18px;
}
.service-card ul li::before {
  content: "•";
  color: var(--orange);
  position: absolute;
  left: 0;
  font-weight: 700;
}

/* About */
.about { padding: 80px 0; background: var(--white); }
.about-inner {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.about-text { flex: 1 1 420px; }
.about-text p { color: var(--text-light); margin: 16px 0 22px; }
.about-points { display: flex; flex-direction: column; gap: 10px; }
.about-point { font-weight: 500; color: var(--text); }

.about-hours {
  flex: 0 1 300px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.about-hours h3 { color: var(--blue-dark); margin-bottom: 18px; font-size: 1.1rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
  color: var(--text-light);
}
.hours-row:last-child { border-bottom: none; }

/* Contact */
.contact { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.contact-icon { font-size: 1.8rem; margin-bottom: 12px; }
.contact-card h4 { color: var(--blue-dark); margin-bottom: 8px; font-size: 1rem; }
.contact-card p { color: var(--text-light); font-size: 0.92rem; }

.contact-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-cta .btn-primary, .contact-cta .btn-whatsapp { color: #fff; }
.contact-cta .btn-outline { border-color: var(--blue); color: var(--blue); }

/* Footer */
.site-footer {
  background: var(--blue-dark);
  color: #cfe0f5;
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 10px 20px 20px;
    gap: 4px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .hamburger { display: flex; }
  .topbar-hours { display: none; }
}

@media (max-width: 520px) {
  .hero-text h1 { font-size: 1.7rem; }
  .hero-art { display: none; }
  .contact-cta { flex-direction: column; align-items: stretch; }
  .contact-cta .btn { justify-content: center; }
  .ticker-label { padding: 10px 12px; font-size: 0.78rem; }
  .ticker-content { font-size: 0.8rem; }
}
