body { font-family: 'Poppins', Arial, sans-serif; background: #f6f9fc; color: #222; }

#topbar {
  background: rgba(27,0,123,0.82);
  color: #fff;
  
  padding: 0.25rem 0;
  position: relative;
  z-index: 1051;
  box-shadow: 0 2px 12px rgba(27,0,123,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
#topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
#topbar i.fa-envelope {
 margin-right: 0.5rem;
}
#topbar i.fa-phone {
  margin-right: 0.5rem;
}
#topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.18s;
}
#topbar a:hover {
  color: #f30000;
}

.navbar {
  background:#fff;
}

/* Footer icon spacing for lists */
.footer-icon {
  margin-right: 0.55em;
  font-size: 1.1em;
  vertical-align: middle;
}
.sticky-top {
  top: 0;
  z-index: 1050;
}
.navbar-nav {
  align-items: center;
  gap: 0.5rem;
}

/* Show dropdown on hover */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Improved dropdown design */
.dropdown-menu {
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(27,0,123,0.15), 0 2px 8px rgba(0,0,0,0.08);
  padding: 0.7rem 0.3rem;
  min-width: 220px;
  border: none;
  background: #fff;
  transition: box-shadow 0.22s, background 0.22s;
}
.dropdown-menu .dropdown-item {
  border-radius: 0.7rem;
  padding: 0.65rem 1.3rem;
  font-weight: 500;
  color: #1b007b;
  transition: background 0.18s, color 0.18s;
}
.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus {
  background: #f4f6fa;
  color: #f30000;
}

/* Dropdown arrow color fix for dark backgrounds */
.navbar .dropdown-toggle::after {
  filter: none;
}
.nav-link {
  color: #1b007b !important;
  font-weight: 600;
  
  padding: 0.6rem 1.1rem;
  border-radius: 18px;
  position: relative;
  transition: color 0.18s, background 0.18s;
  overflow: hidden;
}
.nav-link.active, .nav-link:focus {
  color: #f30000 !important;
}
.nav-link::after {
  content: '';
  display: block;
  position: absolute;
  left: 20%;
  right: 20%;
  bottom: 7px;
  height: 3px;
  background: #f30000;
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.5);
  transition: all 0.25s cubic-bezier(.68,-0.55,.27,1.55);
}
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.nav-link:hover::after {
  opacity: 0;
  transform: scaleX(0.5);
}
.nav-link:hover {
  color: #1b007b !important;
  background: rgba(27,0,123,0.07);
}

