/* ============ RESET & BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0d2b4e;
  --navy-dark: #091c36;
  --gold: #f5a800;
  --gold-dark: #d99400;
  --red: #ec1a23;
  --text-dark: #22303f;
  --text-grey: #5b6b7b;
  --bg-light: #f5f7fa;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 6px 24px rgba(13,43,78,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

.section { padding: 70px 0; }

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); }
.btn-whatsapp { background: #25D366; color: #fff; margin-top: 18px; }
.btn-whatsapp:hover { background: #1ebc59; }

.center-btn { text-align: center; margin-top: 30px; }

/* ============ TOP BAR ============ */
.topbar {
  background: var(--navy-dark);
  color: #d7e0ea;
  font-size: 0.78rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-inner span { margin-right: 20px; }
.topbar-inner i { color: var(--gold); margin-right: 6px; }
.topbar-right { display: flex; align-items: center; }
.socials { margin-right: 0 !important; display: flex; gap: 10px; }
.socials a {
  width: 24px; height: 24px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.7rem;
  transition: background 0.2s;
}
.socials a:hover { background: var(--gold); color: var(--navy-dark); }

/* ============ HEADER ============ */
.site-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-title { font-weight: 800; font-size: 1.15rem; color: var(--navy); letter-spacing: 1px; }
.logo-sub { font-size: 0.62rem; font-weight: 600; color: var(--text-grey); letter-spacing: 1px; }
.logo-tag { font-size: 0.6rem; color: var(--gold-dark); font-style: italic; }

.main-nav {
  display: flex;
  gap: 26px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.4px;
  padding: 8px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-nav a.active,
.main-nav a:hover { color: var(--gold-dark); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
}
.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 6px;
  min-width: 220px;
  padding: 10px 0;
  z-index: 50;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown a {
  padding: 10px 18px;
  display: block;
  font-weight: 500;
  color: var(--text-dark);
}
.dropdown a:hover { background: var(--bg-light); color: var(--gold-dark); }

.header-call {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  padding: 10px 18px;
  border-radius: 6px;
  flex-shrink: 0;
}
.header-call i { font-size: 1.3rem; color: var(--navy-dark); }
.header-call div { display: flex; flex-direction: column; line-height: 1.25; }
.call-num { font-weight: 700; color: var(--navy-dark); font-size: 0.9rem; }
.call-label { font-size: 0.65rem; color: var(--navy-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}
.hamburger span { width: 100%; height: 3px; background: var(--navy); border-radius: 2px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
}
.hero-slider { height: 100%; position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(9,28,54,0.88) 0%, rgba(9,28,54,0.55) 55%, rgba(9,28,54,0.15) 100%);
}
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 620px; }
.hero-eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-content h1 span { color: var(--gold); }
.hero-hindi {
  font-size: 0.95rem;
  color: #dbe4ef;
  margin-bottom: 18px;
  max-width: 520px;
}
.hero-features {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-size: 0.82rem;
  font-weight: 500;
}
.hero-features i { color: var(--gold); margin-right: 6px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  transition: background 0.2s;
}
.hero-arrow:hover { background: var(--gold); color: var(--navy-dark); }
.hero-arrow-left { left: 25px; }
.hero-arrow-right { right: 25px; }

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s;
}
.hero-dots .dot.active { background: var(--gold); }

