/* =====================================
   🔷 Global Styles
===================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
}

/* =====================================
   🔷 HEADER SECTION
===================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;         /* 👈 Yeh line add karo */
  width: 100%;
  z-index: 9999;
  background: #fff;
  padding: 4px 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.main-header .container {
  max-width: 1300px;
  margin: 0 auto;         /* 👈 Yeh sahi hai */
  padding: 6px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 41px;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
}
.nav-menu li a {
  text-decoration: none;
  color: #001a44;
  font-weight: 600;
  font-size: 16px;
  text-shadow: 0 0.3px 0.3px #888;
}
.call-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone {
  font-weight: bold;
  color: #ff3300;
}
.call-btn {
  border: 1.5px solid #ff3300;
  padding: 6px 12px;
  border-radius: 2px;
  color: #ff3300;
  font-weight: 500;
  text-decoration: none;
}
.nav-mobile {
  display: none;
  align-items: center;
  gap: 15px;
}
.call-now {
  background: #ff3d00;
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
  margin-right: 10px;
  white-space: nowrap;
}
.hamburger {
  font-size: 24px;
  cursor: pointer;
}
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  padding: 60px 20px;
  transition: all 0.3s ease;
  z-index: 9999;
}
.sidebar.active {
  right: 0;
}
.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 30px;
}
.close-btn {
  font-size: 24px;
  cursor: pointer;
}
.sidebar ul {
  list-style: none;
}
.sidebar ul li {
  margin-bottom: 20px;
}
.sidebar ul li a {
  text-decoration: none;
  color: #001a44;
  font-weight: 600;
}

/* =====================================
   🔷 HERO SECTION
===================================== */
.hero {
  background-color: #fefeff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.hero-text {
  flex: 1;
  min-width: 280px;
}
.rating {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating img {
  width: 24px;
  height: 24px;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #00113b;
  margin-bottom: 20px;
}
.highlight {
  color: #ff3d00;
}
.subtext {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}
.btn.red {
  background: #ff3d00;
  color: #fff;
}
.btn.dark {
  background: #001133;
  color: #fff;
}
.hero-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}
.hero-image img {
  max-width: 580px;
  width: 100%;
}