.navbar-brand {
  font-weight: 700;
  color: #1b007b !important;
  letter-spacing: 1px;
  
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0.2rem 0;
}
.navbar-brand img {
  height: 55px !important;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(27,0,123,0.1));
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.navbar-brand:hover img {
  filter: drop-shadow(0 4px 8px rgba(27,0,123,0.2));
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
  position: relative;
  overflow: hidden;
  padding: 40px 0 40px 0;
  text-align: center;
  min-height: auto;
  display: flex;
  align-items: center;
}
#hero-particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: heroFloat 20s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes heroFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(-10px, -10px) rotate(1deg); }
  50% { transform: translate(10px, -5px) rotate(-1deg); }
  75% { transform: translate(-5px, 10px) rotate(0.5deg); }
}
.hero .container {
  position: relative;
  z-index: 3;
}
.hero .d-flex.gap-3 {
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: #ffffff;
  
  font-weight: 800;
  margin-top:2rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: heroTitle 1.2s cubic-bezier(.68,-0.55,.27,1.55);
  text-align: left;
  line-height: 70px;
}
@keyframes heroTitle {
  0% { opacity: 0; transform: translateY(30px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroUnderline {
  0% { width: 0; opacity: 0; }
  100% { width: 120px; opacity: 1; }
}
.hero p {
  
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
  animation: fadeInUp 1.5s cubic-bezier(.68,-0.55,.27,1.55) 0.6s both;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
  text-align: left;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.hero .btn {
  font-weight: 600;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  animation: fadeInUp 1.5s cubic-bezier(.68,-0.55,.27,1.55) 0.9s both;
}
.hero .btn::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;
}
.hero .btn:hover::before {
  left: 100%;
}
.hero .btn-success {
  background: linear-gradient(45deg, #25d366, #128c7e);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  color: white;
}

.section-title {
  font-weight: 700;
  color: #000;
  margin-bottom: 2.2rem;
  text-align: center;
  letter-spacing: 0.5px;
}

.course-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(27,0,123,0.07);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  margin-bottom: 2.2rem;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #fbe3e3;
}
.course-card:hover {
  box-shadow: 0 8px 32px rgba(243,0,0,0.13);
  transform: translateY(-8px) scale(1.03);
  border-color: #f30000;
}
.course-card h5 {
  font-weight: 700;
  color: #1b007b;
  margin-bottom: 0.7rem;
}
.course-card p {
  color: #444;
  
}
 th,  td {
  text-align: center;
  vertical-align: middle;
  
}
 th {
  background: #fbe3e3;
  color: #1b007b;
}

.testimonials-section .testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 32px rgba(27,0,123,0.13), 0 1.5px 8px rgba(0,0,0,0.04);
  padding: 2.2rem 1.5rem;
  text-align: center;
  border: 1.5px solid #fbe3e3;
  margin: 0 14px;
  transition: box-shadow 0.2s;
}
.testimonials-section .testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(27,0,123,0.17), 0 2.5px 12px rgba(0,0,0,0.07);
}

.get-started-section {
  background: linear-gradient(90deg, #f7faff 0%, #eaf1fb 100%);
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.get-started-steps {
  position: relative;
}
.step-card {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(44,100,255,0.07), 0 1.5px 8px rgba(0,0,0,0.03);
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  z-index: 1;
}
.step-card:hover {
  box-shadow: 0 8px 32px rgba(44,100,255,0.13), 0 2.5px 12px rgba(0,0,0,0.07);
  transform: translateY(-4px) scale(1.03);
}
.step-circle {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(44,100,255,0.09);
}
.btn-gradient {

  background: linear-gradient(90deg, #2343b5 0%, #2c64ff 100%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(44,100,255,0.13);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.btn-gradient:hover, .btn-gradient:focus {
  background: linear-gradient(90deg, #2c64ff 0%, #2343b5 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* Orange Gradient Button */

.btn-gradient-orange {
  background: linear-gradient(90deg, #ff9800 0%, #ff512f 100%);
  color: #fff;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  box-shadow: 0 4px 24px rgba(255,152,0,0.13);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.btn-gradient-orange:hover, .btn-gradient-orange:focus {
  background: linear-gradient(90deg, #ff512f 0%, #ff9800 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);

  background: linear-gradient(90deg, #2c64ff 0%, #2343b5 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}
.bg-gradient-primary {
  background: linear-gradient(165deg, #3274c0e8 0%, #f81858b8 100%);
}
@media (max-width: 767px) {
  .get-started-section {
    border-radius: 1rem;
  }
  .step-card {
    margin-bottom: 1.5rem;
  }
}

.get-started-timeline-section {
  background: linear-gradient(90deg, #f7faff 0%, #eaf1fb 100%);
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 4px;
  background: linear-gradient(180deg, #2c64ff 0%, #eaf1fb 100%);
  transform: translateX(-50%);
  z-index: 0;
}
.timeline-step {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.timeline-step.left { flex-direction: row; }
.timeline-step.right { flex-direction: row-reverse; }
.timeline-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  border: 4px solid #fff;
  margin: 0 1.5rem;
  box-shadow: 0 2px 8px rgba(44,100,255,0.09);
  z-index: 2;
}
.timeline-content {
  background: #fff;
  border-radius: 1.2rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 8px rgba(44,100,255,0.06);
  min-width: 220px;
}
@media (max-width: 767px) {
  .get-started-timeline-section {
    border-radius: 1rem;
  }
  .timeline::before { left: 24px; }
  .timeline-step, .timeline-step.left, .timeline-step.right { flex-direction: row; }
  .timeline-icon { margin: 0 1rem 0 0; }
  .timeline-content { min-width: 0; width: 100%; }
}

.get-started-horizontal-section {
  background: linear-gradient(90deg, #dbdbdb 0%, #f3f3f3 100%);
  border-radius: 0;
  margin-bottom: 2rem;
}
.stepper-wrapper {
  position: relative;
  gap: 0;
  display: flex;
  align-items: center;
}
.stepper-step {
  min-width: 200px;
  max-width: 320px;
  flex: 1 1 0;
  padding: 0 1rem;
}
.stepper-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 4px solid #fff;
  box-shadow: 0 2px 8px rgba(44,100,255,0.09);
  margin-bottom: 0.5rem;
}
.stepper-line {
  flex: 0 0 44px;
  height: 4px;
  background: linear-gradient(90deg, #2c64ff 0%, #eaf1fb 100%);
  margin: 0 0.5rem;
  border-radius: 2px;
}
@media (max-width: 991px) {
  .stepper-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .stepper-line {
    width: 4px;
    height: 44px;
    margin: 0 auto 1rem auto;
    background: linear-gradient(180deg, #2c64ff 0%, #eaf1fb 100%);
  }
}

/* Student Success Card Styles */
.student-success-card {
  background: linear-gradient(135deg, #fff 80%, #f4f8fc 100%);
  border-radius: 1.7rem;
  box-shadow: 0 8px 36px rgba(27,0,123,0.13), 0 2px 8px rgba(0,0,0,0.06);
  border-top: 6px solid #1b007b;
  transition: box-shadow 0.18s, transform 0.18s;
}
.student-success-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 48px rgba(27,0,123,0.18), 0 4px 16px rgba(0,0,0,0.13);
}
.avatar-wrap {
  position: relative;
  display: inline-block;
}
.quote-icon {
  left: 90%;
  top: 10%;
  color: #fff;
  background: #1b007b;
  padding: 0.2em 0.4em;
  font-size: 1.2em;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(27,0,123,0.10);
}

/* Student Story Horizontal Card Styles */
.student-story-horizontal-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 1.7rem;
  box-shadow: 0 8px 36px rgba(27,0,123,0.13), 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  min-height: 320px;
}
.student-story-left {
  background: linear-gradient(135deg,#f4f8fc 80%, #e9f0fb 100%);
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.student-story-right {
  background: #fff;
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .student-story-horizontal-card {
    flex-direction: column;
    min-height: unset;
  }
  .student-story-left, .student-story-right {
    max-width: 100%;
    min-width: 0;
    padding: 2rem 1.2rem !important;
  }
}

/* Spacing between slick slides */
.testimonials-section .slick-slide {
  padding: 12px 0;
}

/* Modern CTA Section inspired by reference image */
/* Premium Contact Form Enhancements */
.contact-section-premium {
  background-color: #f8fafc;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='2' fill='%23e2e8f0'/%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23e2e8f0'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 32px 32px;
}

.contact-section-premium .card {
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(60,60,120,0.13);
  background: #fff;
}
.contact-section-premium .form-label {
  font-weight: 600;
  color: #23234a;
  margin-bottom: 0.35rem;
}
.contact-section-premium .input-group-text {
  border-radius: 1.2rem 0 0 1.2rem;
  background: #f3f0ff;
  border: 1px solid #e0e0f7;
  color: #6a5af9;
  font-size: 1.25rem;
}
.contact-section-premium .form-control,
.contact-section-premium textarea.form-control {
  border-radius: 0 1.2rem 1.2rem 0;
  border: 1px solid #e0e0f7;
  box-shadow: 0 2px 8px rgba(60,60,120,0.07);
  font-size: 1.1rem;
  padding: 0.85em 1em;
  background: #fafaff;
  transition: border-color 0.16s, box-shadow 0.16s;
}
.contact-section-premium .form-control:focus,
.contact-section-premium textarea.form-control:focus {
  border-color: #8f6eff;
  box-shadow: 0 0 0 2px #e0e0f7;
  background: #fff;
}
.contact-section-premium textarea.form-control {
  min-height: 90px;
  resize: vertical;
}
.contact-section-premium .btn-primary {
  background: #0d6efd !important;
  border-color: #0d6efd !important;
  color: #fff !important;
}
.contact-section-premium .btn-primary:hover, .contact-section-premium .btn-primary:focus {
  background: #0b5ed7 !important;
  border-color: #0a58ca !important;
  color: #fff !important;
}

/* Hero CTA Section */
.cta-hero-cta {
  background: linear-gradient(120deg, #181824 0%, #23234a 100%);
  color: #fff;
  min-height: 320px;
  box-shadow: 0 6px 32px rgba(32,32,64,0.14);
  overflow: hidden;
  margin: 2.5rem 0 2.5rem 0;
  padding: 2.8rem 0 2.2rem 0;
}
.cta-hero-artwork {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  max-width: 320px;
}
.cta-hero-title {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.cta-hero-desc {
  color: #e4e4e4;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  font-weight: 400;
  margin-bottom: 2.2rem;
}
.cta-hero-btn {
  background: linear-gradient(90deg, #ffb347 0%, #ff7f50 100%);
  color: #fff !important;
  font-weight: 800;
  font-size: clamp(1.09rem, 2vw, 1.23rem);
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 2em;
  box-shadow: 0 4px 24px 0 rgba(255,127,80,0.18), 0 2px 8px rgba(0,0,0,0.09);
  letter-spacing: 0.01em;
  transition: background 0.15s, box-shadow 0.15s, transform 0.13s;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  text-decoration:none;
}
.cta-hero-btn:hover, .cta-hero-btn:focus {
  background: linear-gradient(90deg, #ff7f50 0%, #ffb347 100%);
  color: #fff !important;
  box-shadow: 0 8px 36px rgba(255,127,80,0.25);
  transform: translateY(-2px) scale(1.045);
}
.cta-hero-btn:active {
  background: linear-gradient(90deg, #ffb347 0%, #ff7f50 100%);
  color: #fff !important;
  box-shadow: 0 2px 8px rgba(255,127,80,0.18);
  transform: scale(0.98);
}
@media (max-width: 991.98px) {
  .cta-hero-artwork {
    margin-bottom: 1.6rem;
    height: 120px;
  }
  .cta-hero-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }
  .cta-hero-cta {
    border-radius: 0.8rem;
    padding: 1.3rem 0.2rem;
  }
}


@media (max-width: 991.98px) {
  .testimonials-section .testimonial-card {
    margin: 0 0 18px 0;
  }
}

.testimonials-section .testimonial-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.testimonial strong {
  color: #1b007b;
}
.trainer-section {
  background: linear-gradient(90deg, #fbe3e3 0%, #f6f9fc 100%);
  border-radius: 16px;
  padding: 2.2rem 1.5rem;
  margin-bottom: 2.2rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(27,0,123,0.07);
}
.trainer-section img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #f30000;
}
.trainer-section h4 {
  font-weight: 700;
  color: #1b007b;
}
.contact-info {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(27,0,123,0.07);
  padding: 2.2rem 1.5rem;
  margin-bottom: 2.2rem;
  border: 1.5px solid #fbe3e3;
}
.contact-info h5 {
  color: #1b007b;
  font-weight: 700;
}
.contact-info a {
  color: #f30000;
}
.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(27,0,123,0.07);
}
.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}
.floating-btn, .floating-whatsapp {
  position: fixed;
  right: 24px;
  z-index: 1040;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  cursor: pointer;
  transition: background 0.2s;
  background: #25d366;
  bottom: 32px;
  text-decoration: none;
}
.floating-btn {
  background: #f30000;
  bottom: 96px;
}
.floating-btn:hover {
  background: #1b007b;
}
.floating-whatsapp {
  background: #25d366;
  bottom: 32px;
  text-decoration: none;
  transition: background 0.2s;
  animation: whatsapp-pulse 1s infinite alternate ease-in-out;
}
.floating-whatsapp .fa-whatsapp {
  animation: whatsapp-pulse 1s infinite alternate ease-in-out;
  font-size: 2rem;
}
.floating-whatsapp:hover {
  background: #128c7e;
  animation: whatsapp-pulse-hover 0.6s infinite alternate ease-in-out !important;
  z-index: 1050;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
@keyframes whatsapp-pulse-hover {
  0% { transform: scale(1.04); }
  100% { transform: scale(1.15); }
}
.floating-whatsapp:active,
.floating-whatsapp:active .fa-whatsapp {
  transform: scale(0.92) !important;
}
@media (max-width: 767px) {
  .navbar-brand img {
    height: 45px !important;
  }
  
  .hero {
    padding: 60px 0 80px 0;
    min-height: auto;
  }
  
  .hero h1 {
    
    line-height: 1.1;
    margin-bottom: 1.2rem;
  }
  
  .hero-subtitle {
    
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    
    margin-bottom: 2rem;
  }
  
  .hero .btn {
    padding: 0.9rem 2rem;
    
  }
  
  .hero h1::after {
    width: 80px;
    height: 4px;
    margin: 15px auto 0 auto;
  }
  
    .course-card {
    padding: 1.2rem 0.7rem;
  }
  .trainer-section {
    padding: 1.2rem 0.7rem;
  }
  .contact-info {
    padding: 1.2rem 0.7rem;
  }
}
@media (max-width: 991px) {
  .navbar .container {
    flex-direction: column;
    align-items: stretch;
  }
  .navbar-brand {
    justify-content: center;
    width: 100%;
    margin-bottom: 0.3rem;
  }
  .navbar-nav {
    gap: 0.2rem;
    padding-bottom: 0.7rem;
  }
  .navbar .btn-quick-enquiry {
    width: 100%;
    margin-top: 0.7rem;
    
    padding: 0.7rem 1.2rem;
    justify-content: center;
  }
}

/* Footer styles */
.footer-dark { background: #1b007b; color: #fff; }
.footer-dark a { color: #fff; }
.footer-dark a:hover { color: #b6c2d1;}
.footer-dark .fa-angle-double-right, .footer-dark .fa-building, .footer-dark .fa-map-marker-alt, .footer-dark .fa-phone, .footer-dark .fa-envelope, .footer-dark .fab.fa-linkedin { color: #fff !important; }
.footer-dark .fa-arrow-right { color: #fff; }
.footer-dark .fab.fa-whatsapp { color: #25d366 !important; }
.footer-dark .footer-bottom { background:#12005a; color:#b6c2d1;  padding: 12px 0; }
.footer-dark .footer-bottom a { color: #fff; }
.footer-dark .footer-bottom a:hover { color: #b6c2d1; }

/* --- PREMIUM SECTION STYLES --- */

/* Pattern background for Popular Courses */
.courses-premium-section {
  overflow: hidden;
  min-height: 600px;
  position: relative;
  background: #f4f6fa;
}
.pattern-bg {
  background-color: transparent;

  z-index: 1;
  pointer-events: none;
  opacity: 1;
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image:
    radial-gradient(circle at 20% 30%, #1b007b22 7px, transparent 11px),
    radial-gradient(circle at 60% 60%, #f3000020 6px, transparent 10px),
    radial-gradient(circle at 80% 20%, #1b007b18 5px, transparent 9px),
    radial-gradient(circle at 35% 80%, #e9e9f6 8px, transparent 12px),
    radial-gradient(circle at 75% 40%, #1b007b22 6px, transparent 10px),
    radial-gradient(circle at 50% 50%, #f3000030 10px, transparent 15px),
    radial-gradient(circle at 90% 70%, #1b007b18 4px, transparent 8px);
  background-size: cover;
}
.course-premium {
  background: linear-gradient(135deg, #fff 70%, #f4f6fa 100%);
  backdrop-filter: blur(8px);
  border-radius: 1.7rem;
  border: 1.5px solid #e9e9f6;
  box-shadow: 0 8px 32px rgba(27,0,123,0.09), 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  height: 100%;
  padding: 1.2rem 1.1rem 1.5rem 1.1rem;
}
.course-premium:hover {
  transform: translateY(-10px) scale(1.035);
  box-shadow: 0 20px 48px rgba(27,0,123,0.18), 0 4px 16px rgba(0,0,0,0.13);
  border-color: #1b007b33;
}
.course-premium .icon-circle {
  width: 68px;
  height: 68px;
  font-size: 2rem;
  box-shadow: 0 4px 18px rgba(27,0,123,0.10), 0 1.5px 6px rgba(0,0,0,0.07);
  margin-bottom: 1.1rem !important;
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.course-premium .divider {
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #e9e9f6 0%, #f30000 100%);
  border-radius: 2px;
  margin: 1.1rem auto 1.1rem auto;
  opacity: 0.5;
}
.course-premium .btn {
  margin-top: auto;
  margin-bottom: 1.2rem;
  align-self: center;
  min-width: 70%;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(27,0,123,0.10);
  background: linear-gradient(90deg, #fff 0%, #f4f6fa 100%);
  border: 1.5px solid #e9e9f6;
  color: #1b007b;
  transition: all 0.18s cubic-bezier(.4,0,.2,1);
  position: relative;
  overflow: hidden;
}
.course-premium .btn:hover, .course-premium .btn:focus {
  background: linear-gradient(90deg, #f3e7ff 0%, #f30000 100%);
  color: #fff;
  border-color: #f30000;
  box-shadow: 0 8px 28px rgba(243,0,0,0.13), 0 4px 16px rgba(27,0,123,0.10);
  transform: scale(1.04) translateY(-2px);
}
.course-premium .btn:hover::after, .course-premium .btn:focus::after {
  opacity: 1;
  right: 1.2rem;
}
.course-premium .btn::after {
  content: '\2192';
  font-size: 1.1em;
  margin-left: 0.5em;
  opacity: 0;
  color: inherit;
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.18s, opacity 0.18s;
}

.course-premium ul {
  margin-bottom: 0.7rem !important;
}
.course-premium h5 {
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
}

.course-desc{
  padding: 0.6rem;
}

.course-premium:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 16px 48px rgba(27,0,123,0.13), 0 4px 16px rgba(0,0,0,0.09);
}

/* Premium Image Wrap for Why Seekho English */
.premium-img-wrap {
  overflow: visible;
  border-radius: 2rem;
  box-shadow: 0 8px 36px rgba(27,0,123,0.13), 0 2px 8px rgba(0,0,0,0.05);
  position: relative;
}
.premium-img-main {
  border-radius: 2rem !important;
  position: relative;
  z-index: 1;
}
.img-gradient-overlay {
  pointer-events: none;
  z-index: 2;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(27,0,123,0.14) 0%, rgba(243,0,0,0.09) 100%);
  opacity: 0.7;
}
.premium-img-badge {
  z-index: 3;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(27,0,123,0.13);
  background: rgba(255,255,255,0.96) !important;
  border: 1.5px solid #e9e9f6;
  top: 0.7rem !important;
  left: 0.7rem !important;
}


/* Global Responsive Typography */
h1 { font-size: clamp(2rem, 4.5vw, 2.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h4 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h5 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h6 { font-size: clamp(1rem, 2vw, 1.25rem); }
p  { font-size: clamp(0.875rem, 1.2vw, 1.125rem); }

.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  
  box-shadow: 0 2px 12px rgba(27,0,123,0.08);
  margin-bottom: 0.5rem;
}

.premium-hover:hover,
.card.premium-hover:hover,
.gallery-img.premium-hover:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 36px rgba(27,0,123,0.14), 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.22s cubic-bezier(.4,0,.2,1);
  z-index: 2;
}

.course-premium {
  overflow: hidden;
  border-radius: 1.25rem;
  position: relative;
}
.course-accent-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: 1.25rem 1.25rem 0 0;
}

.stepper-premium {
  gap: 0.5rem;
}
.step-item {
  min-width: 120px;
  max-width: 180px;
  margin: 0 0.5rem;
}
.step-connector {
  flex: 0 0 32px;
  height: 3px;
  background: linear-gradient(90deg, #f30000 0%, #1b007b 100%);
  border-radius: 2px;
  margin: 0 0.5rem;
  align-self: center;
}

.stat-bar {
  background: #f7f8fa;
  font-weight: 500;
  
  box-shadow: 0 2px 12px rgba(27,0,123,0.07);
}

.trusted-logo {
  filter: grayscale(1) brightness(0.95);
  opacity: 0.7;
  transition: filter 0.18s, opacity 0.18s;
}
.trusted-logo.grayscale-hover:hover {
  filter: none;
  opacity: 1;
}

.gallery-premium .gallery-img img {
  border-radius: 1.2rem;
  transition: transform 0.22s cubic-bezier(.4,0,.2,1);
}
.gallery-premium .gallery-img:hover img {
  transform: scale(1.07);
  box-shadow: 0 8px 36px rgba(27,0,123,0.14), 0 2px 8px rgba(0,0,0,0.06);
}

.testimonials-section .carousel-item {
  background: linear-gradient(90deg, #f6f9fc 0%, #e9f0fb 100%);
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(27,0,123,0.09);
  padding: 2rem 1.5rem;
}
.testimonials-section .fa-star {
  
  color: #ffc107;
}

.who-can-join-premium .card,
.facilities-premium .card {
  border-radius: 1.3rem;
  transition: box-shadow 0.18s, transform 0.18s;
}

.contact-section-premium .card {
  border-radius: 1.3rem;
}

.contact-section-premium .form-control:focus {
  border-color: #f30000;
  box-shadow: 0 0 0 0.15rem rgba(243,0,0,0.12);
}

@media (max-width: 991px) {
  .step-item { min-width: 90px; max-width: 140px; }
}
@media (max-width: 767px) {
  .stepper-premium { flex-direction: column !important; gap: 1.5rem; }
  .step-connector { width: 3px; height: 32px; background: linear-gradient(180deg, #f30000 0%, #1b007b 100%); margin: 0.5rem auto; }
}

a, .nav-link, .navbar-brand, .footer-dark a, .footer-dark .fa {
  color: #fff;
  text-decoration: none;
}
/* Use red only for CTAs, buttons, and important highlights */

.btn-primary:hover, .floating-btn:hover {
  background: #1b007b;
  color: #fff;
}

.bg-gradient-help {
  background: linear-gradient(135deg, #f7fafc 60%, #e6f0ff 100%) !important;
  position: relative;
  overflow: hidden;
}
.help-bg-image {
  background-image: url('https://images.unsplash.com/photo-1513258496099-48168024aec0?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  z-index: 0;
  pointer-events: none;
  min-height: 100%;
  min-width: 100%;
  transition: opacity 0.3s;
}
.help-bg-overlay {
  background: linear-gradient(135deg, rgba(30,34,60,0.36) 0%, rgba(70,96,150,0.23) 100%);
  z-index: 1;
  min-height: 100%;
  min-width: 100%;
  pointer-events: none;
  transition: background 0.3s;
  position: absolute;
  top: 0; left: 0;
}
.bg-gradient-help .container {
  position: relative;
  z-index: 2;
}

.feature-card-premium {
  background: linear-gradient(135deg, #fff 70%, #f4f6fa 100%);
  border-radius: 1.4rem;
  border: 1.5px solid #e9e9f6;
  box-shadow: 0 8px 32px rgba(27,0,123,0.09), 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.22s cubic-bezier(.4,1.3,.7,1),
    transform 0.22s cubic-bezier(.4,1.3,.7,1),
    border-color 0.22s cubic-bezier(.4,1.3,.7,1);
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.feature-card-premium:hover, .feature-card-premium:focus {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 16px 48px rgba(27,0,123,0.16), 0 4px 16px rgba(0,0,0,0.10);
  border-color: #ffd700;
  outline: none;
}

.help-card-premium {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 8px 36px rgba(32,32,64,0.10);
  border: none;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.help-card-premium:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 16px 48px rgba(27,0,123,0.13), 0 4px 16px rgba(0,0,0,0.09);
}
.help-card-premium h6 {
  color: #23234a;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.help-card-premium .icon-circle {
  width: 60px;
  height: 60px;
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(32,32,64,0.10);
}
.help-card-premium .feature-accent-top {
  height: 7px;
  border-radius: 1.2rem 1.2rem 0 0;
}
@media (max-width: 767px) {
  .help-card-premium {
    min-height: unset;
    padding: 1.5rem 1rem;
  }
  .help-card-premium .icon-circle {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

.who-we-help-iconbox {
  background: #f7fafc;
  position: relative;
  overflow: hidden;
}
.iconbox-help {
  background: linear-gradient(135deg, #fff 60%, #f0f4ff 100%);
  border-radius: 2.2rem 1.6rem 2.2rem 1.6rem;
  box-shadow: 0 12px 48px rgba(32,32,64,0.17), 0 2px 10px rgba(0,0,0,0.08);
  border: 3px solid transparent;
  background-clip: padding-box, border-box;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 2.7rem;
  padding-bottom: 2.2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.22s cubic-bezier(.4,1.3,.7,1), box-shadow 0.22s, border 0.22s;
}
.iconbox-help:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 2.2rem 1.6rem 2.2rem 1.6rem;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="5" cy="5" r="1.5" fill="%23e0e6f7"/><circle cx="35" cy="35" r="1.5" fill="%23e0e6f7"/><circle cx="65" cy="65" r="1.5" fill="%23e0e6f7"/><circle cx="80" cy="20" r="1.5" fill="%23e0e6f7"/></svg>') repeat;
  opacity: 0.14;
  pointer-events: none;
}
.iconbox-help:after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 32px;
  border-radius: 0 0 1.8rem 1.8rem;
  background: linear-gradient(0deg, rgba(255,255,255,0.36) 60%, rgba(255,255,255,0.01) 100%);
  opacity: 0.7;
  z-index: 2;
}
.iconbox-help {
  border-image: linear-gradient(120deg, #d1c4e9 10%, #ffd700 60%, #9be7ff 100%) 1;
  border-width: 3px;
  border-style: solid;
  background-clip: padding-box, border-box;
}
.iconbox-help:hover {
  transform: translateY(-14px) scale(1.045) rotate(-1.2deg);
  box-shadow: 0 32px 72px rgba(27,0,123,0.19), 0 8px 24px rgba(0,0,0,0.13);
  border-image: linear-gradient(120deg, #ffd700 10%, #00e6d0 60%, #8ec5fc 100%) 1;
}
.iconbox-accent-bar {
  height: 10px;
  border-radius: 2.2rem 2.2rem 0 0;
  top: 0;
  left: 0;
  z-index: 3;
  background: linear-gradient(90deg, #ffd700 0%, #1b007b 100%);
  position: absolute;
  animation: accentShimmer 2.8s linear infinite;
  background-size: 200% 100%;
}
.iconbox-help:hover .iconbox-accent-bar {
  animation: accentShimmer 1.1s linear infinite;
  background-position: 100% 0;
}
@keyframes accentShimmer {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}
.iconbox-circle {
  width: 78px;
  height: 78px;
  font-size: 2.7rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(32,32,64,0.17);
  background: #fff;
  transition: box-shadow 0.22s, transform 0.22s, filter 0.22s;
  position: relative;
  z-index: 4;
  filter: drop-shadow(0 0 0 #ffd700);
}
.iconbox-help:hover .iconbox-circle {
  box-shadow: 0 20px 48px rgba(27,0,123,0.17), 0 4px 16px rgba(0,0,0,0.09);
  transform: scale(1.11) rotate(-6deg);
  filter: drop-shadow(0 0 16px #ffd700);
}
.iconbox-help h5 {
  font-size: 1.32rem;
  letter-spacing: 0.2px;
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: #23234a;
  z-index: 4;
}
.iconbox-help p {
  font-size: 1.07rem;
  color: #5c5c7a;
  font-weight: 500;
  z-index: 4;
}
@media (max-width: 991px) {
  .iconbox-help {
    min-height: 180px;
    padding: 1.5rem 1rem;
  }
  .iconbox-circle {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .iconbox-help {
    min-height: unset;
    padding: 1.2rem 0.7rem;
  }
  .iconbox-circle {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
}

.bg-soft-blue {
  background: linear-gradient(120deg, #f5faff 60%, #e6f0ff 100%) !important;
}
.wwh-card {
  background: #fff;
  border-radius: 1.3rem;
  box-shadow: 0 4px 18px rgba(32,32,64,0.10);
  border: none;
  position: relative;
  overflow: visible;
  padding-top: 2.5rem !important;
  padding-bottom: 2.2rem !important;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.wwh-card:hover {
  box-shadow: 0 12px 36px rgba(27,0,123,0.11), 0 2px 8px rgba(0,0,0,0.07);
  transform: translateY(-6px) scale(1.025);
}
.wwh-icon-circle {
  width: 68px;
  height: 68px;
  font-size: 2.2rem;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(32,32,64,0.06);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
}
.bg-soft-primary { background: #eaf2ff !important; }
.bg-soft-success { background: #e8f9f1 !important; }
.bg-soft-info { background: #e6f7fa !important; }
.bg-soft-warning { background: #fffbe6 !important; }

.who-help-list {
  margin: 0;
  padding: 0;
}
.who-help-list li {
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}
.who-help-list li:last-child {
  margin-bottom: 0;
}
.who-help-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  border-radius: 50%;
  font-size: 1.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(32,32,64,0.08);
  border: 2px solid #fff;
  margin-right: 1.1rem;
  margin-top: 2px;
}
@media (max-width: 991px) {
  .who-help-list li {
    margin-bottom: 1.2rem;
  }
  .who-help-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    font-size: 1.2rem;
    margin-right: 0.7rem;
  }
}
@media (max-width: 767px) {
  .who-help-list li {
    margin-bottom: 1rem;
  }
  .who-help-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}

.who-help-lead {
  max-width: 1000px;
}

.who-help-img-container {
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(44,100,255,0.10), 0 1.5px 8px rgba(0,0,0,0.04);
  padding: 1.5rem;
  display: inline-block;
  position: relative;
  transition: box-shadow 0.2s;
}
.who-help-img-container:hover {
  box-shadow: 0 16px 48px rgba(44,100,255,0.16), 0 2.5px 12px rgba(0,0,0,0.07);
}
.who-help-illustration {
  border-radius: 1.2rem;
  box-shadow: none;
  max-height: 340px;
  width: auto;
  height: auto;
  display: inline-block;
}
.btn.btn-primary.btn-lg {
  font-weight: 600;
  border-radius: 2rem;
  box-shadow: 0 2px 14px rgba(44,100,255,0.10);
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.btn.btn-primary.btn-lg:hover, .btn.btn-primary.btn-lg:focus {
  background: #2343b5;
  box-shadow: 0 6px 24px rgba(44,100,255,0.19);
  transform: translateY(-2px) scale(1.03);
}

.who-help-split-row {
  --bs-gutter-x: 1.5rem;
}

  .wwh-card {
    min-height: 180px;
    padding: 2rem 0.8rem 1.5rem 0.8rem !important;
  }
  .wwh-icon-circle {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }
@media (max-width: 767px) {
  .wwh-card {
    min-height: unset;
    padding: 1.5rem 0.5rem 1.2rem 0.5rem !important;
  }
  .wwh-icon-circle {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

.iconbox-help:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 20px 48px rgba(27,0,123,0.16), 0 4px 16px rgba(0,0,0,0.13);
  background: linear-gradient(135deg, #f8faff 60%, #f0f4ff 100%);
}
.iconbox-accent-bar {
  height: 8px;
  border-radius: 1.4rem 1.4rem 0 0;
  top: 0;
  left: 0;
  z-index: 2;
}
.iconbox-circle {
  width: 72px;
  height: 72px;
  font-size: 2.4rem;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(32,32,64,0.10);
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  z-index: 3;
}
.iconbox-help:hover .iconbox-circle {
  box-shadow: 0 12px 32px rgba(27,0,123,0.17), 0 2px 8px rgba(0,0,0,0.09);
  transform: scale(1.09) rotate(-4deg);
}
.iconbox-help h5 {
  font-size: 1.25rem;
  letter-spacing: 0.2px;
  font-weight: 800;
  margin-bottom: 1.1rem;
  color: #23234a;
}
.iconbox-help p {
  font-size: 1.04rem;
  color: #5c5c7a;
  font-weight: 500;
}
@media (max-width: 991px) {
  .iconbox-help {
    min-height: 180px;
    padding: 1.5rem 1rem;
  }
  .iconbox-circle {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .iconbox-help {
    min-height: unset;
    padding: 1.2rem 0.7rem;
  }
  .iconbox-circle {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

/* WhatsApp floating button */
.floating-whatsapp {
  background: #25d366;
  color: #fff;
}
.floating-whatsapp:hover {
  background: #128c7e;
  color: #fff;
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 8px 32px rgba(27,0,123,0.1);
  padding: 2.8rem 2.2rem 2.2rem 2.2rem;
  margin-top: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: heroFormIn 1.2s cubic-bezier(.68,-0.55,.27,1.55) 0.6s both;
  position: relative;
  overflow: hidden;
}

@keyframes heroFormIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-form-card h4 {
  color: #1b007b;
  font-weight: 800;
  
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.hero-form-card h4::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #25d366, #1b007b);
  border-radius: 2px;
  margin: 12px auto 0 auto;
}

.hero-form-card .input-group {
  margin-bottom: 1.3rem;
  position: relative;
}

.hero-form-card .input-group-text {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px solid #e9ecef;
  color: #1b007b;
  
  border-radius: 12px 0 0 12px;
  padding: 0.85rem 1rem;
  transition: all 0.3s ease;
}

.hero-form-card .form-control {
  border-radius: 0 12px 12px 0;
  border: 2px solid #e9ecef;
  
  padding: 0.85rem 1rem;
  background: #ffffff;
  color: #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  font-weight: 500;
}

.hero-form-card .form-control:focus {
  box-shadow: 0 0 0 3px rgba(27,0,123,0.1), 0 4px 16px rgba(27,0,123,0.1);
  background: #ffffff;
  transform: translateY(-1px);
}

.hero-form-card .form-control::placeholder {
  color: #6c757d;
  font-weight: 400;
}

.hero-form-card textarea.form-control {
  min-height: 50px;
  max-height: 120px;
  resize: vertical;
}

.hero-form-card .btn-primary {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        padding: 1rem 2rem;
        
        font-weight: 700;
        border-radius: 16px !important;
        background: linear-gradient(135deg, #1b007b, #12005a);
        color: #fff;
        border: none;
        box-shadow: 0 8px 25px rgba(27, 0, 123, 0.3);
        position: relative;
        gap: 0.5rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin: 0 auto;
}

.hero-form-card .btn-primary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #12005a, #1b007b);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-form-card .btn-primary:hover, .hero-form-card .btn-primary:focus {
  background: linear-gradient(135deg, #12005a, #1b007b);
  color: #fff;
  box-shadow: 0 12px 35px rgba(27,0,123,0.4);
  transform: translateY(-3px);
}

.hero-form-card .btn-primary:hover::before {
  opacity: 1;
}

.hero-form-card .btn-primary i {
  
  margin-right: 0.5em;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}

.hero-form-card .btn-primary span {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-form-card {
    margin-top: 2.5rem;
    padding: 2.2rem 1.5rem 1.8rem 1.5rem;
    border-radius: 20px;
  }
  
}

/* Quick Enquiry Button (Navbar) - solid color */
.navbar .btn-quick-enquiry {
  background: #f30000;
  color: #fff;
  font-weight: 700;
  
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 18px rgba(27,0,123,0.13);
  padding: 0.5rem 1rem 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  position: relative;
  overflow: hidden;
}

.navbar .btn-quick-enquiry:hover, .navbar .btn-quick-enquiry:focus {
  background: #1b007b;
  color: #fff;
  box-shadow: 0 8px 32px rgba(27,0,123,0.18);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 991px) {
  .navbar .btn-quick-enquiry {
    width: 100%;
    margin-top: 0.7rem;
    
    padding: 0.7rem 1.2rem;
    justify-content: center;
  }
}

/* Quick Enquiry Modal & Form - solid color */
#quickQueryModal .modal-header {
    border-bottom: none;
    background: #000c64;
    color: #fff;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
#quickQueryModal .modal-title {
  font-weight: 700;
  
  letter-spacing: 0.5px;
}
#quickQueryModal .btn-close {
  filter: invert(1) grayscale(1);
  opacity: 0.8;
}
#quickQueryModal .modal-body {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
}
#quickQueryModal form .form-label {
  font-weight: 600;
  color: #1b007b;
  margin-bottom: 0.4rem;
}
#quickQueryModal form .input-group {
  margin-bottom: 1.2rem;
  align-items: center;
}
#quickQueryModal form .input-group-text {
  background: #f3f3f7;
  border: none;
  color: #1b007b;
  
  border-radius: 12px 0 0 12px;
  padding: 0.9rem 1rem;
}
#quickQueryModal form .form-control {
  border-radius: 0 12px 12px 0;
  border: 2px solid #e9ecef;
  
  background: #f8f9fa;
  color: #222;
  box-shadow: none;
  font-weight: 500;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#quickQueryModal form .form-control:focus {
  border-color: #1b007b;
  box-shadow: 0 0 0 2px rgba(27,0,123,0.10);
  background: #fff;
}
#quickQueryModal form textarea.form-control {
  min-height: 48px;
  max-height: 120px;
  resize: vertical;
}
#quickQueryModal form .btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0.8rem 1rem;
  
  font-weight: 700;
  border-radius: 16px;
  background: #1b007b;
  color: #fff;
  border: none;
  box-shadow: 0 8px 25px rgba(27,0,123,0.13);
  position: relative;
  gap: 0.5rem;
  transition: background 0.18s, box-shadow 0.18s, transform 0.13s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 auto;
  text-align: center;
}
#quickQueryModal form .btn-primary:hover, #quickQueryModal form .btn-primary:focus {
  background: #f30000;
  color: #fff;
  box-shadow: 0 12px 35px rgba(27,0,123,0.18);
  transform: translateY(-2px) scale(1.03);
}
#quickQueryModal form .btn-primary i {
  
  margin-right: 0.5em;
  vertical-align: middle;
}
@media (max-width: 575px) {
  #quickQueryModal .modal-dialog {
    margin: 1.2rem;
  }
  #quickQueryModal .modal-body {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
  }
}

.nav-link.active[href$='/']::after {
  opacity: 0 !important;
  transform: scaleX(0.5) !important;
}

#quickQueryModal .input-group input.form-control {
  min-height: 45px;
  height: 45px;
  border-radius: 0 12px 12px 0;
}
#quickQueryModal .input-group input.form-control ~ .input-group-text {
  height: 56px;
  padding-top: 0;
  padding-bottom: 0;
  align-items: center;
}

.textareafield{
    min-height: 70px;
    height: 70px;
}
#quickQueryModal .input-group textarea.form-control ~ .input-group-text {
  height: 70px;
}

.about-text{
  line-height: 2rem;
  text-align: justify;
}

.about-hero-section {
  color: #fff;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0 3rem 0;
  position: relative;
  box-shadow: 0 6px 32px rgba(32,32,64,0.14);
  text-align: left !important;
}

.mission-vision-section {
  background: #191c2b !important;
  color: #fff;
  padding: 4rem 0 3rem 0;
}

.why-choose-section {
  background: #fff !important;
  color: #23234a;
  padding: 4rem 0 3rem 0;
}
.why-choose-section .section-title {
  color: #b38c00;
  font-weight: 800;
}
.why-step-label {
  color: #b38c00;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.why-step-desc {
  color: #23234a;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.why-step-icon {
  font-size: 2.5rem;
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, #ffd700 60%, #fffbe7 100%);
  color: #23234a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 18px rgba(255,215,0,0.12);
  transition: background 0.18s, color 0.18s;
  border: 4px solid #fffbe7;
}
.why-step:hover .why-step-icon {
  background: linear-gradient(135deg, #fffbe7 0%, #ffd700 100%);
  color: #b38c00;
}
.why-step-connector {
  flex: 0 0 48px;
  align-self: center;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #fffbe7 100%);
  border-radius: 2px;
  margin: 0 0.5rem;
  min-width: 48px;
  max-width: 70px;
  z-index: 1;
}
@media (max-width: 991px) {
  .why-stepper {
    flex-direction: column !important;
    align-items: stretch;
    gap: 0;
  }
  .why-step {
    max-width: 100%;
    min-width: 0;
    margin: 0 0 2rem 0;
    padding: 0 0 1.5rem 0;
  }
  .why-step-connector {
    width: 4px;
    min-width: 4px;
    max-width: 4px;
    height: 32px;
    background: linear-gradient(180deg, #ffd700 0%, #fffbe7 100%);
    margin: 0 auto 0.5rem auto;
    flex: none;
  }
}

.why-stepper {
  position: relative;
  gap: 0;
}
.why-step {
  min-width: 180px;
  max-width: 240px;
  margin: 0 0.5rem;
  flex: 1 1 0;
  position: relative;
  z-index: 2;
  background: none;
  padding: 0 0.5rem 1.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-step-icon {
  font-size: 2.5rem;
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, #ffd700 60%, #fffbe7 100%);
  color: #23234a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 18px rgba(255,215,0,0.12);
  transition: background 0.18s, color 0.18s;
  border: 4px solid #fffbe7;
}
.why-step-label {
  color: #ffd700;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.why-step-desc {
  color: #e4e4e4;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.why-step-connector {
  flex: 0 0 48px;
  align-self: center;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #fffbe7 100%);
  border-radius: 2px;
  margin: 0 0.5rem;
  min-width: 48px;
  max-width: 70px;
  z-index: 1;
}
.why-step:hover .why-step-icon {
  background: linear-gradient(135deg, #fffbe7 0%, #ffd700 100%);
  color: #181824;
}
@media (max-width: 991px) {
  .why-stepper {
    flex-direction: column !important;
    align-items: stretch;
    gap: 0;
  }
  .why-step {
    max-width: 100%;
    min-width: 0;
    margin: 0 0 2rem 0;
    padding: 0 0 1.5rem 0;
  }
  .why-step-connector {
    width: 4px;
    min-width: 4px;
    max-width: 4px;
    height: 32px;
    background: linear-gradient(180deg, #ffd700 0%, #fffbe7 100%);
    margin: 0 auto 0.5rem auto;
    flex: none;
  }
}
.why-choose-section .section-title {
  color: #ffd700;
  font-weight: 800;
}
.why-card {
  background: linear-gradient(135deg, #22243a 70%, #23234a 100%);
  color: #fff;
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0 8px 36px rgba(32,32,64,0.13);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.why-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 16px 48px rgba(27,0,123,0.13), 0 4px 16px rgba(0,0,0,0.09);
  background: linear-gradient(135deg, #23234a 80%, #181824 100%);
}
.why-card h5 {
  color: #ffd700;
  font-weight: 700;
  margin-bottom: 1rem;
}
.why-card p {
  color: #e4e4e4;
  font-size: 1.08rem;
  margin-bottom: 0;
}
.why-icon {
  font-size: 2.5rem;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #ffd700 50%, #fffbe7 100%);
  color: #23234a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 18px rgba(255,215,0,0.12);
  transition: background 0.18s, color 0.18s;
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, #fffbe7 0%, #ffd700 100%);
  color: #181824;
}
@media (max-width: 767px) {
  .why-choose-section {
    padding: 2.5rem 0 2rem 0;
  }
  .why-card {
    min-height: unset;
    padding: 1.5rem 1rem;
  }
  .why-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
  }
}
.mission-vision-section .badge {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, #ffd700 0%, #fffbe7 100%);
  color: #232323;
}
.mission-vision-section h2 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.mission-vision-section .lead {
  color: #e4e4e4;
  font-size: 1.18rem;
  font-weight: 400;
}
.mv-card {
  background: linear-gradient(135deg, #23234a 0%, #181824 100%);
  color: #fff;
  border: none;
  box-shadow: 0 8px 36px rgba(32,32,64,0.13);
  position: relative;
  overflow: hidden;
}
.mv-card:hover, .mv-card:focus {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 12px 32px rgba(44,100,255,0.18), 0 2px 8px rgba(0,0,0,0.12);
  background: linear-gradient(135deg, #2d2d5a 0%, #23234a 100%);
  border: 1.5px solid #ffd700;
  outline: none;
}
.mv-card {
  min-height: 260px;
  transition: all 0.38s cubic-bezier(.4,0,.2,1);
}
.mv-card h4 {
  color: #ffd700;
  font-weight: 700;
  margin-bottom: 1rem;
}
.mv-card .icon-circle {
  width: 64px;
  height: 64px;
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(27,0,123,0.10);
}
.mv-card ul {
  margin-bottom: 0;
  padding-left: 0;
}
.mv-card li {
  color: #fff;
  font-size: 1.05rem;
}
@media (max-width: 767px) {
  .mission-vision-section {
    padding: 2.5rem 0 2rem 0;
  }
  .mv-card {
    min-height: unset;
    padding: 1.5rem 1rem;
  }
}
.about-hero-section .breadcrumb {
  justify-content: center;
  background: transparent;
  color: #fff;
}
.about-hero-section .breadcrumb-item a,
.about-hero-section .breadcrumb-item.active {
  color: #fff !important;
  opacity: 0.85;
}
.about-hero-section h1 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  line-height: 1.1;
}
.about-hero-section p.lead {
  color: #e4e4e4;
  font-size: 1.18rem;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .about-hero-section {
    padding: 2.5rem 0 2rem 0;
  }
  .about-hero-section h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
  .about-hero-section p.lead {
    font-size: 1rem;
  }
}
 .why-choose-premium img{
  border-radius: 20px;
  max-height: 650px;
  }
  .courses-premium-section .card{
    padding:0;
  }

  .accordion-button {
    padding: 1rem 0.25rem;
  }
  .accordion-body {
    padding: 1rem 0.25rem;
  }
  .section-padding{
    padding-top:4rem;
    padding-bottom:3rem;
  }

/* Enhanced Footer Social Circle Styles */
.footer-social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  border: 1.5px solid #e3e6ea;
  color: #495057;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: background 0.25s, color 0.2s, box-shadow 0.25s, border 0.2s;
  font-size: 1.1rem;
  margin: 0px 0px;
}
.footer-social-circle:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #f8fafc 100%);
  color: #0d6efd;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  border: 1.5px solid #b6c2d1;
}

.footer-social-circle:hover .fa-facebook-f { color: #1877f3; text-decoration:none;}
.footer-social-circle:hover .fa-instagram { color: #e4405f; text-decoration:none;}
.footer-social-circle:hover .fa-linkedin-in { color: #0a66c2; text-decoration:none;}
.footer-social-circle:hover .fa-twitter { color: #1da1f2; text-decoration:none;}
.footer-social-circle:hover .fa-youtube { color: #ff0000; text-decoration:none;}

.para-wrapper p{
  text-align:justify;
}
.border-radius{
  border-radius:1rem;
}

.title-alignment{
  align-items:center;
}