:root {
  --primary-dark: #22344a;
  --accent-gold: #ffae00;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --accent: #f4f6f8;
  --text-main: #1e293b;
  --text: #1c1c1c;
  --white: #ffffff;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-main);
  background-color: var(--accent);
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: var(--accent-gold);
}

.contact-item {
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
}

.contact-item i {
  color: var(--accent-gold);
  margin-right: 8px;
}

/* Navbar */
.navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-main {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--primary-dark);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-main span {
  color: var(--accent-gold);
}

.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--text-main);
  text-transform: uppercase;
  margin: 0;
  opacity: 0.8;
}

/* Nav Links */
.nav-link {
  font-weight: 600;
  color: var(--primary-dark) !important;
  font-size: 14px;
  margin: 0 12px;
  position: relative;
  padding: 5px 0 !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-gold) !important;
}

/* Join Button */
.btn-join {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 174, 0, 0.2);
}

.btn-join:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(34, 52, 74, 0.3);
}

.btn-join i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-join:hover i {
  transform: translateX(5px);
}
/* slider style code */
:root {
  --primary-dark: #22344a;
  --accent-gold: #ffae00;
  --glass-bg: rgba(255, 255, 255, 0.9);
  --accent: #f4f6f8;
  --text-main: #1e293b;
  --text: #1c1c1c;
  --white: #ffffff;
}

.hero-slider {
  padding: 100px 0;
  background-color: var(--white);
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.main-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--primary-dark);
  line-height: 1.1;
}

.highlight {
  color: var(--accent-gold);
}

.badge-premium {
  display: inline-block;
  padding: 6px 16px;
  background: var(--primary-dark);
  color: var(--white);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 4px;
}

.main-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
}

.btn-primary-custom {
  background-color: var(--primary-dark);
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
}

.image-wrapper {
  position: relative;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.badge-1 {
  top: 10%;
  left: -5%;
}
.badge-2 {
  bottom: 10%;
  right: -5%;
}

/* Carousel Controls */
.carousel-indicators [data-bs-target] {
  background-color: var(--primary-dark);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.carousel-indicators .active {
  background-color: var(--accent-gold);
}
/* Welcome Section Styling */
.welcome-section {
  padding: 100px 0;
  background-color: var(--white);
}

.welcome-tagline {
  color: var(--accent-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
}

.welcome-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 2.5rem;
  margin-top: 10px;
}

.welcome-text {
  color: var(--text-main);
  line-height: 1.8;
  font-size: 16px;
}

.feature-box {
  padding: 20px;
  background: var(--accent);
  border-radius: 15px;
  transition: all 0.3s ease;
  border-left: 5px solid transparent;
}

.feature-box:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--accent-gold);
  transform: translateX(10px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-dark);
  color: var(--accent-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
}

.experience-badge {
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 30px;
  border-radius: 20px;
  display: inline-block;
  position: absolute;
  bottom: -30px;
  right: -30px;
  box-shadow: 0 15px 35px rgba(255, 174, 0, 0.3);
  text-align: center;
}

.experience-badge h2 {
  font-weight: 800;
  margin: 0;
  font-size: 32px;
}

.experience-badge p {
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
}

/* course section */
/* Course Section Styling */
.course-section {
  padding: 100px 0;
  background-color: var(--accent);
}

.course-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.course-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(34, 52, 74, 0.15);
}

.course-img-wrapper {
  position: relative;
  overflow: hidden;
}

.course-img-wrapper img {
  transition: transform 0.5s ease;
  height: 220px;
  object-fit: cover;
  width: 100%;
}

.course-card:hover .course-img-wrapper img {
  transform: scale(1.1);
}

.course-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.course-content {
  padding: 25px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

.course-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  line-height: 1.4;
}

