:root {
  --primary-color: #e5f0f5;
  --secondary-color: #ff7010;
  --dark-color: #032e13;
  --white-color: #ffffff;
  --black-color: #000000;
  --orange-color: #e66712;
  --dark-color3: #1a1a1a;
  --color1: #0f0f0f;
  --color3: #2a2a2a;
  --datepicker-border: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 26px;
  margin: 0;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  color: var(--white-color);
  background-color: var(--dark-color);
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  margin: 0;
}

a,
a:hover,
a:focus {
  color: var(--white-color) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
  color: inherit;
}

.appoint {
  box-sizing: border-box;
  border: 0;
  border-radius: 25px !important;
  color: var(--secondary-color);
  padding: 0.5em 1em !important;
  background: #032e13 !important;
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
}

.hide {
  display: none !important;
}

/* common css */
.px_padderTop10 {
  padding-top: 10px;
}

.px_padderTop20 {
  padding-top: 20px;
}

.px_padderTop30 {
  padding-top: 30px;
}

.px_padderTop40 {
  padding-top: 40px;
}

.px_padderTop50 {
  padding-top: 50px;
}

.px_padderTop60 {
  padding-top: 60px;
}

.px_padderTop70 {
  padding-top: 70px;
}

.px_padderTop80 {
  padding-top: 80px;
}

.px_padderTop90 {
  padding-top: 90px;
}

.px_padderTop100 {
  padding-top: 90px;
}

.px_padderBottom5 {
  padding-bottom: 5px;
}

.px_padderBottom10 {
  padding-bottom: 10px;
}

.px_padderBottom20 {
  padding-bottom: 20px;
}

.px_padderBottom30 {
  padding-bottom: 30px;
}

.px_padderBottom40 {
  padding-bottom: 40px;
}

.px_padderBottom50 {
  padding-bottom: 50px;
}

.px_padderBottom60 {
  padding-bottom: 60px;
}

.px_padderBottom70 {
  padding-bottom: 70px;
}

.px_padderBottom80 {
  padding-bottom: 80px;
}

.px_padderBottom90 {
  padding-bottom: 90px;
}

.px_padderBottom100 {
  padding-bottom: 90px;
}

.px_padderBottom55 {
  padding-bottom: 55px;
}

.px_margin0 {
  margin: 0px;
}

.px_font14 {
  color: var(--white-color) !important;
  font-size: 14px;
  line-height: 24px;
}

.px_toggle {
  display: none;
}

.px_heading {
  font-size: 36px;
  color: var(--white-color);
  text-transform: capitalize;
  margin: 0;
  padding-bottom: 23px;
  position: relative;
  margin: -8px 0 20px;
}

.px_heading.px_heading_center:after {
  left: 50%;
  transform: translateX(-50%);
}

.px_heading:after {
  position: absolute;
  content: "";
  width: 100px;
  border-bottom: 3px solid var(--secondary-color);
  left: 0;
  bottom: 0;
}

.px_subheading {
  font-size: 20px;
  text-transform: capitalize;
}

.px_orange {
  color: var(--secondary-color);
}

.px_white {
  color: var(--white-color);
}

/* Button Styles */
.px_btn {
  height: 50px;
  background-color: var(--secondary-color);
  font-size: 14px;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  padding: 0 30px;
  position: relative;
  color: var(--white-color);
  border: 2px solid var(--secondary-color);
  outline: none;
  width: auto;
  transition: all 0.3s ease;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
}

.px_btn:hover {
  background-color: transparent;
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 103, 18, 0.3);
}

/* Form Controls */
.form-control {
  height: 50px;
  background-color: var(--dark-color3);
  border: 1px solid var(--datepicker-border);
  outline: none;
  box-shadow: none !important;
  color: var(--primary-color);
  padding: 0 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--secondary-color);
  background-color: var(--color1);
}

.form-control::placeholder {
  color: #97b0c1;
}

/* Header Styles */
.px_header_wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  background-color: var(--orange-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.px_logo {
  display: flex;
  align-items: center;
}

.px_menu_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  background-color: var(--orange-color);
}

.px_menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.px_menu>ul>li {
  display: inline-flex;
  text-transform: capitalize;
  margin: 0 15px;
  position: relative;
}

