/* Topbar */
 .topbar {
    background: linear-gradient(90deg, #FFD700, #FFA500); /* golden gradient */
    color: #000;
    padding: 10px 20px;
    font-size: 15px;
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
  }

  /* Left half - fixed contact info */
  .topbar .left {
    flex: 1;
    font-weight: bold;
  }

  /* Right half - scrolling marquee */
  .topbar .right {
    flex: 1;
    overflow: hidden;
    position: relative;
    font-weight: 700;
      white-space: nowrap;
        width: 100%;

  }

  .topbar .right .marquee {
    display: inline-flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
  }

  @keyframes marquee {
    0% {
      transform: translateX(20%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* Pause marquee on hover */
  .topbar .right:hover .marquee {
    animation-play-state: paused;
  }
@media (max-width: 768px) {
  .topbar {
    display: none !important;
  }
}

/* Navbar */
.custom-navbar {
  /* background: linear-gradient(90deg, #ff512f, #dd2476); */
  background-color: #fff;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.hover-link {
  position: relative;
  color: #000000 !important;
  font-weight: 600;
}

.hover-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ff0000;
  left: 0;
  bottom: -4px;
  transition: .3s;
}

.hover-link:hover::after {
  width: 100%;
}
.btn-warning{
background:linear-gradient(90deg, #FFD700, #FFA500) ;
}
.btn-danger{
  background:linear-gradient(90deg, #FFD700, #FFA500) ;
  border: none;
}
/* Banner */
.full-banner {
  height: 100%;
  position: relative;
}

.fullBannerSwiper,
.fullBannerSwiper .swiper-wrapper,
.fullBannerSwiper .swiper-slide {
  height: 100%;
}

.banner-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 8%;
  color: #fff;
  animation: fadeUp 1.3s ease-in-out;
}

.banner-content h1 {
  font-size: 56px;
  font-weight: 800;
}

.banner-content p {
  font-size: 20px;
  margin-top: 10px;
}

@keyframes fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ABOUT SECTION */
.about-section {
  padding: 80px 0;
  background: #f8f7f5;
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
  transition: 0.5s;
}

.about-img:hover img {
  transform: scale(1.05);
}

/* Floating Badge */
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(90deg, #ff512f, #ff0000);
  padding: 10px 20px;
  border-radius: 50px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  animation: floatBadge 3s infinite ease-in-out;
}

@keyframes floatBadge {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* Text Side */
.about-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-content h2 span {
  color: #ffa500;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.about-list {
  margin: 20px 0;
  list-style: none;
  padding-left: 0;
}

.about-list li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

/* Animations */
.animate-img {
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.8s ease;
}

.animate-text {
  opacity: 0;
  transform: translateX(40px);
  transition: 0.8s ease;
}

.about-section.visible .animate-img,
.about-section.visible .animate-text {
  opacity: 1;
  transform: translateX(0);
}
/* ================= TOP SOLUTIONS SECTION ================= */
.top-solutions {
  padding: 80px 0;
  background: #faf7f5;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 800;
}

.section-title h2 span {
  color: #ffa500;
}
.section-title p{
  font-size: 20px;
  font-weight: 500;
}
/* Medium devices (tablet) */
@media (max-width: 992px) {
  .section-title h2 {
    font-size: 36px;
  }
    .about-section{
    padding: 20px 0;
  }
  .about-content h2{
        font-size: 36px;
  }
  .rps-title{
            font-size: 36px;
  }
  .real-problem-section{
    padding: 50px !important;
  }
    .lt-main-title{
   font-size: 36px !important;
  } 
   .os-title{
       font-size: 36px !important;
  }
}

/* Small devices (mobile) */
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 28px;
  }
  .about-section{
    padding: 20px 0;
  }
  .about-content h2{
        font-size: 28px;
  }
   .rps-title{
            font-size: 28px;
  }
   .real-problem-section{
    padding: 50px 0 !important;
  }
  .lt-main-title{
   font-size: 28px !important;
  }
  .os-title{
       font-size: 28px !important;
  }
}
.solution-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Image */
.solution-img {
  height: 180px;
  overflow: hidden;
  border-radius: 14px;
}

.solution-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.solution-card:hover img {
  transform: scale(1.08);
}

/* Title */
.solution-card h3 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
}

/* Button */
.btn-solution {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #fff;
  margin-top: 10px;
  border-radius: 50px;
  padding: 10px 25px;
  transition: 0.3s;
}

.btn-solution:hover {
  opacity: 0.9;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
/* ================= FULL IMAGE BANNER SLIDER ================= */
.full-banner-slider {
    position: relative;
    width: 100%;
    height: 70vh;          /* FULL SCREEN HEIGHT */
    overflow: hidden;
}

.full-banner-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    transition: opacity 1s ease;
}

.full-banner-slider .slide.active {
    display: block;
    opacity: 1;
}

.full-banner-slider img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;     /* Full COVER Image */
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
    z-index: 9;
}

.slider-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ffffff80;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.slider-dots span.active {
    background: #ff2e63;
}

/* Responsive */
@media (max-width: 768px) {
    .full-banner-slider {
        height: 40vh;
    }
}
  .astrology-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    background: radial-gradient(circle at top, #1a1a3f, #0b0b1f); /* cosmic gradient */
  }

  .astrology-card {
    flex: 1 1 300px; /* responsive columns */
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .astrology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
  }

  .astrology-card h2 {
    color: #FFD700; /* golden heading */
    margin-bottom: 15px;
    font-size: 24px;
  }

  .astrology-card p {
    line-height: 1.6;
    color: #f1f1f1;
    font-size: 16px;
  }

  @media (max-width: 768px) {
    .astrology-section {
      flex-direction: column;
      gap: 20px;
    }
  }
/* =================== TESTIMONIAL SECTION =================== */
.testimonials {
    padding: 100px 0;
    background: radial-gradient(circle at top, #2a004f, #0d0017);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    color: #000000;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
}

.section-title span {
    color: #ffbb00;
}

.testimonial-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

/* CARD DESIGN */
.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 30px 25px;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(255, 136, 0, 0.25),
                inset 0 0 40px rgba(255, 200, 52, 0.15);
    text-align: center;
    transform-style: preserve-3d;
    transform: perspective(900px) rotateX(10deg);
    transition: all .6s ease;
}

.testimonial-card:hover {
    transform: perspective(900px) rotateX(0deg) translateY(-10px);
    box-shadow: 0 20px 45px rgba(255, 174, 0, 0.35);
}

.t-icon img {
    width: 70px;
    filter: drop-shadow(0 4px 12px rgba(255, 226, 130, 0.5));
    margin-bottom: 20px;
}

.t-review {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #f5e6ff;
}

.t-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffcc33;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0px);
}

