/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  --primary-green: #00a651;
  --dark-green: #007a3d;
  --darker-green: #005a2b;
  --navy: #16213e;
  --dark-bg: #1a1a2e;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --text-muted: #999999;
  --gold: #ffc107;
  --red: #dc3545;
  --shadow: 0 4px 15px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --transition-slow: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}

.top-bar a {
  color: var(--white);
}

.top-bar a:hover {
  color: var(--primary-green);
}

.top-bar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-hover);
  border-radius: 4px;
  font-size: 14px;
  z-index: 2000;
  margin-top: 10px;
}

.top-bar .dropdown-item {
  padding: 10px 20px;
  color: var(--text-dark) !important;
}

.top-bar .dropdown-item:hover {
  background: var(--primary-green);
  color: var(--white) !important;
}

.top-bar .social-icons a {
  margin-left: 12px;
  font-size: 14px;
}

/* ===== Navbar ===== */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  padding: 10px 0;
  transition: var(--transition);
  z-index: 1050;
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.brand-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-expert {
  color: #8B4513; /* Professional Brown */
}

.brand-institute {
  color: #000000; /* Deep Black */
  font-size: 0.9rem;
}

.navbar .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark) !important;
  padding: 10px 12px !important;
  position: relative;
  transition: var(--transition);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-green) !important;
}

.navbar .nav-link::after {
  display: none; /* Removed the line under links for cleaner look */
}

.navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-hover);
  border-radius: 10px;
  padding: 10px 0;
  margin-top: 15px;
  border-top: 4px solid var(--primary-green);
}

.navbar .dropdown-item {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 10px 20px;
  transition: var(--transition);
}

.navbar .dropdown-item:hover {
  background: var(--primary-green);
  color: var(--white);
}

.btn-talent-hunt {
  background: var(--primary-green);
  color: var(--white) !important;
  border-radius: 6px;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: var(--transition);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-talent-hunt:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,166,81,0.3);
}

/* ===== Hero Carousel ===== */
.hero-carousel .carousel-item {
  height: 550px;
  overflow: hidden;
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-carousel .carousel-caption {
  background: rgba(0,0,0,0.5);
  padding: 30px 40px;
  border-radius: 12px;
  bottom: 15%;
}

.hero-carousel .carousel-caption h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-carousel .carousel-caption p {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  background-color: var(--primary-green);
  border-radius: 50%;
  padding: 20px;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  background-color: var(--primary-green);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* ===== Section Styles ===== */
.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary-green);
  border-radius: 2px;
}

.section-title p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 700px;
  margin: 20px auto 0;
}

/* ===== About / Legacy Section ===== */
.legacy-section {
  background: var(--white);
}

.legacy-section .legacy-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.legacy-section .legacy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.legacy-section .legacy-img:hover img {
  transform: scale(1.03);
}

.legacy-section h2 {
  color: var(--primary-green);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.legacy-section p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 15px;
}

/* ===== Fee Structure CTA ===== */
.fee-cta-section {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.fee-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.fee-cta-section h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.fee-cta-section p {
  font-size: 16px;
  opacity: 0.9;
}

.btn-fee {
  background: var(--white);
  color: var(--primary-green);
  border-radius: 25px;
  padding: 12px 35px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
  border: 2px solid var(--white);
}

.btn-fee:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Physical Projects / Cards ===== */
.project-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.project-card .card-img-wrapper {
  height: 200px;
  overflow: hidden;
}

.project-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

.project-card .card-body {
  padding: 25px;
}

.project-card .card-body h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.project-card .card-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.btn-green {
  background: var(--primary-green);
  color: var(--white);
  border-radius: 25px;
  padding: 8px 25px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  border: 2px solid var(--primary-green);
  display: inline-block;
}

.btn-green:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Why Choose Stars ===== */
.why-choose-section {
  background: var(--light-bg);
}

.why-choose-section .feature-list {
  list-style: none;
  padding: 0;
}

.why-choose-section .feature-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.why-choose-section .feature-list li i {
  color: var(--primary-green);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===== Stats Counter ===== */
.stats-section {
  background: linear-gradient(135deg, var(--navy), var(--dark-bg));
  color: var(--white);
  padding: 60px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Academic Excellence / Interactive ===== */
.excellence-section {
  background: var(--white);
}

.excellence-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}

.excellence-card:hover {
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.excellence-card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--white);
}

.excellence-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.excellence-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* ===== Faculty Carousel ===== */
.faculty-section {
  background: var(--light-bg);
}

.faculty-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  margin: 10px;
}

.faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.faculty-card .faculty-img {
  height: 280px;
  overflow: hidden;
}

.faculty-card .faculty-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.faculty-card:hover .faculty-img img {
  transform: scale(1.05);
}

.faculty-card .faculty-info {
  padding: 20px;
}

.faculty-card .faculty-info h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.faculty-card .faculty-info h6 {
  font-size: 0.85rem;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 5px;
}

.faculty-card .faculty-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== Talent Hunt Section ===== */
.talent-hunt-section {
  background: var(--white);
  position: relative;
}

.talent-hunt-section .talent-content h2 {
  color: var(--primary-green);
  font-size: 2rem;
  font-weight: 700;
}

.talent-hunt-section .talent-content p {
  color: var(--text-light);
  font-size: 15px;
}

/* ===== Activities Section ===== */
.activities-section {
  background: var(--light-bg);
}

.activity-img-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 300px;
}

.activity-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.activity-img-wrapper:hover img {
  transform: scale(1.05);
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-green);
  border-radius: 2px;
}

.footer p {
  font-size: 14px;
  line-height: 1.8;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--primary-green);
  padding-left: 5px;
}

.footer ul li a i {
  margin-right: 8px;
  color: var(--primary-green);
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  margin-right: 8px;
  transition: var(--transition);
}

.footer .social-links a:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.page-header {
  background: #212529; /* Solid Dark Background */
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.page-header .breadcrumb-item a {
  color: var(--primary-green);
}

.page-header .breadcrumb-item.active {
  color: rgba(255,255,255,0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.5) !important;
}

/* ===== Fee Structure Table ===== */
.fee-table {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.fee-table .table {
  margin-bottom: 0;
}

.fee-table .table thead {
  background: var(--primary-green);
  color: var(--white);
}

.fee-table .table thead th {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 15px 20px;
  border: none;
  font-size: 15px;
}

.fee-table .table tbody td {
  padding: 12px 20px;
  font-size: 14px;
  vertical-align: middle;
  border-color: #eee;
}

.fee-table .table tbody tr:hover {
  background: rgba(0,166,81,0.05);
}

/* ===== Contact Form ===== */
.contact-form {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
}

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(0,166,81,0.15);
}

.contact-form .form-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-dark);
}

.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.contact-info-card .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  color: var(--white);
}

.contact-info-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* ===== Past Papers ===== */
.paper-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  height: 100%;
  border-left: 4px solid var(--primary-green);
}

.paper-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.paper-card .paper-icon {
  font-size: 40px;
  color: var(--primary-green);
  margin-bottom: 15px;
}

.paper-card h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.paper-card p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 15px;
}

/* ===== Aggregate Calculator ===== */
.calculator-section {
  background: var(--white);
}

.calculator-card {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
  max-width: 700px;
  margin: 0 auto;
}

.calculator-card .form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  transition: var(--transition);
}

.calculator-card .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(0,166,81,0.15);
}

.result-card {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  margin-top: 30px;
}

.result-card h3 {
  font-size: 3rem;
  font-weight: 800;
}

/* ===== Course Cards ===== */
.course-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.course-card .course-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.course-card .course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.course-card:hover .course-img img {
  transform: scale(1.1);
}

.course-card .course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-green);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.course-card .course-body {
  padding: 25px;
}

.course-card .course-body h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.course-card .course-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.course-card .course-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: var(--text-muted);
}