.px_menu>ul>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 20px 0;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.px_menu>ul>li>a:hover {
  color: #7f1615 !important;
}

.px_menu>ul>li>a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 15px;
  left: 0;
  background-color: #7f1615 !important;
  transition: width 0.3s ease;
}

.px_menu>ul>li>a:hover::after {
  width: 100%;
}

/* Mobile Menu */
.offcanvas-body {
  background: var(--orange-color);
}

.offcanvas-body ul>li a {
  font-size: 24px;
  font-weight: 500;
  color: var(--primary-color);
}

.offcanvas-body ul>li {
  border-bottom: 1px solid #fff;
}
 
:root {
  --banner-desktop-h: 80vh;
  --banner-tablet-h: 70vh;
  --banner-mobile-h: 55vh;
} 
.px_banner_wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
 
.px_banner_slider.swiper {
  width: 100%;
  height: var(--banner-desktop-h);
}
 
.px_banner_item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}
 
.px_banner_item picture,
.px_banner_item img {
  display: block;
  width: 100%;
  height: 100%;
}
 
.px_banner_img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center; 
  display: block;
}
 
@media (max-width: 1024px) {
  .px_banner_slider.swiper {
    height: var(--banner-tablet-h);
  }
}

@media (max-width: 768px) {
  .px_banner_slider.swiper {
    height: var(--banner-mobile-h);
  }
 
  .px_banner_img {
    object-position: 50% 50%; 
  }
}
 
@media (max-width: 480px) {
  .px_banner_slider.swiper {
    height: 30%;
  }

  .px_banner_img {
    object-position: center;
    object-fit: contain;
  }
 .content-layer>.row>.col-md-12 {
    margin-top: 0px !important;
  }
  .about-section .about-image img {
    height: 300px;
  }
}
 
.px_banner_item.full-visible .px_banner_img {
  object-fit: contain; 
  background-color: #f5f5f5; 
}


.about-section {
  background: #7f1615;
  position: relative;
  overflow: hidden;
}

.about-section p {
  color: #d1d1d1;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-section .about-image img {
  height: 380px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-section .about-image img:hover {
  transform: scale(1.10);
}

.zodiac-sign {
  background: var(--orange-color);
  color: var(--white-color);
  font-weight: 600;
  padding: 30px;
  border-radius: 18px;
}


/* Service Section - Enhanced Cards */
.px_service_wrapper {
  background-color: var(--dark-color);
  padding: 80px 0;
}

.px_service_box {
  background: #230428;
  padding: 40px 25px;
  margin-top: 30px;
  flex: 1 1 0;
  min-width: 180px;
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.px_service_box p {
  color: var(--white-color) !important;
}

.px_service_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 112, 16, 0.1),
      transparent);
  transition: left 0.5s ease;
}

.px_service_box:hover::before {
  left: 100%;
}

.px_service_box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(230, 103, 18, 0.2);
  border-color: var(--secondary-color);
}

.px_service_box .px_icon {
  width: 90px;
  height: 90px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, var(--secondary-color), #ff8840);
  margin-bottom: 25px;
  box-shadow: 0 8px 20px rgba(230, 103, 18, 0.3);
}

.px_service_box .px_icon:after {
  border: 2px dashed rgba(255, 112, 16, 0.3);
  content: "";
  position: absolute;
  left: -12px;
  top: -12px;
  bottom: -12px;
  right: -12px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.px_service_box:hover .px_icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 12px 30px rgba(230, 103, 18, 0.5);
}

.px_service_box:hover .px_icon:after {
  border-color: var(--secondary-color);
  transform: rotate(180deg);
}

.px_service_box .px_icon img,
.px_service_box .px_icon svg {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1);
}

.px_service_box .px_subheading {
  margin: 25px 0 15px;
  padding-bottom: 18px;
  position: relative;
  font-weight: 600;
  font-size: 22px;
  color: var(--white-color);
}

.px_service_box .px_subheading:after {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), #ff8840);
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.px_service_box:hover .px_subheading:after {
  width: 100px;
}