/* =====================================
   🔷 SERVICES SECTION
===================================== */
.our-services {
  background: #f4f8ff;
  padding: 60px 15px;
  text-align: center;
}
.our-services .container {
  max-width: 1200px;
  margin: auto;
}
.services-heading {
  font-size: 36px;
  color: #001133;
  font-weight: 700;
  margin-bottom: 10px;
}
.services-heading span {
  color: #ff3d00;
}
.services-subtext {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-card img {
  height: 60px;
  margin-bottom: 20px;
}
.service-card h4 {
  font-size: 18px;
  color: #001133;
  margin-bottom: 10px;
  font-weight: 700;
}
.service-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* =====================================
   🔷 RESPONSIVE FOR MOBILE
===================================== */
/* ===== MOBILE VIEW (max-width: 768px) ===== */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: flex;
  }

  .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo {
    flex: 1;
  }

  .call-now {
    flex: 1;
    text-align: center;
  }

  .hamburger {
    flex: 1;
    text-align: right;
  }

  .hero-image {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .background-shape.shape1,
  .background-shape.shape2 {
    display: none !important;
  }

  .hero {
    padding-bottom: 30px !important;
    margin-bottom: 5px !important;
  }

  .hero-container {
    gap: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* =====================================
/* 🔷 REPUTATION SECTION
===================================== */
.reputation-section {
  padding: 80px 15px;
  background-color: #fff;
}

.reputation-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.reputation-left {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.reputation-left img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.reputation-right {
  flex: 1;
  min-width: 300px;
}

.reputation-right h2 {
  font-size: 36px;
  color: #001133;
  margin-bottom: 20px;
  line-height: 1.4;
}

.reputation-right h2 span {
  color: #ff3d00;
}

.reputation-right p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.reputation-right ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.reputation-right ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.reputation-right li .icon {
  font-size: 20px;
  color: #ff3d00;
  margin-top: 0; /* 👈 यह ज़रूरी है मोबाइल में आइकन सीधा रखने के लिए */
  line-height: 1;
}

.reputation-right li h4 {
  font-size: 18px;
  color: #001133;
  margin-bottom: 5px;
  font-weight: 700;
}

.reputation-right li p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #ff3d00;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: #cc2f00;
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .reputation-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .reputation-right ul li {
    flex-direction: row; /* 👈 आइकन और टेक्स्ट एक लाइन में */
    align-items: center;
    text-align: left;
    gap: 10px;
  }

  .reputation-right li .icon {
    margin-top: 0 !important; /* 👈 ऊपर से हटाओ */
    font-size: 20px;
  }

  .reputation-right li h4,
  .reputation-right li p {
    text-align: left;
  }

  .reputation-right ul {
    margin: 0 auto;
    max-width: 90%;
  }
}


/* =====================================
   🔷 PROTECT REPUTATION SECTION
===================================== */
.protect-reputation-section {
  background: #f1f6fe;
  padding: 80px 15px;
}

.protect-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.protect-left {
  flex: 1;
  min-width: 300px;
}

.protect-left h2 {
  font-size: 36px;
  color: #001133;
  margin-bottom: 20px;
}

.protect-left h2 span {
  color: #ff3d00;
}

.protect-left p {
  font-size: 16px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

.protect-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.protect-points li {
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.5;
}

.read-more-btn {
  display: inline-block;
  background: #ff3d00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: #cc2f00;
}

/* === Right Form === */
.protect-right {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.protect-right h4 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #001133;
  font-weight: 700;
}

.seo-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.seo-form input,
.seo-form textarea {
  padding: 12px 15px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #f9fbff;
  resize: none;
}

.seo-form button {
  background: #ff3d00;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.seo-form button:hover {
  background: #cc2f00;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .protect-wrapper {
    flex-direction: column;
  }

  .protect-left, .protect-right {
    width: 100%;
  }

  .protect-left {
    text-align: center;
  }

  .protect-points li {
    text-align: left;
  }

  .seo-form {
    gap: 12px;
  }
}
/* =====================================
   🔷 HOW IT WORKS SECTION
===================================== */
.how-it-works {
  background: #fff;
  padding: 80px 15px;
  text-align: center;
}

.works-header h2 {
  font-size: 36px;
  color: #001133;
  margin-bottom: 15px;
}

.works-header h2 span {
  color: #ff3d00;
}

.works-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.works-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

/* Zig-zag layout */
.step-box.step-top {
  margin-top: -30px;
}
.step-box.step-bottom {
  margin-top: 30px;
}

/* Hover animation */
.step-box {
  background: transparent;
  transition: transform 0.4s ease;
}
.step-box:hover {
  transform: translateY(-10px) scale(1.03);
  cursor: pointer;
}

.step-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}
.step-box:hover .step-icon {
  transform: scale(1.1);
}

.step-icon img {
  width: 40px;
  height: 40px;
  z-index: 1;
}

.step-icon.step-red {
  background-color: #ff3d00;
}

.step-icon.step-blue {
  background-color: #2c45ff;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #001133;
  color: #fff;
  width: 24px;
  height: 24px;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #001133;
  margin-bottom: 8px;
}

.step-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  max-width: 220px;
  margin: auto;
}