.course-card .course-meta i {
  color: var(--primary-green);
  margin-right: 5px;
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
  box-shadow: 0 4px 15px rgba(0,166,81,0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--dark-green);
  transform: translateY(-3px);
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .navbar .nav-link {
    padding: 10px 16px !important;
  }
  .navbar .nav-link::after {
    display: none;
  }
  .hero-carousel .carousel-item {
    height: 400px;
  }
  .hero-carousel .carousel-caption h2 {
    font-size: 1.5rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .hero-carousel .carousel-item {
    height: 300px;
  }
  .hero-carousel .carousel-caption {
    padding: 15px 20px;
    bottom: 10%;
  }
  .hero-carousel .carousel-caption h2 {
    font-size: 1.2rem;
  }
  .hero-carousel .carousel-caption p {
    font-size: 0.85rem;
    display: none;
  }
  .section-padding {
    padding: 40px 0;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .stat-item h3 {
    font-size: 2rem;
  }
  .page-header {
    padding: 60px 0 40px;
  }
  .page-header h1 {
    font-size: 1.8rem;
  }
  .footer {
    padding: 40px 0 0;
  }
}

@media (max-width: 575px) {
  .top-bar {
    display: none;
  }
  .btn-talent-hunt {
    padding: 8px 18px !important;
    font-size: 13px !important;
  }
}

/* Animations & Visibility Fixes - FORCED VISIBILITY */
.fade-in {
  opacity: 1 !important;
  transform: none !important;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible,
.no-js .fade-in,
body .fade-in {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Brown Button Utility */
.btn-brown {
  background-color: #8B4513 !important;
  color: #fff !important;
  border: none !important;
  transition: var(--transition);
}

.btn-brown:hover {
  background-color: #000 !important;
  color: #fff !important;
}

/* Auth Links in Top Bar */
.auth-links {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.auth-link-item {
  color: var(--white) !important;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.auth-link-item:hover {
  color: var(--primary-green) !important;
}

.top-bar .dropdown-toggle::after {
  display: none;
}

.top-bar .dropdown-menu {
  z-index: 3000 !important;
  border-top: 3px solid var(--primary-green) !important;
  margin-top: 15px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
}

/* Redesigned Auth Buttons in Navbar */
.nav-auth-btns {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 2px solid #f0f0f0;
}

.btn-auth-login {
  color: var(--text-dark) !important;
  font-weight: 600;
  padding: 0 !important; /* Reset padding to align with text */
  font-size: 14px;
  display: flex;
  align-items: center;
}

.btn-auth-register {
  background: #8B4513; /* Brown */
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(139, 69, 19, 0.2);
}

.btn-auth-register:hover {
  background: #000;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Fix for top-bar dropdown menu if still used */
.top-bar .dropdown-menu {
  z-index: 2500 !important;
  border: none;
  border-top: 3px solid var(--primary-green);
  box-shadow: var(--shadow-hover);
  margin-top: 10px;
}

.navbar.sticky-top {
  z-index: 1051;
}

/* ===== Course Detail Page ===== */
.course-detail-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
}

.course-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.course-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.course-feature-list li:last-child {
  border-bottom: none;
}

.course-feature-list li > i {
  font-size: 1.3rem;
  color: #f5a623; /* Gold/yellow checkmark like in the screenshot */
  flex-shrink: 0;
  margin-top: 2px;
}

.course-feature-list li > div h6 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.course-feature-list li > div p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

/* ===== Activities & Celebrations ===== */
.activity-img-wrapper {
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.activity-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.activity-img-wrapper:hover img {
  transform: scale(1.1);
}

.activity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 1; /* Always visible but subtle if no hover */
  transition: background 0.3s ease;
}

.activity-img-wrapper:hover .activity-overlay {
  background: linear-gradient(to top, rgba(0, 166, 81, 0.9) 0%, rgba(0,0,0,0.4) 100%);
}

.activity-overlay h4 {
  color: var(--white);
  font-weight: 700;
  margin: 0;
  font-size: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.activity-img-wrapper:hover .activity-overlay h4 {
  transform: translateY(-5px);
}