:root {
    --primary-purple: #7b61ff;
    --primary-gradient: linear-gradient(135deg, #7b61ff 0%, #9c88ff 100%);
    --accent-orange: #ff7e5f;
    --bg-cream: #fffaf0;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --pastel-green: #e1f5fe;
    --pastel-orange: #fff3e0;
    --pastel-blue: #e8eaf6;
    --pastel-pink: #fce4ec;
    --pastel-yellow: #fff9c4;
    --border-radius: 30px;
     --primary-orange: #FF9D5C;
  --primary-blue: #5B9BD5;
  --primary-purple: #9B59B6;
  --secondary-green: #2ECC71;
  --secondary-yellow: #F39C12;
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --dark-text: #2C3E50;
  --light-text: #7F8C8D;
  --border-color: #E0E0E0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.subtitle {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-orange {
    background-color: var(--accent-orange);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 126, 95, 0.3);
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 126, 95, 0.4);
}

/* Top Bar */
.top-bar {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    margin-right: 5px;
}

.top-social a {
    color: var(--white);
    margin-left: 15px;
    transition: opacity 0.3s;
}

.top-social a:hover {
    opacity: 0.8;
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 900;
    /* color: var(--primary-purple); */
    color: #7b61ff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--accent-orange);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a.active, .nav-links a:hover {
    color: #7b61ff;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


/* result checker btn */
.btn-result {
  background:#7b61ff;
  color: white;
  margin-left: 10px;
  box-shadow: 0 4px 15px rgba(91, 155, 213, 0.3);
}

.btn-result:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(91, 155, 213, 0.4);
}

/* Hide mobile menu button link on desktop */
.mobile-only {
  display: none;
}

.mobile-result-btn {
  display: block;
  background: #5B9BD5;
  color: white !important;
  padding: 12px 20px;
  border-radius: 50px;
  text-align: center;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .nav-actions .btn-result {
    display: none;
  }

  .mobile-only {
    display: block;
    width: 100%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav-links.active {
    display: flex !important;
  }
}


/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background: var(--bg-cream);
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,250.7C960,235,1056,181,1152,165.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.play-btn {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-btn i {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 150px 150px 0 150px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Features Section */
.features {
    padding: 100px 0;
}

.features .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-img {
    flex: 1;
}

.about-img img {
    width: 100%;
    border-radius: 100px 100px 0 100px;
    box-shadow: 20px 20px 0 var(--pastel-blue);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.feature-item .icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Programs Section */
.programs {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-size: 40px;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.program-card {
    background: var(--white);
    padding: 30px;
    border-radius: 50px;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.program-card:hover {
    transform: translateY(-10px);
}

.card-img {
    margin-bottom: 20px;
}

.card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

.program-card h3 {
    margin-bottom: 10px;
}

.program-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.program-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
}


.arrow-btn {
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 0;
    text-decoration: none;
}

.card-green { border-bottom: 5px solid #4caf50; }
.card-orange { border-bottom: 5px solid #ff9800; }
.card-blue { border-bottom: 5px solid #2196f3; }

/* Activities Section */
.activities {
    padding: 100px 0;
}

.activities .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.activities-content {
    flex: 1.5;
}

.activities-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.activity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.activity-item {
    display: flex;
    gap: 20px;
}

.activity-item .icon {
    min-width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
}

.bg-yellow { background-color: #ffc107; }
.bg-pink { background-color: #e91e63; }
.bg-blue { background-color: #03a9f4; }
.bg-purple { background-color: #9c27b0; }

.activities-img {
    flex: 1;
    text-align: center;
}

.giraffe {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}

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

/* Instructors Section */
.instructors {
    padding: 100px 0;
}

.instructor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.instructor-card {
    text-align: center;
}

.instructor-img {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 350px;
}

.instructor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-teal { background-color: #009688; }

/* Footer */
.news {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 10px 0 20px;
    margin-top: 100px;
    border-radius: 100px 100px 0 0;
}

.newsletter {
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.newsletter h3 {
    flex: 1;
    font-size: 24px;
}

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    outline: none;
}

/* .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
} */


/* Footer */
footer {
  background-color: #1A1A1A;
  color: var(--white);
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
}

.footer-section a {
  display: block;
  color: #AAA;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-orange);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  color: #AAA;
}


/* Responsive */
@media (max-width: 992px) {
    .hero .container, .features .container, .activities .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-btns {
        justify-content: center;
    }
    .program-cards, .instructor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .nav-actions {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .newsletter {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .program-cards, .instructor-grid, .activity-grid, .feature-list {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 36px;
    }
}
/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
}

/* Login/Register Pages */
.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 157, 92, 0.1), rgba(91, 155, 213, 0.1));
  padding: 2rem;
}

.auth-box {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
}

.auth-header {
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
  color: var(--white);
  padding: 2rem;
  border-radius: 15px 15px 0 0;
  margin: -3rem -3rem 2rem -3rem;
  text-align: center;
}

.auth-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  opacity: 0.9;
}

/* Dashboard */
.dashboard {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 100vh;
  background-color: var(--light-bg);
}

.sidebar {
  background-color: var(--white);
  padding: 2rem 0;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.sidebar-menu {
  list-style: none;
}

.sidebar-menu li {
  margin: 0;
}

.sidebar-menu a {
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: var(--light-text);
  transition: all 0.3s;
  border-left: 4px solid transparent;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background-color: var(--light-bg);
  color: var(--primary-orange);
  border-left-color: var(--primary-orange);
}

.dashboard-content {
  padding: 2rem;
}

.dashboard-header {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-header h1 {
  font-size: 2rem;
  color: var(--dark-text);
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-orange);
}

.stat-card.blue {
  border-left-color: var(--primary-blue);
}

.stat-card.purple {
  border-left-color: var(--primary-purple);
}

.stat-card.green {
  border-left-color: var(--secondary-green);
}

.stat-label {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-orange);
}

.stat-card.blue .stat-value {
  color: var(--primary-blue);
}

.stat-card.purple .stat-value {
  color: var(--primary-purple);
}

.stat-card.green .stat-value {
  color: var(--secondary-green);
}

/* Tables */
.table-container {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  background-color: var(--light-bg);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--dark-text);
  border-bottom: 2px solid var(--border-color);
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

tr:hover {
  background-color: var(--light-bg);
}

/* Tabs */
.tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.tab-btn {
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--light-text);
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.tab-btn.active {
  color: var(--primary-orange);
  border-bottom-color: var(--primary-orange);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-success {
  background-color: rgba(46, 204, 113, 0.2);
  color: var(--secondary-green);
}

.badge-warning {
  background-color: rgba(243, 156, 18, 0.2);
  color: var(--secondary-yellow);
}

.badge-danger {
  background-color: rgba(231, 76, 60, 0.2);
  color: #E74C3C;
}

.badge-info {
  background-color: rgba(91, 155, 213, 0.2);
  color: var(--primary-blue);
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .dashboard {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .features-grid,
  .programs-grid,
  .testimonials-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.hidden {
  display: none;
}

.error {
  color: #E74C3C;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.success {
  color: var(--secondary-green);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* result checker */
