
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 120px;
  position: relative;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  width: 100%;
  height: 120px;
  max-width: 1400px;
  margin: 0 auto;
}


.logo img:hover {
  transform: scale(1.05);
}

.book-now {
  background: linear-gradient(135deg, #d70707, #a00505);
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(215, 7, 7, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  height: 40px;
}

.book-now:hover {
  background: linear-gradient(135deg, #a00505, #800000);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(215, 7, 7, 0.3);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #d70707;
  transition: transform 0.3s ease;
  padding: 5px;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.bottom-nav {
  height: 50px;
  width: 100%;
  background: white;
  position: relative;
  z-index: 1000;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 50px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-item a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 5px 10px;
  font-size: 15px;
  position: relative;
  display: inline-block;
}

.nav-item a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #d70707;
  transition: width 0.3s ease;
}

.nav-item a:hover {
  color: #d70707;
}

.nav-item a:hover::after {
  width: 100%;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  display: none;
  flex-direction: column;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 1100;
  min-width: 180px;
  text-align: left;
  padding: 8px 0;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.dropdown li {
  padding: 6px 15px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.dropdown li:hover {
  background: #f8f8f8;
}

.dropdown li a {
  color: #555;
  font-weight: 500;
  font-size: 14px;
}

.dropdown li a:hover {
  color: #d70707;
  background: transparent;
}

.dropdown li a::after {
  display: none;
}

.nav-item:hover .dropdown {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .nav-links {
      gap: 15px;
  }
}

@media (max-width: 768px) {
  .top-nav {
      padding: 0 20px;
      height: 60px;
  }
  
  .logo img {
      max-height: 100px;
  }
  
  .menu-toggle {
      display: block;
  }

.bottom-nav {
  position: fixed;
  top: 80px; /* Adjust this based on the height of your main navbar */
  left: 0;
  width: 100%;
  z-index: 999; /* Ensure it's under the main navbar (if its z-index is higher) */
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  display: none;
}

.bottom-nav.open {
  display: flex;
}


  .nav-links {
      flex-direction: column;
      gap: 0;
      padding: 0;
      height: auto;
  }

  .nav-item {
      width: 100%;
      text-align: center;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-item a {
      display: block;
      padding: 12px 20px;
  }

  .dropdown {
      position: static;
      display: none;
      width: 100%;
      box-shadow: none;
      border-radius: 0;
      opacity: 1;
      transform: none;
      padding: 0;
  }

  .dropdown li {
      padding: 10px 20px;
      background: #f9f9f9;
      text-align: center;
  }

  .nav-item:hover .dropdown {
      display: none;
  }

  .dropdown.active {
      display: flex;
  }
}
/* body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: block;

  height: 100vh;
}

/* Banner Styling */
/* .banner {
  position: relative;
  width: 100%;
  height: 600px;
  background: url("https://cdn.pixabay.com/video/2024/02/04/199293-909903179_tiny.jpg") no-repeat center center/cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.5s ease-in-out;
  margin: 30px auto; 
  position: relative; 
  z-index: 1; 
} */

/* Dark Overlay */
/* .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
  border-radius: 12px;
} */

/* Banner Content */
/* .banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 70%;
  margin: auto;
  padding: 20px;
  animation: slideUp 1.5s ease-in-out;
} */

/* .banner-content h1 {
  font-size: 46px;
  font-weight: bold;
  margin-bottom: 10px;
} */

/* .banner-content p {
  font-size: 25px;
  margin-bottom: 20px;
} */

/* CTA Button */
/* .cta-button {
  background: linear-gradient(135deg, #d70707, #a00505);
  color: white;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
} */
/* 
.cta-button:hover {
  background-color: #e67300;
  transform: scale(1.1);
}


@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
} */


/* @media (max-width: 900px) {
  .banner {
      height: 300px;
      width: 90%;
  }

  .banner-content h1 {
      font-size: 28px;
  }

  .banner-content p {
      font-size: 16px;
  }

  .cta-button {
      padding: 12px 25px;
  }
} */



/* Banner vediio  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', 'Arial', sans-serif;
  overflow-x: hidden;
}

/* Banner container */
.astrology-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Video background */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  /* background-color: #0a0a1a;  */
}

/* Overlay for better text readability */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 26, 0.4);
  z-index: 0;
}

/* Content styling */
.banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.5s ease-out;
}

.banner-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.banner-content p {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.744);
}

/* Star decoration */
.stars {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  background-color: white;
  border-radius: 50%;
  animation: twinkle var(--duration) infinite ease-in-out;
  opacity: 0;
}

/* Animation for the stars */
@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: var(--opacity); }
}

