/* ============================================================
   Raj Kapoor Das — Main Stylesheet
   Brand Colors: Teal #21a7d0 | Navy #273c66 | Orange #ff5421 | Gold #F4BF00
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #475569;
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  color: #1e293b;
  line-height: 1.25;
  font-weight: 700;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { text-decoration: none; color: #21a7d0; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Container --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #21a7d0;
  color: #fff;
  border-color: #21a7d0;
}
.btn-primary:hover { background: #1996b8; border-color: #1996b8; color: #fff; }

.btn-outline {
  background: transparent;
  color: #21a7d0;
  border-color: #21a7d0;
}
.btn-outline:hover { background: #21a7d0; color: #fff; }

.btn-white {
  background: #fff;
  color: #1e293b;
  border-color: #fff;
}
.btn-white:hover { background: #f1f5f9; color: #1e293b; }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; color: #fff; }

.btn-call {
  background: #21a7d0;
  color: #fff;
  border-color: #21a7d0;
}
.btn-call:hover { background: #1996b8; border-color: #1996b8; color: #fff; }

/* --- Site Header --- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.site-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: -0.02em;
}
.site-logo span { color: #21a7d0; }

/* --- Nav List --- */
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-list > li > a {
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  transition: all 0.15s;
  display: block;
  white-space: nowrap;
}
.nav-list > li > a:hover { color: #21a7d0; background: #e7f6f9; }
.nav-list > li > a.active { color: #21a7d0; }

/* --- Dropdown --- */
.has-dropdown { position: relative; }

.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.65rem;
  opacity: 0.55;
  margin-left: 1px;
}

.dropdown-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  padding: 0.625rem;
  padding-top: 0.875rem;
  min-width: 200px;
  z-index: 999;
}
/* Invisible bridge fills the gap so cursor doesn't lose hover */
.dropdown-panel::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.has-dropdown:hover .dropdown-panel { display: block; }

