html {

  scroll-behavior: smooth;

  overflow-x: hidden;

}







body {



  font-family: 'Rajdhani', sans-serif;



  background-color: #f8dcdc;



  font-weight: 400;



  color: #333;



  margin: 0;



  padding: 0;



  line-height: 1.6;

  overflow-x: hidden;





}







p {



  text-align: justify;

  color: #000;

  font-size: 14px;



  margin-bottom: 1em;



  font-family: 'Poppins', sans-serif;



}







h1,

h2,

h3,

h4,

h5,

h6,
strong {



  font-size: 18px;



  font-family: 'Rajdhani', sans-serif;



  font-weight: bold;



  color: #000000;



  margin-top: 1em;


  margin-bottom: 0.5em;



}







a {

  text-decoration: none;

}



a:hover {

  text-decoration: none !important;

}





.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #be1515;
  padding: 0 10px;
  margin: 0;
  height: auto;
}

.contact-info {
  display: flex;
  gap: 10px;
  font-size: 16px;
  color: #fff;
  align-items: center;
}

.contact-info span {
  display: inline-block;
}

.contact-info span:not(:last-child)::after {
  content: " |";
  margin-left: 10px;
  color: #fff;
}

.header-image img {
  max-width: 300px;
  max-height: 300px;
  padding: 10px;
  height: auto;
  object-fit: contain;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Navbar */
.navbar {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  margin: 0;
  height: 100px;
}

.navbar .navbar-brand {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}




.navbar .navbar-brand img.psychiclogo {
  object-fit: cover;
  max-height: 90px;
  /* Adjust as needed */
}

.navbar .navbar-nav {
  background-image: url('../images/menu.png');
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 14px 15px;
  margin: 0;
  align-items: center;
}

.navbar .navbar-nav .nav-link {
  color: #fff;
  padding: 12px 18px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar .navbar-nav .nav-link:hover {
  color: #f9f9f9;
}

/* Dropdown Menu */
.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 700px;
  padding: 20px;
}

.navbar .dropdown-item {
  color: #710606;
  padding: 12px 20px;
  font-size: 1rem;
  text-transform: capitalize;
}

.navbar .dropdown-item:hover {
  background-color: #710606;
  border-radius: 10px;
  color: #fff;
}

/* Active Link */
.navbar .navbar-nav .nav-link.active {
  background-color: #ffb400;
  color: #fff;
}

/* Slider Section */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 700px;
  max-height: 100vh;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

/* Social Text */
.social-text {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: block;
  text-align: center;
}

/* Adjust header and navbar for mobile view */
@media (max-width: 768px) {

  .navbar .navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
    padding:  0px;
  }

  .navbar .navbar-brand img.psychiclogo {
    object-fit: cover;
    max-height: 64px;
}
  .header-top {
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
  }

  .header-image {
    margin-top: 15px;
    max-width: 90%;
  }

  .navbar {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    height: auto;
  }

  .navbar .navbar-nav {
    width: 100%;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
  }

  .navbar .navbar-nav .nav-link {
    padding: 10px 15px;
    font-size: 1rem;
    text-align: center;
  }

  .navbar-toggler {
    border: 1px solid #fff;
  }

  .navbar-toggler-icon {
    background-color: #fff;
  }

  .slider-wrapper {
    height: 200px;
    /* Adjust height for mobile */
  }
}

/* Further adjustments for very small screens (phones) */
@media (max-width: 480px) {
  .header-top {
    display: none;
    padding: 10px 5px;
  }

  .header-image {
    margin-top: 10px;
    max-width: 80%;
  }

  .navbar .navbar-nav .nav-link {
    padding: 8px 12px;

    font-size: 0.9rem;
  }

  .slider-wrapper {
    height: 150px;
    /* Ensure the slider doesn't take too much space */
  }

  .navbar .dropdown-menu {
    width: 100%;
    padding: 5px;
    left: 0;
    transform: none;
  }

  .social-text {
    font-size: 18px;
    /* Adjust font size for mobile */
  }
}



.about-section {
  padding: 10px;

  display: flex;

  justify-content: center;

  align-items: center;

}



.about-container {

  display: flex;

  max-width: 1240px;

}



.about-text {

  flex: 1;

  padding: 20px;

}



.about-text h2 {

  font-size: 25px;

  border-radius: 5px;

  color: #9c0a0a;

  font-weight: bold;

  border-radius: 20px 20px 0 0;

  padding: 10px 15px;

  margin: 0;

  display: inline-block;

  border-bottom: 3px double #ffc107;

}





.about-text p {

  margin-top: 20px;

  font-size: 18px;

  line-height: 1.6;

}