/* ✅ Responsive for Mobile */
@media (max-width: 768px) {
  .works-header h2 {
    font-size: 26px;
  }

  .works-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .step-top,
  .step-bottom {
    margin-top: 0;
  }

  .step-box p {
    max-width: 100%;
  }

  .step-box:hover {
    transform: none;
  }
}
.pricing-section {
  background: #f1f6fe;
  padding: 80px 15px;
  text-align: center;
}
.pricing-header h2 {
  font-size: 36px;
  color: #001133;
  margin-bottom: 10px;
}
.pricing-header h2 span {
  color: #ff3d00;
}
.pricing-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  max-width: 340px;
  flex: 1;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-10px);
}
.pricing-card .plan-type {
  font-size: 14px;
  font-weight: 700;
  color: #070201;
  margin-bottom: 10px;
}
.pricing-card .price {
  font-size: 36px;
  font-weight: bold;
  color: #0a0a0a;
  margin-bottom: 10px;
}
.pricing-card .description {
  font-size: 14px;
  color: #555555;
  margin-bottom: 20px;
}
.features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
}
.features li {
  font-size: 14px;
  margin-bottom: 10px;
  color: #001133;
  display: flex;
  justify-content: space-between;
}
.features .tick {
  color: green;
  font-weight: bold;
}
.features .cross {
  color: red;
  font-weight: bold;
}
.features.white li {
  color: #fff;
}
.highlighted {
  background: #ff3d00;
  color: #fff;
}
.highlighted .price {
  color: #fff;
}
.highlighted .description {
  color: #fff;
}
.highlighted del {
  color: #ffd7c5;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}
.btn-orange {
  background: #ff3d00;
  color: #fff;
}
.btn-white {
  background: #fff;
  color: #ff3d00;
  border: 2px solid #fff;
}
.btn-orange:hover {
  background: #cc2f00;
}
.btn-white:hover {
  background: #ffe9e1;
  color: #001133;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}
.review-section {
  padding: 80px 15px;
  background: #fff;
  text-align: center;
}

/* Heading with lines */
.review-header {
  margin-bottom: 40px;
}
.review-header h2 {
  font-size: 28px;
  color: #001133;
}
.review-header h2 span {
  background: #ff3d00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 4px;
  margin-left: 6px;
}
.styled-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.styled-heading .line {
  width: 60px;
  height: 2px;
  background: #0075ff;
}

/* Cards Layout */
.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* Review Box */
.review-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}
.review-card:hover {
  transform: translateY(-6px);
}

/* Image Circle with Shadow */
.review-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: 0 0 10px rgba(0, 117, 255, 0.2);
  overflow: hidden;
}
.review-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text Styles */
.review-card p {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.5;
}
.review-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #001133;
  margin-bottom: 5px;
}
.stars {
  color: #ffa500;
  font-size: 16px;
}

/* Responsive */
@media (max-width: 600px) {
  .review-card {
    padding: 18px;
  }
  .review-img {
    width: 60px;
    height: 60px;
  }
  .review-header h2 {
    font-size: 22px;
  }
}
.youtube-final-section {
  padding: 60px 15px;
  background: #fff;
  text-align: center;
}

/* Heading */
.youtube-header {
  margin-bottom: 40px;
}
.youtube-header h2 {
  font-size: 28px;
  color: #001133;
  font-weight: 700;
}
.youtube-header h2 span {
  background: red;
  color: white;
  padding: 5px 12px;
  border-radius: 4px;
  margin-left: 6px;
}
.styled-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.styled-heading .line {
  width: 60px;
  height: 2px;
  background: #0075ff;
}

/* Main Wrapper */
.youtube-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  padding: 0 10px;
}

/* Card */
.youtube-card {
  flex: 0 0 auto;
}
.thumb {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.thumb img {
  width: 100%;
  display: block;
  border-radius: 16px;
}
.thumb:hover {
  transform: scale(1.03);
}

/* Play Button */
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 34px;
  color: #fff;
  background: rgba(255, 0, 0, 0.9);
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .youtube-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
  }

  .youtube-wrapper::-webkit-scrollbar {
    display: none;
  }

  .youtube-card {
    flex: 0 0 auto;
    width: 350px; /* 👈 Smaller width */
    scroll-snap-align: center; /* 👈 Center scroll snap */
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto; /* 👈 Center inside wrapper */
  }

  .youtube-card .thumb {
    position: relative;
    width: 100%;
    height: auto;
  }

  .youtube-card .thumb img {
    width: 100%;
    height: auto;
    display: block;
  }

  .youtube-card .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 8px 12px;
    border-radius: 50%;
  }

  .youtube-header {
    text-align: center;
    margin-bottom: 10px;
  }

  .youtube-header h2 {
    font-size: 20px;
  }

  .youtube-header .line {
    display: none;
  }
}
/* ===== FOOTER MAIN STYLING ===== */
.custom-footer {
  background: #f3f7ff;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #001133;
}

/* ===== CONTAINER ===== */
.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 15px;
}

/* ===== GRID LAYOUT ===== */
.footer-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* ===== BOX SPACING ===== */
.footer-box {
  display: flex;
  flex-direction: column;
}

