body {
  font-family: 'Hind', sans-serif;
}

.top-bar {
    background-color: #fdd452;
    font-size: 14px;
  }
   
  .donate-btn {
    background-color: #d1371f;

    color: white;
    border: none;
    padding: 6px 20px;
    font-weight: 500;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 20px;
    
  }
  
  
  
  .social-icon {
    background-color: #d1371f;
    color: white;
    border-radius: 5px;
    padding: 6px 10px;
    margin-left: 5px;
  }
  @media (max-width: 991.98px) {
    .top-bar,
    .donate-btn {
      display: none !important;
    }
    .mobile-social-icons {
      display: flex !important;
      justify-content: center;
      margin-top: 10px;
    }
  }
  @media (min-width: 992px) {
    .mobile-social-icons {
      display: none !important;
    }
    
  }
  
  .navbar .nav-link:hover {
    /* color: #fdd452;  */
    color: #eca90f;
  }

  .navbar .nav-link {
    color: white; 
    font-weight: 600;
  }

  .navbar .nav-item.active .nav-link {
    /* color: #fdd452;  */
     color: #eca90f;
  }
  .navbar-toggler {
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
    color: #eca90f;
    
  }
  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  
  
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23eca90f' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

  .navbar-toggler.open .navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 24px;
    color: #eca90f;
  }

  .navbar-toggler.open .navbar-toggler-icon::before,
  .navbar-toggler.open .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 24px;
    height: 2px;
    background-color: #eca90f;
  }

  .navbar-toggler.open .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }

  .navbar-toggler.open .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }


  .custom-footer {
    background-color: #d1371f; 
    color: white;
  
  }

.custom-footer a {
  color: white;
  transition: color 0.3s ease;
}

.custom-footer a:hover {
  color: #f8d7da; /* Soft pink hover */
  text-decoration: underline;
}

.custom-footer .opening-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: 'Georgia', serif;
}

.custom-footer .social-icons .btn {
  background-color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.custom-footer .social-icons i {
  font-size: 1rem;
}

@media (max-width: 576px) {
  .custom-footer .row > div {
    text-align: center !important;
    margin-bottom: 10px;
  }
}

/* Common animation styles */
[data-animate] {
  opacity: 0; /* Start hidden */
  transition: opacity 0.8s ease, transform 1.8s ease; /* Smooth transition */
}

/* Fade-in animation for .mot-content */
[data-animate="fade-in"] {
  transform: translateY(50px); /* Start slightly below */
}

[data-animate="fade-in"].visible {
  opacity: 1;
  transform: translateY(0); /* Final position */
}

/* Fade-in-left animation for  */
[data-animate="fade-in-left"] {
  opacity: 0; /* Start invisible */
  transform: translateX(-50px); /* Start slightly to the left */
}

[data-animate="fade-in-left"].visible {
  opacity: 1;
  transform: translateX(0); /* Final position */
}

/* Fade-in-up animation  */
[data-animate="fade-in-down"] {
  opacity: 0; 
  transform: translateY(-50px); 
  
}

[data-animate="fade-in-down"].visible { 
  opacity: 1; 
  transform: translateY(0); /* Final position */
}

/* Fade-in-right animation */
[data-animate="fade-in-right"] {
  transform: translateX(50px); /* Start slightly to the right */
  opacity: 0; /* Start invisible */
}

[data-animate="fade-in-right"].visible {
  transform: translateX(0); /* Final position */
  opacity: 1; /* Fully visible */
}

@media (max-width: 576px) {
  [data-animate="fade-in-right"] {
    transform: translateX(15px);
  }
}

/* Fade-in-up animation */
[data-animate="fade-in-up"] {
  transform: translateY(50px); /* Start slightly below */
  opacity: 0; /* Start invisible */
}

[data-animate="fade-in-up"].visible {
  transform: translateY(0); /* Final position */
  opacity: 1; /* Fully visible */
}


.rotate-clock {
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.rotate-clock.animate {
  animation: spinOnce 2s ease forwards;
  opacity: 1;
}

@keyframes spinOnce {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.fa-user ,.fa-solid{
  background: linear-gradient(to top, #ff3399, #ff3399) ; 
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}



.page-banner {
  background-image: url("/static/images/banner-home.jpg"); /* change as needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 250px;
}

.page-banner .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  min-height: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-banner .fw-bold {
  color: #ffc40c;
}


.btn-secondary{
  animation: slide-top-bottom 2.5s ease-in-out infinite;
  background-color: #ff6900;
  color: white;
  border: none;
  padding: 6px 20px;
  font-weight: 500;
  border-radius: 20px;
}

.btn-primary{

  background-color: #fdd452;
  color: white;
  border: none;
  padding: 6px 20px;
  font-weight: 500;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 20px;

}
.btn-primary:hover{
  background-color: #fdd452;
}

.btn-secondary:hover{
  background-color: #ff5100;
}

h2{
  color: #4a2600;
}
.bg-muted{
  background-color:#e9ecef ;
}

.no-style-link {
  color: inherit; 
  text-decoration: none; 
}

.no-style-link:hover, .no-style-link:focus {
  text-decoration: none; 
}


.card {
   
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 4px 8px 5px rgba(0, 0, 0, 0.15); 
  border-radius: 10px;
  overflow: hidden;
}

.hire-container .bg-white{
  background-color: #fdd452 !important;



}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25); 
}




/*  */


.scroll-card {
  width: 100%;
  height: 30px;
  background-color: #FFCC00;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.scrolling-content {
  display: flex;
  animation: scroll 15s linear infinite;
}

.menu-item {
  font-size: 14px;
  color: #D5006D;
  margin-right: 25px;
}

.menu-item a {
  text-decoration: none;
  color: #D5006D;
}

.menu-item a:hover {
  color: #FF5722;
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}


#download-icon {
  position: fixed;
  bottom: 20px;
  right: 80px;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s ease;
}

/* Tooltip styling */
#download-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 60px;
  right: 30px;
  transform: translateX(50%);
  background-color: #d1371f;
  color: white;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Show tooltip on hover */
#download-icon:hover::after {
  opacity: 1;
}

#whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.3s ease;
  text-decoration: none;
}

/* Tooltip styling */

#whatsapp-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 60px;
  right: 60px;
  transform: translateX(50%);
  background-color: #d1371f;
  color: white;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Show tooltip on hover */
#whatsapp-icon:hover::after {
  opacity: 1;
}


@media (min-width: 992px) {
  .w-lg-50 {
    width: 50% !important;
  }

  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}








.carousel-overlay {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: rgba(64, 64, 64, 0.8); /* Dark transparent overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
    
}

.overlay-text {
  width: 100%;
  color: white;
  padding: 3px 20px;
}





.overlay-text h2 {
  font-size: 2rem;
  color:white;
  margin-top: 10px;
}

@media (max-width: 768px) {

  .carousel-overlay {
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 10%;
    
  }
  
  .overlay-text h2 {
    font-size: 0.5rem;
    margin-top: 0px;
  }
}


@keyframes slide-top-bottom {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}



.mandala{
  background-image: url('/static/images/bg-img.png');
  background-size: contain; 
}

.testimonial-box {
  background-color: #fff8ef;
  border-left: 4px solid #ffc107;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  position: relative;
}

.testimonial {
  font-style: italic;
  font-size: 1.1rem;
  margin: 0;
}

.testimonial-author {
  text-align: right;
  margin-top: 15px;
  font-weight: bold;
  font-style: normal;
  color: #e67300; 
}


/* Zodic styles */

.zodiac-card {
  background: white;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
  width: 90vw;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  position: relative;
}

.zodiac-circle {
  position: relative;
  width: 100%;
  height: 100%;
}

#zodiac-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 60%;
  max-width: 250px;
}

#zodiac-name {
  font-size: 1.5em;
  color: orange;
}

