@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif !important;
}

:root {
  --primary-bg: #4caf50;
  --secondary-bg: #1d5092;
  --dark-color: #131313;
}

a {
  text-decoration: none !important;
  color: inherit !important;
}

ul,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

/* h2 {
  color: var(--secondary-bg) !important;
} */

.tag {
  color: var(--primary-bg, #f14d5d) !important;
  border-left: 2px solid var(--primary-bg, #f14d5d);
}

.tag span {
  font-weight: 500;
  margin-left: 10px;
}

.icon {
  color: var(--primary-bg);
}

/* Breadcrumb */
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--primary-bg) !important;
}

/* Header Section */
#header {
  background-color: #131313 !important;
  padding: 0 !important;
}

#header #free-btn {
  background-color: white !important;
  padding: 8px;
  color: var(--secondary-bg);
  font-weight: bold;
  text-wrap: nowrap;
  outline: none;
  border: none;
  border-top: 1px solid var(--dark-color);
  border-bottom: 1px solid var(--dark-color);
}

/* Navbar Styles */
.navbar {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.navbar-nav .nav-link {
  font-size: 1rem !important;
  color: #1a1a1a !important;
  transition: all 0.3s ease;
  padding: 0.5rem !important;
  font-weight: 600;
}

.navbar-nav .nav-link:hover {
  color: #124da0 !important;
}

.nav-cta-btn {
  background-color: #124da0; /* Premium blue */
  color: #ffffff !important;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(18, 77, 160, 0.2);
  border: none;
}

.nav-cta-btn:hover {
  background-color: #000000;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .navbar-nav {
    padding: 20px 0;
    text-align: center;
    gap: 15px;
  }
}

.logo {
  text-shadow: 2px 2px 4px rgba(49, 45, 45, 0.5);
}

/* Hero Section Redesign */
.hero-section {
  background-color: #0c1a2c; /* Deep navy */
  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='%23ffffff' 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");
  background-size: 60px 60px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-badge {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-badge i {
  color: #3498db;
}

.hero-main-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-main-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-feature-item h6 {
  font-size: 1.1rem;
  font-weight: 700;
}

.hero-feature-item p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* .feature-check i {
  font-size: 24px;
  color: #4caf50;
} */

.btn-hero-claim {
  background-color: #4caf50;
  color: #fff !important;
  padding: 15px 35px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-claim:hover {
  background-color: #43a047;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.btn-hero-explore {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  padding: 15px 35px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-explore:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hero-footer-meta {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.hero-chart-img {
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.students-stats-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  z-index: 2;
  min-width: 250px;
}

.stats-icon {
  width: 50px;
  height: 50px;
  background-color: #4caf50;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.stats-number {
  color: #1a1a1a;
  font-size: 1.8rem;
  font-weight: 800;
}

.stats-text {
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}

@media (max-width: 991px) {
  .hero-main-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .students-stats-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 30px;
    width: fit-content;
  }
  .hero-main-title {
    font-size: 2.2rem;
  }
}

.custom-shape-divider-bottom-1766562181 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1766562181 svg {
    position: relative;
    display: block;
    width: calc(166% + 1.3px);
    height: 90px;
}

.custom-shape-divider-bottom-1766562181 .shape-fill {
    fill: #FFFFFF;
}

/* Why Choose Section Premium Styles */
.why-choose-classes {
  background-color: #ffffff;
}

.section-main-title {
  color: #0c1a2c;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
}

.feature-card-premium {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card-premium::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(18, 77, 160, 0.03);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(12, 26, 44, 0.06);
  border-color: #124da0;
}

.feature-card-premium:hover::before {
  background: rgba(18, 77, 160, 0.08);
  transform: scale(1.5);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background-color: #124da0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
}

.feature-card-title {
  color: #0c1a2c;
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  color: #124da0;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.stat-text {
  font-size: 1.1rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .section-main-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.2rem;
  }
  .stat-text {
    font-size: 0.95rem;
  }
}

/* About Section Premium Dark Theme */
.about-section {
  background-color: #0d0d0d;
  color: #a5a5a5;
  font-family: "Roboto", sans-serif;
}

.coach-subtitle {
  color: #b8860b;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.coach-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.coach-title {
  color: #b8860b;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.coach-divider {
  width: 50px;
  height: 2px;
  background-color: #333;
  margin: 15px 0;
}

.coach-experience {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 500;
}

.about-rating-card {
  background-color: #1a1a1a;
  border-radius: 20px;
  padding: 15px 25px;
  display: inline-block;
  width: 100%;
}

.stars {
  color: #f39c12;
  font-size: 1rem;
}

.rating-count {
  font-size: 1rem;
  color: #fff;
}

.rating-stars-text {
  font-size: 0.9rem;
  color: #a5a5a5;
}

.about-join-card {
  background-color: #1a1a1a;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.join-card-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.gold-divider {
  width: 40px;
  height: 3px;
  background-color: #b8860b;
  margin-bottom: 30px;
}

.benefit-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.benefit-icon {
  color: #f39c12;
  font-size: 1.25rem;
  margin-top: 3px;
}

.benefit-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}