/* ===== LOGO IMAGE ===== */
.footer-logo-img {
  width: 140px;
  margin-bottom: 16px;
}

/* ===== PARAGRAPH ===== */
.footer-box p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}
.footer-box p i {
  color: #ff3d00;
  margin-right: 8px;
}

/* ===== BUTTON ===== */
.btn-blue {
  background: #0075ff;
  color: #fff;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

/* ===== HEADING ===== */
.footer-box h4 {
  font-size: 18px;
  font-weight: bold;
  color: #001133;
  margin-bottom: 15px;
}

/* ===== UNORDERED LISTS ===== */
.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-box ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
}
.footer-box ul li i {
  margin-right: 8px;
  color: #ff3d00;
  font-size: 15px;
}

/* ===== CONTACT INFO ===== */
.contact-info li {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}
.contact-info li i {
  color: #ff3d00;
  margin-right: 8px;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}
.social-icons a {
  width: 36px;
  height: 36px;
  background: #ff3d00;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-size: 16px;
  transition: 0.3s ease;
}
.social-icons a:hover {
  background: #ff3d00;
}

/* ===== RESPONSIVE FOR MOBILE ===== */
@media (max-width: 768px) {
  .footer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  overflow-y: scroll; /* ✅ Always reserve scrollbar space */
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  padding: 15px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
h4 a {
  text-decoration: none;
  color: inherit;
}

h4 a:hover {
  color: #ff6600; /* Hover पर थोड़ा रंग बदलने के लिए */
}
/* Reduce spacing for specific sections */
section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Optional: If using custom classes */
.review-section,
.video-section {
  padding-top: 30px;
  padding-bottom: px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .pricing-card {
    width: 92%;
    max-width: 360px;
    margin: 20px auto;
  }
}


.footer-bottom {
  background: #e9f1ff;
  text-align: center;
  padding: 12px 15px;
  font-size: 14px;
  color: #555;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.footer-row {
  margin-bottom: 0;
  padding-bottom: 10px; /* ya 0 bhi kar sakte ho if needed tighter */
}

.footer-bottom {
  margin-top: 0;
  padding-top: 10px;
}
.footer-box a {
  text-decoration: none;
  color: inherit;
}
/* 🧹 Fix extra gap between testimonials and video section */
.testimonials-section,
.youtube-final-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 6px;
  padding-bottom: 20px;
}

/* If there's an unwanted space between sections */
.testimonials-section + .youtube-final-section {
  margin-top: 0 !important;
  padding-top: 5px !important;
}
@keyframes bounceWhatsApp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25D366;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  animation: bounceWhatsApp 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

/* ✅ Mobile ke liye chhota icon */
@media (max-width: 768px) {
  .whatsapp-float {
    padding: 9px;
  }
  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }
}
@media screen and (min-width: 1024px) {
  body {
    zoom: 1.1;
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  /* 🔹 Navigation/Header Section */
  .nav-desktop {
    display: none;
  }

  .nav-mobile {
    display: flex;
  }

  .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .logo {
    flex: 1;
  }

  .call-now {
    flex: 1;
    text-align: center;
  }

  .hamburger {
    flex: 1;
    text-align: right;
  }

  /* 🔹 Hero Section Visuals (hide unnecessary on mobile) */
  .hero-image {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .background-shape.shape1,
  .background-shape.shape2 {
    display: none !important;
  }

  .hero {
    padding-bottom: 30px !important;
    margin-bottom: 5px !important;
  }

  .hero-container {
    gap: 0 !important;
    padding-bottom: 0 !important;
  }

  /* 🔹 Hero Buttons (Side-by-side) */
  .hero-buttons {
    display: flex; 
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .hero-buttons a {
    flex: 1 1 45%;
    max-width: 160px;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    border-radius: 25px;
    white-space: nowrap;
    text-decoration: none;
  }

  /* 🔹 Services Section */
  .our-services {
    padding: 40px 15px;
    text-align: center;
  }

  .services-heading {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .services-heading span {
    display: inline-block;
    margin-top: 10px;
    font-size: 24px;
    color: #ff3d00;
  }
}