.px_service_box p {
  font-size: 15px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.px_link {
  text-transform: capitalize;
  font-size: 14px;
  line-height: 24px;
  color: var(--secondary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--white-color);
  padding: 8px 12px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.px_link:hover {
  color: #ff8840;
  gap: 12px;
}

/* Vaastu Energy Section  */
.px_whychoose_wrapper {
  background-color: #7f1615;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
  margin-top: -10px;
  position: relative;
  overflow: hidden;
}

.px_whychoose_wrapper::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 2, 16, 0.1), transparent);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: pulse 4s ease-in-out infinite;
}

.px_whychoose_wrapper::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 112, 16, 0.08), transparent);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  animation: pulse 5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.px_whychoose_box {
  position: relative;
  z-index: 1;
  padding: 30px 20px;
  transition: all 0.4s ease;
  text-align: center;
}

.px_whychoose_box:hover {
  transform: translateY(-10px);
}

.px_number {
  display: block;
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 30px;
  z-index: 1;
}

.px_number img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.before-img00 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: rotated 20s infinite linear;
  width: 160px;
  height: 160px;
}

@keyframes rotated {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.px_whychoose_box .px_number>span {
  font-size: 32px;
  font-family: "Philosopher", sans-serif;
  font-weight: 700;
  color: #ffffff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.px_whychoose_box h4 {
  font-size: 22px;
  margin: 25px 0 15px;
  text-align: center;
  transition: all 0.3s ease;
  color: var(--white-color);
  font-weight: 600;
}

.px_whychoose_box p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 15px;
}

.px_whychoose_box:hover h4 {
  color: var(--secondary-color);
  text-shadow: 0 0 10px rgba(255, 112, 16, 0.3);
}

/* Footer Styles */
.px_footer_wrapper {
  background-image: url(../images/footer-bg.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
  padding: 60px 0 40px;
}

.px_footer_wrapper:before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.658);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.px_footer_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.px_footer_widget {
  flex: 1;
  min-width: 250px;
}

.px_footer_widget>p {
  width: 90%;
  margin: 18px 0 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.px_footer_widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.px_footer_widget>ul>li {
  padding-bottom: 12px;
  position: relative;
  font-size: 15px;
  transition: all 0.3s ease;
  list-style: none;
}

.px_footer_widget>ul>li:hover {
  padding-left: 10px;
  color: var(--secondary-color);
}

.px_footer_widget>ul>li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.px_footer_widget>ul>li:hover a {
  color: var(--secondary-color);
}

.px_footer_heading {
  font-size: 24px;
  color: var(--white-color);
  line-height: 1.4;
  margin: 0 0 25px;
  position: relative;
  font-weight: 600;
}

.px_footer_heading:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color), #ff8840);
}

.px_footer_widget .px_contact_list li {
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.px_footer_widget .px_contact_list li svg {
  width: 20px;
  height: 20px;
  fill: var(--white-color);
  flex-shrink: 0;
  margin-top: 3px;
}

.px_footer_widget .px_contact_list li p {
  margin: 0;
  color: var(--white-color) !important;
  line-height: 1.6;
}

.px_share_box p {
  color: var(--white-color) !important;
}

.px_share_box ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.px_share_box ul li {
  display: inline-flex;
}

.px_share_box ul li a {
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark-color3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.px_share_box ul li a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 112, 16, 0.3);
}

.px_copyright_wrapper {
  background-color: var(--orange-color);
  padding: 20px 0;
  text-align: center;
}

.px_copyright_wrapper p {
  margin: 0;
  font-size: 14px;
}

/* Scroll to Top Button */
.go_top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  cursor: pointer;
  z-index: 999;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), #ff8840);
  box-shadow: 0 5px 20px rgba(230, 103, 18, 0.4);
  text-align: center;
  transition: all 0.3s ease;
  animation: bounce 3s infinite ease-in-out;
}

.go_top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(230, 103, 18, 0.6);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* WOW.js Animation Classes */
.wow {
  visibility: hidden;
}

