/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  /*width: 100%;*/
  position: relative;
  font-family: 'Arial', sans-serif;
  /* font-family: "Playfair Display", serif; */
}

/* Hero Section */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #f5f5f5;
  height: 90vh;
}

.contact-form {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-section h3 span {
  color: #73241d;
  font-size: 4rem;
}

/* Cards Section */
.new-section {
  padding: 60px 0;
  width: 100%;
  background-color: #fff;
  text-align: center;
}

.swiper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.card {
  height: 100%;
  width: 85%;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img-top {
  height: 300px;
  object-fit: fill;
  width: 80%;
}

/* Stats Section */
.stats-section {
  background: url("/assets/stat3.jpg") no-repeat center center/cover;
  width: 100%;
  padding: 80px 0;
  position: relative;
  color: white;
  text-align: center;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.stats-content {
  position: relative;
  z-index: 1;
}

.stats-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stats-card {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  min-width: 200px;
  color: black;
  transition: transform 0.3s;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.stats-number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* FAQ Section */
.accordian-Section {
  padding: 60px 20px;
  width: 100%;
  background-color: #fff;
  color: black;
  text-align: center;
}

.accordion-body {
  background-color: #f8f9fa;
  color: #333;
  text-align: left;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,.125);
}

/* Timeline Section */
.timeline-section {
  padding: 60px 0;
}

.timeline-container {
  position: relative;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline {
  width: 3px;
  background-color: #73241D;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
}

.event {
  position: relative;
  width: 45%;
  background: white;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(30px);
  margin: 40px 0;
}

.event h3 {
  margin-bottom: 8px;
}

.event::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background-color: #3498db;
  border: 3px solid white;
  border-radius: 50%;
  z-index: 1;
}

.event::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 3px;
  background-color: #3498db;
  z-index: 0;
}

/* Left side events */
.event:nth-child(odd) {
  left: 0;
}

.event:nth-child(odd)::before {
  right: -48px;
  transform: translateY(-50%);
}

.event:nth-child(odd)::after {
  right: -17px;
  transform: translateY(-50%);
}

/* Right side events */
.event:nth-child(even) {
  left: 55%;
}

.event:nth-child(even)::before {
  left: -48px;
  transform: translateY(-50%);
}

.event:nth-child(even)::after {
  left: -17px;
  transform: translateY(-50%);
}

/* Form styling */
.form-control.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid {
  border-color: #198754;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.input-focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
  .event {
    width: 43%;
  }
  
  .event:nth-child(even) {
    left: 57%;
  }
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column;
    height: auto;
    padding: 100px 20px 50px;
  }

  .hero-text,
  .contact-form {
    width: 100% !important;
    margin-bottom: 30px;
  }

  .hero-section h3 span {
    font-size: 3rem;
  }
  
  .timeline-container {
    padding: 15px;
  }
  
  .event {
    width: 46%;
  }
  
  .event:nth-child(even) {
    left: 54%;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 60px 15px;
  }

  .stats-cards {
    flex-direction: column;
    align-items: center;
  }

  .stats-card {
    width: 80%;
    margin-bottom: 20px;
  }
  
 

}

/* Centered Summer Batch Popup */
/*.summer-popup {*/
/*  position: fixed;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translate(-50%, -50%) scale(0.9);*/
/*  background-color: #4C8EF7;*/
/*  color: white;*/
/*  padding: 25px;*/
/*  border-radius: 8px;*/
/*  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);*/
/*  z-index: 1000;*/
/*  max-width: 400px;*/
/*  width: 90%;*/
/*  opacity: 0;*/
/*  visibility: hidden;*/
/*  transition: all 0.4s ease;*/
/*}*/

/*.summer-popup.show {*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*  transform: translate(-50%, -50%) scale(1);*/
/*}*/

/* Overlay backdrop */
/*.popup-overlay {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  right: 0;*/
/*  bottom: 0;*/
/*  background-color: rgba(0, 0, 0, 0.5);*/
/*  opacity: 0;*/
/*  visibility: hidden;*/
/*  z-index: 999;*/
/*  transition: all 0.3s ease;*/
/*}*/

/*.popup-overlay.show {*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*}*/

/*.summer-popup-header {*/
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
/*  margin-bottom: 15px;*/
/*}*/

/*.summer-popup-title {*/
/*  font-weight: bold;*/
/*  font-size: 22px;*/
/*  margin: 0;*/
/*}*/

/*.summer-popup-close {*/
/*  background: none;*/
/*  border: none;*/
/*  color: white;*/
/*  font-size: 24px;*/
/*  cursor: pointer;*/
/*  padding: 0;*/
/*  line-height: 1;*/
/*}*/

/*.summer-popup-body {*/
/*  margin-bottom: 20px;*/
/*  font-size: 16px;*/
/*  line-height: 1.5;*/
/*}*/

/*.summer-popup-button {*/
/*  background-color: white;*/
/*  color: #4C8EF7;*/
/*  border: none;*/
/*  padding: 10px 20px;*/
/*  border-radius: 4px;*/
/*  font-weight: bold;*/
/*  cursor: pointer;*/
/*  transition: background-color 0.3s;*/
/*  font-size: 16px;*/
/*  width: 100%;*/
/*}*/

/*.summer-popup-button:hover {*/
/*  background-color: #f0f0f0;*/
/*}*/

/* Monsoon Offer Popup */
/* Popup Base */
.monsoon-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 420px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.monsoon-popup.show {
  opacity: 1;
  visibility: visible;
}

/* Header */
.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.popup-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Content */
.popup-content {
  margin-bottom: 20px;
}

.tagline {
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
}

.highlight-box {
  background: rgba(255,255,255,0.1);
  border-left: 3px solid gold;
  padding: 12px;
  margin: 15px 0;
  border-radius: 0 8px 8px 0;
}

.highlight-box p {
  margin: 0 0 5px 0;
  font-weight: bold;
  color: #FFD700;
}

.highlight-box small {
  font-size: 0.8rem;
  opacity: 0.9;
}

.benefits {
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.benefits li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
}

.benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
}

