/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  padding-top: 120px;
  min-height: 100vh;
  background-color: #e0ab0d;
}

/* HEADER FLEX LAYOUT */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: rgb(172, 2, 2);
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: 80px;
  color: white;
  width: 100%;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  max-width: calc(100% - 60px);
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.logo-text h1 {
  margin: 0;
  font-size: 24px;
  color: white;
}

.logo-text p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

.home-link {
  color: white;
  text-decoration: none;
}

/* NAVIGATION MENU - Desktop */
.navbar {
  display: flex;
  align-items: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}

.nav-menu li {
  position: relative;
  font-weight: bold;
}

.nav-menu li a,
.nav-menu li span {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  display: inline-block;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li span:hover {
  color: #ffd700;
}

/* Dropdown Menu - Desktop */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  list-style: none;
  padding: 10px 0;
  min-width: 220px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 12px 20px;
  transition: background-color 0.2s ease;
}

.dropdown-menu li a {
  color: #333;
  font-weight: 500;
  display: block;
}

.dropdown-menu li:hover {
  background-color: #f0f0f0;
}

/* ========================================
   ENHANCED MOBILE MENU TOGGLE BUTTON
   ======================================== */
.menu-toggle {
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 10px;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: translateY(-50%) scale(1.05);
}

/* Hamburger Icon Lines */
.menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  margin: 6px auto;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

/* Animated Hamburger to X Transformation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */
@media screen and (max-width: 768px) {
  /* Show hamburger menu */
  .menu-toggle {
    display: block;
  }

  /* Hide desktop navbar */
  .navbar {
    width: 100%;
  }

  /* ========================================
     ENHANCED MOBILE MENU
     ======================================== */
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #ac0202 0%, #8b0000 100%);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    padding: 100px 0 30px 0;
    gap: 0;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1001;
  }

  /* Smooth slide-in animation */
  .nav-menu.active {
    right: 0;
  }

  /* Menu overlay backdrop */
  .nav-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: -1;
    backdrop-filter: blur(2px);
  }

  .nav-menu.active::before {
    opacity: 1;
    visibility: visible;
  }

  /* Individual menu items with stagger animation */
  .nav-menu > li {
    width: 100%;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(50px);
    animation: slideInMenu 0.5s ease forwards;
  }

  .nav-menu.active > li:nth-child(1) { animation-delay: 0.1s; }
  .nav-menu.active > li:nth-child(2) { animation-delay: 0.15s; }
  .nav-menu.active > li:nth-child(3) { animation-delay: 0.2s; }
  .nav-menu.active > li:nth-child(4) { animation-delay: 0.25s; }
  .nav-menu.active > li:nth-child(5) { animation-delay: 0.3s; }

  @keyframes slideInMenu {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* Menu item links */
  .nav-menu li a,
  .nav-menu li span {
    color: white;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  /* Hover effect with shine animation */
  .nav-menu li a::before,
  .nav-menu li span::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .nav-menu li:hover a::before,
  .nav-menu li:hover span::before {
    left: 100%;
  }

  .nav-menu li:active {
    background-color: rgba(0, 0, 0, 0.2);
  }

  /* ========================================
     ENHANCED MOBILE DROPDOWN
     ======================================== */
  .dropdown-menu {
    position: static;
    display: none;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.2);
    border-radius: 0;
    padding: 0;
    min-width: 100%;
    margin: 0;
    opacity: 1;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .dropdown-menu.show {
    display: block;
    max-height: 500px;
  }

  .dropdown-menu li {
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.9);
    padding: 15px 25px 15px 45px;
    font-size: 15px;
    font-weight: 500;
    position: relative;
  }

  /* Dropdown item indicator */
  .dropdown-menu li a::before {
    content: '→';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .dropdown-menu li:hover a::before {
    opacity: 1;
    left: 30px;
  }

  .dropdown-menu li:hover {
    background-color: rgba(255, 255, 255, 0.05);
  }

  /* Dropdown arrow indicator */
  .nav-menu li span::after {
    content: '▼';
    font-size: 12px;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .nav-menu li span.active::after {
    transform: rotate(180deg);
  }

  /* Logo adjustments */
  .logo {
    max-width: calc(100% - 70px);
  }

  .logo-text h1 {
    font-size: 20px;
  }

  .logo-text p {
    font-size: 12px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }
}

/* Desktop menu style */
@media screen and (min-width: 769px) {
  .nav-menu {
    display: flex;
    justify-content: center;
    background-color: rgb(172, 2, 2);
    gap: 30px;
    padding: 0;
    flex-wrap: wrap;
  }

  .nav-menu > li {
    position: relative;
    padding: 15px 20px;
    cursor: pointer;
    color: white;
    font-weight: bold;
  }
}

/* ========================================
   REST OF YOUR EXISTING STYLES
   ======================================== */

header {
  background-color: rgb(172, 2, 2);
  color: white;
  text-align: center;
  padding: 20px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: rgb(172, 2, 2);
  color: white;
}

/* Parent container that holds the row */
.rows {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
}

.first-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 10px 0;
  background-color: white;
  padding: 20px;
  width: 90%;
  max-width: 1200px;
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .first-row {
    padding: 15px;
    margin: 10px 5px;
    width: 95%;
    flex-direction: column;
  }
}

.first-row .main-img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .first-row .main-img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    margin: 0 auto;
  }
}