/* zodiec sign css start */
.px_zodiac_sign_wrapper {
  background-image: url("../images/footernew1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.px_zodiac_sign_wrapper::before {
  position: absolute;
  content: url(../images/star.png);
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}

.px_sign_img img {
  animation: spin 9s infinite linear;
  -webkit-animation: spin 9s infinite linear;
  -moz-animation: spin 9s infinite linear;
  display: inline-block;
  width: 100%;
  margin: 0 auto;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

.px_sign_ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.px_sign_ul li {
  margin-top: 40px;
  padding: 15px 23px;
  border-radius: 0px 50px 0px 50px;
}

ul.px_sign_ul.px_sign_ul_right li {
  border-radius: 50px 0px 50px 0px;
}

.px_sign_box {
  background-color: var(--orange-color);
  max-width: 250px;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  transition: all 0.2s linear;
}

.px_sign_box>a {
  display: flex;
  align-items: center;
}

.px_sign_box .px_sign {
  background-color: var(--color1);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 22px;
  position: relative;
  transition: all 0.2s linear;
}

.px_sign_box h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 2px;
}

.px_sign_box p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
}

.px_sign_box:after,
.px_sign_box:before {
  left: 100%;
  top: 0;
  bottom: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 20px solid var(--dark-color3);
}

.px_sign_box:before {
  left: auto;
  right: 100%;
  border-left: none;
  border-right: 20px solid var(--dark-color3);
}

.px_sign_box:hover:after {
  border-left-color: var(--secondary-color);
}

.px_sign_box:hover:before {
  border-right-color: var(--secondary-color);
}

.px_sign_box:hover .px_sign:after {
  border-left-color: var(--orange-color);
}

.px_sign_box:hover .px_sign:before {
  border-right-color: var(--orange-color);
}

.px_sign_box .px_sign:before {
  left: auto;
  right: 100%;
  border-left: none;
  border-right: 18px solid var(--color1);
}

.px_sign_ul li:first-child,
.px_sign_ul li:last-child {
  transform: translateX(200px);
}

.px_sign_ul li:nth-child(2),
.px_sign_ul li:nth-child(5) {
  transform: translateX(100px);
  z-index: 1;
}

.px_sign_ul.px_sign_ul_right li:first-child,
.px_sign_ul.px_sign_ul_right li:last-child {
  transform: translateX(-200px);
}

.px_sign_ul.px_sign_ul_right li:nth-child(2),
.px_sign_ul.px_sign_ul_right li:nth-child(5) {
  transform: translateX(-100px);
}

.px_sign_img img {
  animation: spin 9s infinite linear;
  -webkit-animation: spin 9s infinite linear;
  -moz-animation: spin 9s infinite linear;
  width: 500px;
}

.px_sign_img img:hover {
  animation-play-state: paused !important;
}

.px_sign_ul_right .px_sign_box {
  margin: 40px 0 0 auto;
}

body.px-indexLight li.px_sign_box {
  background-color: #35093c;
}

body.px-indexLight li.px_sign_box span.px_sign {
  background-color: #230428;
}

/* new css */
body.px-indexLight section.px_zodiac_sign_wrapper {
  background-image: none;
}

/* zodiec sign css end */

/* zodiec sign form css start */
.px_sign_form ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-end;
}

.px_input_feild {
  position: relative;
}

.px_input_feild>span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.px_sign_form ul li {
  width: 100%;
  padding: 0 15px;
}

.px_sign_form ul li:nth-child(3) {
  max-width: 370px;
}

.px_sign_form ul li:last-child {
  max-width: 205px;
}

.px_sign_form {
  background-color: var(--color1);
  padding: 25px 33px 50px;
  border-radius: 10px;
}

li.px_form_box {
  text-align: left;
}

/* zodiec sign form css end */

.appointment-section {
  background: var(--dark-color) !important;
}

.appointment-form select:focus,
.appointment-form input:focus {
  border-color: var(--orange-color) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 111, 97, 0.25);
}

.btn-light:hover {
  background-color: var(--dark-color);
  color: #fff;
  border-color: var(--orange-color) !important;
  transition: all 0.3s ease;
}

