.hide-on-desktop {
    display: none !important;
  }

@media (max-width: 767.98px) {
  .hide-on-mobile {
    display: none !important;
  }

  .hide-on-desktop{
    display:block !important;
  }
  
}


.hidden{
  display: none ;
}

/* ======================================== */
/* MODERN ENHANCEMENTS */
/* ======================================== */

/* Modern Navigation */
.modern-navbar {
  background: linear-gradient(135deg, rgba(42, 79, 135, 0.95), rgba(53, 55, 112, 0.95));
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 15px 0;
}

.modern-navbar.scrolled {
  background: linear-gradient(135deg, #2a4f87, #353770);
  box-shadow: 0 4px 25px rgba(0,0,0,0.2);
  padding: 10px 0;
}

.navbar-logo {
  height: 50px;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.1);
}

.brand-text {
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.modern-navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 8px;
  padding: 8px 16px !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.modern-navbar .nav-link:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.modern-navbar .nav-link.register-btn {
  background: linear-gradient(135deg, #c53233, #48a8d4);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(197, 50, 51, 0.3);
}

.modern-navbar .nav-link.register-btn:hover {
  background: linear-gradient(135deg, #48a8d4, #c53233);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 50, 51, 0.5);
}

/* Floating Action Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  animation: float 3s ease-in-out infinite;
}

.floating-btn a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.call-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.register-floating {
  background: linear-gradient(135deg, #c53233, #a02622);
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero Section Enhancements */
.hero-section {
  background: linear-gradient(135deg, #2a4f87, #353770);
  color: white;
  
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.05)" points="1000,0 1000,100 0,100"/></svg>');
  opacity: 0.5;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-carousel {
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3) !important;
  transition: transform 0.3s ease;
}

.hero-carousel:hover {
  transform: translateY(-10px);
}

/* Statistics Cards */
.stats-section {
  margin-top: 60px;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin: 10px 0;
}

.stat-card p {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin: 0;
}

/* Pulse Animation */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Hover Zoom Effect */
.hover-zoom {
  transition: transform 0.3s ease;
}

.hover-zoom:hover {
  transform: scale(1.05);
}

/* Enhanced Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
  }
  
  .floating-btn a {
    font-size: 1.2rem;
  }
  
  .stat-card {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  .counter {
    font-size: 2rem;
  }
  
  .modern-navbar {
    padding: 10px 0;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* //////////////////////////////////////// */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #2a4f87, #353770);
  color: white;
}

/* Contact Form */
.contact-form-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  color: #111;
  border-left: 6px solid #c53233;
  border-radius: 15px !important;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}
.contact-form-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(197, 50, 51, 0.2);
}

/* Contact Form Title */
.contact-form-card .section-title {
  color: #2a4f87;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
}

/* Form Labels */
.contact-form-card .form-label {
  font-weight: 600;
  color: #2a4f87;
  margin-bottom: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

/* Form Controls */
.contact-form-card .form-control {
  border: 2px solid #e0e6ed;
  border-radius: 10px;

  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.9);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.contact-form-card .form-control:focus {
  border-color: #48a8d4;
  box-shadow: 0 0 0 3px rgba(72, 168, 212, 0.1);
  background: #ffffff;
  outline: none;
}

.contact-form-card .form-control::placeholder {
  color: #999;
  font-style: italic;
}

.selected{
   color: #999 !important;
  font-style: italic !important;

}

/* Form Groups */
.contact-form-card .mb-3 {
  position: relative;
  margin-bottom: 1.5rem;
}

/* Submit Button Enhancement */
.contact-form-card .btn-theme {
  background: linear-gradient(135deg, #48a8d4, #2a4f87);
  border: none;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(72, 168, 212, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form-card .btn-theme::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.contact-form-card .btn-theme:hover::before {
  left: 100%;
}

.contact-form-card .btn-theme:hover {
  background: linear-gradient(135deg, #2a4f87, #c53233);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 50, 51, 0.4);
}

/* Form Select Styling */
.contact-form-card .form-select {
  border: 2px solid #e0e6ed;
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.9);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.contact-form-card .form-select:focus {
  border-color: #48a8d4;
  box-shadow: 0 0 0 3px rgba(72, 168, 212, 0.1);
  background: #ffffff;
  outline: none;
}

/* Thank You Message */
.thank-you-message {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 15px;
  margin: 20px 0;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: bounce 1s ease-in-out;
}

.thank-you-message h4 {
  color: #28a745;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.thank-you-message p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Validation Feedback */
.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 5px;
  font-weight: 500;
}

.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1) !important;
}

/* Loading Button States */
.btn-loading {
  display: none;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Theme Button */
.btn-theme {
  background-color: #48a8d4;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-theme:hover {
  background-color: #2a4f87;
  color: #fff;
}

/* Contact Button Below */
.btn-contact {
  background: #c53233;
  color: #fff;
  font-size: 1.2rem;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s ease;
}
.btn-contact:hover {
  background: #48a8d4;
  color: #fff;
  transform: scale(1.05);
}


/* Hero Headline Section */
.hero-headline {
  background: url('../images/banner-bg.webp') center center/cover no-repeat;
  min-height: 80vh;
  position: relative;
  padding: 60px 0;
}

/* Overlay for readability */
.hero-headline::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* background: rgba(42, 79, 135, 0.85); */
   background: rgba(1, 16, 37, 0.85);
  z-index: 1;
}

.hero-headline .container {
  position: relative;
  z-index: 2;
}

/* Headline text */
.hero-headline h1 {
  color: #fff;
  font-size: 3.4rem;
  line-height: 1.3;
}

/* CTA Buttons */
.btn-cta {
  background-color: #c53233;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  padding: 12px 28px;
  transition: 0.3s ease;
}
.btn-cta:hover {
  background-color: #48a8d4;
  color: #fff;
  transform: scale(1.05);
}

/* Medium badges */
.exam-medium .badge {
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

/* About Section */
.about-section {
  background: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a4f87;
  border-left: 6px solid #c53233;
  padding-left: 12px;
}

.about-section p.lead {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500 !important;
  line-height: 1.7;
}

/* Highlights List */
.highlights {
  list-style: none;
  padding: 0;
}
.highlights li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: #111;
}
.highlights i {
  color: #48a8d4;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Exam Details Section */
.exam-details-section {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a4f87;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #c53233;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Table Styling */
.exam-details-table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.exam-details-table th {
  background: #2a4f87;
  color: #fff;
  font-weight: 600;
  width: 25%;
}
.exam-details-table td {
  background: #fdfdfd;
  color: #111;
  font-size: 1.05rem;
}
.exam-details-table tr:hover td {
  background: #f1f7ff;
}

/* Exam Syllabus Section */
.exam-syllabus-section {
  background: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a4f87;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #c53233;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Syllabus Table */
.syllabus-table {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.syllabus-table thead {
  background: #353770 !important;
}
.syllabus-table thead th {
  color: #fff;
  font-weight: 600;
  text-align: center;
}
.syllabus-table td, 
.syllabus-table th {
  vertical-align: middle;
  padding: 12px;
}
.syllabus-table tr:hover td {
  background: #f1f7ff;
}

/* Category Divider */
.table-category td {
  background: #48a8d4;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.1rem;
}
.table-category td:hover{
  background: #48a8d4 !important;
  color: #fff !important;
}


/* Section Title */
.rules-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a4f87;
  position: relative;
  display: inline-block;
}
.rules-section .section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #c53233;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Rule Cards */
.rule-card {
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #dadada;
}
.rule-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  background-color: #f8f8f8;
}

/* Icons */
.rule-icon {
  font-size: 2rem;
  color: #c53233;
  margin-bottom: 12px;
}
.rule-card p {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}



/* Section Title */
.timeline-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a4f87;
  position: relative;
  display: inline-block;
}
.timeline-section .section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #c53233;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Timeline Layout */
.timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 20px;
  border-left: 3px solid #c53233;
}
.timeline-item {
  margin-bottom: 30px;
  position: relative;
}
.timeline-dot {
  width: 18px;
  height: 18px;
  background: #c53233;
  border-radius: 50%;
  position: absolute;
  left: -10px;
  top: 5px;
}
.timeline-content {
  background: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-left: 30px;
  transition: transform 0.3s ease;
}
.timeline-content:hover {
  transform: translateY(-5px);
}
.timeline-content h5 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #c53233;
}
.timeline-content p,
.timeline-content li {
  font-size: 0.95rem;
  color: #333;
}

/* Section Title */
.apply-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a4f87;
  position: relative;
  display: inline-block;
}
.apply-section .section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #c53233;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Apply Card */
.apply-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.apply-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.apply-icon img {
  width: 80px;
  height: 80px;
}
.apply-card h5 {
  font-weight: 600;
  color: #c53233;
}
.apply-card p {
  font-size: 0.95rem;
  color: #333;
}


/* Section Title */
.fees-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a4f87;
  position: relative;
  display: inline-block;
}
.fees-section .section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #c53233;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Fees Table */
.fees-table {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.fees-table th {
  background: #2a4f87 !important;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}
.fees-table td {
  font-size: 1rem;
  padding: 14px;
}
.fees-table tr:nth-child(even) {
  background: #f9f9f9;
}

/* Highlight Total Fee */
.fees-table .total {
  font-weight: 700;
  color: #c53233;
  font-size: 1.1rem;
}


/* Section Title */
.prizes-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a4f87;
  position: relative;
  display: inline-block;
}
.prizes-section .section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #c53233;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Prize Cards */
.prize-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.prize-card:hover {
  transform: translateY(-8px);
}
.prize-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #2a4f87;
}
.prize-card p {
  color: #444;
  font-size: 0.95rem;
}