.about-images {

  flex: 1;

  display: flex;

  flex-direction: column;
  /* Stack the elements vertically */

  align-items: center;

  position: relative;

}



.ganesh-image {

  width: 500px;

  height: 500px;

  object-fit: contain;

  position: relative;

  z-index: 1;

}



.about-paragraph {
  text-align: center;

  background-color: #ffc107;

  border-radius: 10px;

  padding: 20px;

  margin-top: 20px;

  color: #fff;

  font-size: 1.1em;

  line-height: 1.6;

}

.stars {

  display: inline-block;

  color: linear-gradient(180deg, #FF4500 0%, #FFD700 100%);


  font-size: 1em;

  padding-bottom: 10px;

}



.magic-image {

  width: 300px;

  height: auto;

  position: absolute;

  top: 150px;

  left: 150px;

  z-index: 0;

  animation: rotate360 10s infinite linear;

  opacity: 0.9;

}

.form-title {

  color: #fff;


  font-size: 1.5em;

  animation: blink 1s infinite;

}



@keyframes blink {

  0%,
  100% {
    color: #ffffff;
  }

  50% {
    color: black;
  }

}



.problem-form {

  background: #830606;

  padding: 20px;

  max-width: 400px;

  border-radius: 10px;

  margin-top: 20px;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Optional shadow for depth */

  transition: background 0.3s ease;
  /* Smooth transition for hover effects */

}



.form-description {

  color: black;
  background-color: #fff;

  text-align: center;

  margin-bottom: 10px;

}

.form-title {

  text-align: center;

}

.problem-form input,

.problem-form textarea {

  width: 100%;

  padding: 12px;

  margin: 10px 0;

  border: 1px solid linear-gradient(180deg, #FF4500 0%, #FFD700 100%);

  border-radius: 10px;

  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);

  font-size: 18px;

  background-color: #f9f9f9;

  transition: border-color 0.3s ease, background-color 0.3s ease;

}



/* Focus effect for input and textarea */

.problem-form input:focus,

.problem-form textarea:focus {

  border-color: #ffc107;

  background-color: #fff;

  border-radius: 10px;

  outline: none;

  box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);

}



