:root {
  --white: #ffffff;
  --black: #111111;
  --red: #e63946;
  --red-dark: #c92f3b;
  --gray: #f7f7f7;
  --gray-2: #ececec;
  --gray-3: #dcdcdc;
  --text-muted: #5f6368;
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  --radius: 18px;
  --container: 1180px;
  --transition: all 0.3s ease;
  --wa-green: #25d366;
  --wa-green-dark: #1ebe5d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

textarea {
  width: 100%;
  resize: vertical;
  min-height: 140px;
  padding: 14px 16px;
  border: 1px solid var(--gray-3);
  border-radius: 14px;
  outline: none;
}

textarea:focus {
  border-color: var(--red);
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  margin: 22px auto;
  background: #ffffff;
  border: 2px solid rgba(230, 57, 70, 0.22);
  border-radius: 26px;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.04),
    0 0 0 4px rgba(230, 57, 70, 0.05);
}

.light-section {
  background: #fff9f9;
  border-color: rgba(230, 57, 70, 0.26);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo {
  display: flex;          /* ADD */
  align-items: center;    /* ADD */
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-img {
  width: 35px;      /* size adjust kar sakta hai */
  height: 35px;
  margin-right: 8px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-weight: 600;
  color: var(--black);
  transition: var(--transition);
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 12px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray-2);
  background: var(--white);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  margin: 5px auto;
}

.hero {
  padding-top: 120px;
}

.hero-grid,
.contact-grid,
.footer-grid,
.lead-tool,
.cta-flex {
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.cta-flex h2 {
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.hero-text,
.section-heading p,
.panel-card p,
.feature-card p,
.service-card p,
.portfolio-card p,
.blog-card p,
.contact-card p,
.faq-answer p,
.testimonial-card p,
.muted,
.whatsapp-popup p,
.popup-subtext,
.form-success {
  color: var(--text-muted);
}

.eyebrow {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.hero-actions,
.stats-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  border: 1px solid var(--gray-2);
  background: var(--white);
  color: var(--black);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--wa-green-dark);
}

.panel-card,
.feature-card,
.service-card,
.portfolio-card,
.blog-card,
.contact-card,
.stat-card,
.faq-item,
.lead-card,
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-card,
.contact-card,
.lead-card {
  padding: 32px;
}

.feature-card,
.service-card,
.portfolio-card,
.blog-card,
.stat-card,
.testimonial-card {
  padding: 26px;
}

.feature-grid,
.services-grid,
.portfolio-grid,
.blog-grid {
  display: grid;
  gap: 22px;
}

.three-col,
.services-grid,
.portfolio-grid,
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.four-col {
  grid-template-columns: repeat(4, 1fr);
}

.contact-grid,
.footer-grid,
.lead-tool {
  grid-template-columns: repeat(2, 1fr);
}

.stats-row .stat-card {
  min-width: 160px;
}

.icon-box,
.tag,
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.icon-box,
.badge {
  background: rgba(230, 57, 70, 0.1);
  color: var(--red);
  padding: 8px 12px;
}

.tag {
  color: var(--red);
  background: rgba(230, 57, 70, 0.08);
  padding: 7px 12px;
}

.check-list li,
.panel-card ul li,
.dashboard ul li {
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.check-list li::before,
.panel-card ul li::before,
.dashboard ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
}

.text-link {
  color: var(--red);
  font-weight: 700;
}

.inline-link-wrap {
  margin-top: 28px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-btn {
  border: 1px solid var(--gray-2);
  background: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.testimonial-slider {
  display: flex;
  align-items: center;
  gap: 18px;
}

.testimonial-track {
  flex: 1;
}

.testimonial-card {
  display: none;
}

.testimonial-card.active {
  display: block;
}

.testimonial-card span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.slider-control {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gray-2);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: none;
  background: var(--white);
  text-align: left;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-strip {
  background: var(--black);
  color: var(--white);
}

.cta-flex {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

input,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-3);
  border-radius: 14px;
  font-size: 1rem;
  outline: none;
  background: var(--white);
}

input:focus,
select:focus {
  border-color: var(--red);
}

.error {
  color: var(--red);
  font-size: 0.85rem;
  display: block;
  margin-top: 6px;
  min-height: 16px;
}

.form-success {
  margin-top: 14px;
  font-weight: 600;
}

.dashboard {
  margin-top: 24px;
  padding: 20px;
  background: var(--gray);
  border-radius: 16px;
}

.hidden {
  display: none !important;
}

.full-width {
  width: 100%;
}

.site-footer {
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.85);
  padding: 44px 0;
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 12px;
}

.site-footer li {
  margin-bottom: 8px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--wa-green);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
  z-index: 999;
}

.whatsapp-float:hover {
  background: var(--wa-green-dark);
}

.whatsapp-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92%, 420px);
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 1001;
}

.whatsapp-popup h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: none;
  background: #f2f2f2;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
}

.popup-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.lead-popup {
  border: none;
  padding: 0;
  background: transparent;
  max-width: 540px;
  width: calc(100% - 24px);
}

.lead-popup::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.lead-popup-box {
  position: relative;
  background: #ffffff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.lead-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  background: #f3f3f3;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

.popup-subtext {
  margin-bottom: 18px;
}

#popupGoogleBtn {
  margin-top: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.7s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-grid,
  .three-col,
  .services-grid,
  .portfolio-grid,
  .blog-grid,
  .contact-grid,
  .footer-grid,
  .lead-tool,
  .cta-flex {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.open {
    display: flex;
  }

  .hero-grid,
  .three-col,
  .four-col,
  .services-grid,
  .portfolio-grid,
  .blog-grid,
  .contact-grid,
  .footer-grid,
  .lead-tool,
  .cta-flex {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .whatsapp-float {
    left: 16px;
    bottom: 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }

  .testimonial-slider {
    flex-direction: column;
    align-items: stretch;
  }
}