* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body, html {
  height: 100%;
   background:#ececec;

}

/* Header container */
.header-container {
  position: fixed;   /* keeps header visible */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 80px;
  background: linear-gradient(135deg, #cc6200, #e6a300);  /* dark for visibility */
  z-index: 1000;
}

/* Left image */
.header-left img {
  width: 120px;
  height: auto;
}

/* Nav links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #00c6ff;
  font-weight: bold;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: #222;
  list-style: none;
  padding: 10px 0;
  border-radius: 8px;
  min-width: 180px;
  z-index: 100;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
}

.dropdown.active .dropdown-menu {
  display: block; /* click toggles dropdown */
}


/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #fff; /* visible on dark background */
  border-radius: 2px;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    padding-left:110px;
  }

  .header-container {
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  position: relative;
  background: #111; /* changed to dark so hamburger is visible */
  z-index: 1000;
   position: fixed;   /* keeps header visible */
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -250px; /* hidden initially */
    height: 100vh;
    width: 220px;
    flex-direction: column;
    background: #111;
    padding-top: 80px;
    gap: 20px;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding-left: 30px;
  }

  .nav-links.show {
    right: 0; /* slide in */
  }

  .dropdown-menu {
    position: static;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .header-left img  {
  width: 120px;
  }
}


/* home section */
.home-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  background:#ececec;
  /* margin-top: 0px; */
}

.home-left {
  flex: 1;
}

.home-left .btn.main-btn {
  margin-left: 70px;
}
.home-left h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  margin-top: 95px;
  color: black;
  padding-left: 70px;
}

.home-left p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
   padding-left: 70px;
}

.home-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-video {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  object-fit: cover;
  margin-top: 90px;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); */
}
.main-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7b00, #ffbb00); /* Gradient color */
  color: #fff;
  padding: 12px 30px;            /* Vertical and horizontal padding */
  border-radius: 8px;            /* Rounded corners */
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.main-btn:hover {
  background:linear-gradient(135deg, #cc6200, #e6a300);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 123, 0, 0.4);
}

/* responsive */
@media (max-width: 768px) {
  .home-main {
   
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  padding-top: 20px;
  padding-right: 20px;

  }

  .home-left, .home-right {
    min-width: 100%;
  }

  .home-right {
    margin-top: 20px;
  }

  .home-left h1 {
    font-size: 2rem;
  }

  .home-left p {
    font-size: 1.4rem;
    }

   .main-btn {
    padding: 10px 25px;
    font-size: 1.2rem;
  }
}

/* About Section */
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  max-width: 1100px; /* same as desktop container width */
  margin: 40px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 1.4);
  
}