.image-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-btn {
  padding: 14px 28px;
  font-size: 16px;
  background-color: #03a83a;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.image-btn:hover {
  background-color: green;
}

.button-message-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.button-message {
  font-size: 20px;
  font-weight: bold;
  color: orangered;
}

/* Second row: card links */
.second-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .second-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 15px;
  }
}

.card-link {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  width: 250px;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 200px;
  text-decoration: none;
  color: inherit;
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .card-link {
    width: 100%;
    min-height: 180px;
    padding: 10px;
  }
}

.card-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-img {
  width: 140px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .card-img {
    width: 100px;
    height: 110px;
  }
}

.card-link p {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}

.second-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 40px 20px;
  margin-top: 20px;
  background-color: #e0ab0d;
  color: black;
  min-height: 400px;
  width: 100%;
}

.second-content h1 {
  margin-bottom: 40px;
  font-size: 28px;
}

.second-image {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  align-items: start;
  position: relative;
}

.second-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  grid-column: 1;
}

.second-image p {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  grid-column: 2;
  margin: 5px 0 0 20px;
  padding-right: 20px;
  position: relative;
  left: 20px;
}

@media screen and (max-width: 768px) {
  .second-content {
    padding: 20px 15px;
  }

  .second-content h1 {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .second-image {
    grid-template-columns: 100px 1fr;
    gap: 15px;
    padding: 0 10px;
  }

  .second-image img {
    width: 100px;
    height: auto;
  }

  .second-image p {
    font-size: 14px;
    line-height: 1.5;
    padding-right: 5px;
  }
}

.card-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  padding-top: 70px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.card {
  background-color: maroon;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

@media screen and (max-width: 768px) {
  .card-container {
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }

  .card {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  .card {
    min-width: 100%;
  }
}

.card h1 {
  margin-bottom: 20px;
  color: white;
}

.card:hover {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .card-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 30px 15px;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .card {
    padding: 15px;
    min-height: auto;
  }
  
  .card h1 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .card p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
  }
}

.thirdpart {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 20px;
  padding: 0 20px;
}

.thirdpart img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .thirdpart {
    padding: 0 15px;
  }
  
  .thirdpart img {
    max-width: 80%;
    height: auto;
  }
}

.fourthpart {
  background-image: linear-gradient(to right, green, yellow, pink);
  margin-top: 20px;
}

h6 {
  font-size: clamp(30px, 5vw, 55px);
  color: black;
  padding: 30px;
  text-align: center;
}

h5 {
  font-size: clamp(20px, 3vw, 30px);
  color: black;
  padding: 30px;
}

.sixthpart {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px;
  background-color: #f2f2f2;
  flex-wrap: wrap;
}

.left-section {
  max-width: 40%;
  position: relative;
}

.left-section .label {
  color: #f44336;
  font-size: 25px;
  font-style: italic;
  font-weight: bold;
  background-color: white;
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 10px;
  border-top: 5px solid white;
  border-left: 5px solid white;
  border-radius: 20px;
}

.left-section h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  color: #743c00;
  font-family: 'Arial', sans-serif;
  margin: 0;
}

.right-section {
  max-width: 50%;
  border-left: 2px solid blue;
  padding-left: 25px;
  font-family: 'Arial', sans-serif;
}

.right-section p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: #222;
  font-weight: bold;
}

.highlight {
  color: #e65100;
  font-weight: bold;
}