/* Images */
.prize-img {
  width: 80px;
}
.prize-img-large {
  width: 140px;
}


/* Section Title */
.exam-features .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2a4f87;
  position: relative;
}
.exam-features .section-title::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: #c53233;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* Feature Cards */
.feature-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.feature-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #2a4f87;
}
.feature-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Icons */
.feature-icon {
  width: 70px;
  height: auto;
}


/* Modern CTA Banner */
.modern-cta-banner {
  background: linear-gradient(135deg, 
              rgba(26, 26, 46, 0.95), 
              rgba(42, 79, 135, 0.95), 
              rgba(53, 55, 112, 0.95)),
              url('../images/banner-bg.webp') center/cover no-repeat;
  padding: 80px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.modern-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(72,168,212,0.1) 0%, transparent 70%);
}

/* Animated Background Elements */
.cta-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  animation: float-shapes 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float-shapes {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
  33% { transform: translateY(-20px) rotate(120deg); opacity: 0.6; }
  66% { transform: translateY(-10px) rotate(240deg); opacity: 0.4; }
}

/* Badge */
.cta-badge {
  display: inline-block;
  position: relative;
}

.badge-text {
  background: linear-gradient(135deg, #c53233, #e74c3c);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(197,50,51,0.3);
  animation: pulse 2s infinite;
}

/* Main Title */
.modern-cta-banner .cta-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #48a8d4, #fff, #c53233);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.sub-heading {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(180deg); }
}