.course-footer {
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.rating {
  color: var(--accent-gold);
  font-size: 14px;
}

.btn-outline-primary-custom {
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 8px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-outline-primary-custom:hover {
  background: var(--primary-dark);
  color: var(--white);
}
/* Why choose Us */
/* Why Choose Us Styling */
.why-section {
  padding: 100px 0;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  z-index: 0;
}

.stat-card {
  background: var(--primary-dark);
  color: var(--white);
  padding: 40px;
  border-radius: 30px;
  height: 100%;
  position: relative;
  z-index: 1;
}

.stat-item h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.benefit-card {
  padding: 30px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: 0.3s;
}

.benefit-card:hover .benefit-icon {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.benefit-card h5 {
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Testimonioal Section */
/* Testimonial Section Styling */
.testimonial-section {
  padding: 100px 0;
  background-color: var(--accent);
  position: relative;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 25px;
  border: none;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(34, 52, 74, 0.1);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 40px;
  color: var(--accent-gold);
  opacity: 0.2;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.student-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-gold);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .student-img {
  transform: scale(1.1);
}

.student-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
  font-size: 16px;
}

.student-course {
  font-size: 12px;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 20px;
}

.star-rating {
  color: var(--accent-gold);
  font-size: 13px;
}
/* Call to Action */
/* CTA Section Styling */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #16243d 100%);
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  margin: 60px 0;
}

/* Decorative background circles */
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 174, 0, 0.05);
  z-index: 0;
}

.cta-section::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.cta-section::after {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.btn-cta-gold {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  font-weight: 800;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 174, 0, 0.3);
}

.btn-cta-gold:hover {
  background-color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  color: var(--white);
  font-size: 14px;
}

.cta-features span i {
  color: var(--accent-gold);
  margin-right: 8px;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  .cta-features {
    flex-direction: column;
    gap: 10px;
  }
}

/* FAQ Section Styling */
.faq-section {
  padding: 100px 0;
  background-color: var(--accent);
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.accordion-button {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--primary-dark) !important;
  padding: 20px 25px;
  background-color: var(--white) !important;
  font-size: 16px;
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--white) !important;
  box-shadow: none;
  color: var(--accent-gold) !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2322344a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 0 25px 25px;
  color: var(--text-main);
  line-height: 1.7;
  font-size: 15px;
  background-color: var(--white);
}

.faq-course-tag {
  display: inline-block;
  font-size: 11px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
  font-weight: 600;
}
/* Footer Section */
/* Footer Styling */
.main-footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
}

.footer-logo-text .logo-main {
  color: var(--white);
  font-size: 20px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
}

.footer-heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 174, 0, 0.1);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
}

.newsletter-form .form-control:focus {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  border-color: var(--accent-gold);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.social-circle {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  margin-right: 10px;
  transition: 0.3s;
}

.social-circle:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}
/* About Page Specific Styles */
.about-hero {
  padding: 120px 0 80px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("images/about-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  text-align: center;
  background-attachment: fixed;
}

.breadcrumb-item a {
  color: var(--accent-gold);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

.vision-mission-section {
  padding: 100px 0;
  background: var(--white);
}

.vm-card {
  padding: 40px;
  border-radius: 30px;
  background: var(--accent);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s;
}

.vm-card:hover {
  background: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.vm-icon {
  font-size: 40px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.core-values {
  padding: 100px 0;
  background-color: var(--primary-dark);
  color: var(--white);
}

.value-item {
  text-align: center;
  padding: 20px;
}

.value-number {
  font-size: 60px;
  font-weight: 800;
  color: rgba(255, 174, 0, 0.1);
  line-height: 1;
  margin-bottom: -30px;
  display: block;
}

.value-title {
  font-family: "Montserrat", sans-serif;
  color: var(--accent-gold);
  font-weight: 700;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .experience-badge {
    position: static;
    margin-top: 20px;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    margin-top: 15px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  .nav-link {
    margin: 10px 0;
  }
  .nav-link::after {
    display: none;
  }
}