.benefit-text strong {
  color: #fff;
  font-weight: 600;
}

.coach-img-container {
  border-radius: 15px;
  overflow: hidden;
}

.coach-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .coach-name {
    font-size: 2rem;
  }
  .about-join-card {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .coach-text-content {
    text-align: center;
    margin-top: 20px;
  }
  .coach-divider {
    margin: 15px auto;
  }
  .coach-img-container {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* Popular Courses Section Styles */
.popular-courses-section {
  background-color: #f0f7ff; /* Light blue background */
}

.course-card-premium {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(12, 26, 44, 0.05);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.course-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(12, 26, 44, 0.1);
  border-color: #124da0;
}

.course-img-wrapper {
  overflow: hidden;
  height: 220px;
}

.course-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card-premium:hover .course-img-wrapper img {
  transform: scale(1.1);
}

.course-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
}

.badge-beginner { background-color: #4caf50; }
.badge-popular { background-color: #0c1a2c; }
.badge-professional { background-color: #124da0; }

.course-title-premium {
  color: #0c1a2c;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
}

.course-desc-premium {
  font-size: 0.95rem;
  line-height: 1.6;
}

.course-features-list li {
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
}

.btn-course-learn {
  display: inline-block;
  background-color: #124da0;
  color: #fff !important;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-course-learn:hover {
  background-color: #0c1a2c;
  box-shadow: 0 5px 15px rgba(12, 26, 44, 0.2);
}

/* Consultation CTA Box */
.course-cta-box {
  background: linear-gradient(135deg, #0c1a2c 0%, #124da0 100%);
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(12, 26, 44, 0.2);
}

.cta-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.cta-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

.btn-cta-consultation {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #124da0 !important;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-cta-consultation:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
  background-color: #f8f9fa;
}

@media (max-width: 991px) {
  .course-title-premium { font-size: 1.3rem; }
  .cta-title { font-size: 1.6rem; }
}

/* Learning Format Section Styles */
.learning-format-section {
  background-color: #ffffff;
}

.learning-badge {
  background-color: #f0f7ff;
  color: #124da0;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.format-card {
  background-color: #f0f7ff;
  border: 1px solid rgba(18, 77, 160, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.format-card:hover {
  transform: translateX(10px);
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(12, 26, 44, 0.08);
  border-color: #124da0;
}

.format-icon-box {
  width: 50px;
  height: 50px;
  background-color: #124da0;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.format-card-title {
  color: #0c1a2c;
  font-weight: 800;
  font-size: 1.25rem;
}

.format-card-desc {
  font-size: 0.95rem;
  line-height: 1.5;
}

.format-features li {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0c1a2c;
  margin-bottom: 8px;
}

.format-features li i {
  color: #4caf50;
}

.format-explore-link {
  color: #124da0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: gap 0.3s ease;
}

.format-explore-link:hover {
  gap: 10px;
  color: #0c1a2c;
}

.learning-visual-container {
  min-height: 450px;
}

.floating-badge {
  position: absolute;
  z-index: 2;
  min-width: 180px;
  animation: badgeFloat 3s ease-in-out infinite;
}

.badge-top-right {
  top: 10%;
  right: -5%;
}

.badge-bottom-left {
  bottom: 8%;
  left: -5%;
  animation-delay: 1.5s;
}

.badge-icon-circle {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 991px) {
  .learning-visual-container {
    min-height: 350px;
    margin-top: 50px;
  }
  .badge-top-right { right: 0; }
  .badge-bottom-left { left: 0; }
  .format-card:hover { transform: translateY(-5px); }
}

/* Final CTA Section Styles */
.final-cta-section {
  background-color: #0c1a2c;
  z-index: 1;
}

.final-cta-badge {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(5px);
}

.final-cta-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.final-cta-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 500px;
}

.feature-check {
  width: 24px;
  height: 24px;
  background-color: #4caf50;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 0.8rem; */
  flex-shrink: 0;
}

.btn-demo-class {
  background-color: #4caf50;
  color: #fff !important;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-demo-class:hover {
  background-color: #43a047;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.btn-view-courses {
  background-color: transparent;
  color: #fff !important;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-view-courses:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.contact-main-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.contact-card-title {
  font-weight: 800;
  font-size: 1.75rem;
}

.contact-badge-icon {
  width: 45px;
  height: 45px;
  background-color: #124da0;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stats-mini-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stats-mini-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.stats-number {
  font-size: 2rem;
  font-weight: 800;
}

.stats-label {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Background Decorations */
.cta-bg-circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
}

.circle-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -100px;
}

@media (max-width: 991px) {
  .final-cta-title { font-size: 2.2rem; }
  .final-cta-content { text-align: center; }
  .final-cta-desc { margin-left: auto; margin-right: auto; }
  .final-cta-features li { justify-content: center; }
  .d-flex.flex-wrap.gap-3 { justify-content: center; }
}

@media (max-width: 575px) {
  .final-cta-title { font-size: 1.8rem; }
  .btn-demo-class, .btn-view-courses { width: 100%; justify-content: center; }
}

/* Tab section */
.technology-section {
  background-color: var(--white);
}

/* Technology Tabs */
.tech-tabs {
  gap: 15px;
  flex-wrap: wrap;
}

.tech-tabs .nav-link {
  background: #fff;
  color: #333;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-tabs .nav-link i {
  font-size: 18px;
}

.tech-tabs .nav-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(26, 77, 68, 0.15);
}

.tech-tabs .nav-link.active {
  background: var(--primary-bg) !important;
  color: var(--dark-color);
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(26, 77, 68, 0.3);
}

.tech-tabs .nav-link.active i {
  color: #fff;
}

.overview-card,
.course-card,
.details-card,
.instructor-card {
  width: 100%;
  padding: 20px;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 6px 20px rgba(26, 77, 68, 0.3);
}

/* Accordion */
.accordion-button {
  font-weight: 600;
  color: #fff !important;
  background-color: var(--secondary-bg) !important;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--secondary-bg);
}

.accordion-button::after {
  filter: brightness(0) invert(1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 10px;
}

.accordion-body {
  padding: 1.5rem;
  color: #666;
}

.accordion-body li {
  position: relative;
  padding-left: 20px;
}

.accordion-body li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-bg);
}

.instructor-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #e0e0e0;
}

.brand-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-img img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  object-position: center;
}