.about-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  width: 100%;
   opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-card.animate {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Keep same look for image & text */
.about-left {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.about-img-wrapper {
  width: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.about-img-wrapper:hover {
  transform: scale(1.05);
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-right {
  flex: 1 1 450px;
  color: #fff;
  text-align: left;
}

.about-right h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: black;
}

.about-right p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

.about-right .btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #ff7b00, #ffbb00);;
  color: white;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
}

.about-right .btn:hover {
   background:linear-gradient(135deg, #cc6200, #e6a300);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 123, 0, 0.4);
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .about {
    max-width: 75%; /* Prevents full-width stretch */
    padding: 20px;
  }

  .about-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .about-right {
    order: 1;
    text-align: center;
  }

  .about-right h2 {
    font-size: 1.8rem;
  }

  .about-right p {
    font-size: 1.2rem;
  }

  .about-left {
    order: 2;
  }

  .about-img-wrapper {
    width: 240px;
    height: 240px;
    margin-top: 20px;
  }
}


/* Service Card */
.services {
  width: 100%;
  padding: 30px 50px;
  background: #ffffff;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-container h2 {
  font-size: 2.5rem;
  color: black;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Service Card */
.services{
   background:#ececec;
}
.service-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 1.4);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
  /* Animation initial state */
  opacity: 0;
  transform: translateY(50px);
}

.service-card.animate {
  animation: slideUpFade 1s ease forwards;
}

@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-img {
  flex: 1;
}

.service-img img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-content {
  flex: 2;
}

.service-content h3 {
  font-size: 2rem;
  color: black;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
/* responsive */
@media (max-width: 768px) {

  
  .service-card {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    /* max-width: 390%; */
  }

  .service-content h3 {
    font-size: 1.8rem;
  }

  .service-content p {
    font-size: 1.2rem;
  }

  .service-img img {
    width: 100%;
    max-width: 100%;
  }

  .service-card {
    padding: 20px;
  }
}



/* Button */
.service-content .btn {
  background: linear-gradient(135deg, #ff7b00, #ffbb00);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.service-content .btn:hover {
  background:linear-gradient(135deg, #cc6200, #e6a300);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 123, 0, 0.4);
}



/* astrology */
.astrology {
  width: 100%;
  padding: 30px 50px;
  background:#ececec;;
}

.astrology-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Big Card */
.astrology-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 1.4);
  text-align: center;

  /* Animation initial state */
  opacity: 0;
  transform: translateY(50px);
}

.astrology-card.animate {
  animation: slideUpFade 1s ease forwards;
}

/* Heading + Intro */
.astrology-card h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.astro-intro {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 30px;
  line-height: 1.6;
}

.astro-intro1 {
  font-size: 1rem;              /* Base font size */
  line-height: 1.6;             /* Comfortable line spacing */
  color: #333;
  margin-bottom: 20px;
  padding-left: 280px;           /* Space for bullets */
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  list-style: disc;
  text-align: left;
}

.astro-intro1 li {
  margin-bottom: 10px;          /* Space between list items */
}

/* Inner Small Boxes */
.astro-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.astro-box {
  background: #ececec;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.astro-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.astro-box h3 {
  font-size: 1.3rem;
  color: #ff7b00;
  margin-bottom: 10px;
}

.astro-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Button */
.astrology-card .btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7b00, #ffbb00);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
}

.astrology-card .btn:hover {
  background: linear-gradient(135deg, #cc6200, #e6a300);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 123, 0, 0.4);
}

/* Animation */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* responsive */
@media (max-width: 768px) {
  .astro-boxes {
    grid-template-columns: 1fr;
  }

  .astro-box {
    padding: 15px;
  }

  .astro-box h3 {
    font-size: 1.5rem;
  }

  .astro-box p {
    font-size: 0.9rem;
  }

  .astrology-card1 {
    padding: 20px;
  }

  .astrology-card1 h2 {
    font-size: 1.6rem;
  }

 .astro-intro1 {
    font-size: 0.9rem;
    padding-left: 15px;
    text-align: left;
    /* gap: 15px; */
  }
}


/* blog */
.blog {
  width: 100%;
  padding: 30px 50px;
  background:#ececec;
}

.blog-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* Big Card */
.blog-card {
  background: white;
  padding: 40px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 1.4);
  text-align: center;

  /* Animation initial state */
  opacity: 0;
  transform: translateY(50px);
}

.blog-card.animate {
  animation: slideUpFade 1s ease forwards;
}

/* Heading + Intro */
.blog-card h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
}

.blog-intro {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 30px;
  line-height: 1.6;
}

.blog-intro1 {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: left;
  padding-left: 185px;
}

/* Inner Small Boxes */
.blog-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.blog-box {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.blog-box h3 {
  font-size: 1.3rem;
  color: #ff7b00;
  margin-bottom: 10px;
}

.blog-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Button */
.blog-card .btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7b00, #ffbb00);
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
}

.blog-card .btn:hover {
  background: linear-gradient(135deg, #cc6200, #e6a300);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 123, 0, 0.4);
}

/* Animation */
@keyframes slideUpFade {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* responsive */
/* Container */
.blog {
  padding: 60px 50px;
   background:#ececec;
}

.blog-container {
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card h2 {
  font-size: 2rem;
  color: black;
  margin-bottom: 20px;
  text-align: center;
}

.blog-intro {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
  text-align: center;
}

/* Inner Boxes */
.blog-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.blog-box {
  background:#ececec;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-box h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ff7b00;
}

.blog-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .blog-boxes {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .blog-box h3 {
    font-size: 1.2rem;
  }

  .blog-box p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .blog-boxes {
    grid-template-columns: 1fr; /* Stack boxes vertically */
  }

  .blog-box {
    padding: 15px;
  }

  .blog-box h3 {
    font-size: 1.1rem;
  }

  .blog-box p {
    font-size: 0.9rem;
  }
}


/* fotter section */
.contact {
  background:#ececec;
  padding: 40px 50px 1px;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #1a1a1a;
}

.contact-container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff7b00;
}

.contact-form .btn {
  background: linear-gradient(135deg, #ff7b00, #ffbb00);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background: linear-gradient(135deg, #cc6200, #e6a300);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 123, 0, 0.3);
}

/* Footer */
.footer {
   background:#ececec;
  color: black;
  text-align: center;
  padding: 20px 10px;
}

.footer h1{
  font-size: 1.2rem;
  margin-bottom: 1px;
  color: #555;
}
.footer p {
  font-size: .80rem;
  margin-bottom: 1px;
  counter-reset: #555;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Wrap on mobile */
  margin-bottom: 20px;
  padding-top: 20px;
}

.social-icons a {
  color: black;
  font-size: 1.6rem; /* Icon size */
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ff7b00; /* Optional hover color */
}

.footer-text {
  font-size: 1rem;
  color: #ccc;
}

/* Mobile */
@media (max-width: 768px) {
  .social-icons a {
    font-size: 1.6rem;
    gap: 15px;
  }

  .footer p {
    font-size: .8rem;
  }

  .footer-text {
    font-size: 0.8rem;
  }
}