/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cinzel', serif;
  background: linear-gradient(to bottom, #0d0d2b, #2d2d5c);
  color: #fff;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
}

.navbar h1 {
  font-size: 1.8rem;
  color: gold;
}

.menu-icon {
  font-size: 1.5rem;
  cursor: pointer;
  color: #fff;
}


/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
 background: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') center/cover no-repeat;
  min-height: 100vh;
}
.hero-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}


.hero-content h2 {
  font-size: 2.5rem;
  color: gold;
  margin-bottom: 1rem;
   margin-top: -30px;
}

.hero-content p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  color: #800000;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}


.cta-buttons {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically if needed */
  gap: 1rem;
  flex-wrap: wrap;
}


.btn {
  background: gold;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #fff5cc;
}

/* Zodiac Image */
.zodiac-wheel img {
  width: 200px;
  margin-top: 3rem;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* About */
.about {
  padding: 3rem 2rem;
  background-color: #1a1a40;
  text-align: center;
}

.about h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: gold;
}

/* Services */
/* Services Section */
.services-preview {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #1a1a40, #0d0d2b);
  text-align: center;
}

.services-preview h3 {
  font-size: 2.2rem;
  color: gold;
  margin-bottom: 2rem;
  text-shadow: 0 0 8px #ffdf70;
}

/* Card Grid Layout */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* Individual Service Card */
.card {
  background: rgba(255, 215, 0, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  color: white;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.card p {
  margin-top: 0.3rem;
  font-size: 1rem;
  color: #fff;
}

/* Float Animation for Icons/Images */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Full Services Button */
.services-preview .btn {
  background: gold;
  color: #000;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
  transition: 0.3s ease;
}

.services-preview .btn:hover {
  background: #fff6cc;
  box-shadow: 0 0 20px gold;
}

/* Testimonials */
.testimonials {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #0d0d2b, #1a1a40);
  text-align: center;
}

.testimonials h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: gold;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

/* Cards Container */
.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  color: #fff;
  font-style: italic;
  position: relative;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.testimonial-card h4 {
  font-weight: bold;
  color: gold;
  margin-top: 1rem;
  font-style: normal;
}
.why-choose-us {
  padding: 5rem 2rem;
  background: radial-gradient(circle at center, #1a1a40, #0d0d2b);
  text-align: center;
  color: white;
}

.why-choose-us h3 {
  font-size: 2.3rem;
  color: gold;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.why-choose-us .subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.08);
  animation: fadeUp 1s ease-in-out both;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
  border-color: gold;
}

.why-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.why-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: gold;
}

.why-card p {
  font-size: 0.95rem;
  color: #ddd;
}

/* Float Icon Animation */
@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Fade-up Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.astro-footer {
  background: #0d0d2b;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem 2rem;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content h3 {
  font-size: 1.5rem;
  color: gold;
  margin-bottom: 0.5rem;
}

.footer-content p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.footer-links {
  margin: 1rem 0;
}

.footer-btn {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: gold;
  color: #000;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
  transition: 0.3s ease;
}

.footer-btn:hover {
  background: #fff6cc;
  box-shadow: 0 0 18px gold;
}

.footer-social a {
  margin: 0 0.8rem;
  color: #ffcc00;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer-social a:hover {
  text-decoration: underline;
  color: gold;
}

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: #888;
}
/* Floating Button */
.floating-call {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: gold;
  border-radius: 50%;
  padding: 12px;
  z-index: 999;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  cursor: pointer;
  transition: 0.3s;
}

.floating-call img {
  width: 32px;
  height: 32px;
}

/* Contact Popup */
.contact-popup {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: #1a1a40;
  border: 1px solid gold;
  padding: 1rem;
  border-radius: 12px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 10px;
  width: 220px;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.4);
  animation: fadeInUp 0.3s ease;
}

.contact-popup h4 {
  color: gold;
  margin: 0 0 0.5rem;
  text-align: center;
  font-size: 1.1rem;
}

.contact-popup a {
  color: white;
  background: #333;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 8px;
  transition: 0.2s;
  text-align: center;
}

.contact-popup a:hover {
  background: gold;
  color: black;
}

.contact-popup .close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Navbar Styling */
.navbar {
  background: #0d0d2b;
  color: gold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

/* Logo Styling */
.navbar .logo {
  font-size: 1.3rem;
  font-weight: bold;
  color: gold;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.navbar .logo img {
  width: 22px;
  height: 22px;
}

/* Nav Links */
.navbar nav {
  display: flex;
  gap: 1.5rem;
  transition: all 0.3s ease-in-out;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: gold;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
  .navbar nav {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a40;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 2rem 0;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  .navbar nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* Extra Mobile Fix */
@media (max-width: 480px) {
  .navbar {
    padding: 0.7rem 1rem;
  }

  .navbar .logo {
    font-size: 0.95rem;
    max-width: calc(100% - 50px); /* Leave space for hamburger */
  }

  .hamburger {
    font-size: 1.6rem;
  }
}