.audience, .cta-text {
  text-align: center;
  font-size: 0.9rem;
  margin: 15px 0;
}

/* CTA Button */
.cta-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #FFD700, #FFA500);
  color: #333;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 480px) {
  .monsoon-popup {
    padding: 15px;
  }
  
  .popup-header h3 {
    font-size: 1.1rem;
  }
}
/* Pricing Section Styles */
.pricing-section {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Pricing Card Styles */
.pricing-card {
  background-color: #4C8EF7;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  /* margin-bottom: 30px; */
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Featured Card Styles */
.pricing-card.featured {
  border: 2px solid #007bff;
  transform: scale(1.02);
}

.pricing-card.featured::before {
  content: "Popular";
  position: absolute;
  top: 15px;
  right: -30px;
  background: #73241d;
  color: white;
  padding: 5px 30px;
  font-size: 0.9rem;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Pricing Header */
.pricing-header {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #fff;
  margin-bottom: 30px;
}

.pricing-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

.price {
  margin-bottom: 15px;
}

.currency {
  font-size: 1.8rem;
  font-weight: 600;
  vertical-align: top;
  margin-right: 3px;
  color: #fff;
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.duration {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 8px;
}

/* Pricing Features */
.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
  color: #fff;
  font-size: 1.1rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features i {
  color: #00fe3b;
  margin-right: 12px;
}

/* Pricing Footer */
.pricing-footer {
  text-align: center;
  margin-top: 30px;
}

.pricing-footer .btn {
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.pricing-footer .btn-dark {
  background-color: #fff;
  color: #000;
  border-color: #343a40;
}

.pricing-footer .btn-dark:hover {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-dark {
  border-radius: 50px;
  padding: 10px 30px;
  font-weight: 600;
  margin-top: 25px;
}

/* Pricing Note */
.pricing-note {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 20px;
}

.pricing-note i {
  color: #ffc107;
  margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 1199.98px) {
  .pricing-card {
    padding: 35px;
  }
}

@media (max-width: 991.98px) {
  .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .pricing-card {
    padding: 30px;
  }
  
  .pricing-card.featured {
    transform: scale(1.01);
  }
  
  .amount {
    font-size: 3rem;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }
  
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .pricing-card {
    margin-bottom: 30px;
    padding: 25px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .amount {
    font-size: 3rem;
  }
  
  .pricing-header h3 {
    font-size: 1.5rem;
  }
  
  .pricing-features li {
    font-size: 1rem;
  }
  
  .pricing-card.featured::before {
    top: 10px;
    right: -25px;
    font-size: 0.8rem;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .pricing-header h3 {
    font-size: 1.4rem;
  }
  
  .amount {
    font-size: 2.8rem;
  }
  
  .pricing-footer .btn {
    padding: 10px 30px;
  }
  
  .pricing-card.featured::before {
    top: 8px;
    right: -28px;
    padding: 4px 25px;
  }
}

/* Fees Popup Styling */
.fees-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #73241d;
  color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  max-width: 300px;
  width: 90%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.fees-popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fees-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.fees-popup-title {
  font-weight: bold;
  font-size: 20px;
  margin: 0;
}

.fees-popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.fees-popup-body {
  margin-bottom: 20px;
  text-align: center;
}

.fees-announcement {
  font-size: 16px;
  margin-bottom: 5px;
}

.fees-starting {
  font-size: 14px;
  margin-bottom: 5px;
}

.fees-amount {
  font-size: 32px;
  font-weight: bold;
  margin: 10px 0;
}

.fees-limited {
  font-size: 14px;
  font-style: italic;
}

.fees-popup-button {
  background-color: white;
  color: #73241d;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 16px;
  width: 100%;
}

.fees-popup-button:hover {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .fees-popup {
    bottom: 10px;
    right: 10px;
    padding: 20px;
  }
  
  .fees-amount {
    font-size: 28px;
  }
}
    