.seventhpart {
  background-color: #4B2AC7;
  padding: 80px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.main-count h1 {
  font-size: 80px;
  font-weight: 900;
  margin: 0;
}

.main-count h2 {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
  letter-spacing: 1px;
}

.main-count p {
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  text-transform: uppercase;
}

.stat-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  background-color: white;
  color: #4B2AC7;
  padding: 25px 30px;
  border-radius: 15px;
  width: 180px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-box h3 {
  font-size: 26px;
  font-weight: bold;
  margin: 0;
}

.stat-box p {
  font-size: 14px;
  margin-top: 8px;
}

.eighthpart {
  background-color: #f8f8f8;
  padding: 60px 30px;
  text-align: center;
  font-family: 'Arial', sans-serif;
  overflow: hidden;
}

.review-title {
  font-size: 32px;
  margin-bottom: 40px;
  color: #4B2AC7;
}

.reviews-carousel {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  width: fit-content;
  animation: scrollReviews 40s linear infinite;
  gap: 30px;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  min-width: 280px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
  text-align: center;
}

.review-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.review-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #333;
}

.stars {
  color: #FFD700;
  font-size: 18px;
  margin-bottom: 10px;
}

.review-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .review-card {
    min-width: 250px;
  }
  .reviews-track {
    animation-duration: 60s;
  }
}

.reviewer-img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Floating Contact Buttons */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-buttons a {
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  font-size: 22px;
  transition: transform 0.2s ease;
}

.floating-buttons a.call-button {
  background-color: #f44336;
}

.floating-buttons .insta-button {
  background-color: #E1306C;
}

.floating-buttons .fb-button {
  background-color: #3b5998;
}

.floating-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.footer {
  background-color: rgb(172, 2, 2);
  color: white;
  text-align: center;
  padding: 30px 20px;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 20px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #1abc9c;
}

.footer-content p {
  margin: 8px 0;
}

.footer-contact {
  margin-top: 5px;
  margin-bottom: 5px;
}

.image-row {
  background-color: rgba(2, 19, 26);
  padding: 40px 20px;
  text-align: center;
}

.centered-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.custom-list {
  text-align: center;
  margin: 30px auto;
}

.custom-list ul {
  display: inline-block;
  text-align: left;
  padding-left: 0;
  list-style: none;
}

.custom-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 1.5;
  color: black;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 30px;
  height: 30px;
  background-image: url('om.jfif');
  background-size: contain;
  background-repeat: no-repeat;
}

.nadi-heading {
  font-size: 50px;
  text-align: center;
  margin-top: 30px;
  color: black;
}

.nadi-description {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  color: black;
}

.nadi-text {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: black;
}

.container.content-section {
  color: black;
}

.nadi {
  display: block;
  margin: auto;
  border-radius: 15px;
  max-width: 90%;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact.section {
  color: black;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.contact-card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 300px;
  max-width: 400px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  gap: 40px;
  font-size: 1.15rem;
  line-height: 1.8;
}

.contact-card h3 {
  margin-top: 0;
  color: #333;
}

.contact-card a {
  color: #007bff;
  text-decoration: none;
}

.contact-card i {
  margin-right: 8px;
}

.contact-image {
  text-align: center;
  margin-bottom: 30px;
}

.contact-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.horoscope-steps {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.horoscope-steps h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.horoscope-steps .step {
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.horoscope-steps ul {
  padding-left: 20px;
  list-style: none;
}

.horoscope-steps ul li::before {
  content: "•";
  color: #666;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  color: black;
}

.vastu-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
}

.vastu-content h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.vastu-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.vastu-content li {
  margin-bottom: 10px;
}

.vastu-image {
  border-radius: 15px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .vastu-image {
    width: 90%;
    max-height: 300px;
    object-fit: cover;
    margin: 15px auto;
  }
}

.marriage-matching-content {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
}

.marriage-matching-content h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.marriage-matching-content h3 {
  margin-top: 30px;
  font-size: 1.5rem;
  color: #444;
}

.marriage-matching-content ol {
  padding-left: 20px;
}

.marriage-matching-content li {
  margin-bottom: 15px;
}

/* Additional responsive adjustments */
@media screen and (max-width: 768px) {
  .sixthpart {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
  }

  .left-section, 
  .right-section {
    max-width: 100%;
    border-left: none;
    padding-left: 0;
    margin-bottom: 30px;
  }

  .left-section h2 {
    font-size: 28px;
  }

  .main-count h1 {
    font-size: 50px;
  }

  .stat-boxes {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .stat-box {
    width: 100%;
    max-width: none;
  }
}




.shivaimg{
  padding-top:100px ;
}

.faq {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq h2 {
  text-align: center;
  font-size: 28px;
  color: #333;
  margin-bottom: 30px;
}

.faq h3 {
  font-size: 20px;
  color: #0056b3;
  margin-top: 20px;
  margin-bottom: 10px;
}

.faq p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 20px;
  }

  .faq h2 {
    font-size: 24px;
  }

  .faq h3 {
    font-size: 18px;
  }

  .faq p {
    font-size: 15px;
  }
}