.dropdown-panel a {
  display: block;
  padding: 0.5rem 0.875rem;
  color: #475569;
  font-size: 0.85rem;
  border-radius: 6px;
  transition: all 0.15s;
}
.dropdown-panel a:hover { color: #21a7d0; background: #e7f6f9; }

/* --- Mega Dropdown (Uttarakhand & India Cities) --- */
.mega-dropdown {
  min-width: 500px;
  left: auto;
  right: 0;
  padding: 0;
  overflow: hidden;
  border: none;
  box-shadow: 0 20px 60px rgba(15,23,42,0.18), 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 16px;
}

/* India Cities gets wider panel */
.has-dropdown:last-of-type .mega-dropdown,
.india-mega { min-width: 720px; right: 0; left: auto; }

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Divider between WD and SEO columns */
.mega-grid .mega-col:not(:last-child) {
  border-right: 1px solid #f1f5f9;
}

.mega-col {
  padding: 1rem 0.5rem 1rem;
}

.mega-col h6 {
  font-size: 0.68rem;
  font-weight: 800;
  color: #273c66;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.875rem 0.6rem;
  border-bottom: 2px solid #e0f2fe;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.mega-col h6.wd-head::before  { content: '🌐'; font-size: 0.85rem; }
.mega-col h6.seo-head::before { content: '📈'; font-size: 0.85rem; }

.mega-col a {
  display: flex;
  align-items: center;
  padding: 0.32rem 0.875rem;
  color: #475569;
  font-size: 0.82rem;
  border-radius: 6px;
  transition: all 0.15s;
  font-weight: 500;
  gap: 0.5rem;
}

.mega-col a::before {
  content: '→';
  font-size: 0.7rem;
  color: #21a7d0;
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
  transform: translateX(-4px);
}

.mega-col a:hover {
  color: #273c66;
  background: linear-gradient(90deg, #e0f2fe, #f0f9ff);
  font-weight: 600;
}

.mega-col a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* India Cities 4-col layout */
.mega-grid[style*="repeat(4"] {
  grid-template-columns: repeat(4, 1fr);
}
.mega-grid[style*="repeat(4"] .mega-col:nth-child(2) { border-right: 2px solid #273c66; }
.mega-grid[style*="repeat(4"] .mega-col:nth-child(3) { border-right: 1px solid #f1f5f9; }

/* Top banner inside India Cities dropdown */
.mega-dropdown-header {
  background: linear-gradient(135deg, #0f172a 0%, #273c66 60%, #1a6fa0 100%);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mega-dropdown-header span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mega-dropdown-header em {
  font-style: normal;
  color: #F4BF00;
  font-size: 0.75rem;
  font-weight: 600;
}

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  background: #f8fafc;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid #e2e8f0;
}

.hero-tag {
  display: inline-block;
  background: #e7f6f9;
  color: #21a7d0;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
  max-width: 680px;
}

.hero p {
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Stats --- */
.stats-section {
  padding: 3rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item { padding: 1.25rem; }

.stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: #21a7d0;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-text {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

/* --- Section Heading --- */
.section-head {
  margin-bottom: 2.5rem;
}
.section-head.centered { text-align: center; }
.section-head.centered p { margin-left: auto; margin-right: auto; }

.section-head h2 {
  font-size: 1.875rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.section-head p {
  color: #64748b;
  max-width: 520px;
  font-size: 0.975rem;
}

/* --- Services Section --- */
.services-section {
  padding: 4.5rem 0;
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: #a8dff0;
  box-shadow: 0 4px 20px rgba(37,99,235,0.07);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: #e7f6f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.service-card h3 {
  font-size: 1.075rem;
  margin-bottom: 0.625rem;
}

.service-card p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  color: #21a7d0;
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.2s;
}
.service-card:hover .read-more { gap: 0.55rem; }

/* --- About Section --- */
.about-section {
  padding: 4.5rem 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 1.875rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.about-content p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.75rem;
}

.badge {
  background: #e7f6f9;
  color: #21a7d0;
  padding: 0.35rem 0.875rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about-stat-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}

.about-stat-card .num {
  font-size: 2rem;
  font-weight: 800;
  color: #21a7d0;
  display: block;
  line-height: 1;
}

.about-stat-card .label {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.375rem;
}

/* --- Testimonials --- */
.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #273c66 0%, #1a6fa0 50%, #21a7d0 100%);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 2rem;
  font-size: 20rem;
  color: rgba(255,255,255,0.04);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonials-section .section-head h2,
.testimonials-section .section-head p {
  color: #fff;
}
.testimonials-section .section-head p { color: rgba(255,255,255,0.75); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 2.25rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.quote-mark {
  font-size: 3.5rem;
  color: #F4BF00;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 0.5rem;
}

.testimonial-card blockquote {
  color: rgba(255,255,255,0.9);
  font-size: 0.975rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F4BF00;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

/* --- Clients --- */
.clients-section {
  padding: 3rem 0;
  background: #fff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.clients-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.clients-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.client-name {
  font-weight: 600;
  color: #cbd5e1;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.client-name:hover { color: #94a3b8; }

/* --- CTA --- */
.cta-section {
  padding: 4.5rem 0;
  background: #273c66;
  text-align: center;
}
.cta-section h2 {
  color: #fff;
  font-size: 1.875rem;
  margin-bottom: 0.875rem;
}
.cta-section p {
  color: #94a3b8;
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
}

/* --- Site Footer --- */
/* Footer top bar */
/* ===== FOOTER ===== */
.footer-top-bar {
  background: linear-gradient(90deg, #F4BF00 0%, #e5a800 100%);
  padding: 0.9rem 0;
  text-align: center;
  font-size: 0.92rem;
  color: #1e293b;
  font-weight: 600;
}
.footer-top-bar a {
  color: #1e293b;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-top-bar a:hover { opacity: 0.8; }

.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #273c66, #21a7d0, #F4BF00, #21a7d0, #273c66);
}
.site-footer > .container {
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .site-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.footer-brand .logo-img {
  height: 48px !important;
  filter: none !important;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 270px;
  margin-bottom: 1.5rem;
  color: #64748b;
}
.footer-contact-info {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact-info p {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact-info a { color: #21a7d0; font-weight: 600; transition: color 0.2s; }
.footer-contact-info a:hover { color: #F4BF00; }

.footer-col h5 {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(33,167,208,0.5), transparent);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  color: #64748b;
  font-size: 0.83rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col ul li a::before {
  content: '›';
  color: #21a7d0;
  font-size: 1rem;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
}
.footer-col ul li a:hover {
  color: #e2e8f0;
  padding-left: 6px;
}
.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0;
}
.footer-bottom p { font-size: 0.78rem; color: #475569; }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a {
  color: #475569;
  font-size: 0.78rem;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #21a7d0; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: #f8fafc;
  padding: 3.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.page-hero h1 {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: #64748b;
  max-width: 600px;
  font-size: 0.975rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.825rem;
  color: #94a3b8;
}
.breadcrumb a { color: #94a3b8; transition: color 0.15s; }
.breadcrumb a:hover { color: #21a7d0; }
.breadcrumb .sep { color: #cbd5e1; }

/* --- Content Sections (inner pages) --- */
.content-section { padding: 4.5rem 0; }
.content-section.alt-bg { background: #f8fafc; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* --- Process List --- */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-item {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
}

.process-num {
  width: 36px;
  height: 36px;
  background: #e7f6f9;
  color: #21a7d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.process-text h4 {
  font-size: 0.975rem;
  margin-bottom: 0.3rem;
}
.process-text p {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

/* --- Benefits / Checklist --- */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #475569;
}
.benefit-item .check {
  color: #21a7d0;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* --- Info Boxes --- */
.info-box {
  background: #e7f6f9;
  border: 1px solid #a8dff0;
  border-radius: 10px;
  padding: 1.75rem;
}
.info-box h3 {
  font-size: 1.125rem;
  margin-bottom: 0.875rem;
  color: #0e7490;
}
.info-box p {
  font-size: 0.9rem;
  color: #0e7490;
  opacity: 0.85;
}

/* --- 4-col grid (smaller cards) --- */
.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.mini-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
}
.mini-card .icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.mini-card h4 { font-size: 0.9rem; margin-bottom: 0.375rem; }
.mini-card p { font-size: 0.825rem; color: #64748b; margin: 0; }

/* --- 3-col grid --- */
.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.625rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: #e7f6f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-details h4 {
  font-size: 0.875rem;
  color: #1e293b;
  margin-bottom: 0.25rem;
}
.contact-details p, .contact-details a {
  font-size: 0.9rem;
  color: #64748b;
}

.contact-form {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
}
.contact-form h3 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #1e293b;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #21a7d0;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- About Page --- */
.about-page-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}

.about-highlight {
  border-left: 3px solid #21a7d0;
  padding-left: 1.25rem;
  margin: 1.5rem 0;
}
.about-highlight p {
  font-size: 1.05rem;
  color: #1e293b;
  font-weight: 500;
  margin: 0;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.city-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .about-grid, .content-grid, .contact-grid, .about-page-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .four-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-list {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    overflow-y: auto;
    border-top: 1px solid #e2e8f0;
    gap: 0;
  }
  .nav-list.is-open { display: flex; }

  .nav-list > li > a {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
  }

  .has-dropdown > a::after { float: right; }

  .dropdown-panel,
  .mega-dropdown {
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 0 0.5rem 1rem;
    background: transparent;
    min-width: auto;
    border-radius: 0;
  }
  .has-dropdown:hover .dropdown-panel,
  .has-dropdown:hover .mega-dropdown { display: none; }
  .has-dropdown.is-open .dropdown-panel,
  .has-dropdown.is-open .mega-dropdown { display: block; }

  .mega-grid { grid-template-columns: 1fr !important; gap: 0; }
  /* Override inline style="grid-template-columns:repeat(4,1fr)" */
  .mega-grid[style*="repeat(4"] { grid-template-columns: 1fr !important; }
  .mega-grid[style*="repeat(4"] .mega-col { border-right: none !important; border-bottom: 1px solid #e2e8f0; }
  .mega-dropdown-header { display: none; }
  .mega-col h6 { padding: 0.5rem 0.875rem 0.25rem; }

  .hero h1 { font-size: 1.875rem; }
  .hero p { font-size: 0.975rem; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .services-grid,
  .testimonials-grid,
  .three-grid { grid-template-columns: 1fr; }

  .about-stats { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  .page-hero h1 { font-size: 1.625rem; }
  .section-head h2 { font-size: 1.5rem; }
  .cta-section h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 0; }
  .hero h1 { font-size: 1.625rem; }
  .stat-num { font-size: 1.875rem; }
  .four-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Dark Header — Brand Colors
   ============================================================ */

.site-header {
  background: #273c66;
  border-bottom: none;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

/* Logo image */
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}


/* Text logo fallback (if img not used) */
.site-logo {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.site-logo span { color: #F4BF00; }

/* Nav links — light on dark */
.nav-list > li > a {
  color: rgba(255,255,255,0.82);
}
.nav-list > li > a:hover {
  color: #fff;
  background: rgba(255,255,255,0.09);
}
.nav-list > li > a.active { color: #F4BF00; }

/* Dropdown on dark header */
.dropdown-panel {
  background: #1e2e50;
  border-color: rgba(255,255,255,0.12);
}
.dropdown-panel a { color: rgba(255,255,255,0.82); }
.dropdown-panel a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.mega-col h6 { color: rgba(255,255,255,0.38); }

/* Hamburger — white lines */
.hamburger-line { background: rgba(255,255,255,0.88); }

/* Mobile nav on dark */
@media (max-width: 768px) {
  .nav-list {
    background: #1e2e50;
    border-top-color: rgba(255,255,255,0.1);
  }
  .nav-list > li > a { color: rgba(255,255,255,0.85); }
  .dropdown-panel, .mega-dropdown {
    background: transparent;
    border: none;
  }
}

/* ============================================================
   Orange CTA Button
   ============================================================ */
.btn-orange {
  background: #ff5421;
  color: #fff;
  border-color: #ff5421;
}
.btn-orange:hover { background: #e04518; border-color: #e04518; color: #fff; }

/* Hero call button — orange */
.hero-actions .btn-primary {
  background: #ff5421;
  border-color: #ff5421;
}
.hero-actions .btn-primary:hover { background: #e04518; border-color: #e04518; }

/* CTA section white button */
.cta-section .btn-white {
  background: #ff5421;
  color: #fff;
  border-color: #ff5421;
}
.cta-section .btn-white:hover { background: #e04518; border-color: #e04518; }

/* ============================================================
   Raj's Photo — About Section
   ============================================================ */
.raj-photo-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.raj-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: 12px;
  filter: grayscale(15%);
  transition: filter 0.3s;
}
.raj-photo-wrap:hover img { filter: grayscale(0%); }

.raj-photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: #273c66;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
}
.raj-photo-badge span {
  color: #F4BF00;
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

/* About section with photo grid */
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-photo-grid { grid-template-columns: 1fr; gap: 2rem; }
  .raj-photo-wrap { max-height: 300px; }
}

/* ============================================================
   Stat numbers — teal accent
   ============================================================ */
.stat-num { color: #21a7d0; }
.about-stat-card .num { color: #21a7d0; }

/* Hero tag — teal pill */
.hero-tag {
  background: rgba(33,167,208,0.12);
  color: #21a7d0;
  border: 1px solid rgba(33,167,208,0.25);
}

/* Service card hover — teal */
.service-card:hover { border-color: #21a7d0; }

/* Info box — teal tint */
.info-box {
  background: #e7f6f9;
  border-color: #a8dff0;
}
.info-box h3 { color: #0e7490; }
.info-box p { color: #0e7490; opacity: 0.85; }

/* Read more links */
.read-more { color: #21a7d0; }

/* ============================================================
   Footer brand updates
   ============================================================ */
.footer-brand .site-logo { color: #fff; }
.footer-brand .site-logo span { color: #F4BF00; }
.footer-brand .logo-img { height: 38px; }

/* ============================================================
   Homepage Hero — Dark Navy Wave Background
   ============================================================ */
.hero-home {
  background: url('../images/hero-bg.png') center bottom / cover no-repeat, #0d1b4b;
  padding: 5.5rem 0 8rem;
  border-bottom: none;
}

.hero-home .hero-tag {
  background: rgba(244,191,0,0.15);
  color: #F4BF00;
  border-color: rgba(244,191,0,0.3);
}

.hero-home h1 {
  color: #fff;
  font-size: 3.25rem;
}

.hero-home p {
  color: rgba(255,255,255,0.80);
}

.hero-home .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
}
.hero-home .btn-outline:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
}

/* Hero 2-column layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text { max-width: 560px; }
.hero-text .hero-tag { margin-bottom: 1.25rem; }
.hero-text h1 { max-width: 100%; }
.hero-text p  { max-width: 100%; }

/* Slider box */
.hero-slider-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}

/* Decorative glow circle behind images */
.hero-slider-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33,167,208,0.18) 0%, rgba(33,167,208,0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* Individual slides */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  max-width: 88%;
  max-height: 300px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.28));
}

/* Dot indicators */
.hero-slider-dots {
  position: absolute;
  bottom: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.hdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.30);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hdot.active {
  background: #F4BF00;
  transform: scale(1.35);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-slider-box { min-height: 260px; margin-top: 1rem; }
  .hero-slide img { max-height: 220px; }
}
@media (max-width: 768px) {
  .hero-home { padding: 3.5rem 0 5.5rem; }
  .hero-home h1 { font-size: 2rem; }
}
@media (max-width: 480px) {
  .hero-home { padding: 2.75rem 0 4.5rem; }
  .hero-home h1 { font-size: 1.75rem; }
  .hero-slider-box { min-height: 220px; }
  .hero-slide img { max-height: 180px; }
}

/* ============================================================
   Homepage Stats — Larger Numbers
   ============================================================ */
.stats-home {
  background: linear-gradient(135deg, #273c66 0%, #21a7d0 100%);
  border-bottom: none;
  padding: 3.5rem 0;
}
.stats-home .stats-row {
  gap: 0;
}
.stats-home .stat-item {
  border-right: 1px solid rgba(255,255,255,0.15);
  padding: 2rem 1.5rem;
  transition: background 0.2s;
}
.stats-home .stat-item:last-child { border-right: none; }
.stats-home .stat-item:hover { background: rgba(255,255,255,0.07); border-radius: 12px; }
.stat-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-plus {
  font-size: 2rem;
  font-weight: 800;
  color: #F4BF00;
  line-height: 1;
}
.stats-home .stat-num {
  font-size: 2.75rem;
  color: #fff;
  display: inline;
}
.stats-home .stat-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  display: block;
  margin-top: 0.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   Colored Service Cards — Homepage
   ============================================================ */
.services-home {
  background: #f8fafc;
  padding: 5rem 0;
  position: relative;
}
.services-home .section-head {
  margin-bottom: 3rem;
}
.services-home .section-head h2 {
  font-size: 2.4rem;
  background: linear-gradient(90deg, #273c66, #21a7d0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.services-home .section-head h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #21a7d0, #F4BF00);
  border-radius: 4px;
  margin: 0.75rem auto 0;
}
.services-home .section-head p {
  color: #64748b;
  font-size: 1rem;
  max-width: 780px;
}

.services-home .services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.svc-card {
  border-radius: 18px;
  padding: 0 1.5rem 2rem;
  text-align: center;
  border: none;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  display: block;
  height: 6px;
  margin: 0 -1.5rem 1.75rem;
  background: linear-gradient(90deg, #21a7d0, #273c66);
  border-radius: 18px 18px 0 0;
}
.svc-yellow::before { background: linear-gradient(90deg, #f6c90e, #f39c12); }
.svc-pink::before   { background: linear-gradient(90deg, #ff6b6b, #ee5a24); }
.svc-blue::before   { background: linear-gradient(90deg, #21a7d0, #0984e3); }
.svc-purple::before { background: linear-gradient(90deg, #a29bfe, #6c5ce7); }
.svc-green::before  { background: linear-gradient(90deg, #00b894, #00cec9); }
.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.13);
}

.svc-img {
  width: 100%;
  max-width: 140px;
  height: 115px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
}

.svc-card h3 {
  font-size: 1.0rem;
  margin-bottom: 0.625rem;
  color: #1e293b;
}
.svc-card p {
  font-size: 0.855rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.svc-card .read-more {
  justify-content: center;
  font-size: 0.85rem;
}

.svc-yellow { background: #fdfcdb; }
.svc-pink   { background: #fbe7e4; }
.svc-blue   { background: #e7f6fa; }
.svc-purple { background: #f3e9fe; }

@media (max-width: 900px) {
  .services-home .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-home .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Internal Page — Sidebar + Main Layout
   ============================================================ */
.page-sidebar-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Profile Card (left sidebar) */
.profile-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: sticky;
  top: 80px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.profile-photo {
  width: 150px;
  height: 160px;
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto 1.1rem;
  border: 3px solid #e2e8f0;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s;
}
.profile-card:hover .profile-photo img { filter: grayscale(0%); }
.profile-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.25rem;
}
.profile-title {
  font-size: 0.825rem;
  color: #21a7d0;
  font-weight: 600;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.profile-contact-item {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}
.profile-contact-item a { color: #64748b; }
.profile-contact-item a:hover { color: #21a7d0; }
.profile-social {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}
.profile-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}
.profile-social a:hover { background: #273c66; color: #fff; }

/* Page Stats Row */
.page-stats-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 0.875rem 0 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f1f5f9;
}
.page-stat {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
}
.page-stat span { color: #1e293b; }
.star-rating { color: #F4BF00; letter-spacing: 1px; }

/* Skills bars */
.skills-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 2rem 0 1rem;
}
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem 2.5rem;
}
.skill-item {}
.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}
.skill-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 100px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, #21a7d0 0%, #273c66 100%);
  border-radius: 100px;
}

/* Fields section */
.fields-section {
  padding: 3rem 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.fields-section h2 {
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}
.fields-section p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 860px;
  margin: 0;
}

/* Services dark grid */
.services-dark-section {
  padding: 4rem 0;
  background: #1a2540;
}
.services-dark-section h2 {
  color: #fff;
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
.services-dark-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-dark-card {
  background: #273c66;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-dark-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.svc-dark-card .card-img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
}
.svc-dark-card .card-body { padding: 1.375rem; }
.svc-dark-card h3 {
  color: #fff;
  font-size: 1.025rem;
  margin-bottom: 0.625rem;
}
.svc-dark-card p {
  color: rgba(255,255,255,0.62);
  font-size: 0.855rem;
  line-height: 1.65;
  margin: 0;
}
.svc-dark-card .card-link {
  display: inline-block;
  margin-top: 0.875rem;
  font-size: 0.825rem;
  color: #21a7d0;
  font-weight: 600;
}

/* Why Choose Us */
.why-split-section {
  padding: 4.5rem 0;
  background: #fff;
}
.why-split-section .container {
  overflow: visible;
}
.why-split-grid {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.why-img-col {
  flex: 0 0 46%;
  position: relative;
  overflow: visible;
}
.why-img-col > img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  filter: brightness(0.52);
}
.why-overlay-boxes {
  position: absolute;
  top: 50%;
  right: -118px;
  transform: translateY(-50%);
  width: 235px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}
.why-overlay-box {
  width: 100%;
  padding: 1.2rem 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  color: #fff;
}
.why-overlay-box:nth-child(1) { background: #ff5421; }
.why-overlay-box:nth-child(2) { background: #273c66; }
.why-overlay-box:nth-child(3) { background: #1a2540; }
.why-icon-svg { width: 44px; height: 44px; flex-shrink: 0; }
.why-box-label { font-size: 0.95rem; font-weight: 700; }
.why-content-col {
  flex: 1;
  padding: 1.5rem 2rem 1.5rem 8.5rem;
  background: #fff;
}
.why-content-col h2 {
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  color: #1e293b;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.why-list li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.55;
}
.why-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #21a7d0;
  font-weight: 900;
}
.why-tagline {
  font-style: italic;
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 0;
}
@media (max-width: 900px) {
  .why-split-grid {
    flex-direction: column;
    gap: 0;
  }
  .why-img-col {
    flex: none;
    width: 100%;
    overflow: hidden;
  }
  .why-img-col > img { height: 260px; border-radius: 12px 12px 0 0; }
  .why-overlay-boxes {
    position: absolute;
    top: auto;
    bottom: -60px;
    right: 1rem;
    transform: none;
    flex-direction: row;
    width: auto;
    gap: 8px;
  }
  .why-overlay-box { min-width: 85px; padding: 0.7rem 0.5rem; }
  .why-icon-svg { width: 30px; height: 30px; }
  .why-content-col { padding: 4.5rem 1.5rem 2rem; width: 100%; }
}

/* ============================================================
   Homepage — 5-card Services Grid (matches live site)
   ============================================================ */
.home-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.home-services-grid .svc-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 260px;
}

.svc-green { background: #e4f9ed; }

@media (max-width: 900px) {
  .home-services-grid .svc-card { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 480px) {
  .home-services-grid .svc-card { flex: 0 0 100%; }
}

/* ============================================================
   Info Blocks Section (What is Digital Marketing / Designing)
   Matches live site layout — alternating image + text rows
   ============================================================ */
.info-blocks-section {
  padding: 4.5rem 0 4.5rem;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.info-block-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.info-block-row:first-child { padding-top: 0; }
.info-block-row:last-child { border-bottom: none; padding-bottom: 0; }

.info-block-alt {
  grid-template-columns: 1fr 160px;
}
.info-block-alt .info-block-content { order: 1; }
.info-block-alt .info-block-icon    { order: 2; }

.info-block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: #e7f6f9;
  border-radius: 50%;
  margin: 0 auto;
  flex-shrink: 0;
}
.info-block-icon svg {
  width: 56px;
  height: 56px;
}

.info-block-content h2 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}
.info-block-content p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.info-block-content .read-more {
  font-size: 0.875rem;
  font-weight: 600;
  color: #21a7d0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.info-block-content .read-more:hover { gap: 0.5rem; }

@media (max-width: 768px) {
  .info-block-row,
  .info-block-alt {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  .info-block-alt .info-block-content { order: 2; }
  .info-block-alt .info-block-icon    { order: 1; }
  .info-block-content h2 { font-size: 1.25rem; }
}

/* --- Floating WhatsApp & Call Buttons --- */
.float-btns {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 9999;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem 0.6rem 0.6rem;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(0,0,0,0.25); color: #fff; }
.float-btn svg { width: 36px; height: 36px; flex-shrink: 0; }
.float-wa { background: #25D366; }
.float-call { background: #21a7d0; }

/* --- Services Slider (bottom 2 cards) --- */
.svc-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.svc-carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.svc-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}
.svc-carousel-item {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
}
.svc-arrow {
  background: #21a7d0;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(33,167,208,0.3);
}
.svc-arrow:hover { background: #273c66; }
@media (max-width: 768px) {
  .svc-carousel-item { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 480px) {
  .svc-carousel-item { flex: 0 0 100%; }
}

/* --- Info Carousel --- */
.info-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.info-carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.info-carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}
.info-carousel-item {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 0;
}
.info-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.info-card-icon {
  width: 80px;
  height: 80px;
  background: #e7f6f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.info-card-icon svg { width: 40px; height: 40px; }
.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #1e293b;
}
.info-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.info-arrow {
  background: #21a7d0;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(33,167,208,0.3);
}
.info-arrow:hover { background: #273c66; }
@media (max-width: 768px) {
  .info-carousel-item { flex: 0 0 calc(50% - 0.75rem); }
}
@media (max-width: 480px) {
  .info-carousel-item { flex: 0 0 100%; }
}

/* --- Footer Partners --- */
.footer-partners {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  background: rgba(255,255,255,0.015);
  margin: 0 -1.5rem;
  padding: 2rem 1.5rem;
}
.footer-partners h5 {
  color: #475569;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}
.footer-partners-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.footer-partners-links a {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  transition: all 0.25s;
  background: rgba(255,255,255,0.03);
}
.footer-partners-links a:hover {
  color: #fff;
  border-color: #F4BF00;
  background: rgba(244,191,0,0.1);
  transform: translateY(-2px);
}

/* --- SEO Highlight Section --- */
.seo-highlight-section {
  padding: 5rem 0;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}
.seo-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.seo-highlight-tag {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 1rem;
}
.seo-highlight-left h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.15;
  margin-bottom: 1.75rem;
}
.seo-highlight-right p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .seo-highlight-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   MOBILE RESPONSIVE — Global Fixes
   ============================================================ */

/* Prevent horizontal scroll on all pages */
html, body { overflow-x: hidden; max-width: 100%; }
*, *::before, *::after { box-sizing: border-box; }
.container { width: 100%; }

/* Grid items must allow shrinking below min-content */
.stat-item, .testimonial-card, .svc-card, .info-card,
.footer-col, .mega-col { min-width: 0; }

/* ── Pricing Cards (dm-packages) ─────────────────────────────
   City pages use inline grid repeat(3,1fr) — override here    */
@media (max-width: 900px) {
  .dm-packages [style*="grid-template-columns:repeat(3,1fr)"],
  .dm-packages [style*="grid-template-columns: repeat(3,1fr)"],
  .dm-packages [style*="grid-template-columns:repeat(3, 1fr)"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.25rem !important;
  }
}
@media (max-width: 580px) {
  .dm-packages [style*="grid-template-columns:repeat(3,1fr)"],
  .dm-packages [style*="grid-template-columns: repeat(3,1fr)"],
  .dm-packages [style*="grid-template-columns:repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .dm-packages { padding: 3rem 0 !important; }
}

/* ── WD Hero ─────────────────────────────────────────────────*/
@media (max-width: 480px) {
  .wd-hero { padding: 2.5rem 0 2rem !important; }
  .wd-hero h1 { font-size: 1.6rem !important; line-height: 1.25 !important; }
  .wd-hero p  { font-size: 0.9rem !important; }
  .wd-hero-btns { flex-direction: column !important; align-items: stretch !important; }
  .wd-hero-btns a { text-align: center !important; }
}

/* ── Profile grid sidebar ────────────────────────────────────*/
@media (max-width: 900px) {
  .wd-profile-grid { grid-template-columns: 1fr !important; }
  .wd-profile-card { position: static !important; }
}

/* ── Why section ─────────────────────────────────────────────*/
@media (max-width: 768px) {
  .wd-why-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .wd-why-grid img { height: 220px !important; object-fit: cover !important; border-radius: 10px !important; }
  .wd-why { padding: 3rem 0 !important; }
}

/* ── Cities grid ─────────────────────────────────────────────*/
@media (max-width: 480px) {
  .wd-cities-grid { grid-template-columns: 1fr !important; }
}

/* ── CTA buttons ─────────────────────────────────────────────*/
@media (max-width: 480px) {
  .wd-cta-btns { flex-direction: column !important; align-items: stretch !important; }
  .wd-cta-btns a { text-align: center !important; }
  .wd-cta h2 { font-size: 1.5rem !important; }
  .wd-cta { padding: 3rem 0 !important; }
}

/* ── FAQ accordion ───────────────────────────────────────────*/
@media (max-width: 480px) {
  .wd-faq-q { font-size: 0.88rem !important; padding: 1rem !important; }
  .wd-faq-a { font-size: 0.84rem !important; padding: 0 1rem 1rem !important; }
}

/* ── Floating WhatsApp & Call buttons ────────────────────────*/
@media (max-width: 480px) {
  .float-btn span { display: none; }
  .float-btn { padding: 0.6rem !important; border-radius: 50% !important; }
  .float-btns { bottom: 1rem; right: 0.75rem; gap: 0.5rem; }
}

/* ── Stats section mobile ────────────────────────────────────*/
@media (max-width: 480px) {
  .stats-home .stat-item { padding: 1rem 0.5rem; }
  .stats-home .stat-num  { font-size: 1.75rem; }
  .stats-home .stat-plus { font-size: 1.75rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Carousels: hide arrows on mobile, full-width items ──────*/
@media (max-width: 480px) {
  .svc-arrow, .info-arrow { display: none !important; }
  .svc-carousel-viewport,
  .info-carousel-viewport { width: 100%; }
  .svc-carousel-item { flex: 0 0 100% !important; }
  .info-carousel-item { flex: 0 0 100% !important; }
}

/* ── Page hero (city pages) ──────────────────────────────────*/
@media (max-width: 480px) {
  .page-hero { padding: 2.5rem 0 !important; }
  .page-hero h1 { font-size: 1.4rem !important; line-height: 1.25 !important; }
}

/* ── Stat cards ──────────────────────────────────────────────*/
@media (max-width: 480px) {
  .wd-stat-cards { grid-template-columns: 1fr 1fr !important; gap: 0.6rem !important; }
  .wd-stat-card { padding: 0.875rem !important; }
  .wd-stat-num { font-size: 1.4rem !important; }
}

/* ── Section headings ────────────────────────────────────────*/
@media (max-width: 480px) {
  .wd-section-title { font-size: 1.5rem !important; }
  .wd-content h2 { font-size: 1.4rem !important; }
  .wd-content h3 { font-size: 1rem !important; }
}

/* ── Footer top bar ──────────────────────────────────────────*/
@media (max-width: 480px) {
  .footer-top-bar p { font-size: 0.82rem; flex-direction: column; gap: 0.5rem; }
  .footer-top-bar { padding: 0.75rem 0; }
}

/* ── Table / overflow content ────────────────────────────────*/
table { width: 100%; overflow-x: auto; display: block; }
img   { max-width: 100%; height: auto; }

/* ── Back to Top ─────────────────────────────────────────────*/
#btt {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #273c66;
  color: #fff;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.22);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
  transition: background 0.2s, transform 0.2s, opacity 0.3s;
  opacity: 0;
  line-height: 1;
}
#btt.visible { display: flex; opacity: 1; }
#btt:hover { background: #21a7d0; transform: translateY(-3px); }
@media (max-width: 480px) {
  #btt { bottom: 4.5rem; right: 0.75rem; width: 40px; height: 40px; font-size: 1.2rem; }
}
