*{
    margin: 0%;
    padding: 0%;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
    background: #ffbaba;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    background: #352c2c;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    background: #ffbaba;
}


.text-dark {
    --bs-text-opacity: 1;
    color: rgb(251 251 251) !important;
}

@media (max-width: 768px) {

  footer {
    text-align: center;
  }

  footer .row > div {
    text-align: center !important;
    margin-bottom: 20px;
  }

  footer img {
    margin: 0 auto;
    display: block;
  }

  footer .text-lg-end {
    text-align: center !important;
  }

}


.small, small {
    font-size: .875em;
    padding: 10px;
    font-weight: 900;
}


/* Container */
.hero {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  text-align: center;
}

/* Heading */
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

/* Paragraph */
.hero p {
  font-size: 18px;
  color: #9CA3AF;
  margin-top: 15px;
  line-height: 1.6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }
}

.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 3rem !important;
    background: #ffbaba;
}


.align-items-center{
    align-items: center !important;
    text-align: center;
}

.dark-img {
    filter: brightness(50%); /* image ko dark kar deta hai */
}


  .img-shadow {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    
    /* Shadow */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  }

  /* Hover effect (optional but nice) */
  .img-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  }

  /* Fix height for responsiveness */
  .img-box {
    height: 100vh;
  }

  @media (max-width: 992px) {
    .img-box {
      height: 50vh;
    }
  }

  @media (max-width: 576px) {
    .img-box {
      height: 300px;
    }
  }



  /* Base style */
.floating-btn {
  position: fixed;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  z-index: 1000;
  text-decoration: none;

  /* Glass + shadow */
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);

  transition: all 0.3s ease;
}

/* WhatsApp style */
.floating-btn.whatsapp {
  bottom: 90px;
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Call style */
.floating-btn.call {
  bottom: 20px;
  background: linear-gradient(135deg, #007bff, #00c6ff);
}

/* Hover animation */
.floating-btn:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* Pulse animation */
.floating-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: pulse 1.8s infinite;
  opacity: 0.6;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Mobile responsive */
@media (max-width: 576px) {
  .floating-btn {
    width: 52px;
    height: 52px;
    font-size: 22px;
    right: 15px;
  }
}


.learn-btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.learn-btn:hover {
  background-color: #0056b3;
}


.py-4-4{
  background-color: none;
}


.text-dark {
    --bs-text-opacity: 1;
    color: white;
}