body {
  margin: 0;
  font-family: Arial;
}

.container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

/* FOOTER WRAPPER (for sticky layout) */
#footer {
  flex-shrink: 0;
}

/* MAIN FOOTER */
.main-footer {
  background: #2b2b2b;
  color: #fff;
  padding: 30px 20px;
  margin-top: auto;
}

/* FOOTER LAYOUT */
.main-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
}

/* COLUMNS */
.footer-column {
  flex: 1;
  margin: 10px;
}

/* HEADINGS */
.footer-column h3 {
  margin-bottom: 10px;
  color: #ffd700;
}

/* LINKS */
.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 8px 0;
}

.footer-column ul li a {
  color: #f5f5f5;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #ffd700;
}


html, body {
  height: 100%;
  margin: 0;
}

#header {
  flex-shrink: 0;
}

main {
  flex: 1;
}

/* Header */
.main-header {
  background: #8B0000;
  color: white;
  padding: 15px 0;

  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

main {
  margin-top: 80px;
}

html {
  scroll-behavior: smooth;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-section img {
  width: 80px;
  height: 80px;
  border-radius: 50%; /* makes it round */
  margin-right: 10px;
}

.logo-section h2 {
  margin: 0;
  font-size: 20px;
}

.hero-banner {
  margin-top: 110px;
  width: 100%;
}

.hero-banner img {
  width: 100%;
  height: 30%;   /* IMPORTANT */
  display: block;
}

/* MAIN CONTENT SECTION */
.content-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  line-height: 1.7;
  color: #333;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* HEADINGS */
.content-section h1 {
  font-size: 32px;
  color: #8B0000;
  margin-bottom: 20px;
  text-align: center;
}

.content-section h2 {
  font-size: 24px;
  color: #b8860b; /* golden tone */
  margin-top: 30px;
  margin-bottom: 10px;
}

/* PARAGRAPHS */
.content-section p {
  font-size: 16px;
  margin-bottom: 15px;
}

/* LISTS */
.content-section ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.content-section ul li {
  margin-bottom: 8px;
}

/* STRONG TEXT */
.content-section strong {
  color: #000;
}

/* SECTION BOX STYLE (optional premium look) */
.content-section {
  background: #fffaf0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.content-section h2 {
  border-left: 4px solid #8B0000;
  padding-left: 10px;
}

/* CTA BUTTON */
.btn {
  display: inline-block;
  background: linear-gradient(45deg, #8B0000, #b22222);
  color: white;
  padding: 12px 25px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
  font-weight: bold;
}

/* Hover Effect */
.btn:hover {
  background: linear-gradient(45deg, #a00000, #d12c2c);
  transform: translateY(-2px);
}

/* Center Button */
.btn-container {
  text-align: center;
  margin-top: 25px;
}

/* TWO COLUMN SECTION */
.two-column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 50px auto;
  gap: 40px;
  padding: 20px;
}

/* TEXT SIDE */
.text-section {
  flex: 1;
}

.text-section h2 {
  font-size: 24px;
  color: #b8860b;
  margin-bottom: 10px;
}

.text-section p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* IMAGE SIDE */
.image-section {
  flex: 1;
  text-align: center;
}

.image-section img {
  width: 50%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.two-column {
  background: #fffaf0;
  border-radius: 12px;
}

/* SECTION LAYOUT */
.zodiac-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 60px auto;
  padding: 20px;
  gap: 40px;
}

/* LEFT TEXT */
.zodiac-text {
  flex: 1;
}

.zodiac-text h2 {
  font-size: 26px;
  color: #8B0000;
  margin-bottom: 15px;
}

.zodiac-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.zodiac-text ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.zodiac-text li {
  margin-bottom: 8px;
}

/* RIGHT VISUAL */
.zodiac-visual {
  position: relative;
  width: 320px;
  height: 320px;
}

/* OUTER RING POSITION */
.outer-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* OUTER ROTATION */
.rotate-outer {
  width: 100%;
  height: 100%;
  animation: spinClock 75s linear infinite;
}

/* INNER CHAKRA POSITION */
.inner-chakra {
  position: absolute;
  width: 275px;
  height: 275px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* INNER ROTATION */
.rotate-inner {
  width: 100%;
  height: 100%;
  animation: spinAnti 65s linear infinite;
}

/* IMAGES */
.rotate-inner img,
.rotate-outer img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
}

/* ANIMATION */
@keyframes spinClock {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinAnti {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.rotate-inner,
.rotate-outer {
  transform-origin: center;
  will-change: transform;
}

/* MAIN SECTION */
.about-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #333;
}

/* HEADINGS */
.about-section h1 {
  font-size: 32px;
  color: #8B0000;
  text-align: center;
  margin-bottom: 20px;
}

.about-section h2 {
  font-size: 26px;
  color: #b8860b;
  margin-top: 40px;
  margin-bottom: 15px;
}

.about-section h3 {
  font-size: 20px;
  color: #8B0000;
  margin-bottom: 10px;
}

/* TEXT */
.about-section p {
  font-size: 16px;
  margin-bottom: 12px;
}

/* STEP BOXES */
.step-box {
  background: #fffaf0;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* HIGHLIGHT */
.highlight {
  color: green;
  font-weight: bold;
}

/* NOTE */
.note {
  font-size: 14px;
  color: #666;
  font-style: italic;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-section h1 {
    font-size: 24px;
  }

  .about-section h2 {
    font-size: 22px;
  }
}

/* MAIN SECTION */
.nadi-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.8;
  color: #333;
  background: #fffaf0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* HEADINGS */
.nadi-section h1 {
  font-size: 34px;
  color: #8B0000;
  text-align: center;
  margin-bottom: 20px;
}

.nadi-section h2 {
  font-size: 26px;
  color: #b8860b;
  margin-top: 35px;
  margin-bottom: 10px;
  border-left: 4px solid #8B0000;
  padding-left: 10px;
}

/* PARAGRAPH */
.nadi-section p {
  font-size: 16px;
  margin-bottom: 12px;
}

/* LIST */
.nadi-section ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.nadi-section li {
  margin-bottom: 8px;
}

/* STRONG */
.nadi-section strong {
  color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
  .nadi-section h1 {
    font-size: 24px;
  }

  .nadi-section h2 {
    font-size: 20px;
  }

  .nadi-section {
    padding: 15px;
  }
}

/* CONTACT SECTION */
.contact-section {
  max-width: 700px;
  margin: 50px auto;
  padding: 25px;
  background: #fffaf0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* HEADING */
.contact-section h1 {
  text-align: center;
  color: #8B0000;
  margin-bottom: 10px;
}

/* INTRO */
.contact-intro {
  text-align: center;
  margin-bottom: 20px;
}

/* CONTACT INFO */
.contact-info {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 16px;
}

/* FORM */
.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* BUTTON (reuse your existing .btn if already created) */
.contact-form .btn {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-section {
    margin: 20px;
    padding: 15px;
  }
}


/* Mobile CSS*/
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  nav a {
    display: block;
    margin: 8px 0;
  }
}

@media (max-width: 768px) {
  .two-column,
  .zodiac-section {
    flex-direction: column;
    text-align: center;
  }
}

.hero-banner img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .zodiac-visual {
    width: 250px;
    height: 250px;
    margin: auto;
  }

  .inner-chakra {
    width: 170px;
    height: 170px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .main-footer .container {
    flex-direction: column;
  }
}

.contact-form input,
.contact-form textarea {
  font-size: 16px;
}

@media (max-width: 768px) {
  section {
    padding: 20px 15px;
  }
}