/* Course Section */
.course-section {
  background-color: #fefefe;
}

.main-heading-gold {
  color: var(--primary-bg) !important;
  font-size: 3rem;
  font-weight: 700;
  text-transform: capitalize;
}

.course-card-wrapper {
  background-color: #000;
  border: 4px solid #43a047;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.course-card-wrapper:hover {
  transform: translateY(-10px);
}

.course-card-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 4px solid #43a047;
}

.course-card-content {
  padding: 25px;
  background-color: #000;
}

.course-title {
  color: #fff !important;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  min-height: 3.6rem;
}

.enquiry-btn {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: #000;
  padding: 10px 25px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.enquiry-btn:hover {
  background-color: #43a047 !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .main-heading-gold {
    font-size: 2.2rem;
  }
  .course-title {
    font-size: 1.3rem;
  }
}

/* Why Choose IASM Section */
.why-section {
  background-color: #fffbef; /* Light shade of golden */
}

.why-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(184, 134, 11, 0.1);
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(184, 134, 11, 0.1);
  border-color: rgba(184, 134, 11, 0.3);
}

.why-card-icon {
  font-size: 3rem;
  color: var(--primary-bg);
  margin-bottom: 20px;
}

.why-card-title {
  color: #000 !important;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.why-card-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .why-card {
    padding: 30px 20px;
  }
  .why-card-title {
    font-size: 1.25rem;
  }
}