/* Responsive */
@media (max-width: 767px) {
    .section-title { font-size: 32px; }
    .testimonial-card { padding: 25px; }
}
/* SECTION */
.real-problem-section {
    width: 90%;
    margin: auto;
    padding: 100px 0;
}

.rps-title {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
}
.rps-title span {
    color: #ffa500;
}

/* BOX */
.rps-box {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(80px);
    transition: 1s ease;
}

/* IMAGE */
.rps-img img {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* TEXT */
.rps-content {
    flex: 1;
}
.rps-content h3 {
    font-size: 26px;
    color: #ffa500;
    margin-bottom: 10px;
}
.rps-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

/* ALTERNATE LEFT/RIGHT */
.rps-box:nth-child(even) {
    flex-direction: row-reverse;
}

/* SCROLL ANIMATION (ACTIVE CLASS) */
.rps-box.show {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .rps-box {
        flex-direction: column;
    }
}
/* ===== Let’s Talk About Section ===== */
.lets-talk-section {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.lt-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 50px;
}

/* Grid */
.lt-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Card */
.lt-card {
    background: #ff0000;
    color: #fff;
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.lt-card:hover {
    transform: translateY(-8px);
}

.lt-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.lt-card-title {
    background: #ffeb3b;
    color: #ff0000;
    font-weight: 700;
    text-align: center;
    padding: 8px 0;
    font-size: 18px;
}

.lt-card p {
    padding: 15px;
    font-size: 15px;
    line-height: 1.5;
}

.lt-btn {
    margin: 0 15px 15px;
    background: #ffeb3b;
    color: #ff0000;
    border: none;
    border-radius: 5px;
    padding: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.lt-btn:hover {
    background: #ffc107;
}

/* Responsive */
@media (max-width: 1024px) {
    .lt-grid { justify-content: center; }
}
@media (max-width: 768px) {
    .lt-card { width: 90%; }
}

/* ===== Other Services Section ===== */
.other-services-section {
    padding: 80px 0;
    background: #fff5e6;
    text-align: center;
}

.os-title {
    font-size: 36px;
    font-weight: 700;
    color: #ff0000;
    margin-bottom: 50px;
}

/* Grid */
.os-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Card */
.os-card {
    background: #ff0000;
    color: #fff;
    border-radius: 15px;
    overflow: hidden;
    width: 300px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.os-card:hover {
    transform: translateY(-8px);
}

.os-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.os-card-title {
    background: #ffeb3b;
    color: #ff0000;
    font-weight: 700;
    text-align: center;
    padding: 8px 0;
    font-size: 18px;
}

.os-card p {
    padding: 15px;
    font-size: 15px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .os-grid { justify-content: center; }
}
@media (max-width: 768px) {
    .os-card { width: 90%; }
}
.over-section {
  position: relative;
  background: url('https://img.freepik.com/free-photo/mystical-numerology-scene_52683-107762.jpg?semt=ais_hybrid&w=740&q=80') center/cover no-repeat;
  padding: 60px 20px;
  color: #fff;
}

/* Black overlay */
.over-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7); /* black with 70% opacity */
  z-index: 1;
}

/* Content stays above overlay */
.over-section .overlay {
  position: relative;
  z-index: 2;
}
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0px 6px 12px rgba(0,0,0,0.4);
}
.call-button {
  position: fixed;       /* Hamesha screen pe visible */
  bottom: 20px;          /* Screen ke bottom se distance */
  left: 20px;           /* Screen ke right se distance */
  width: 60px;           /* Button diameter */
  height: 60px;
  background-color: red; /* Button color */
  color: white;          /* Icon color */
  border-radius: 50%;    /* Round button */
  font-size: 28px;       /* Icon size */
  display: flex;
  align-items: center;
  justify-content: center; /* Icon center me */
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: transform 0.2s, box-shadow 0.2s;
}

.call-button:hover {
  transform: scale(1.1);  /* Hover effect */
  box-shadow: 0 6px 10px rgba(0,0,0,0.4);
}