* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
  color: inherit;
  text-decoration: none;
}

body {
  background: #fff;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: linear-gradient(90deg, #ff7a00, #ff9a2a);
  color: #fff;
}

.logo {
  font-weight: bold;
  font-size: 22px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.btn {
  background: #fff;
  color: #ff7a00;
  padding: 10px 18px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* MENU ICON */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  height: 100%;
  background: #fff;
  padding: 20px;
  transition: 0.3s;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  color: #333;
  text-decoration: none;
}

.close-btn {
  margin-bottom: 20px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 8%;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  color: #fff;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.hero-image img {
  width: 400px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image img {
    width: 200px;
    margin-top: 20px;
  }
}

/* SECTION */
.plans {
  padding: 19px 8%;
  background: #f3f3f3;
}

/* CONTAINER */
.plans-container {
  display: flex;
  gap: 30px;
}

/* CARD */
.plan-card {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  transition: 0.3s;
}

/* TAG */
.tag {
  display: inline-block;
  background: #eee;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  margin-bottom: 10px;
}

/* TEXT */
.plan-card h3 {
  margin: 10px 0;
}

.plan-card p {
  font-size: 14px;
  color: #555;
}

/* PRICE ROW FIX */
.price-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

/* PRICE BOX */
.price-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* PRICE */
.price a {
  color: #ff6600 !important;     /* orange color */
  text-decoration: none !important;  /* underline remove */
  font-weight: 600;
  -webkit-text-fill-color: #ff6600; /* iPhone fix */
}

.price a:hover,
.price a:active,
.price a:visited {
  color: #ff6600 !important;
  text-decoration: none !important;
}

.old-price {
  text-decoration: line-through;
  color: #999;
}

.discount {
  color: #ff7a00;
  font-size: 13px;
}

/* BUTTON */
.arrow-btn {
  background: #ff7a00;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
}

/* MAIN BUTTON */
.center-btn {
  text-align: center;
  margin-top: 40px;
}

.main-btn {
  background: #ff7a00;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

/* HOVER */
.plan-card:hover {
  transform: translateY(-8px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .plans-container {
    flex-direction: column;
  }
}

.about-section-new {
  background: #fff;
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 15px;
}

.grid-item {
  border-radius: 12px;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Layout variations */
.large {
  grid-column: span 2;
}

.small {
  grid-column: span 1;
}

.experience {
  background: linear-gradient(135deg, #ff7a00, #ff5500);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.experience h2 {
  font-size: 32px;
  margin: 0;
}

/* RIGHT CONTENT */
.about-content .subtitle {
  color: #ff7a00;
  font-weight: 600;
  font-size: 14px;
}

.about-content h2 {
  font-size: 32px;
  margin: 15px 0;
  color: #222;
}

.about-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background: #ff7a00;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #ff5500;
}

/* 🔥 RESPONSIVE */
@media (max-width: 992px) {
  .container {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-rows: 150px 150px;
  }
}

.zodiac-light {
  padding: 0px 20px;
  background: #fff;
  text-align: center;
}

.title {
  font-size: 36px;
  margin-bottom: 50px;
  color: #222;
}

/* GRID */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.card {
  padding: 25px 15px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eee;
  transition: 0.3s;
}

/* HOVER EFFECT 🔥 */
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: #ff7a00;
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7a00, #ff5500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* TEXT */
.card h3 {
  color: #333;
  margin-bottom: 5px;
}

.card p {
  font-size: 14px;
  color: #777;
}

/* 🔥 RESPONSIVE */
@media (max-width: 1100px) {
  .zodiac-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .zodiac-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .title {
    font-size: 26px;
  }
}

.services {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.subtitle {
  color: #ff6a00;
  letter-spacing: 2px;
  font-size: 14px;
}

.title {
  font-size: 36px;
  color: #222;
  margin: 10px 0;
}

.desc {
  color: #666;
  max-width: 600px;
  margin: auto;
}

/* MAIN LAYOUT */
.services-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
}

/* SIDE */
.side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 250px;
}

/* CENTER */
.center img {
  width: 260px;
  display: block;
}

/* CARDS */
.card {
  background: #fff3eb;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #ffd8c2;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #ff6a00;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-main {
    flex-direction: column;
  }

  .side {
    width: 100%;
  }

  .center {
    margin: 20px 0;
  }
}


#astroFixV2 {
  padding: 80px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.astroWrapV2 {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.astroHeaderV2 {
  text-align: center;
  margin-bottom: 40px;
}

.astroHeaderV2 h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.astroHeaderV2 p {
  color: #666;
}

/* GRID */
.astroGridV2 {
  display: grid;
  grid-template-columns: 250px 180px 250px; /* FIXED WIDTH */
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/* COLUMN */
.astroColV2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CENTER */
.astroCenterV2 {
  display: flex;
  justify-content: center;
}

.astroCenterV2 img {
  width: 160px;
}

/* CARD */
.astroItemV2 {
  background: #fff7f2;
  border: 1px solid #ffd8c2;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  width: 100%; /* IMPORTANT FIX */
}

.astroItemV2 h3 {
  color: #ff6a00;
  font-size: 14px;
  margin-bottom: 5px;
}

.astroItemV2 p {
  font-size: 13px;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .astroGridV2 {
    grid-template-columns: 1fr;
  }

  .astroCenterV2 {
    order: -1;
    margin-bottom: 20px;
  }

  .astroColV2 {
    align-items: center;
  }

  .astroItemV2 {
    width: 90%;
  }
}

.circleRotate {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff6a00;

  animation: spin 10s linear infinite;
}

.circleRotate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ROTATION */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* REMOVE GAP FROM PREVIOUS SECTION */
section {
  margin: 0;
}

/* TIPS STRIP */
.tipsBar {
  background: #fff3eb;
  border-top: 2px solid #ff6a00;
  border-bottom: 2px solid #ff6a00;

  padding: 25px 20px;
}

/* INNER FLEX */
.tipsInner {
  max-width: 1100px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LEFT TITLE */
.tipsInner h2 {
  color: #222;
  font-size: 28px;
}

/* RIGHT TEXT */
.tipsInner p {
  color: #555;
  max-width: 400px;
  text-align: right;
}

/* MOBILE */
@media (max-width: 768px) {
  .tipsInner {
    flex-direction: column;
    text-align: center;
  }

  .tipsInner p {
    text-align: center;
  }
}

.astroTabsSection {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.astroContainer {
  max-width: 900px;
  margin: auto;
}

.topTag {
  color: #ff6a00;
  font-size: 12px;
  letter-spacing: 2px;
}

h2 {
  margin-bottom: 30px;
}

{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* SECTION */
.astroTabsSection {
  padding: 80px 20px;
  background: #ffffff;
  font-family: Arial, sans-serif;
  text-align: center;
}

.astroContainer {
  max-width: 900px;
  margin: auto;
}

/* HEADER */
.topTag {
  color: #ff6a00;
  font-size: 12px;
  letter-spacing: 2px;
}

h2 {
  margin: 10px 0 30px;
  font-size: 32px;
}

/* TABS */
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tabBtn {
  padding: 10px 20px;
  border: 1px solid #ff6a00;
  background: transparent;
  color: #ff6a00;
  cursor: pointer;
  border-radius: 5px;
}

.tabBtn.active {
  background: #ff6a00;
  color: #fff;
}

/* CONTENT */
.tabContent {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.tabContent.active {
  display: flex;
}

/* CARD */
.card {
  background: #fff7f2;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ffd8c2;
  text-align: left;
}

.card h3 {
  color: #ff6a00;
  margin-bottom: 5px;
}

.card p {
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .card {
    text-align: center;
  }

  .tabs {
    flex-direction: column;
  }
}

/*  Form Section    */

.zodiacSection01 {
  padding: 0px 20px;
  background: #fff;
}

.zodiacContainer01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

/* LEFT */
.zodiacForm01 {
  flex: 1;
}

.zodiacTag01 {
  color: #ff6a00;
  font-size: 13px;
  letter-spacing: 2px;
}

.zodiacForm01 h2 {
  font-size: 32px;
  margin: 10px 0;
}

.zodiacDesc01 {
  color: #666;
  margin-bottom: 20px;
}

/* FORM */
form .row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

form input,
form select {
  flex: 1;
  padding: 12px;
  border: 1px solid #ffd8c2;
  border-radius: 5px;
  outline: none;
}

form button {
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
}

/* RIGHT IMAGE */
.zodiacImage01 img {
  width: 400px;
  max-width: 100%;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 900px) {
  .zodiacContainer01 {
    flex-direction: column;
  }

  form .row {
    flex-direction: column;
  }

  .zodiacImage01 img {
    width: 100%;
  }
}


/* New Pop form */

.popupOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;

  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popupBox {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 500px;
  max-width: 90%;
  position: relative;
}

.closeBtn {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  font-size: 20px;
}

/* FORM */
.popupBox .row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.popupBox input,
.popupBox select {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
}

.popupBox button {
  width: 100%;
  padding: 12px;
  background: #ff6a00;
  color: #fff;
  border: none;
}

/* MOBILE */
@media (max-width: 600px) {
  .popupBox .row {
    flex-direction: column;
  }
}


/* Why Choose us section */

/* SECTION */
.mkWhySectionX99 {
  background: #f4ebe5;
  border-top: 3px solid #ff6a00;
  border-bottom: 3px solid #ff6a00;

  padding: 80px 20px 60px; /* extra top space */
  margin-top: 40px; /* 🔥 THIS FIXES OVERLAP */

  position: relative;
  z-index: 1;
}

/* CONTAINER */
.mkWhyContainerX99 {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.mkWhyTitleX99 {
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
}

/* DESC */
.mkWhyDescX99 {
  max-width: 700px;
  margin: auto;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* STATS */
.mkWhyStatsX99 {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 20px;
}

/* BOX */
.mkWhyBoxX99 {
  flex: 1;
}

/* NUMBER */
.mkWhyBoxX99 h3 {
  font-size: 40px;
  color: #ff6a00;
  margin-bottom: 8px;
}

/* TEXT */
.mkWhyBoxX99 p {
  font-size: 14px;
  color: #333;
}

/* MOBILE */
@media (max-width: 768px) {
  .mkWhyStatsX99 {
    flex-direction: column;
    gap: 30px;
  }

  .mkWhySectionX99 {
    margin-top: 20px;
  }
}


/* Footer CSS */

/* FOOTER */
.mkFooterX01 {
  background: #fff;
  padding: 60px 20px 30px;
  border-top: 2px solid #ff6a00;
}

/* CONTAINER */
.mkFooterContainerX01 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* COLUMN */
.mkFooterColX01 {
  flex: 1;
  min-width: 180px;
}

/* BRAND */
.mkFooterBrandX01 h2 {
  color: #ff6a00;
  font-size: 26px;
  margin-bottom: 10px;
}

.mkFooterBrandX01 p {
  font-size: 14px;
  color: #555;
}

.mkFooterBrandX01 span {
  display: block;
  margin-top: 5px;
  color: #777;
  font-size: 13px;
}

/* HEADINGS */
.mkFooterColX01 h4 {
  margin-bottom: 15px;
  color: #222;
}

/* LINKS */
.mkFooterColX01 ul {
  list-style: none;
}

.mkFooterColX01 ul li {
  margin-bottom: 8px;
}

.mkFooterColX01 ul li a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  transition: 0.3s;
}

.mkFooterColX01 ul li a:hover {
  color: #ff6a00;
}

/* BOTTOM */
.mkFooterBottomX01 {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid #ddd;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* TEXT */
.mkFooterBottomX01 p {
  color: #333;
  font-size: 14px;
}

/* BUTTONS */
.mkAppBtnsX01 {
  display: flex;
  gap: 10px;
}

.mkBtnX01 {
  background: #000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
}

/* MOBILE */
@media (max-width: 768px) {
  .mkFooterContainerX01 {
    flex-direction: column;
  }

  .mkFooterBottomX01 {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}