.sliding-text {
  animation: slide 1s ease-in-out;
}

@keyframes slide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.read-more {
  margin-top: 10px;
  padding: 10px 15px;
  border-radius: 10px;
  transform: skewX(-20deg);
}

.zodiac-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
}

.zodiac-item img.zodiac-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s;
}

.zodiac-item.active img.zodiac-icon {
  transform: scale(1.2);
}

.zodiac-item {
  position: absolute;
  pointer-events: auto;
  width: 50px;
  height: 50px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.zodiac-item.active {
  background: rgb(225, 10, 118);
  box-shadow: 0 0 20px rgb(225, 10, 118);
  color: white;
}

/* Accordion header button style override */
.accordion-button {
  background-color: #fff8ef; /* light background */
  color: #ff6900; /* primary color */
  font-weight: 600;
  border: none;
  box-shadow: none; /* removes focus shadow */
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

/* On hover/focus */
.accordion-button:not(.collapsed):focus,
.accordion-button:focus {
  box-shadow: none;
  border: none;
  outline: none;
}

/* Active accordion header */
.accordion-button:not(.collapsed) {
  background-color: #ffe8c2; /* soft tone for open */
  color: #d45e00; /* slightly darker primary */
}

/* Accordion body style */
.accordion-body {
  background-color: #fffaf1;
  border-top: 1px solid #ffc107;
  color: #444;
  font-size: 1rem;
}

/* Accordion border and rounded edges */
.accordion-item {
  border: 1px solid #ffc107;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.bg-gallery {
    background-color: #f8f9fa; /* light gray, clean look */
  }

  /* Optional: Enhance frame look */
  .gallery-frame {
    border: 4px solid #ff6900;
    border-radius: 12px;
    padding: 5px;
    background-color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }

  .gallery-frame:hover {
    transform: scale(1.03);
  }


.blog-section {
  background:
    linear-gradient(to top, #f9f9f9 0%, #ffe8c2 100%), /* light gray to white gradient */
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.05) 0px,
      rgba(255, 255, 255, 0.05) 2px,
      rgba(0, 0, 0, 0.05) 2px,
      rgba(0, 0, 0, 0.05) 4px
    ); /* fine black & white pattern with alpha */
  background-blend-mode: overlay;
  color: #222; /* deep gray text for contrast */
  padding: 60px 20px;
}




input:focus,
  textarea:focus,
  select:focus {
    border-color: #ff6900 !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 105, 0, 0.25) !important;
    outline: none;
  }

  
  input,
  textarea,
  select {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }