/* RESET MARGIN & PADDING */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  overflow-x: hidden;
}

.navbar {
  background: #0d0d2b;
  color: gold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
}

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: bold;
  color: gold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.navbar .logo img {
  width: 22px;
  height: 22px;
}

/* Nav Links */
.navbar nav {
  display: flex;
  gap: 1.5rem;
}

.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 */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
}

/* Responsive Nav */
@media (max-width: 768px) {
  .navbar {
    justify-content: flex-start; /* Align all content to the left */
  }

  .navbar .logo {
    font-size: 1.05rem;
    margin-right: auto; /* Push nav and hamburger to the right */
  }

  .navbar nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #1a1a40;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 2rem 0;
    display: none;
    text-align: center;
  }

  .navbar nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

.about-hero {
  background: url('https://www.shutterstock.com/image-vector/wheel-twelvesign-stellar-constellation-zodiac-600nw-2251204533.jpg') no-repeat center center/cover;
  color: white;
  padding: 6rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  color: gold;
  margin-bottom: 1rem;
}

.glow-text {
  color: white;
  text-shadow: 0 0 10px gold, 0 0 20px gold, 0 0 30px gold;
  font-size: 1.8rem;
  animation: glowPulse 2s ease-in-out infinite alternate;
}

.hero-text p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-btn {
  background: gold;
  color: black;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

.hero-btn:hover {
  background: white;
  box-shadow: 0 0 20px gold;
}

.hero-image {
  flex: 1;
  text-align: center;
  animation: floatY 3s ease-in-out infinite;
}

.hero-image img {
  width: 300px;
  max-width: 100%;
  border-radius: 12px; /* 🔄 from circle to soft square */
  object-fit: cover;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}


/* Animations */
@keyframes glowPulse {
  from {
    text-shadow: 0 0 10px gold, 0 0 20px gold;
  }
  to {
    text-shadow: 0 0 20px gold, 0 0 30px gold, 0 0 40px gold;
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .glow-text {
    font-size: 1.5rem;
  }
}
.about-bio {
  background: #0c0b30;
  color: white;
  padding: 4rem 2rem;
}

.bio-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.bio-text {
  flex: 1;
  min-width: 280px;
}

.bio-text h2 {
  color: gold;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.bio-text p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bio-points {
  list-style: none;
  padding: 0;
}

.bio-points li {
  color: gold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.bio-points li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 0;
}

.bio-image {
  flex: 1;
  text-align: center;
  animation: floatY 4s ease-in-out infinite;
}

.bio-image img {
  width: 300px;
  max-width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

/* Floating Animation */
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .bio-container {
    flex-direction: column;
    text-align: center;
  }

  .bio-text h2 {
    font-size: 1.5rem;
  }

  .bio-image img {
    width: 220px;
  }
}
.philosophy-section {
  background: #0d0d2b;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.philosophy-container {
  max-width: 1200px;
  margin: auto;
}

.philosophy-section h2 {
  color: gold;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.philosophy-section .intro {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.philosophy-card {
  background: #1a1a40;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.philosophy-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.philosophy-card h3 {
  color: gold;
  margin-bottom: 0.5rem;
}

.philosophy-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .philosophy-section h2 {
    font-size: 1.5rem;
  }

  .philosophy-card img {
    width: 50px;
  }
}
.about-facts {
  background: #120b2d;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.facts-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.facts-image {
  flex: 1;
  animation: floatY 3s ease-in-out infinite;
}

.facts-image img {
  width: 280px;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.facts-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}

.fact-card {
  background: #3e2b6b;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease;
}

.fact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.3);
}

.fact-card img {
  width: 50px;
  margin-bottom: 0.8rem;
}

.fact-card h3 {
  color: gold;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.fact-card p {
  color: #ccc;
  font-size: 0.9rem;
}

/* Animation */
@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .facts-container {
    flex-direction: column;
    gap: 2rem;
  }

  .facts-grid {
    grid-template-columns: 1fr 1fr;
  }

  .facts-image img {
    width: 200px;
  }
}

@media (max-width: 500px) {
  .facts-grid {
    grid-template-columns: 1fr;
  }
}
.client-praise {
  background: #0d0d2b;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.praise-container {
  max-width: 1200px;
  margin: auto;
}

.client-praise h2 {
  font-size: 2rem;
  color: gold;
  margin-bottom: 2.5rem;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.quote-card {
  background: #1a1a40;
  border-left: 5px solid gold;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  position: relative;
  animation-duration: 6s;
  animation-iteration-count: infinite;
}

.quote-card p {
  font-style: italic;
  color: #ddd;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.quote-card span {
  font-weight: bold;
  color: gold;
  font-size: 0.9rem;
}

/* Floating Animations */
.float-up {
  animation-name: floatUp;
}

.float-down {
  animation-name: floatDown;
}

.delay {
  animation-delay: 3s;
}

@keyframes floatUp {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes floatDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(10px); }
  100% { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .client-praise h2 {
    font-size: 1.5rem;
  }
}
.core-values {
  background: #0d0d2b;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.values-container {
  max-width: 1200px;
  margin: auto;
}

.core-values h2 {
  color: gold;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.values-intro {
  color: #ccc;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.value-card {
  background: #1a1a40;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.value-card img {
  width: 60px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 5px gold);
}

.value-card h3 {
  color: gold;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.value-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  .core-values h2 {
    font-size: 1.5rem;
  }

  .value-card img {
    width: 50px;
  }
}
.astro-image-section {
  background: #0d0d2b;
  padding: 5rem 2rem;
  text-align: center;
  color: white;
}

.astro-image-container {
  max-width: 700px;
  margin: auto;
  animation: fadeInUp 1.5s ease-out;
}

.astro-image-container img,
.bio-image img {
  width: 300px;
  max-width: 100%;
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
  animation: floatImage 4s ease-in-out infinite;
  object-fit: cover;
}

.astro-image-container h3 {
  margin-top: 1.5rem;
  color: gold;
  font-size: 1.5rem;
}

.astro-image-container p {
  color: #ccc;
  margin-top: 0.5rem;
  font-size: 1rem;
  font-style: italic;
}
@media (max-width: 600px) {
  .astro-image-container img,
  .bio-image img {
    width: 220px;
    border-radius: 10px;
  }
}


/* Floating effect */
@keyframes floatImage {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Fade in animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .astro-image-container img {
    width: 220px;
  }

  .astro-image-container h3 {
    font-size: 1.3rem;
  }

  .astro-image-container p {
    font-size: 0.9rem;
  }
}
.cta-section {
  background: #1a1a40;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-container {
  max-width: 800px;
  margin: auto;
  animation: fadeIn 1.5s ease-in-out;
}

.cta-container h2 {
  font-size: 2rem;
  color: gold;
  margin-bottom: 1rem;
}

.cta-container p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-btn {
  background: gold;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  transition: background 0.3s, transform 0.3s;
}

.cta-btn:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 0 20px gold;
}

.cta-btn img {
  width: 20px;
  height: 20px;
}

/* Animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-container h2 {
    font-size: 1.5rem;
  }
}
.astro-footer {
  background: linear-gradient(to bottom, #0d0d2b, #1a1a40);
  padding: 3rem 2rem;
  color: white;
  text-align: center;
  animation: fadeInUp 1.5s ease-in-out;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
}

.astro-footer h3 {
  color: gold;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.astro-footer p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  margin-bottom: 1.5rem;
}

.footer-social a {
  display: inline-block;
  margin: 0 10px;
  transition: transform 0.3s ease;
}

.footer-social a img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 3px gold);
}

.footer-social a:hover {
  transform: scale(1.2);
}

.footer-links a {
  display: inline-block;
  margin: 0 12px;
  color: gold;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
  text-shadow: 0 0 8px gold;
}

footer .copyright {
  margin-top: 2rem;
  color: #777;
  font-size: 0.85rem;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .footer-links a {
    display: block;
    margin: 10px 0;
  }
}