/* Enhanced Contact Section */
.contact-section {
  background-color: #0c1a2c;
  background-image: radial-gradient(circle at 20% 30%, rgba(18, 77, 160, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 70%, rgba(18, 77, 160, 0.1) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.contact-info-title {
  color: #fff !important;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.contact-item-icon {
  width: 28px;
  height: 28px;
  border: 1px solid #43a047;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: white;
  margin-top: 5px;
}

.contact-item-icon-circle {
  width: 54px;
  height: 54px;
  background-color: rgba(254, 203, 0, 0.1);
  border: 1px solid rgba(254, 203, 0, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon-circle {
  background-color: #43a047;
  color: white;
  transform: scale(1.1);
}

.contact-item-text p {
  color: #8fa0b5;
  line-height: 1.6;
  font-size: 1.05rem;
}

.contact-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.social-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff !important;
}

.social-btn {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-5px);
  background-color: #43a047;
  color: white !important;
  border-color: #43a047;
  box-shadow: 0 10px 20px rgba(254, 203, 0, 0.2);
}

/* Enhanced Form Styles */
.contact-form-box {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.form-box-title {
  color: #fff !important;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.form-box-subtitle {
  color: #8fa0b5;
  font-size: 1.1rem;
}

/*.form-group-iasm {*/
/*  margin-bottom: 20px;*/
/*}*/

.form-group-iasm label {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-input-iasm {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  padding: 12px 15px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input-iasm:focus {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: #43a047;
  box-shadow: 0 0 0 4px rgba(254, 203, 0, 0.1);
}

textarea.form-input-iasm {
  resize: none;
}

.iasm-submit-btn {
  background-color: #43a047;
  color: white;
  border: none;
  padding: 15px 45px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: 100%;
}

.iasm-submit-btn:hover {
  background-color: #fff;
  color: #0c1a2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(254, 203, 0, 0.3);
}

@media (max-width: 991px) {
  .contact-form-box {
    padding: 35px 25px;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .contact-info-title {
    font-size: 2rem;
  }
}

/* About Page */
#story-section {
  background-color: var(--dark-color)
}

.about-img-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.about-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-content-text {
  color: #a5a5a5;
  font-family: "Roboto", sans-serif;
}

/* Main Footer Styling */
.footer-premium {
  background-color: #102027;
  color: #fff;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}



.footer-brand-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.footer-description {
  color: #8fa0b5;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-circle {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-circle:hover {
  background-color: #124da0;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(18, 77, 160, 0.3);
}

.footer-heading {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links li a {
  color: #8fa0b5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: #8fa0b5;
  font-size: 0.95rem;
}

.footer-contact-info li i {
  color: #124da0;
  font-size: 1rem;
  margin-top: 4px;
}

/* Disclaimer Box */
.footer-disclaimer-box {
  background-color: rgba(0, 0, 0, 0.2);
  border-left: 4px solid #fecb00;
  padding: 20px 25px;
  border-radius: 4px;
  margin: 60px 0;
}

.disclaimer-content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.disclaimer-content i {
  color: #fecb00;
  font-size: 1.1rem;
  margin-top: 3px;
}

.disclaimer-text {
  color: #8fa0b5;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

.disclaimer-text strong {
  color: #fecb00;
}

/* Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
}

.copyright-text {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
}

.footer-legal-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .footer-premium { padding-top: 60px; }
  .footer-heading { margin-bottom: 20px; margin-top: 30px; }
  .footer-legal-links { justify-content: center; margin-top: 15px; }
  .copyright-text { text-align: center; }
}

/* Mission & Vision Section */
.mv-section {
  background-color: var(--dark-color);
}

.mv-card {
  background-color: #1b2335;
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.mv-card:hover {
  transform: translateY(-5px);
}

.mv-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  color: #000;
}

.mission-icon {
  background: linear-gradient(135deg, #ffc107, #ffdb4d);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.vision-icon {
  background: linear-gradient(135deg, #0d6efd, #4dabf7);
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.mission-icon i {
  color: #000;
}

.vision-icon i {
  color: #fff;
}

.mv-card h3 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.mv-card p {
  color: #a5a5a5;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Core Value Section */
.core-value-card {
  background-color: #1b2335;
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.core-value-card:hover {
  transform: translateY(-5px);
}

.core-value-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: var(--primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  color: #000;
}

.core-value-icon i {
  color: #fff;
}

.core-value-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.core-value-text {
  color: #a5a5a5;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* Admission Process Section */
.admission-process-section {
  background-color: var(--dark-color);
}

.process-card {
  background-color: #182637;
  padding: 50px 25px 40px;
  border-radius: 15px;
  height: 100%;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 193, 7, 0.3);
}

.process-icon-box {
  width: 70px;
  height: 70px;
  background-color: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #000;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.number-badge {
  width: 30px;
  height: 30px;
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 14px;
  border: 4px solid #182637; /* Match card bg to create overlap effect */
}

/* Connectors */
@media (min-width: 992px) {
  .col-lg-3:not(:last-child) .process-card::after {
    content: '';
    position: absolute;
    top: 85px; /* Center with icon */
    right: -20px;
    width: 40px; /* Small line sticking out */
    height: 1px;
    background-color: rgba(255, 193, 7, 0.3);
    z-index: 1;
  }
}
/* Admission Inquiry Section */
.admission-inquiry-section {
  background-color: #fcfbf9;
}

.inquiry-form-card,
.sidebar-info-card {
  background-color: #182637;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.inquiry-form-card label {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.inquiry-form-card .form-control,
.inquiry-form-card .form-select {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px 15px;
}

/*.inquiry-form-card .form-control:focus,*/
/*.inquiry-form-card .form-select:focus {*/
/*  background-color: rgba(255, 255, 255, 0.05);*/
/*  border-color: #ffc107;*/
/*  box-shadow: none;*/
/*  color: #ffffff;*/
/*}*/

.inquiry-form-card .form-control::placeholder {
  color: #6c757d;
}

.btn-submit-inquiry {
  background-color: #4caf50 !important; /* Darker Gold */
  color: #000;
  font-weight: 700;
  border: none;
  transition: all 0.3s ease !important;
}

.btn-submit-inquiry:hover {
  background-color: #ffc107 !important;
  transform: translateY(-2px);
}

.text-secondary-light {
  color: #a5a5a5;
  font-size: 0.95rem;
}

.text-purple {
  color: #a4508b;
}

.btn-book-session {
  background-color: #0d6efd !important;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 4px !important;
  transition: all 0.3s ease !important;
}

.btn-book-session:hover {
  background-color: #0b5ed7 !important;
  color: #fff;
}
/* Payment Options Section */
.payment-options-section {
  background-color: #0d0d0d;
}

.payment-card {
  background-color: #0d0d0d;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.payment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 193, 7, 0.3);
}

.payment-card-body {
  padding: 30px 20px;
  text-align: center;
  flex: 1;
}

.payment-icon-box {
  width: 60px;
  height: 60px;
  background-color: #ffc107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 24px;
  color: #000;
}

.payment-card-footer {
  background-color: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  padding: 15px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 193, 7, 0.1);
}

.text-sm {
  font-size: 0.9rem;
}

/* ============================
   Floating Action Buttons
   ============================ */

.floating-btn-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.fab-btn:hover {
  transform: scale(1.1);
  color: white;
}

.fab-btn.whatsapp {
  background-color: #25d366;
}

.fab-btn.phone {
  background-color: #007bff;
}

.fab-badge {
  position: absolute;
  top: -10px;
  right: -5px;
  background-color: #32cd32;
  color: white;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