/* breadcrum start */
.px_breadcrum_wrapper {
  background-image: url("../images/footernew1.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0 50px;
}

.px_breadcrum_wrapper h1 {
  margin: 0px 0 15px;
  font-size: 28px;
}

.px_breadcrum_wrapper .breadcrumb {
  display: inline-flex;
  background-color: var(--datepicker-border);
  border-radius: 40px;
  font-size: 14px;
  line-height: 18px;
  padding: 11px 30px;
  margin: 0px;
}

.breadcrumb>li+li:before {
  content: "\00a0/\00a0";
}

/* breadcrum end */
.px_contact_section {
  background: #230428;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.px_contact_info .px_heading {
  font-size: 32px;
}

.px_contact_info>p {
  margin-bottom: 36px;
}

/* Contact Start */
.px_info_box {
  display: flex;
  align-items: center;
}

.px_info_box .px_icon {
  width: 65px;
  background-color: var(--secondary-color);
  height: 65px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: relative;
  margin-right: 26px;
}

.px_info_box .px_icon:after {
  border: 1px dashed var(--secondary-color);
  content: "";
  position: absolute;
  left: -7px;
  top: -7px;
  bottom: -7px;
  right: -7px;
  border-radius: 100%;
}

.px_info_box:hover .px_icon:after {
  animation: spin 9s infinite linear;
  -webkit-animation: spin 9s infinite linear;
  -moz-animation: spin 9s infinite linear;
}

.px_info_box .px_info {
  width: calc(100% - 100px);
}

.px_info_box h5 {
  color: var(--secondary-color);
  font-size: 20px;
}

.px_contact_info .px_heading {
  font-size: 32px;
}

.px_contact_info>p {
  margin-bottom: 36px;
}

.px_contact_form {
  padding: 46px 50px 50px;
  background-color: var(--dark-color);
  margin-bottom: -263px;
  position: relative;
  border-radius: 10px;
}

.px_contact_form .form-control {
  border: none;
  border-radius: 0px;
  background-color: var(--white-color);
  border-radius: 50px;
}

.px_contact_form label {
  font-size: 14px;
  color: var(--white-color) !important;
  font-weight: 400;
  margin-bottom: 7px;
}

.px_contact_form textarea.form-control {
  resize: none;
  height: 120px;
  margin-bottom: 30px;
  background-color: var(--white-color);
  border-radius: 17px;
}

.px_contact_form .px_subheading {
  margin: 0 0 37px;
}

/* Contact End */

/* Responsive css */

@media (max-width: 1260px) {
  .px_infobox .px_infoicon {
    width: 40px;
    height: 40px;
  }

  .px_cart_wrapper {
    margin-left: 20px;
    padding: 10px 15px;
    font-size: 11px;
  }

  .px_menu ul li a {
    padding: 13px 0;
  }

  .px_search_wrapper {
    padding-top: 14px;
  }


  .px_info_detail ul li {
    padding: 12px;
  }
}


@media (max-width: 1199px) {

  p {
    font-size: 14px;
    line-height: 24px;
  }

  .px_product_img>img {
    width: 100%;
  }

  .px_tab_wrapper .nav-tabs>li>a {
    padding: 16px 20px;
  }

  .px_countdown_wrapper ul li {
    padding-right: 30px;
  }

  .px_tag_wrapper .px_btn {
    margin-bottom: 10px;
  }

  .px_contact_form {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .px_menu {
    display: block;
  }

  .px_about_slider {
    max-width: 100%;
    margin: auto;
  }

  .px_contact_form {
    margin-bottom: 0;
    margin-top: 50px;
  }

  .px_product_description {
    padding-top: 50px;
  }

  .px_aboutimg::before,
  .px_aboutimg::after {
    display: none;
  }

  .px_aboutimg img {
    margin: 0 20px 30px auto;
    width: 100%;
  }

  .px_padderBottom80 {
    padding-bottom: 70px;
  }

  .px_padderTop80 {
    padding-top: 70px;
    overflow: hidden;
  }

  .px_sign_ul li:first-child,
  .px_sign_ul li:last-child,
  .px_sign_ul li:nth-child(2),
  .px_sign_ul li:nth-child(5),
  .px_sign_ul.px_sign_ul_right li:first-child,
  .px_sign_ul.px_sign_ul_right li:last-child,
  .px_sign_ul.px_sign_ul_right li:nth-child(2),
  .px_sign_ul.px_sign_ul_right li:nth-child(5) {
    transform: translateX(0);
  }

  .px_sign_form ul {
    flex-direction: column;
  }

  .px_sign_box>div {
    width: calc(100% - 80px);
  }

  .px_sign_form ul li {
    max-width: 100%;
    width: 100%;
  }

  .px_sign_form ul li:nth-child(3) {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .px_sign_form ul li:last-child {
    max-width: 100%;
    text-align: center;
  }

  .px_newsletter_wrapper {
    display: block;
    text-align: center;
    float: left;
    width: 100%;
  }

  .px_newsletter_wrapper .px_heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .px_footer_inner {
    float: left;
    display: block;
    width: 100%;
    margin-bottom: 0;
    padding-top: 30px;
  }

  .px_product_img ul {
    display: flex;
    justify-content: space-around;
  }

  .px_whychoose_wrapper .px_verticle_center {
    display: block;
    text-align: center;
  }

  .px_whychoose_wrapper .px_heading:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .px_whychoose_wrapper p {
    margin-bottom: 30px;
  }

  .px_service_detail_inner {
    margin-bottom: 50px;
  }

  .px_card_box {
    text-align: center;
  }

  .px_card_box img {
    display: inline-block;
  }

  .px_service_widget.px_download_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .px_service_widget.px_download_box h3,
  .px_service_widget.px_download_box .px_gplay {
    display: inline-block;
  }

  .px_comment_form {
    margin-bottom: 50px;
  }

  .px_heading {
    font-size: 30px;
  }

  .px_about_slider .slick-dots {
    position: absolute;
    left: -45px;
    bottom: 55px;
    display: block;
  }

  .px_sign_img img {
    margin-top: 0;
  }

  .px_footer_wrapper {
    padding: 0;
  }

  .px_sign_box {
    max-width: 100%;
  }

  .px_sign_img {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .px_blog_wrapper .row {
    justify-content: center;
  }

  .form-control {
    margin-bottom: 16px;
  }

  .px_sign_text {
    max-width: 100%;
  }
}

@media (max-width: 830px) {


  .px_toggle {
    display: flex;
    margin-right: 20px;
    cursor: pointer;
  }

  .px_menu_wrapper {
    justify-content: space-between;
  }

  .px_menu ul li,
  .px_menu ul li a {
    display: block;
  }

  .px_menu {
    position: fixed;
    left: -200px;
    top: 0;
    bottom: 0;
    background-color: var(--black-color);
    z-index: 999;
    width: 300px;
    border-right: 2px solid var(--secondary-color);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: all 0.3s linear;
  }

  .menu_open .px_menu {
    left: 0;
    opacity: 1;
    visibility: visible;
  }

  .px_menu li {
    display: flex;
    border-bottom: 1px solid var(--datepicker-border);
    margin: 0;
  }

  .px_menu ul li a:before {
    display: none;
  }

}

@media (max-width: 767px) {
  .menu_open~span.px_body_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(3 29 46 / 0%);
    z-index: 0;
  }

  .px_verticle_center {
    display: block;
  }

  .px_sign_box {
    margin: 40;
    margin: 40px auto 0 !important;
  }

}

@media (max-width: 600px) {

  .px_header_detail {
    width: calc(100% - 0px);
  }

  .px_comment_section>ul>li>ul>li {
    margin-left: 40px;
  }
}

@media (max-width: 567px) {
  .px_btn {
    margin: 0;
  }

  .modal .modal-dialog {
    width: 100%;
  }

  .px_zodiac_heading {
    font-size: 24px;
  }

  .px_overview_inner {
    padding: 30px 30px 40px;
  }

  .px_cart_box {
    right: -30px;
  }
}



@media (max-width: 450px) {
  .px_menu {
    width: 250px;
  }

  .px_about_admin {
    display: block;
  }

  .px_about_admin .px_aboutImage {
    width: 100%;
    margin-right: 0;
    text-align: center;
    display: flex;
    justify-content: center;
  }

  .px_about_admin .px_aboutDetail {
    width: calc(100% - 0px);
    text-align: center;
    padding-top: 10px;
  }

  .px_btn:after,
  .px_btn:before {
    display: none;
  }

  .px_contact_expert h1 {
    font-size: 20px;
  }

  .px_contact_expert h5 {
    font-size: 15px;
  }

  .px_contact_expert .px_icon {
    width: 50px;
    height: 50px;
  }

  .px_zodiac_heading .px_sign {
    margin-right: 20px;
  }

  .px_zodiac_heading {
    font-size: 20px;
    padding-left: 10px;
  }
}

@media (max-width: 400px) {
  .modal .modal-dialog {
    margin: 50px auto;
  }

  .px_zodiac_heading {
    font-size: 16px;
  }

  .px_zodiac_heading .px_sign:after,
  .px_zodiac_heading .px_sign:before {
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }

  .px_zodiac_heading .px_sign {
    height: 60px;
    width: 35px;
  }

  .px_zodiac_heading>span {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .px_sign_form {
    padding: 25px 9px 50px;
  }
}

/* Appointment Button */
.appoint-btn {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 10px 28px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.appoint-btn:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

/* Modal */
.appointment-modal {
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--primary-color);
}

.appointment-header {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 1rem 1.5rem !important;
}

.appointment-intro {
  color: var(--black-color);
  font-size: 1rem;
  font-weight: 600 !important;
  text-align: center !important;
}

.form-label {
  color: var(--dark-color);
  font-weight: 600 !important;
}

/* Form Controls */
.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid #3345 !important;
  padding: 10px 14px !important;
  transition: all 0.2s ease-in-out;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--dark-color) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 112, 16, 0.2);
}

/* Submit Button */
.submit-btn {
  background-color: var(--dark-color) !important;
  color: var(--white-color) !important;
  font-weight: 600;
  border-radius: 50px !important;
  border: none;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--dark-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 150px;
  right: 32px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .appoint-btn {
    width: 80%;
    font-size: 1rem;
  }

  .modal-dialog {
    margin: 1rem;
  }

  .appointment-modal {
    border-radius: 15px;
  }
}

.vaastu-section-title {
  color: #ff7010;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Bento Grid Layout */
.bento-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.bento-card {
  background-color: var(--primary-color);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: var(--black-color);
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 112, 16, 0.3);
}

.bento-card i {
  font-size: 2rem;
  color: #ff7010;
  margin-bottom: 1rem;
}

.bento-card h5 {
  color: var(--black-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.bento-card p,
.bento-card ul,
.bento-card li {
  color: var(--black-color);
  font-size: 0.95rem;
}

/* Accent-colored cards */
.bento-card-accent {
  background-color: #7f1615;
}

.bento-card-wide {
  grid-column: span 2;
}

/* Precautions Section */
.precautions {
  background-color: #230428;
  border-left: 4px solid #ff7010;
  border-radius: 10px;
  color: #ffffff;
}

.vaastu-intro .highlight {
  color: #ff7010;
  font-weight: 600;
}

footer i {
  color: #ff7010;
}

.fxt {
  color: #ff7010 !important;
}

@media (max-width: 768px) {
  .bento-card-wide {
    grid-column: span 1;
  }
}

.media {
  width: 100%;
  height: 80vh;
  padding: 30px;
  border-radius: 24px;
}

/* SECTION WRAPPER */
.vaastu-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: var(--dark-color);
}

.vaastu-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 20px !important;
}

/* CARD STYLING */
.vaastu-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.vaastu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary-color);
}

.vaastu-card h5 {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.vaastu-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.vaastu-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

.vaastu-card li i {
  color: var(--secondary-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ICON RING EFFECT */
.icon-ring {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-color), #ffa45c);
  color: var(--white-color);
  font-size: 1.5rem;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(255, 112, 16, 0.3);
}

@media (max-width: 768px) {
  .vaastu-section {
    padding: 40px 5px;
  }

  .vaastu-section h2 {
    font-size: 2rem;
  }
}

/* Space Theme Animations */
.space-bg {
  position: relative;
  overflow: hidden;
}

/* Particles container */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

/* Floating stars */
.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  animation: twinkle 1s infinite;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Ripple effect */
.ripple {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rippleEffect 4s linear infinite;
}

@keyframes rippleEffect {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }

  100% {
    width: 500px;
    height: 500px;
    opacity: 0;
  }
}



@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Content should be above animations */
.content-layer {
  position: relative;
  z-index: 2;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.qr-code {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .qr-code {
    margin-bottom: 15px;
  }
}