/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
html,body{
  max-width: 100%;
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}
.container p{
  font-size: 1.9rem;
}

/* Header Section */
.site-header {
  height: 40px;
  width: 100%;
  background: black;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Menu Icon */
.menu-icon {
  font-size: 26px;
  cursor: pointer;
  color: white;
}

/* Language Selector */
.language-selector select {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  font-size: 20px;
  cursor: pointer;
}

.language-selector select:focus {
  outline: none;
  border-color: #ff6600;
}
/* Header Section End */
/* ===== Intro Section ===== */
.moto-bar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 8px 50px 10px 0px;
  background-color: #b42737;
  overflow: hidden;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Fixed items */
.moto-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  background: #b42737;
  padding: 6px 10px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}

.right-item {
  margin-left: auto;
  color: #000;
  background-color: #ffc001;
}

/* Moving center text */
.moto-marquee {
  flex: 1;
  overflow: hidden;
}

.marquee-text {
  display: inline-block;
  white-space: nowrap;
  background-color: #ffffff;
  color: #b42737;
  font-size: 20px;
  font-weight: 600;
  animation: marqueeMove 35s linear infinite;
}

@keyframes marqueeMove {
  0% {
    transform: translateX(17%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile handling */
@media (max-width: 768px) {
  .moto-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 10px;
  }

  .moto-item {
    flex: 0 0 48%;
    justify-content: center;
    font-size: 14px;
  }

  .moto-marquee {
    flex: 0 0 100%;
    order: 3;
  }

  .marquee-text {
    font-size: 14px;
  }

  .right-item {
    margin-left: 0;
    display: none;
  }
}
/* ===== Intro Section End ===== */
/* ===== 3 Image Section ===== */
.triple-image-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 15px;        /* reduced padding */
  gap: 15px;            /* reduced gap */
}

/* Image box */
.img-box {
  flex: 1;              /* equal width */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image */
.img-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Hover effect (desktop only feels premium) */
@media (hover: hover) {
  .img-box img:hover {
    transform: scale(1.04);
  }
}

/* ===== Mobile: one image per scroll ===== */
@media (max-width: 768px) {
  .triple-image-section {
    flex-direction: column; /* images one below another */
    padding: 10px;
    gap: 15px;
  }

  .img-box {
    width: 100%;
  }
  .img-box img {
    width: 100%;
  }
}
/* ===== 3 Image Section End ===== */
/* ===== Big Zoom Text Section ===== */
.big-zoom-section {
  width: 100%;
  background-color: #b42737;
  overflow: hidden;
  padding: 8px 0;
}

.big-marquee {
  width: 100%;
  overflow: hidden;
}

.big-marquee-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  animation: bigMarqueeMove 35s linear infinite;
}

@keyframes bigMarqueeMove {
  0% {
    transform: translateX(37%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* ===== Big Zoom Text Section End ===== */
/* ===== Main Photo section ===== */
/* ===== Wrapper ===== */
.image-slider-wrapper {
  position: relative;
  width: 100%;
  background: #ffffff;
}

/* ===== Scroll Section ===== */
.image-scroll-section {
  width: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 20px 0;
}

.image-scroll-section::-webkit-scrollbar {
  display: none;
}
.image-scroll-section {
  scrollbar-width: none;
}

/* ===== Image Card ===== */
.image-card {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: center;
}

.image-card img {
  width: 100%;
  max-width: 1480px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover zoom-out */
@media (hover: hover) {
  .image-card img:hover {
    transform: scale(0.94);
    box-shadow: 0 14px 36px rgba(0,0,0,0.65);
  }
}

/* ===== Arrows ===== */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
}

.arrow:hover {
  background: rgba(0,0,0,0.8);
  transform: translateY(-50%) scale(1.1);
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

/* Hide arrows on very small screens (optional) */
@media (max-width: 480px) {
  .arrow {
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}
/* ===== Main Photo section End ===== */
/* Services Section */
.services {
  background: #f9f9f9;
  padding: 2rem 1rem;
  text-align: center;
}

.services h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.services .grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.services .card {
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.services .card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  border: 3px solid #ddd;
  transition: border 0.3s ease;
}

.services .card:hover img {
  border: none;
}

.services .card h3 {
  margin: 0.5rem 0;
  font-size: 1.3rem;
}

.services .card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.services .btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #e63946;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.services .btn:hover {
  background: #d62839;
}
/* Responsive Services */
@media (min-width: 768px) {
  .services .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Services Section End */
/* Second Services Section */
.services2 {
  background: #ffffff;   /* light pinkish background */
  padding: 2.5rem 1rem;
  text-align: center;
}

.services2 h2 {
  font-size: 2rem;
  color: #333;
}

.services2 .grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.services2 .card {
  background: #b42737;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  padding: 1.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services2 .card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.services2 .card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.services2 .card p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.services2 .btn-row {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.services2 .btn {
  flex: 1;
  margin: 0 5px;
  padding: 0.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.services2 .btn span {
  text-decoration: underline; /* name underline */
  margin-left: 5px;
}

/* Call Button */
.services2 .call-btn {
  background: #F7F7F7;
  color: #b42737;
}
.services2 .call-btn:hover {
  background: #e7283e;
  color: #ffffff;
}

/* Chat Button */
.services2 .chat-btn {
  background: #F7F7F7;
  color: #b42737;
}
.services2 .chat-btn:hover {
  background: #ffc001;
  color: #000;
}

/* Responsive */
@media (min-width: 768px) {
  .services2 .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services2 .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Second Services Section End */
/* Why choose us Section */
.features {
  background: #fff;
  padding: 2rem 1rem;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  color: #333;
}

.features-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr); /* Mobile: 1 div per row */
}

.feature-card {
  position: relative;
  background: #b42737;
  padding: 1.5rem;
  border-radius: 14px 14px 108px 108px;
  text-align:center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  overflow: hidden;
  opacity: 0;
  transition: all 0.8s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 45px;
  background: #b42737;
  border-radius: 0 0 5dvb 50px;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.from-left{
  transform: translateX(-80px);
}

.from-right{
  transform: translateX(80px);
}

.feature-card.show{
  opacity: 1;
  transform: translateX(0);
}

.feature-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px; /* square with rounded edges */
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
}

/* Laptop/Desktop View */
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr); /* 3 divs in one row */
  }
}
/* Why choose us Section End */
 /*All three (Big photo, Review and Payment Method) Section */
/* 1️⃣ HERO IMAGE */
.hero-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* 2️⃣ REVIEWS SECTION */
.reviews-section {
  height: 140vh;
  background: url("Astrology_GovindJi_12.png") center/cover fixed;
  padding: 80px 20px;
  color: white;
}

.reviews-section h2 {
  font-size: 2.9rem;
  text-align: center;
  margin-bottom: 50px;
}

.reviews-wrapper {
  overflow: hidden;
  max-width: 1100px;
  margin: auto;
}

.reviews-track {
  display: flex;
  width: 200%;
  transition: transform 1s ease;
}

.review-card {
  width: 50%;
  padding: 25px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  margin: 10px;
}

.review-card p {
  font-size: 1.9rem;
  line-height: 1.5;
}

.profile {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 12px;
}

.profile strong{
  font-size: 1.5rem;
}
.profile span {
  font-size: 1.3rem;
  opacity: 0.8;
}

/* 3️⃣ PAYMENT SECTION */
.payment-section {
  padding: 60px 20px;
  text-align: center;
}

.payment-section h2{
  font-size: 2.5rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.payment-grid img {
  width: 100%;
  height: auto;
  max-width: 400px;
  margin: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .reviews-track {
    width: 400%;
  }

  .review-card {
    width: 100%;
  }

  .payment-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
  /*All three (Big photo, Review and Payment Method) Section End */
/* About Section */
.about {
  padding: 2rem 1rem;
}
.about{
  background-color: #b42737;
  color: #ffffff;
  width: 100%;
}
/* About Section Grid */
.about-grid {
  display: grid;
  gap: 20px;
  margin-top: 2rem;
}

.about-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.about-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.about-card h1 {
  color: #111111;
  padding: 10px;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 1rem;
  color: #555;
}

/* Responsive Grid */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* About Section End */
/* Contact Section */
.contact {
  color: #ffffff;
  background: #b42737;
  padding: 2rem 1rem;
}
.contact h2{
  font-size: 2.5rem;
}
.contact p{
  font-size: 2rem;
}

.contact .btn {
    flex: 1;
  margin: 0 5px;
  padding: 0.6rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.contact .btn span{
  text-decoration: underline;
}

.contact .container .btn.secondary {
  background: #ffffff;
  color: #e7283e;
}

.contact .container .btn.secondary:hover {
  background: #e7283e;
  color: #ffffff;
}

/* Chat Button */
.contact .container .btn {
  background: #ffffff;
  color: #e7283e;
}
.contact .container .btn:hover {
  background: #ffc001;
  color: #000;
}
/* Contact Section End */
/* Footer Section */
footer {
  background: #222; /* light black background */
  color: #fff;
  padding: 3rem 1rem 1rem;
  margin-top: 2rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr; /* Mobile par 2 column ek line me */
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr; /* Chhoti screen par ek ek section niche niche */
  }
}

.footer-section h3 {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  position: relative; /* underline ke liye zaroori  */
  display: inline-block; /* taaki line sirf text ke neeche aaye */
}

.footer-section h3::after {
  content: "";
  display: block;
  width: 50%; /* sirf aadhi line (text ka approx aadha part) */
  height: 2px;
  background: #007bff; /* line ka color */
  margin-top: 4px;
}
.footer-section p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
  cursor: pointer; /* hand shape cursor */
}

.footer-section ul li a:hover {
  color: #007bff;
  text-decoration: underline;
}

.footer-section .btn {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background: #007bff; /* blue button */
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.footer-section .btn:hover {
  background: #0056b3;
}

.social-icons a img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  filter: brightness(0) invert(1); /* icons ko white bana dega */
  transition: 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.9rem;
}

/* Smooth scrolling effect */
html {
  scroll-behavior: smooth;
}
/* Footer Section End */
.fixed-btn {
    position: fixed;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 99999;
}

.fixed-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* LEFT CALL BUTTON */
.call-btn {
    left: env(safe-area-inset-left,20px);
    border: 3px solid red;
}

/* RIGHT WHATSAPP BUTTON */
.whatsapp-btn {
    right: env(safe-area-inset-right,20px);
    border: 3px solid #25D366;
}