/* ============ SERVICES ============ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
  text-align: center;
}
.service-card:hover { transform: translateY(-6px); }
.service-img { height: 120px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-icon {
  width: 46px; height: 46px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: -23px auto 0;
  position: relative;
  border: 3px solid #fff;
  font-size: 1.1rem;
}
.service-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  padding: 14px 10px 18px;
}

/* ============ PROJECTS ============ */
.projects { background: var(--bg-light); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.project-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.project-img { height: 150px; overflow: hidden; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.project-card:hover .project-img img { transform: scale(1.08); }
.project-info { padding: 14px 16px; }
.project-info h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.project-info p { font-size: 0.75rem; color: var(--text-grey); }

/* ============ WHY CHOOSE US ============ */
.why { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-top: 20px;
}
.why-card {
  border: 1px solid #e6ebf1;
  border-radius: var(--radius);
  padding: 22px 12px;
  text-align: center;
  transition: all 0.25s ease;
}
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.why-card i { font-size: 1.7rem; color: var(--navy); margin-bottom: 12px; }
.why-card h4 { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }

/* ============ STATS ============ */
.stats { background: var(--navy-dark); padding: 40px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}
.stat-item { color: #fff; border-right: 1px solid rgba(255,255,255,0.12); padding: 10px; }
.stat-item:last-child { border-right: none; }
.stat-item i { font-size: 1.6rem; color: var(--gold); margin-bottom: 8px; display: block; }
.stat-item .stat-num { font-size: 1.9rem; font-weight: 800; color: var(--gold); display: block; }
.stat-item .stat-label { font-size: 0.78rem; color: #c9d4e0; }

/* ============ CLIENTS ============ */
.clients { background: var(--bg-light); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.client-logo {
  background: #fff;
  border-radius: var(--radius);
  height: 80px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
  text-align: center;
  padding: 10px;
}

/* ============ TESTIMONIALS ============ */
.testimonials { background: #fff; }
.testimonial-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 800px;
  margin: 20px auto 0;
}
.testimonial-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 34px 40px;
  text-align: center;
  flex: 1;
  position: relative;
}
.quote-icon {
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: -50px auto 16px;
  font-size: 1.1rem;
}
.testimonial-text { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 14px; }
.testimonial-author { font-weight: 700; color: var(--navy); font-size: 0.85rem; }
.test-arrow {
  width: 40px; height: 40px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.test-arrow:hover { background: var(--gold); color: var(--navy-dark); }
.testimonials .hero-dots { position: static; transform: none; justify-content: center; margin-top: 24px; }
.testimonials .hero-dots .dot { background: #cdd6e0; }
.testimonials .hero-dots .dot.active { background: var(--gold); }

/* ============ ENQUIRY FORM ============ */
.enquiry { background: var(--navy-dark); padding: 60px 0; }
.enquiry-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.enquiry-left {
  background: var(--navy);
  color: #fff;
  padding: 40px 32px;
}
.enquiry-left h3 { font-size: 1.5rem; font-weight: 800; color: var(--gold); margin-bottom: 12px; }
.enquiry-left p { font-size: 0.88rem; color: #cdd9e6; margin-bottom: 26px; }
.enquiry-phones { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.enquiry-phones i { font-size: 1.4rem; color: var(--gold); }
.enquiry-phones div { display: flex; flex-direction: column; font-weight: 600; }

.enquiry-form { padding: 40px 32px; }
.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dde3ea;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--text-dark);
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.enquiry-form textarea { width: 100%; margin-bottom: 18px; resize: vertical; }
.form-submit-row { text-align: right; }
.form-msg { margin-top: 12px; font-size: 0.85rem; color: var(--navy); font-weight: 600; }

/* ============ FOOTER ============ */
.site-footer { background: var(--navy-dark); color: #c9d4e0; padding-top: 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 30px;
  padding-bottom: 40px;
}
.footer-logo { margin-bottom: 16px; }
.footer-col p { font-size: 0.82rem; line-height: 1.7; color: #a9b8ca; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.83rem; color: #a9b8ca; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a i { color: var(--gold); font-size: 0.7rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.83rem; color: #a9b8ca; }
.contact-list li i { color: var(--gold); margin-top: 3px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--gold); color: var(--navy-dark); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: #8fa0b5;
}
.footer-legal a:hover { color: var(--gold); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  z-index: 200;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .stat-item:nth-child(3) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px 20px;
    box-shadow: var(--shadow);
    display: none;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .dropdown { position: static; box-shadow: none; padding-left: 14px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .header-call { display: none; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 2rem; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar-left { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2n) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { height: 640px; }
  .hero-content h1 { font-size: 1.6rem; }
  .testimonial-wrap { flex-direction: column; }
}
