body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  /* background: linear-gradient(135deg, #2c3e50 0%, #4a5568 50%, #2d3748 100%); */
  color: white;
  margin: 0;
  padding: 0;
}
.navbar {
  background: transparent;
  padding: 20px 0;
  position: absolute;
  width: 100%;
  z-index: 212;
}


.navbar-brand {
  font-size: 2.5rem;
  font-weight: bold;
  color: white !important;
  letter-spacing: 3px;
}

.social-links a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-size: 14px;
}

.social-links i {
  margin-right: 5px;
}

.btn-appointment {
  background: #007bff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
}

.hero-section {
  padding: 80px 0;
}
.front-section {
  position: relative; /* yeh bahut zaroori hai */
  z-index: 1;
}

.front-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* 750px fix na karo, full section cover kare */
  background-color: rgba(0,0,0,0.5); /* black overlay */
  z-index: -1; /* content ke neeche rahe */
}


.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
}

.services-list {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-buttons {
  background: rgba(139, 69, 19, 0.8);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
}


.btn-call,
.btn-whatsapp {
  margin: 5px;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}

.btn-call {
  background: #90ee90;
  color: #333;
}

.btn-whatsapp {
  background: #90ee90;
  color: #333;
}

.contact-buttons .btn-call:hover , .contact-buttons .btn-whatsapp:hover 
{
 border: 1px solid #fff !important;
 background: transparent;
 
}


.contact-form {
  background: #90ee90;
  padding: 30px;
  border-radius: 15px;
  color: #333;
}

.form-control {
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  padding: 12px;
}

.form-select {
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
  padding: 12px;
}

.btn-submit {
  background: #333;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
}

.services-section {
  padding: 80px 0;
}

.service-card {
  border-radius: 15px;
  padding: 30px 20px;
  height: 100%;
  margin-bottom: 30px;
}

.card-orange {
  background: #ff6b35;
 
}
.service-card {
   transition: 0.3s ease-in-out;
}
.service-card:hover{
  background: #ff6b35;
  transform: translateY(-20px);
  color: #fff;
}


.card-white {
  background: white;
  color: #333;
}

.card-light {
  background: #f8f9fa;
  color: #333;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-section {
  padding: 80px 0;
}

.about-text {
  color: #ccc;
}

.section-subtitle {
  color: #90ee90;
  font-weight: bold;
  margin-bottom: 5px;
}

.consultation-box {
  background: #2c3e50;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}

.phone-icon {
  background: #90ee90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #333;
  font-size: 1.5rem;
}

.benefits-list {
  color: #ff6b35;
}

.benefits-list i {
  margin-right: 10px;
}

:root {
  --primary-blue: #2c3e50;
  --accent-green: #27ae60;
  --light-blue: #3498db;
  --purple: #8e44ad;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #34495e 100%);
  color: white;
  padding: 80px 0;
}

.course-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.course-content {
  padding: 25px;
}

.star-rating {
  color: #ffc107;
  margin-bottom: 10px;
}

.course-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 15px;
}

.course-features {
  list-style: none;
  padding: 0;
}

.course-features li {
  padding: 5px 0;
  color: #666;
  position: relative;
  padding-left: 20px;
}

.course-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: bold;
}