.problem-form button {

  width: 100%;

  padding: 12px;

  background-color: #ffc107;

  color: linear-gradient(180deg, #FF4500 0%, #FFD700 100%);


  border: none;

  border-radius: 5px;

  cursor: pointer;

  font-weight: bold;

  font-size: 18px;

  transition: background-color 0.3s ease, transform 0.3s ease;

}



.problem-form button:hover {

  background-color: #e0b707;

  transform: scale(1.05);

}



@keyframes rotate360 {

  from {

    transform: rotate(0deg);

  }

  to {

    transform: rotate(360deg);

  }

}



@media (max-width: 1200px) {

  .about-container {

    flex-direction: column;

  }



  .about-text,
  .about-images {

    flex: none;

    width: 100%;

  }



  .ganesh-image {

    width: 80%;

  }



  .about-paragraph {

    font-size: 1em;

  }



  .problem-form {

    max-width: 90%;

  }

}



@media (max-width: 768px) {

  .about-text h2 {

    font-size: 18px;

  }



  .about-text p {

    font-size: 14px;

  }



  .ganesh-image {

    width: 90%;

  }

  .magic-image {

    top: -5%;

    left: 10px;

  }



  .about-paragraph {

    font-size: 0.9em;

  }



  .problem-form {

    max-width: 100%;

  }



  .form-title {

    font-size: 1.3em;

  }

}



@media (max-width: 480px) {

  .about-text h2 {

    text-align: center;

    font-size: 18px;

  }



  .about-text p {

    font-size: 13px;

  }



  .about-paragraph {

    font-size: 0.85em;

  }



  .problem-form input,

  .problem-form textarea {

    font-size: 14px;

  }



  .problem-form button {

    font-size: 14px;

  }

}


.services-container {
  background-image: url('../images/serviceimg.png');
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 20px;
}

.services-title h2 {
  text-align: center;
  color: #fff !important;
  font-weight: bold;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  padding: 0 20px;
}

/* Adjust grid layout for tablets */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Adjust grid layout for mobile devices */
@media (max-width: 768px) {

  .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .service-item {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .services-title h2 {
    color: #710606 !important;
  }
}

.service-item {
  background: #fff;
  text-align: center;
  padding: 20px;
  border: 5px solid #710606;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.service-item:hover {
  transform: scale(1.05);
}

.service-item img {
  max-width: 100%;
  border-radius: 5px;
}

.service-button {
  margin-top: 15px;
  background: #710606;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.service-button:hover {
  background: #ffcc00;
}


.reasons-section {

  padding: 70px 0 90px;

}

.reasons-left-main {

  position: relative;

}

.reasons-left-content strong {

  color: black;

  display: block;

  font-size: 34px;

  font-family: 'Oswald', sans-serif;

  text-transform: uppercase;

  padding: 0 0 0 20px;

}

.reasons-left-content strong:before {

  content: "";

  height: 40px;

  width: 40px;

  background-color: #710606;


  position: absolute;

  border-radius: 50%;

  left: -16px;

  top: -50px;

  z-index: 9;

}

.reasons-left-content strong:after {

  position: absolute;

  content: "";

  background: #ffffff;

  width: 26px;

  height: 26px;

  border-radius: 100%;

  left: -9px;

  top: -43px;

  animation: grow 1s ease infinite;

  z-index: 9;

}

@keyframes grow {

  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }

}

.reasons-left-content span {

  color: #fff;

  font-weight: 800;

  text-transform: capitalize;

  font-size: 19px;

  padding: 8px 25px 6px;

  position: relative;

  display: block;

  background-color: #710606;


  border-radius: 0 50px 50px 0;

}

.reasons-left-content span:before {

  content: "";

  position: absolute;

  height: 131px;

  width: 9px;

  background: #ffc107;

  left: 0px;

  top: -86px;

}

.reasons-left-content p {

  color: #202020;

  font-weight: 700;

  font-size: 15px;

  line-height: 31px;

  text-align: justify;

  margin: 10px 0 0;

}

.contact-details strong {

  font-size: 34px;

  display: block;

  font-weight: 600;

  padding: 0 0 11px 0;

  color: #fff;

  font-family: 'Oswald', sans-serif;

}

.contact-details a {

  display: block;

}

.contact-details a p {

  font-size: 34px;

  color: black;

  font-family: 'Oswald', sans-serif;

  background: #fff;

  padding: 1px 10px 4px;

  font-weight: 600;

  text-align: left;

  border-radius: 0 50px 50px 0;

}

.contact-details a span {

  color: #fff;

  font-weight: 600;

  text-transform: capitalize;

  margin: 10px 0 0 21px;

  display: block;

  text-align: left;

  font-size: 22px;

  width: 70%;

}

.contact-details {

  background-color: #710606;

  padding: 30px 22px 20px 0px;

  position: relative;

  border-radius: 0 50px 50px 0;



}

.contact-details i {

  position: absolute;

  bottom: -90px;

  right: 0;

}

.reason-item {

  padding: 20px;

}

.reason-content {

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 10px;

  background: #fff;

}

.reason-image span {

  margin: 0;

  height: 120px;

  text-align: center;

  width: 120px;

  background: transparent;

  border: 1px dashed #000000;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

}

.reason-image span strong {

  height: 100px;

  width: 100px;

  display: block;

  line-height: 95px;

  margin: 0px auto;

  border-radius: 50%;

}

.reason-image span strong img {

  height: 70px;

}

.reason-text strong {

  color: #000000;

  font-size: 23px;

  background: #ffffff;

  font-weight: 500;

  text-transform: capitalize;

  display: block;

  font-family: 'Oswald', sans-serif;

  padding: 4px 26px;

  border-radius: 50px 0 0 50px;

  margin: 0 0 0 -60px;

}

.reason-text p {

  color: #000000;

  line-height: 28px;

  padding: 13px 30px 0px 13px;

  font-size: 15px;

  font-weight: 700;

  text-align: justify;

}





@media (max-width: 1200px) {

  .reasons-section {

    padding: 60px 0 80px;

  }



  .reasons-left-content strong {

    font-size: 30px;

  }



  .reasons-left-content span {

    font-size: 17px;

    padding: 6px 20px 4px;

  }



  .reason-content {

    padding: 15px;

  }



  .reason-image span strong {

    height: 90px;

    width: 90px;

  }



  .reason-text strong {

    font-size: 22px;

    padding: 4px 20px;

  }



  .reason-text p {

    font-size: 14px;

  }

}



@media (max-width: 768px) {

  .reasons-section {

    padding: 50px 0 70px;

  }



  .reasons-left-content strong {

    font-size: 28px;

  }



  .reasons-left-content span {

    font-size: 18px;

    padding: 6px 15px 4px;

  }



  .reason-content {

    padding: 12px;

  }



  .reason-image span strong {

    height: 80px;

    width: 80px;

  }



  .reason-text strong {

    font-size: 18px;

    padding: 4px 18px;

  }



  .reason-text p {

    font-size: 13px;

  }

}



@media (max-width: 480px) {

  .reasons-section {

    padding: 40px 0 60px;

  }



  .reasons-left-content strong {

    font-size: 24px;

  }



  .reasons-left-content span {

    font-size: 15px;

    padding: 5px 10px 4px;

  }



  .reason-content {

    padding: 10px;

  }



  .reason-image span strong {

    height: 70px;

    width: 70px;

  }



  .reason-text strong {

    font-size: 18px;

    padding: 4px 15px;

  }



  .reason-text p {

    font-size: 12px;

  }

}





.clients {
  background-image: url('../images/testimonial-section-bg.png');
  padding: 40px 20px;
  text-align: center;
}

.section-title {
  margin-bottom: 40px;
}

.heading-with-image {
  color: #000 !important;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  position: relative;
  background-repeat: no-repeat;
  height: 60px;
  background-image: url('../images/testimonial-shadow.png');
  background-size: contain;
  background-position: center;
  border-radius: 8px;
  padding: 0 140px;
}

.section-subtitle {
  text-align: center;
  color: #444;
  font-size: 1.1rem;
  margin-top: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.client-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.client-box {
  background-image: url('../images/testboxback.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 6px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 260px;
}

.client-box:hover {
  transform: translateY(-5px);
}

.client-box img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
  border: 2px dotted #fff;
  padding: 2px;
}

.client-box .name {
  font-size: 1.1em;
  font-weight: bold;
  color: #000;
  margin: 8px 0;
}

.client-box .review {
  font-size: 14px;
  color: #000;
  padding: 5px;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.5;
}

.stars {
  display: inline-block;
}

.star {
  font-size: 18px;
  color: #710606;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .client-box {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .client-box {
    width: 100%;
  }

  .heading-with-image {
    font-size: 1.5rem;
    padding: 0 60px;
  }

  .client-box .review {
    font-size: 13px;
  }
}

.footer {
  background-color: #710606;
  color: #fff;
  padding: 20px 0;
}

.container {
  width: 50%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-box {
  flex: 1;
  min-width: 200px;
  padding: 10px;
}

.contact-section {
  display: flex;
  flex-direction: column;
  /* Align items vertically */
  gap: 15px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  /* Align content inline */
}

.info-item img {
  width: 100px;
  height: auto;
}

.info-item div {
  display: flex;
  flex-direction: column;
  text-align: left;
  /* Align text to the right */
}

.info-item p,
.info-item a,
.info-item span {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.disclaimer {
  background-color: #fff;
  color: #000;
  padding: 10px;
  font-size: 16px;
  border-radius: 5px;
}

.map iframe {
  width: 100%;
  height: 200px;
  border: 0;
  margin-top: 10px;
}

.copyright {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 10px 0;
  background-color: #ffcc00;
  color: #000;
  font-size: 16px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright a {
  color: #000;
  text-decoration: none;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .contact-section {
    flex-direction: column;
    align-items: center;
  }
}



.conform {
  width: 100%;
  max-width: 400px;
}

.conform h2 {
  font-size: 24px;
  margin-bottom: 5px;
  text-align: center;
  font-weight: bold;
  color: #910a0a !important;
}

.conform p {
  font-size: 14px;
  text-align: center;
  color: #666;
  margin-bottom: 15px;
}

.conform form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.conform input,
.conform textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d63384;
  /* Dark Pink */
  background: transparent;
  color: #333;
  font-size: 16px;
}

.conform textarea {
  height: 100px;
  resize: none;
}

.conform button {
  background: #d63384;
  /* Dark Pink */
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.conform button:hover {
  background: #b72c6f;
}

.conform .form-image {
  margin-top: 15px;
  text-align: center;
}

.conform .form-image img {
  max-width: 100%;
  height: auto;
  animation: blink 1s infinite alternate;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

.video-section {
  border: 2px solid darkred;
  padding: 20px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columns */
  grid-template-rows: repeat(2, auto);
  /* 2 rows */
  gap: 10px;
}

.flex-video {
  width: 100%;
  height: 250px;
  /* Adjust as needed */
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.flex-video img,
.flex-video video {
  width: 100%;
  height: 100%;
  object-fit: cover bottom;
}

/* Responsive Design */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns for tablets */
    grid-template-rows: auto;
  }
}

@media (max-width: 576px) {
  .video-grid {
    grid-template-columns: repeat(1, 1fr);
    /* 1 column for mobile */
  }
}

.pooja-title {
  text-align: center;
  font-weight: bold;
  color: #710606;
}

.pooja-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #710606;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.pooja-card:hover {
  transform: translateY(-5px);
}

.pooja-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  padding: 5px;
}