/* Description */
.cta-description {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Modern Action Buttons */
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn-modern-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 30px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 160px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-modern-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.btn-modern-cta:hover::before {
  left: 100%;
}

.primary-cta {
  background: linear-gradient(135deg, #c53233, #e74c3c);
  color: white;
}

.secondary-cta {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.tertiary-cta {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
}

.btn-modern-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.primary-cta:hover { color: white; }
.secondary-cta:hover { color: white; }
.tertiary-cta:hover { color: white; }

.btn-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}

.btn-text {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.btn-subtitle {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 400;
}

/* Quick Stats */
.cta-quick-stats {
  margin-top: 50px;
}

.stat-item {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 25px 15px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.stat-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
  display: block;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin: 10px 0 5px 0;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* Urgency Ticker */
.urgency-ticker {
  background: linear-gradient(135deg, rgba(197,50,51,0.9), rgba(231,76,60,0.9));
  border-radius: 50px;
  padding: 15px 20px;
  margin-top: 40px;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: flex;
  animation: scroll-ticker 20s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  margin-right: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

@keyframes scroll-ticker {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  font-size: 2rem;
  opacity: 0.3;
  animation: float-elements 8s ease-in-out infinite;
}

.element-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.element-2 {
  top: 25%;
  right: 8%;
  animation-delay: 2s;
}

.element-3 {
  bottom: 30%;
  left: 15%;
  animation-delay: 4s;
}

.element-4 {
  bottom: 20%;
  right: 20%;
  animation-delay: 6s;
}

.element-5 {
  top: 50%;
  left: 50%;
  animation-delay: 1s;
}

@keyframes float-elements {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: 0.6; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-cta-banner {
    padding: 60px 0;
    min-height: 60vh;
  }
  
  .modern-cta-banner .cta-title {
    font-size: 2.2rem;
  }
  
  .sub-heading {
    font-size: 1.1rem;
  }
  
  .cta-description {
    font-size: 1rem;
  }
  
  .btn-modern-cta {
    min-width: 140px;
    padding: 15px 20px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    padding: 20px 10px;
    margin-bottom: 15px;
  }
  
  .ticker-item {
    font-size: 0.9rem;
    margin-right: 30px;
  }
}


/* Enhanced Contact Section */
.contact-section {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><polygon fill="rgba(42,79,135,0.02)" points="0,0 1000,0 1000,100"/></svg>');
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

/* Modern Map Container */
.modern-map-container {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.modern-map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.map-header {
  background: linear-gradient(135deg, #2a4f87, #353770);
  color: white;
  padding: 20px;
  text-align: center;
}

.map-header h4 {
  margin: 0;
  font-weight: 700;
  font-size: 1.3rem;
}

.map-header p {
  margin: 5px 0 0 0;
  opacity: 0.9;
  font-size: 0.95rem;
}

.map-wrapper {
  position: relative;
  overflow: hidden;
}

.map-wrapper iframe {
  transition: all 0.3s ease;
  filter: grayscale(20%);
}

.map-wrapper:hover iframe {
  filter: grayscale(0%);
}

/* Modern Contact Cards */
.contact-cards-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modern-contact-card {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.modern-contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(72,168,212,0.1), transparent);
  transition: left 0.5s;
}

.modern-contact-card:hover::before {
  left: 100%;
}

.modern-contact-card:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border-left-color: #48a8d4;
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.5rem;
  color: white;
  background: linear-gradient(135deg, #2a4f87, #48a8d4);
  box-shadow: 0 5px 15px rgba(42,79,135,0.3);
  transition: all 0.3s ease;
}

.contact-icon.location {
  background: linear-gradient(135deg, #c53233, #e74c3c);
}

.contact-icon.phone {
  background: linear-gradient(135deg, #28a745, #20c997);
}

.contact-icon.website {
  background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.modern-contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-content h5 {
  color: #2a4f87;
  font-weight: 700;
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.contact-content p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-link {
  color: #48a8d4;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #2a4f87;
  text-decoration: underline;
}

/* Contact Action Buttons */
.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-contact-action {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.call-action {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.call-action:hover {
  background: linear-gradient(135deg, #0056b3, #007bff);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,123,255,0.4);
  color: white;
}

.whatsapp-action {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
}

.whatsapp-action:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  color: white;
}

/* Contact CTA Banner */
.contact-cta-banner {
  background: linear-gradient(135deg, #2a4f87, #353770);
  border-radius: 20px;
  padding: 30px;
  color: white;
  box-shadow: 0 15px 35px rgba(42,79,135,0.2);
  position: relative;
  overflow: hidden;
}

.contact-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.1)" points="0,100 1000,0 1000,100"/></svg>');
  opacity: 0.3;
}

.contact-cta-banner .row {
  position: relative;
  z-index: 2;
}

.contact-cta-banner h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-cta-banner p {
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.btn-cta-large {
  background: linear-gradient(135deg, #c53233, #e74c3c);
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(197,50,51,0.3);
  border: none;
}

.btn-cta-large:hover {
  background: linear-gradient(135deg, #e74c3c, #c53233);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(197,50,51,0.5);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-contact-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .contact-actions {
    justify-content: center;
  }
  
  .btn-contact-action {
    min-width: 140px;
  }
  
  .contact-cta-banner {
    text-align: center;
    padding: 25px 20px;
  }
  
  .btn-cta-large {
    margin-top: 15px;
  }
}


.footer-section {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #48a8d4, transparent);
}

.footer-section h5 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}

.footer-section h5::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #c53233;
}

.footer-section p, 
.footer-section a {
  font-size: 0.95rem;
  color: #b8b8b8;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #48a8d4;
  text-decoration: none;
  transform: translateX(5px);
}

.footer-links li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.footer-links li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #c53233;
  font-size: 0.7rem;
  top: 2px;
}

.footer-links a {
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(72, 168, 212, 0.2), rgba(197, 50, 51, 0.2));
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.social-icons a:hover::before {
  left: 100%;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(72, 168, 212, 0.3);
}

.social-icons a:nth-child(1):hover { /* Facebook */
  background: linear-gradient(135deg, #3b5998, #2d4373);
}

.social-icons a:nth-child(2):hover { /* Instagram */
  background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcaf45);
}

.social-icons a:nth-child(3):hover { /* Twitter */
  background: linear-gradient(135deg, #1da1f2, #0d8bd9);
}

.social-icons a:nth-child(4):hover { /* YouTube */
  background: linear-gradient(135deg, #ff0000, #cc0000);
}

/* Footer Bottom Bar */
.footer-section .row:last-child {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-section .row:last-child p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}





/* new styling  */

/* About Section Styles */
.about-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.about-image-wrapper img {
  transition: transform 0.3s ease;
}

.about-image-wrapper:hover img {
  transform: scale(1.05);
}

.floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
}

.experience-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.experience-box h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 2rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.highlight-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

/* Exam Details Section Styles */
.detail-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.detail-card:hover {
  transform: translateY(-5px);
}

.detail-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.detail-card h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.detail-card p {
  color: #666;
  margin: 0;
}

/* Add to your existing colors */
:root {
  --primary-color: #2a4f87;
  --secondary-color: #c53233;
  --accent-color: #48a8d4;
  --dark-color: #353770;
}

/* Syllabus specific styles with -1 suffix to avoid conflicts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --prarambh-blue: #2a4f87;
  --prarambh-light-blue: #48a8d4;
  --prarambh-red: #c53233;
  --prarambh-dark: #353770;
  --prarambh-white: #ffffff;
  --prarambh-black: #111111;
}

/* Table container */
.syllabus-table-1 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, rgba(42,79,135,0.03), rgba(72,168,212,0.02));
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

/* Header */
.syllabus-thead-1 {
  background: linear-gradient(90deg, var(--prarambh-blue), var(--prarambh-dark));
  color: var(--prarambh-white);
}

.syllabus-thead-1 th {
  padding: 14px 18px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 13px;
  border: none;
}

/* Category header (full-row label) */
.table-category-1 td {
  background: linear-gradient(90deg, rgba(72,168,212,0.12), rgba(197,50,51,0.04));
  color: var(--prarambh-dark);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 16px;
  border-top: 1px solid rgba(16,24,40,0.04);
}

.category-icon-1 {
  color: var(--prarambh-blue);
  margin-right: 8px;
}

/* Data rows */
.syllabus-row-1 td {
  padding: 14px 16px;
  vertical-align: middle;
  border-top: 1px dashed rgba(16,24,40,0.06);
  color: #222;
  font-size: 14px;
}

/* Badges */
.class-badge-1 {
  display: inline-block;
  background: linear-gradient(90deg, var(--prarambh-blue), var(--prarambh-light-blue));
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 4px 12px rgba(42,79,135,0.12);
}

/* Subject pills */
.subject-pills-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.subject-pill-1 {
  font-weight: 600;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 12px;
  color: #111;
  box-shadow: 0 6px 18px rgba(16,24,40,0.04);
}

/* Color variants for subject pills */
.marathi-1 { background: #ffe9e8; color: var(--prarambh-red); }
.maths-1   { background: #e8f4ff; color: var(--prarambh-blue); }
.english-1 { background: #fff8e6; color: #b37f00; }
.intel-1   { background: #e8fff4; color: #0f8b6e; }
.science-1 { background: #f0f6ff; color: var(--prarambh-dark); }

/* Numeric badges */
.question-count-1,
.marks-badge-1,
.duration-badge-1 {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
}

/* Specific numeric colors */
.question-count-1 { background: rgba(42,79,135,0.08); color: var(--prarambh-blue); }
.marks-badge-1   { background: rgba(72,168,212,0.08); color: var(--prarambh-light-blue); }
.duration-badge-1{ background: rgba(197,50,51,0.06); color: var(--prarambh-red); }

/* Row hover effect */
.syllabus-row-1:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(16,24,40,0.06);
  background: linear-gradient(90deg, rgba(42,79,135,0.03), rgba(72,168,212,0.02));
  transition: all 220ms ease;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .syllabus-thead-1 th { font-size: 12px; padding: 10px 8px; }
  .syllabus-row-1 td { font-size: 13px; padding: 10px 8px; }
  .subject-pills-1 { gap: 6px; }
}

@media (max-width: 576px) {
  .subject-pills-1 { flex-direction: column; align-items: flex-start; }
  .syllabus-thead-1 { display: none; }
  .syllabus-row-1 td {
    display: block;
    width: 100%;
  }
  .syllabus-row-1 td::before {
    content: attr(data-label);
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
    color: var(--prarambh-dark);
  }
}

/* Rules section - isolated with -1 suffix to avoid conflicts */
.rules-section-1 {
  background: linear-gradient(180deg, rgba(42,79,135,0.03), rgba(72,168,212,0.01));
  padding-bottom: 3rem;
  font-family: 'Poppins', sans-serif;
}

.badge-soft-1 {
  display: inline-block;
  background: linear-gradient(90deg, rgba(42,79,135,0.12), rgba(197,50,51,0.06));
  color: var(--prarambh-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: .6rem;
  font-size: .85rem;
}

.section-title-1 {
  color: var(--prarambh-blue);
  font-weight: 700;
  font-size: 1.75rem;
  margin: 0.25rem 0 0.5rem;
  letter-spacing: .2px;
}

.section-sub-1 {
  color: #4b5563;
  margin-bottom: 1.6rem;
}

/* Grid & cards */
.rule-grid-1 { --g: 1rem; }

.rule-card-1 {
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  border-radius: 14px;
  padding: 1.6rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(16,24,40,0.06);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(42,79,135,0.04);
}

/* Larger emphasis cards */
.rule-card-1.large-1 {
  padding: 2rem;
}

/* Icon circle */
.icon-circle-1 {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  font-size: 1.35rem;
  box-shadow: 0 8px 20px rgba(42,79,135,0.18);
  background: linear-gradient(135deg, var(--prarambh-blue), var(--prarambh-light-blue));
  transition: transform .22s ease, box-shadow .22s ease;
}

/* Icon hover accent */
.rule-card-1:hover .icon-circle-1 {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 20px 40px rgba(42,79,135,0.18);
}

/* Titles & desc */
.rule-title-1 {
  color: var(--prarambh-dark);
  font-weight: 700;
  margin: 0;
  font-size: 1.05rem;
}

.rule-desc-1 {
  color: #374151;
  font-size: .95rem;
  margin: 0;
  line-height: 1.45;
  max-width: 28rem;
}

/* Card hover lift */
.rule-card-1:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 50px rgba(16,24,40,0.09);
}

/* Decorative accent for alternating cards */
.rule-grid-1 .col-lg-4:nth-child(1) .icon-circle-1 { background: linear-gradient(135deg, var(--prarambh-blue), #6ea8e0); }
.rule-grid-1 .col-lg-4:nth-child(2) .icon-circle-1 { background: linear-gradient(135deg, #ffd86b, var(--prarambh-red)); color: #111; }
.rule-grid-1 .col-lg-4:nth-child(3) .icon-circle-1 { background: linear-gradient(135deg, #8ad3c7, var(--prarambh-dark)); }

/* Note */
.note-1 {
  color: #6b7280;
  font-size: .9rem;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .icon-circle-1 { width: 60px; height: 60px; font-size: 1.1rem; }
  .rule-desc-1 { max-width: 100%; font-size: .94rem; }
}



/* Timeline/table styles with -1 suffix to avoid conflicts */

:root {
  --prarambh-blue: #2a4f87;
  --prarambh-light: #48a8d4;
  --prarambh-red: #c53233;
  --prarambh-dark: #353770;
  --prarambh-white: #ffffff;
  --prarambh-black: #111111;
  --card-shadow: 0 12px 30px rgba(16,24,40,0.06);
  --glass: rgba(255,255,255,0.85);
  --muted: #6b7280;
}

/* Container */
.timeline-table-wrap-1 {
  background: linear-gradient(180deg, rgba(42,79,135,0.03), rgba(72,168,212,0.01));
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

/* Table base */
.timeline-table-1 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* Head */
.timeline-table-1 thead th {
  background: linear-gradient(90deg, var(--prarambh-blue), var(--prarambh-dark));
  color: var(--prarambh-white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.4px;
  border: none;
  font-size: 14px;
}

/* Rows */
.timeline-row-1 {
  background: var(--prarambh-white);
  border-top: 1px solid rgba(16,24,40,0.04);
  transition: transform .22s ease, box-shadow .22s ease;
}

/* Highlight first row */
.highlight-row-1 {
  background: linear-gradient(90deg, rgba(42,79,135,0.04), rgba(72,168,212,0.02));
}

/* Cells */
.timeline-table-1 td {
  padding: 14px 16px;
  vertical-align: middle;
  color: #222;
  font-size: 14px;
}

/* Date badge */
.date-badge-1 {
  display: inline-grid;
  grid-template-rows: auto auto auto;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--prarambh-white), rgba(42,79,135,0.03));
  box-shadow: 0 8px 20px rgba(42,79,135,0.08);
  text-align: center;
  color: var(--prarambh-dark);
}
.date-badge-1.small-1 { width: 68px; height: 68px; }

.date-day-1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--prarambh-blue);
  line-height: 1;
}
.date-month-1 {
  font-size: 13px;
  font-weight: 700;
  color: var(--prarambh-dark);
  margin-top: -4px;
}
.date-year-1 {
  font-size: 11px;
  color: var(--muted);
}

/* Event title */
.event-title-1 {
  font-weight: 700;
  color: var(--prarambh-dark);
  font-size: 16px;
  display: flex;
  align-items: center;
}
.event-sub-1 {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Time list */
.time-list-1 {
  list-style: none;
  padding-left: 0;
  margin: 0;
  color: #2b2b2b;
}
.time-list-1 li {
  padding: 6px 0;
  border-left: 3px solid rgba(42,79,135,0.06);
  padding-left: 10px;
  margin-bottom: 4px;
  font-size: 14px;
}

/* Hover effect */
.timeline-row-1:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16,24,40,0.06);
}

/* Responsive: stack cells on small screens */
@media (max-width: 768px) {
  .timeline-table-1 thead { display: none; }
  .timeline-table-1, .timeline-table-1 tbody, .timeline-table-1 tr, .timeline-table-1 td { display: block; width: 100%; }
  .timeline-table-1 tr { margin-bottom: 18px; }
  .timeline-table-1 td { padding: 12px; border-radius: 10px; background: var(--prarambh-white); }
  .timeline-table-1 td[data-label] { position: relative; }
  .timeline-table-1 td::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .date-badge-1 { margin-bottom: 8px; }
  .time-list-1 li { font-size: 13px; }
}

/* Small visual polish */
.timeline-table-wrap-1 .fas { color: var(--prarambh-light); }


/* ...existing code... */
/* Apply section styles (isolated with -1 suffix) */
:root{
  --prarambh-blue: #2a4f87;
  --prarambh-light: #48a8d4;
  --prarambh-red: #c53233;
  --prarambh-dark: #353770;
  --prarambh-white: #ffffff;
  --prarambh-black: #111111;
}

/* Container heading */
.apply-badge-1{
  display:inline-block;
  background: linear-gradient(90deg,var(--prarambh-light),var(--prarambh-blue));
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight:700;
  font-size:0.85rem;
  box-shadow:0 8px 20px rgba(42,79,135,0.12);
}
.apply-heading-1{
  font-family: 'Poppins', sans-serif;
  color:var(--prarambh-dark);
  font-weight:700;
  margin-top:0.6rem;
  font-size:1.75rem;
}
.apply-sub-1{ color:#6b7280; }

/* Cards */
.apply-card-1{
  background: linear-gradient(180deg, #fff, rgba(72,168,212,0.02));
  border-radius:14px;
  border:1px solid rgba(42,79,135,0.06);
  transition: transform .22s ease, box-shadow .22s ease;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  min-height: 310px;
  padding: 28px 20px;
}
.apply-card-1:hover{
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(42,79,135,0.08);
}

/* Icon */
.apply-icon-1 img{
  width:84px;
  height:84px;
  object-fit:contain;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(42,79,135,0.06), rgba(197,50,51,0.02));
  padding:8px;
  box-shadow: 0 8px 22px rgba(16,24,40,0.06);
}

/* Title / description */
.apply-title-1{
  font-weight:700;
  color:var(--prarambh-dark);
  margin-top:12px;
  margin-bottom:6px;
  font-size:1.05rem;
}
.apply-desc-1{
  color:#374151;
  font-size:0.95rem;
  line-height:1.4;
  margin-bottom:0.6rem;
  min-height:48px;
}

/* CTA buttons */
.apply-cta-1{
  display:inline-block;
  padding:8px 18px;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
  color:#fff;
  background: linear-gradient(90deg,var(--prarambh-blue),var(--prarambh-light));
  border: none;
  box-shadow: 0 8px 22px rgba(42,79,135,0.12);
  transition: transform .18s ease, box-shadow .18s ease;
}
.apply-cta-1:hover{ transform: translateY(-4px); box-shadow: 0 18px 38px rgba(42,79,135,0.14); }

/* Outline variant */
.apply-cta-1.outline{
  background: transparent;
  color:var(--prarambh-blue);
  border:2px solid rgba(42,79,135,0.12);
}

/* Small note under CTA */
.apply-note-1{
  color:#6b7280;
  font-size:0.87rem;
}

/* CTA bar */
.apply-cta-bar-1{
  background: linear-gradient(90deg, rgba(42,79,135,0.04), rgba(197,50,51,0.02));
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  border:1px solid rgba(42,79,135,0.04);
  font-size:0.95rem;
}

/* Responsive adjustments */
@media (max-width: 767px){
  .apply-card-1{ min-height: auto; padding:20px; }
  .apply-icon-1 img{ width:72px; height:72px; }
  .apply-heading-1{ font-size:1.4rem; }
  .apply-cta-bar-1{ flex-direction:column; gap:8px; padding:12px; }
}

/* ...existing code... */

/* ...existing code... */
/* Fees styles (isolated with -1 suffix) */
:root{
  --fee-blue-1: #2a4f87;
  --fee-accent-1: #48a8d4;
  --fee-warm-1: #ffd86b;
  --fee-dark-1: #353770;
  --fee-muted-1: #6b7280;
  --glass-1: rgba(255,255,255,0.9);
}

/* Wrapper */
.fees-wrapper-1{
  background: linear-gradient(180deg, rgba(42,79,135,0.03), rgba(72,168,212,0.01));
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(16,24,40,0.06);
  border: 1px solid rgba(42,79,135,0.06);
}

/* Header badges */
.fees-badge-1{
  display:inline-block;
  background: linear-gradient(90deg,var(--fee-accent-1),var(--fee-blue-1));
  color:#fff;
  padding:6px 12px;
  border-radius:999px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(42,79,135,0.12);
}
.fees-title-1{ color:var(--fee-dark-1); font-weight:700; margin-top:8px; }
.fees-sub-1{ color:var(--fee-muted-1); }

/* Table */
.fees-table-1{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  font-family: 'Poppins', sans-serif;
  background:transparent;
}
.fees-table-1 thead th{
  background: linear-gradient(90deg,var(--fee-blue-1),var(--fee-dark-1));
  color:#fff;
  padding:14px 18px;
  font-weight:700;
  text-align:left;
  border:none;
  font-size:14px;
}
.fees-table-1 tbody td{
  padding:16px 18px;
  vertical-align:middle;
  border-top:1px dashed rgba(16,24,40,0.05);
  font-size:15px;
  color:#222;
}

/* Pills */
.class-pill-1{
  display:inline-block;
  padding:8px 12px;
  background:linear-gradient(90deg,#fff,rgba(72,168,212,0.03));
  border-radius:999px;
  font-weight:700;
  color:var(--fee-blue-1);
  box-shadow:0 8px 18px rgba(42,79,135,0.06);
}
.num-pill-1{
  display:inline-block;
  padding:6px 10px;
  border-radius:10px;
  font-weight:700;
  background: rgba(42,79,135,0.06);
  color:var(--fee-blue-1);
}
.num-pill-1.muted-1{ background: rgba(107,114,128,0.06); color:var(--fee-dark-1); }
.total-pill-1{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--fee-accent-1),var(--fee-blue-1));
  color:#fff;
  font-weight:800;
  box-shadow:0 12px 30px rgba(42,79,135,0.12);
}
.total-pill-1.highlight-1{
  background: linear-gradient(90deg,#ffd86b,var(--fee-accent-1));
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255,200,80,0.12);
}

/* Row hover */
.fees-row-1:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(16,24,40,0.06);
  background: linear-gradient(90deg, rgba(42,79,135,0.02), rgba(72,168,212,0.01));
  transition: all 200ms ease;
}

/* CTA bar */
.fees-cta-1{ margin-top:14px; padding:8px 10px; display:flex; gap:12px; align-items:center; justify-content:space-between; }
.btn-register-1{ background: linear-gradient(90deg,var(--fee-blue-1),var(--fee-accent-1)); color:#fff; border:none; padding:10px 18px; border-radius:999px; font-weight:700; }
.btn-brochure-1{ border-radius:999px; padding:8px 14px; border:2px solid rgba(42,79,135,0.08); color:var(--fee-blue-1); background:transparent; }

/* Small note */
.fees-note-1{ color:var(--fee-muted-1); font-size:0.95rem; }

/* Responsive: convert table rows to stacked cards on small screens */
@media (max-width: 768px){
  .fees-table-1 thead{ display:none; }
  .fees-table-1, .fees-table-1 tbody, .fees-table-1 tr, .fees-table-1 td{ display:block; width:100%; }
  .fees-table-1 tr{ margin-bottom:14px; border-radius:12px; background:var(--glass-1); padding:12px; }
  .fees-table-1 td{ padding:8px 10px; border:none; }
  .fees-table-1 td::before{
    content: attr(data-label);
    display:block;
    font-weight:700;
    color:var(--fee-muted-1);
    margin-bottom:6px;
  }
  .fees-cta-1{ flex-direction:column; gap:10px; align-items:stretch; }
}

/* ...existing code... */

/* ...existing code... */

/* Prizes styles (isolated with -1 suffix) */
:root{
  --prize-blue-1: #2a4f87;
  --prize-cyan-1: #48a8d4;
  --prize-gold-1: #ffbf47;
  --prize-deep-1: #1f2a44;
  --muted-1: #6b7280;
}

/* Card base */
.prize-card-1{
  background: linear-gradient(180deg,#ffffff, rgba(72,168,212,0.02));
  border-radius: 14px;
  border: 1px solid rgba(42,79,135,0.06);
  transition: transform .24s ease, box-shadow .24s ease;
  position: relative;
  padding-top: 28px;
  min-height: 320px;
}
.prize-card-1:hover{
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(42,79,135,0.08);
}

/* Ribbon */
.prize-ribbon-1{
  position: absolute;
  top: 12px;
  left: 14px;
  font-weight:700;
  font-size:12px;
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  background: linear-gradient(90deg,var(--prize-blue-1),var(--prize-cyan-1));
  box-shadow: 0 8px 20px rgba(42,79,135,0.12);
}
.prize-ribbon-1.alt-1{ background: linear-gradient(90deg,#ffd86b,var(--prize-gold-1)); color:#111; }
.prize-ribbon-1.alt-2{ background: linear-gradient(90deg,#8ad3c7,var(--prize-deep-1)); }

/* Image */
.prize-img-wrap-1{ height:120px; display:grid; place-items:center; margin-bottom:8px; }
.prize-img-1{ max-height:100px; object-fit:contain; transition: transform .2s ease; }
.prize-card-1:hover .prize-img-1{ transform: scale(1.06); }

/* Title / desc */
.prize-title-1{ margin:8px 0 6px; font-weight:700; color:var(--prize-deep-1); }
.prize-desc-1{ color:var(--muted-1); margin-bottom:12px; }

/* Pills */
.prize-badge-row-1{ display:flex; gap:8px; justify-content:center; margin-top:auto; }
.pill-1{ padding:6px 10px; border-radius:999px; font-weight:700; background:linear-gradient(90deg,var(--prize-cyan-1),var(--prize-blue-1)); color:#fff; font-size:13px; box-shadow:0 10px 24px rgba(42,79,135,0.08); }
.pill-1.outline-1{ background:transparent; color:var(--prize-deep-1); border:2px solid rgba(42,79,135,0.06); }

/* Hero card (full-width highlight) */
.prize-card-hero-1{
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(42,79,135,0.9), rgba(72,168,212,0.85));
  color: #fff;
  position: relative;
  min-height: 260px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.hero-overlay-1{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.02)); pointer-events:none; }
.hero-inner-1{ position:relative; z-index:2; max-width:920px; }

/* Hero image */
.prize-img-large-1{ max-height:140px; object-fit:contain; border-radius:12px; background: rgba(255,255,255,0.08); padding:8px; box-shadow: 0 12px 30px rgba(0,0,0,0.12); }

/* Hero text */
.prize-hero-title-1{ font-weight:800; font-size:1.35rem; margin-bottom:8px; color:#fff; }
.prize-hero-desc-1{ color:rgba(255,255,255,0.92); line-height:1.4; margin-bottom:12px; }
.prize-terms-1{ color:rgba(255,255,255,0.85); font-size:0.9rem; }

/* Hero CTAs */
.prize-hero-ctas-1 .btn-hero-1{
  background: linear-gradient(90deg,var(--prize-gold-1), #ffd86b);
  color: #111;
  font-weight:700;
  border-radius:999px;
  padding:10px 18px;
  box-shadow: 0 14px 36px rgba(255,190,60,0.14);
}
.prize-hero-ctas-1 .btn-hero-ghost-1{
  border-radius:999px;
  border:2px solid rgba(255,255,255,0.18);
  color:#fff;
  background: transparent;
  padding:9px 16px;
}

/* Responsive */
@media (max-width: 768px){
  .prize-card-1{ min-height: auto; padding:18px; }
  .prize-img-wrap-1{ height:90px; }
  .prize-img-large-1{ max-height:120px; }
  .prize-hero-title-1{ font-size:1.1rem; }
  .prize-badge-row-1{ flex-wrap:wrap; gap:6px; }
}

/* ...existing code... */


/* ...existing code... */
/* Exam Features styles (isolated with -1 suffix) */
:root{
  --feat-bg-1: #fff;
  --feat-primary-1: #2a4f87;
  --feat-accent-1: #48a8d4;
  --feat-warm-1: #ffb86b;
  --feat-deep-1: #1f2a44;
  --feat-muted-1: #6b7280;
}

/* Section heading */
.section-title-1 { font-family: 'Poppins', sans-serif; color:var(--feat-deep-1); font-weight:700; }
.section-sub-1 { color:var(--feat-muted-1); }


/* Card base */
.feature-card-1{
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(72,168,212,0.02));
  border-radius: 14px;
  border: 1px solid rgba(42,79,135,0.06);
  padding: 2rem 1.25rem;
  transition: transform .25s ease, box-shadow .25s ease;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  min-height: 260px;
}

/* larger variant */
.feature-large-1{ min-height: 220px; }

/* hover lift */
.feature-card-1:hover{
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(16,24,40,0.08);
}

/* Icon circle */
.feature-icon-circle-1{
  width:88px;
  height:88px;
  border-radius:50%;
  display:grid;
  place-items:center;
  margin-bottom:14px;
  box-shadow: 0 12px 30px rgba(42,79,135,0.08);
  border: 6px solid rgba(255,255,255,0.6);
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3));
  transition: transform .22s ease, box-shadow .22s ease;
}

/* Icon image */
.feature-icon-1{ width:56px; height:56px; object-fit:contain; }

/* color accents for circles */
.feature-icon-circle-1.marshall-1{ background: linear-gradient(135deg, rgba(42,79,135,0.08), rgba(42,79,135,0.04)); border-color: rgba(42,79,135,0.18); }
.feature-icon-circle-1.ocean-1  { background: linear-gradient(135deg, rgba(72,168,212,0.12), rgba(72,168,212,0.04)); border-color: rgba(72,168,212,0.18); }
.feature-icon-circle-1.coral-1  { background: linear-gradient(135deg, rgba(197,50,51,0.06), rgba(255,184,160,0.03)); border-color: rgba(197,50,51,0.14); }
.feature-icon-circle-1.emerald-1{ background: linear-gradient(135deg, rgba(15,139,110,0.08), rgba(15,139,110,0.03)); border-color: rgba(15,139,110,0.18); }
.feature-icon-circle-1.gold-1   { background: linear-gradient(135deg, rgba(255,190,60,0.14), rgba(255,190,60,0.04)); border-color: rgba(255,190,60,0.18); }

/* title & desc */
.feature-title-1 { margin: 0.35rem 0 0.6rem; font-weight:700; color:var(--feat-deep-1); }
.feature-desc-1  { color:var(--feat-muted-1); line-height:1.45; margin:0; max-width: 34rem; }

/* subtle shadow utility */
.shadow-1 { box-shadow: 0 12px 28px rgba(16,24,40,0.06); }

/* responsive tweaks */
@media (max-width: 991px){
  .feature-card-1{ min-height: auto; padding: 1.6rem; }
  .feature-icon-circle-1{ width:72px; height:72px; }
  .feature-icon-1{ width:46px; height:46px; }
}
@media (max-width: 576px){
  .feature-title-1{ font-size:1rem; }
  .feature-desc-1{ font-size:0.95rem; max-width:100%; }
}

/* small animation on icon hover */
.feature-card-1:hover .feature-icon-circle-1{ transform: translateY(-6px) rotate(-3deg); box-shadow: 0 26px 50px rgba(42,79,135,0.10); }

/*


/* ...existing code... */
/* FAQ - scoped to #faq to avoid conflicts — modern, card-like accordion + table polish */

#faq {
  --faq-primary: #2a4f87;
  --faq-accent: #48a8d4;
  --faq-muted: #6b7280;
  --faq-bg: linear-gradient(180deg, rgba(42,79,135,0.03), rgba(72,168,212,0.01));
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Outer container glow */
#faq .container {
  position: relative;
  z-index: 1;
}

/* Accordion item as card */
#faq .accordion-item {
  background: #fff;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(16,24,40,0.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

/* Lift on hover for inactive items */
#faq .accordion-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(16,24,40,0.08);
}

/* Header button styling */
#faq .accordion-button {
  background: transparent;
  color: var(--faq-primary);
  font-weight: 600;
  padding: 1.05rem 1.25rem;
  border-radius: 0;
  font-size: 1rem;
  letter-spacing: .15px;
  transition: background .18s ease, color .18s ease;
}

/* Collapse state: subtle background */
#faq .accordion-button.collapsed {
  background: linear-gradient(90deg, rgba(42,79,135,0.02), rgba(72,168,212,0.01));
  color: var(--faq-primary);
}

/* Expanded state: accent background and white label */
#faq .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--faq-primary), var(--faq-accent));
  color: #fff;
  box-shadow: 0 8px 24px rgba(42,79,135,0.12);
}

/* Replace chevron color */
#faq .accordion-button::after {
  filter: none;
  color: inherit;
  font-weight: 900;
  opacity: 0.95;
}

/* Accordion body */
#faq .accordion-body {
  padding: 1.25rem 1.25rem 1.6rem;
  color: #333;
  line-height: 1.6;
  font-size: .98rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,249,250,0.98));
  border-top: 1px solid rgba(16,24,40,0.03);
}

/* Make long lists/tables inside body look nicer */
#faq .accordion-body .table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16,24,40,0.04);
  margin-bottom: 0;
}

/* Table header */
#faq .accordion-body .table thead th {
  background: linear-gradient(90deg, var(--faq-primary), var(--faq-accent));
  color: #fff;
  border: none;
  font-weight: 700;
  padding: .8rem 1rem;
  text-transform: none;
  font-size: .95rem;
}

/* Table body */
#faq .accordion-body .table tbody td {
  padding: .85rem 1rem;
  vertical-align: middle;
  color: #222;
  border-top: 1px dashed rgba(16,24,40,0.04);
  font-size: .94rem;
}

/* Highlight rows on hover */
#faq .accordion-body .table tbody tr:hover {
  background: linear-gradient(90deg, rgba(42,79,135,0.02), rgba(72,168,212,0.01));
  transform: translateY(-2px);
}

/* Small responsive tweaks: stacked labels for small screens */
@media (max-width: 768px) {
  #faq .accordion-button { padding: .9rem 1rem; font-size: .98rem; }
  #faq .accordion-body { padding: 1rem; font-size: .95rem; }
  #faq .accordion-body .table thead { display: none; }
  #faq .accordion-body .table, 
  #faq .accordion-body .table tbody, 
  #faq .accordion-body .table tr, 
  #faq .accordion-body .table td {
    display: block;
    width: 100%;
  }
  #faq .accordion-body .table tr { margin-bottom: 12px; background: #fff; border-radius: 10px; padding: 10px; }
  #faq .accordion-body .table td { padding: 6px 8px; border: none; }
  #faq .accordion-body .table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    color: var(--faq-primary);
    margin-bottom: 6px;
    font-size: .85rem;
  }
}

/* Tiny visual helpers */
#faq .section-title { font-weight: 700; letter-spacing: .2px; }
#faq .text-muted { color: var(--faq-muted) !important; }

/* Add subtle background behind the FAQ area */
#faq::before {
  content: "";
  position: absolute;
  inset: -40px -10%;
  background: radial-gradient(circle at 10% 10%, rgba(42,79,135,0.06), transparent 10%),
              radial-gradient(circle at 90% 90%, rgba(72,168,212,0.04), transparent 12%);
  pointer-events: none;
  z-index: 0;
  border-radius: 20px;
}
/* ...existing code... */


/* ...existing code... */
/* Hero Headline - modern, isolated with -1 suffix */
:root{
  --hero-blue-1: #2a4f87;
  --hero-cyan-1: #48a8d4;
  --hero-gold-1: #ffd86b;
  --hero-dark-1: #0f2440;
}

/* Section */
.hero-headline-1{
  background: linear-gradient(180deg, rgba(42,79,135,0.95) 0%, rgba(36,58,92,0.92) 60%), url('../images/hero_bg.webp') center/cover no-repeat;
  padding: 5.5rem 0;
  position: relative;
  color: #fff;
  overflow: visible;
}

/* Decorative blurred shapes */
.hero-shapes-1 { position:absolute; inset:0; pointer-events:none; z-index:0; }
.hero-shapes-1 .shape-1,
.hero-shapes-1 .shape-2,
.hero-shapes-1 .shape-3 {
  position:absolute;
  border-radius:50%;
  filter: blur(32px);
  opacity: .65;
  transform: translateZ(0);
  animation: floaty 8s ease-in-out infinite;
}
.hero-shapes-1 .shape-1 { width:260px; height:260px; background:linear-gradient(135deg,var(--hero-cyan-1),var(--hero-blue-1)); top:-40px; left:-60px; }
.hero-shapes-1 .shape-2 { width:180px; height:180px; background:linear-gradient(135deg,var(--hero-gold-1),#ffb86b); bottom:-30px; right:5%; animation-delay:2s; }
.hero-shapes-1 .shape-3 { width:120px; height:120px; background:rgba(255,255,255,0.06); top:20%; right:12%; animation-delay:4s; }

@keyframes floaty {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(6deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Inner container over shapes */
.hero-inner-1 { position:relative; z-index:2; max-width:980px; margin:0 auto; }

/* Title & subtitle */
.hero-title-1 { font-weight:800; letter-spacing:0.2px; color: #fff; text-shadow: 0 6px 20px rgba(10,20,40,0.35); }
.hero-lead-1 { color: rgba(255,255,255,0.9); font-size:1.125rem; }

/* CTAs */
.hero-ctas-1 .btn-cta-primary-1 {
  background: linear-gradient(90deg,var(--hero-gold-1), #ffd86b);
  color: #111;
  font-weight:700;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(255,190,60,0.12);
  transition: transform .16s ease, box-shadow .16s ease;
}
.hero-ctas-1 .btn-cta-primary-1:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(255,180,60,0.16); }

.hero-ctas-1 .btn-cta-outline-1 {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  font-weight:700;
  transition: background .16s ease, transform .16s ease;
}
.hero-ctas-1 .btn-cta-outline-1:hover { background: rgba(255,255,255,0.06); transform: translateY(-3px); }

/* Badges for mediums */
.exam-medium-1 { display:flex; justify-content:center; gap:.6rem; flex-wrap:wrap; z-index:2; margin-top:.8rem; }
.hero-badge-1 {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: .45rem .9rem;
  border-radius: 999px;
  font-weight:600;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 22px rgba(16,24,40,0.08);
  border: 1px solid rgba(255,255,255,0.06);
}

/* Responsive sizing */
@media (max-width: 991px) {
  .hero-headline-1 { padding:4rem 0; background-position: center 20%; }
  .hero-title-1 { font-size:1.9rem; }
  .hero-lead-1 { font-size:1rem; }
}
@media (max-width: 576px) {
  .hero-title-1 { font-size:1.45rem; line-height:1.15; }
  .hero-ctas-1 .btn { display:block; width:100%; margin-bottom:.6rem; }
  .hero-ctas-1 .btn-cta-primary-1, .hero-ctas-1 .btn-cta-outline-1 { padding:.8rem; }
  .hero-shapes-1 .shape-1, .hero-shapes-1 .shape-2 { display:none; }
}

/* Accessibility: focus states */
.hero-ctas-1 .btn:focus { outline: 3px solid rgba(72,168,212,0.22); outline-offset: 2px; }

/* ...existing



/* ...existing code... */

/* Prevent horizontal scrollbar caused by oversized elements (debug + safe guard) */
html, body {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden; /* hide any accidental horizontal overflow */
}

/* Make all elements use border-box for predictable sizes */
*, *::before, *::after { box-sizing: inherit; }


/* Ensure key hero/section wrappers hide decorative overflow */
.hero-headline-1,
.hero-section,
.prize-card-hero-1,
#faq,
.about-section,
.timeline-table-wrap-1 {
  overflow-x: hidden;
  position: relative;
}

/* Reduce pseudo-element negative inset overflow (if present) */
#faq::before {
  /* if you used large negative inset earlier, limit it to avoid scrollbar */
  left: -6%;
  right: -6%;
  inset-block: -40px; /* keep vertical visual but avoid horizontal overflow */
}

/* Utility to avoid accidental full-width transforms on small screens */
[class*="shape-"],
.hero-shapes-1 span {
  max-width: 60vw;
  max-height: 60vw;
  box-sizing: border-box;
}

/* Small responsive safeguard for wide tables/long rows */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ...existing code... */


/* Preserve table layout on small screens — keep horizontal scrolling for syllabus table */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Force syllabus table to remain a real table and prevent stacking */
.syllabus-table-1{
  width: 100%;
  min-width: 880px; /* adjust if you want more/less horizontal space */
  table-layout: auto;
  border-collapse: collapse;
  white-space: nowrap;
}

/* Ensure structural display is preserved on mobile (override generic stacking rules) */
@media (max-width: 767px) {
  .syllabus-table-1,
  .syllabus-table-1 thead,
  .syllabus-table-1 tbody,
  .syllabus-table-1 tr,
  .syllabus-table-1 th,
  .syllabus-table-1 td {
    display: table !important; /* table/table-row/table-cell roles are set below where needed */
  }

  .syllabus-table-1 thead { display: table-header-group !important; }
  .syllabus-table-1 tbody { display: table-row-group !important; }
  .syllabus-table-1 tr { display: table-row !important; }
  .syllabus-table-1 th,
  .syllabus-table-1 td { display: table-cell !important; padding: .7rem .9rem; vertical-align: middle; white-space: nowrap; }

  /* make sure the containing .table-responsive allows scrolling (important when other rules try to hide overflow) */
  .table-responsive { overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; }
}

/* Optional visual tweak: indicate horizontal scroll on mobile */
@media (max-width: 767px) {
  .table-responsive { padding-bottom: 8px; }
  .table-responsive::after{
    content: '↔ Scroll';
    display:block;
    text-align:right;
    color: rgba(0,0,0,0.35);
    font-size: .82rem;
    margin-top: 6px;
    padding-right: 6px;
  }
}



/* Keep fees table horizontal on mobile — scroll instead of stacking */
.fees-wrapper-1 .table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 6px; /* room for scroll */
}

/* Ensure table layout preserved */
.fees-table-1 {
  width: 100%;
  min-width: 640px; /* increase if needed to avoid wrapping */
  table-layout: auto;
  white-space: nowrap;
}

/* Override any global 'table -> block' rules for this table */
@media (max-width: 991px) {
  .fees-table-1,
  .fees-table-1 thead,
  .fees-table-1 tbody,
  .fees-table-1 tr,
  .fees-table-1 th,
  .fees-table-1 td {
    display: table !important;
  }
  .fees-table-1 thead { display: table-header-group !important; }
  .fees-table-1 tbody { display: table-row-group !important; }
  .fees-table-1 tr { display: table-row !important; }
  .fees-table-1 th,
  .fees-table-1 td { display: table-cell !important; vertical-align: middle; white-space: nowrap; padding: .65rem .9rem; }
}

/* Optional visual scroll hint on mobile */
@media (max-width: 767px) {
  .fees-wrapper-1::after{
    content: "↔ Swipe to view";
    display: block;
    text-align: right;
    color: rgba(0,0,0,0.35);
    font-size: .82rem;
    margin-top: 6px;
    padding-right: 6px;
  }
}

/* Small polish: keep pill sizing neat inside table cells */
.fees-table-1 .class-pill-1,
.fees-table-1 .num-pill-1,
.fees-table-1 .total-pill-1 { white-space: nowrap; }




/* organizer or director */

/* organiser css */

/* Organizers Section Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #f1c40f;
    --light-color: #f8f9fa;
    --dark-color: #1d3557;
    --text-color: #333;
    --border-radius: 12px;
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.organizers-section {
    padding: 5rem 0;
    background-color: var(--light-color);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e63946' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-header3 {
    margin-bottom: 4rem;
}

.section-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.5rem 0 1.5rem;
}

.decoration-line {
    height: 2px;
    width: 80px;
	background-color: var(--primary-color);
}

.decoration-icon {
    margin: 0 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
}

.section-subtitle:before, .section-subtitle:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.section-subtitle:before {
    left: 0;
}

.section-subtitle:after {
    right: 0;
}

/* Main Organizer Styles */
.organizer-main, .organizer-secondary {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 3rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.organizer-main:hover, .organizer-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.organizer-main:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
}

.organizer-secondary:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background-color: var(--accent-color);
}

.organizer-photo-container {
    position: relative;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.organizer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.organizer-main:hover .organizer-photo, 
.organizer-secondary:hover .organizer-photo {
    transform: scale(1.05);
}

.organizer-badge {
    position: absolute;
    bottom: 20px;
    left: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.organizer-secondary .organizer-badge {
    left: auto;
    right: 0;
    background-color: var(--accent-color);
    color: var(--dark-color);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.organizer-content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.organizer-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.organizer-name {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.organizer-position {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.organizer-designation {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

.organizer-bio {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.organizer-bio p {
    margin-bottom: 1rem;
    text-align: justify;
}

.organizer-message {
    background-color: rgba(241, 196, 15, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-top: auto;
}

.organizer-message p {
    margin-bottom: 1rem;
    text-align: justify;
    font-style: italic;
}

.organizer-message p:last-child {
    margin-bottom: 0;
}

.event-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
}

.event-date-badge i {
    font-size: 1.4rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .organizer-photo-container {
        min-height: 300px;
    }
    
    .organizer-content {
        padding: 1.5rem;
    }
    
    .organizer-name {
        font-size: 1.5rem;
    }
    
    .organizer-position {
        font-size: 1.1rem;
    }
    
    .organizer-message {
        padding: 1rem;
    }
    
    .decoration-line {
        width: 50px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .organizer-photo-container {
        min-height: 250px;
    }
    
    .organizer-badge {
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem;
    }
}