.btn-read-more {
  background: var(--accent-green);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-read-more:hover {
  background: #229954;
  color: white;
  transform: translateY(-2px);
}

.workshop-section {
  background: linear-gradient(135deg, #17a2b8 0%, #20c997 100%);
  color: white;
  padding: 60px 0;
}

.biam-courses-section {
  padding: 80px 0;
  background: #fff;
}

.biam-course-card {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.biam-course-card:hover {
  transform: translateY(-3px);
}

.biam-course-icon {
  width: 60px;
  height: 60px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 24px;
}

.discount-section {
  background: linear-gradient(135deg, var(--purple) 0%, #9b59b6 100%);
  color: white;
  padding: 60px 0;
}

.injury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.injury-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.injury-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.injury-title {
  padding: 15px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-blue);
}

.video-testimonial {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin: 10px;
}

.video-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 20px;
  cursor: pointer;
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 20px 15px 15px;
}

.cta-section {
  background: linear-gradient(135deg, #4a69bd 0%, #5a7bd6 100%);
  color: white;
  padding: 80px 0;
}

.form-control {
  border-radius: 25px;
  padding: 12px 20px;
  border: none;
  margin-bottom: 15px;
}

.btn-cta {
  background: var(--accent-green);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
}

.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid #28a745;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ddd;
  display: inline-block;
  margin-right: 15px;
}

.star-rating {
  color: #28a745;
  margin: 10px 0;
}

.highlight-text {
  background: yellow;
  padding: 2px 4px;
  font-weight: bold;
}

/* .cta-section {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  padding: 40px 0;
  text-align: center;
} */

.btn-register {
  background: #ffc107;
  color: #000;
  font-weight: bold;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.2rem;
  margin: 20px 0;
}

.workshop-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.workshop-title {
  color: #dc3545;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.learning-item {
  background: white;
  padding: 20px;
  margin: 15px 0;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.certificate-section {
  /* background: linear-gradient(135deg, #28a745 0%, #20c997 100%); */
  background-color: #000;
  color: white;
  padding: 60px 0;
  text-align: center;
}
.certificate-section h2{
  color: #ffff00;
}
.certificate-img {
  max-width: 400px;
  width: 100%;
  margin: 20px 0;
}

.gallery-section {
  padding: 40px 0;
}

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.mentor-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.mentor-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.final-cta {
  background: linear-gradient(135deg, #6f42c1 0%, #563d7c 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.stats-item {
  text-align: center;
  margin: 20px 0;
  border: 1px solid #ffc107;
}

.stats-number {
  font-size: 2rem;
  font-weight: bold;
  color: #ffc107;
}

.cta-section-new
{
  background-color: #dc3545;
  padding: 40px 0;
}
.purple-card {
  background: linear-gradient(135deg, #8b00ff, #9932cc);
  color: white;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}

.purple-card h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.1;
}

.logo-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.form-container {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
}

.form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 15px;
  font-size: 14px;
}

.btn-purple {
  background: linear-gradient(135deg, #8b00ff, #9932cc);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
}

.btn-purple:hover {
  background: linear-gradient(135deg, #7a00e6, #8b2fb3);
  color: white;
}

.faq-section {
  background: #2c2c2c;
  color: white;
  padding: 60px 0;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.faq-subtitle {
  text-align: center;
  color: #ccc;
  margin-bottom: 40px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.faq-item {
  background: #1a1a1a;
  margin-bottom: 2px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  background: #1a1a1a;
  color: white;
  padding: 15px 20px;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #333;
}

.faq-answer {
  padding: 15px 20px;
  background: #f8f9fa;
  color: #333;
  border-top: 1px solid #333;
  font-size: 14px;
}

.testimonial-box {
  background: #dc3545;
  color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  margin: 40px 0;
}

.testimonial-text {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
}

.testimonial-sub {
  font-size: 0.9rem;
  opacity: 0.9;
}

.register-text {
  text-align: center;
  margin: 30px 0;
  font-size: 1.1rem;
}

.highlight-date {
  color: #ffc107;
  font-weight: bold;
}

.highlight-price {
  color: #ffc107;
  font-weight: bold;
}

.footer-section {
  background: #f8f9fa;
  padding: 50px 0 30px;
}

.footer-title {
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.footer-content {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-icon {
  width: 35px;
  height: 35px;
  background: #007bff;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
}

.social-icon:hover {
  background: #0056b3;
  color: white;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 12px;
  color: #666;
}

.logo-footer {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.top-border {
  height: 4px;
  background: #ffc107;
}

.privacy-link {
  color: #666;
  text-decoration: none;
  font-size: 12px;
}

.privacy-link:hover {
  color: #333;
}



.consultation-box .phone-icon i {
  color: #28a745;
  font-size: 24px;
  animation: blink 1s infinite;
}

/* Phone Number Blink */
.consultation-box h5 {
  color: #333;
  font-weight: bold;
  animation: blinkText 2s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

@keyframes blinkText {
  0%, 50%, 100% { color: #e2d300; }
  25%, 75% { color: red; }
}

.join-whatsaap {
  background: linear-gradient(45deg, #25d366, #128c7e); /* WhatsApp shades */
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: bold;
  transition: all 0.4s ease;
  animation: pulse 2s infinite; /* pulse effect */
}

/* Hover Effect */
.join-whatsaap:hover {
  background: linear-gradient(45deg, #128c7e, #075e54);
  transform: scale(1.05); /* thoda bada hoga */
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}



.biam-course-card {
  position: relative;
  background: #f9f9f9;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  overflow: hidden; /* overlay card ke bahar na nikle */
  transition: color 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  z-index: 1;
}

/* Overlay Layer */
.biam-course-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  transition: all 0.5s ease;
  z-index: -1;
}

/* Hover par overlay slide karega */
.biam-course-card:hover::before {
  left: 0;
}

/* Text & icon colors on hover */
.biam-course-card:hover {
  color: #fff;
}

.biam-course-card .biam-course-icon i {
  font-size: 40px;
  color: #28a745;
  transition: transform 0.4s ease, color 0.4s ease;
}

.biam-course-card:hover .biam-course-icon i {
  color: #fff;
  transform: scale(1.2) rotate(10deg);
}

.cta-section-new {
  padding: 60px 20px;
  /* background: #128c7e; */
  color: #fff;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}


.cta-section-new  {
  display: inline-block;
  animation: smooth-shake 4s infinite;
}

@keyframes smooth-shake {
  0%, 100% { transform: translateX(0); }  
  5%  { transform: translateX(-8px); }
  10% { transform: translateX(8px); }
  15% { transform: translateX(-6px); }
  20% { transform: translateX(6px); }
  25% { transform: translateX(-4px); }
  30% { transform: translateX(4px); }
  35% { transform: translateX(-2px); }
  40% { transform: translateX(2px); }
  45%, 100% { transform: translateX(0); } /* yaha rukega */
}



  .btn-custom {
    text-decoration: none;
    transition: all 0.3s ease; /* smooth animation */
    display: inline-block;
  }

  .btn-custom:hover {
    transform: scale(1.05); /* thoda zoom */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* shadow on hover */
  }