/* Animation for the content */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(40px);
  }
  to {
      opacity: 1;
      trans: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .banner-content h1 {
      font-size: 2.5rem;
  }
  
  .banner-content p {
      font-size: 1.2rem;
  }
}


/* servic card */
/* Service Card Styling with Astrology Theme */
/* Service Card Styling with Golden Astrology Theme */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  /* color: #
  fff; */
}

.services {
  padding: 60px 20px;
  max-width: 1900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Golden Cosmic Background */
.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.3) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(255, 223, 96, 0.4) 0%, transparent 30%),
    linear-gradient(to bottom, #0a0e23 0%, #131a2a 100%);
  z-index: -1;
}

/* Starry Sky Effect */
.services::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(1px 1px at 15% 20%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 25% 40%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 35% 60%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 45% 80%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 55% 30%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 65% 50%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 75% 70%, #fff 1%, transparent 2%),
    radial-gradient(1px 1px at 85% 90%, #fff 1%, transparent 2%),
    radial-gradient(2px 2px at 10% 10%, gold 1%, transparent 2%),
    radial-gradient(2px 2px at 90% 20%, gold 1%, transparent 2%),
    radial-gradient(2px 2px at 50% 90%, gold 1%, transparent 2%);
  background-size: 100% 100%;
  z-index: -1;
  opacity: 0.8;
  animation: twinkle 8s infinite alternate;
}

/* Optional: Twinkling Star Animation */
@keyframes twinkle {
  0% { opacity: 0.5; }
  50% { opacity: 0.9; }
  100% { opacity: 0.7; }
}
.services-heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 35px; /* Reduced gap between cards */
}

.service-card {
  background: white;
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  width: 230px;
  min-height: 180px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.service-logo {
  width: 40px; /* Smaller logo */
  height: 40px;
  margin-bottom: 15px;
}

.service-title {
  font-size: 18px; /* Smaller font */
  font-weight: bold;
  margin-bottom: 10px;
}

.service-description {
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.4;
  text-align: left;
  flex-grow: 1; /* Makes description take available space */
}

.order-now {
  padding: 8px 16px;
  font-size: 14px;
  background: linear-gradient(135deg, #d70707, #a00505);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%; /* Makes buttons equal width */
}

.order-now:hover {
  background: linear-gradient(135deg, #ff0000, #c00000);
  transform: translateY(-2px);
}

.order-now-container {
  margin-top: auto; /* Pushes button to bottom */
  padding-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
  .service-card {
    width: 200px;
    padding: 15px;
  min-height: 160px;
  }
  .service-description {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .services-container {
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-around;
  }
  .service-card {
    width: 50%; /* Cards take about 1/3 of width */
    margin-bottom: 20px;
  }
}


.site-footer {
    background: #fff;
    color: #000000;
    padding: 60px 0 0;
    border-top: 1px solid #eaeaea;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 250px;
    width: auto;
    object-fit: contain;
    /* margin-bottom: 20px; */
    /* Keep original logo colors */
    filter: none;
}

.footer-about {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    background: #d70707; /* Red color */
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 15px;
}

.social-links a:hover {
    background: #a00505; /* Darker red on hover */
    transform: translateY(-3px);
}

.footer-heading {
    color: #d70707; /* Red color */
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #d70707; /* Red color */
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #525252;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.footer-links a:hover {
    color: #d70707; /* Red color */
    padding-left: 5px;
}

.footer-links a i {
    font-size: 12px;
    color: #d70707; /* Red color */
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #555555;
    font-size: 15px;
    line-height: 1.5;
    gap: 12px;
}

.contact-info i {
    color: #d70707; /* Red color */
    margin-top: 3px;
    font-size: 16px;
}

.footer-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #d70707; /* Red color */
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(215,7,7,0.2);
}

.footer-book-now:hover {
    background: #a00505; /* Darker red */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(215,7,7,0.3);
}

.footer-bottom {
    background: #f9f9f9;
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid #eeeeee;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #777777;
    font-size: 14px;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #777777;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-legal a:hover {
    color: #d70707; /* Red color */
}

.footer-legal a i {
    font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo-section {
        grid-column: span 2;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-logo-section {
        grid-column: span 1;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        height: 140px;
    }
    
    .footer-heading {
        font-size: 18px;
    }
    
    .footer-links a, 
    .contact-info li {
        font-size: 14px;
    }
    
    .footer-book-now {
        padding: 10px 20px;
        font-size: 14px;
    }
}
