/* ========================================
   RESET & BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #202F43;
    background: #FFFCF9;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight {
    color: #E37632;
    position: relative;
}

/* ========================================
   CSS GRID FORM LAYOUT
   ======================================== */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.animate-fade-up:nth-child(1) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(2) { animation-delay: 0.2s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.3s; }
.animate-fade-up:nth-child(4) { animation-delay: 0.4s; }

/* ========================================
   HEADER - GLASS-MORPHISM
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    /* background: rgba(255, 255, 255, 0.85); */
      background: #FFFCF9;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(143, 236, 120, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    /* background: rgba(255, 255, 255, 0.95); */
    background: #FFFCF9;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.logo-icon {
    font-size: 32px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
    z-index: 1001;
}

.nav-link {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    /* background: linear-gradient(90deg, #8FEC78, #6BCF5A); */
    background: #E37632;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #E37632;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button {
    /* background: linear-gradient(135deg, #E37632 0%, #b26737 100%);
    color: #202F43; */
      background-color: #E37632;
    color: #FFFCF9;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* box-shadow: 0 4px 16px rgba(143, 236, 120, 0.3); */
}

.cta-button:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 24px rgba(143, 236, 120, 0.4); */
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* Mobile menu toggle animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(118, 86, 64, 0.08) 0%, rgba(194, 142, 106, 0.08) 50%, rgba(144, 101, 71, 0.08) 100%);
/* background-image: url("./images/hero_background_image.png");
  background-repeat: no-repeat;       
    background-size: cover;             
    background-position: center;  */
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(143, 236, 120, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(107, 207, 90, 0.12) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

.hero-content {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    padding: 60px 0;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: #202F43;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 20px;
    color: #202F43;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary, .btn-secondary {
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    /* background: linear-gradient(135deg, #E37632 0%, #b26737 100%);
    color: #202F43; */
      background-color: #E37632;
    color: #FFFCF9;
    /* box-shadow: 0 8px 24px rgba(143, 236, 120, 0.3); */
}

.btn-primary:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 12px 32px rgba(143, 236, 120, 0.4); */
}

.btn-secondary {
    background: transparent;
    color: #202F43;
    border: 2px solid #E37632;
}

.btn-secondary:hover {
    background: rgba(143, 236, 120, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #202F43;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #202F43;
    margin-top: 8px;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 55px;
    font-weight: 600;
    color: #202f43;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: #5F6E7E;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
    padding: 120px 0;
    background: #fafafa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: #FFFCF9;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(143, 236, 120, 0.15);
    border-color: rgba(143, 236, 120, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-icon1 {
    /* font-size: 1px; */
    width: 40px; /* Adjust as needed */
    height: 40px; /* Adjust as needed */
   margin-bottom: 20px;
    /* flex-shrink: 0; */
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #202F43;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
/* .how-it-works {
    padding: 120px 0;
} */

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, #E37632 0%, rgba(143, 236, 120, 0.2) 100%);
}

.step-number {
    font-size: 36px;
    font-weight: 800;
    color: #E37632;
    font-family: 'Poppins', sans-serif;
    min-width: 70px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #202F43;
    margin-bottom: 12px;
}

.step-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   COURSES SECTION STYLES
   ======================================== */
.courses {
    padding: 120px 0;
    /* background: linear-gradient(180deg, #FFFCF9 0%, #FFFCF9 100%); */
     background-image: url("../images/Hero-section-imagegf.webp");
        /* background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; */
    background-size: cover;          /* Fill section */
    background-position: center;     /* Center image */
    background-repeat: no-repeat;    /* No tiling */
}

.courses-controls {
    margin-bottom: 48px;
}

/* Search Container */
.search-container {
    margin-bottom: 32px;
    position: relative;
}

.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #888;
}

.search-input {
   width: 100%;
    padding: 16px 20px 16px 45px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #FFFCF9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.search-input:focus {
    outline: none;
    border-color: #E37632;
    box-shadow: 0 4px 20px rgba(143, 236, 120, 0.15);
}

/* Autocomplete Dropdown */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFCF9;
    border: 2px solid #FFFCF9;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.autocomplete-dropdown.active {
    display: block;
}

.autocomplete-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: rgba(143, 236, 120, 0.1);
}

.autocomplete-item .course-category {
    font-size: 12px;
    color: #E37632;
    background: rgba(143, 236, 120, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #e5e5e5;
    background: #FFFCF9;
    color: #666;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; margin-top: 20px;
}

.filter-btn:hover {
    /* border-color: #E37632;
    color: #202F43; */
     background-color: #E37632;
    color: #FFFCF9;
    transform: translateY(-2px);
}

.filter-btn.active {
    /* background: linear-gradient(135deg, #E37632 0%, #b26737 100%);
    color: #202F43; */
     background-color: #E37632;
    color: #FFFCF9;
    border-color: transparent;
    /* box-shadow: 0 4px 12px rgba(143, 236, 120, 0.3); */
}

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn,
.clear-btn {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.search-btn {
    /* background: #16c950;
    color: #fff; */
    /* background: linear-gradient(135deg, #E37632 0%, #b26737 100%);
    color: #202F43; */
   background-color: #E37632;
    color: #FFFCF9;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(143, 236, 120, 0.3);
}

.clear-btn {
    background: #FFFCF9;
    color: #202F43;
    /* background: linear-gradient(135deg, #8FEC78 0%, #6BCF5A 100%);
    color: #1a1a1a; */
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(143, 236, 120, 0.3);
}

.search-btn:hover {
    background: #E37632;
}

.clear-btn:hover {
    background: #d1d5db;
}


/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    transition: all 0.3s ease;
}

.course-card {
    background: #FFFCF9;
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
       display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(143, 236, 120, 0.15);
    border-color: rgba(143, 236, 120, 0.3);
}

.course-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    /* background: linear-gradient(135deg, #E37632 0%, #b26737 100%);
    color: #202F43; */
     background-color: #E37632;
    color: #FFFCF9;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.course-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.course-title {
    font-size: 22px;
    font-weight: 700;
    color: #202F43;
    margin-bottom: 12px;
}

.course-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #888;
}
.course-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
       margin-top: auto; 
    gap: 10px;
}

.course-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #E37632;
    border: 2px solid #E37632;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
     margin-top: auto;

}

/* .course-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #8FEC78;
    border: 2px solid #8FEC78;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;

    position: fixed;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
} */


.course-btn:hover {
    background: #E37632;
    color: #FFFCF9;
    transform: translateY(-2px);
     /* transform: translateX(-50%) translateY(-2px); */
}

/* Course Category Tag */
.course-category-tag {
    display: inline-block;
    padding: 4px 12px;
    /* background: rgba(143, 236, 120, 0.1); */
    color: #E37632;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e5e5e5;
    background: #FFFCF9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #666;
}

.pagination-btn:hover:not(:disabled) {
    border-color: #E37632;
    color: #E37632;
    transform: translateY(-2px);
}

.pagination-btn.active {
    /* background: #E37632; */
    color: #202F43;
      background: #ab826716;
    /* color: #FFFCF9; */
    border-color: #E37632;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-dots {
    color: #888;
    font-size: 18px;
    padding: 0 8px;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.no-results-icon {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-results-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.no-results-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.no-results-btn {
    padding: 12px 32px;
    background: transparent;
    color: #E37632;
    border: 2px solid #E37632;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.no-results-btn:hover {
    background: #E37632;
    color: #202F43;
}



/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    padding: 120px 0;
    background: #fafafa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: #FFFCF9;
    padding: 36px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(143, 236, 120, 0.15);
}

.testimonial-rating {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E37632 0%, #b26737 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: #1a1a1a;
}

.author-name {
    font-weight: 600;
    color: #202F43;
    font-size: 16px;
}

.author-role {
    font-size: 14px;
    color: #888;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFCF9;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #E37632;
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #202F43;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-question:hover {
    /* background: rgba(143, 236, 120, 0.05); */
        background: rgba(214, 153, 117, 0.16);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: #E37632;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    padding: 60px 0;
    background: linear-gradient(180deg, #fafafa 0%, #FFFCF9 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    padding-right: 20px;
}

.contact-info-title {
    font-size: 36px;
    font-weight: 700;
    color: #202F43;
    margin-bottom: 16px;
}

.contact-info-text {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}


.contact-icon1 {
    /* font-size: 1px; */
    width: 30px; /* Adjust as needed */
    height: 30px; /* Adjust as needed */
    margin-left: 10px;
    flex-shrink: 0;
}
.contact-detail-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.contact-form-wrapper {
    background: #FFFCF9;
    padding: 44px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #202F43;
}

.form-input {
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-input:focus {
    outline: none;
    border-color: #E37632;
    background: #FFFCF9;
    box-shadow: 0 0 0 4px rgba(143, 236, 120, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.form-submit-btn {
    padding: 16px;
    /* background: linear-gradient(135deg, #E37632 0%, #b26737 100%);
    color: #1a1a1a; */
      background-color: #E37632;
    color: #FFFCF9;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 8px 24px rgba(143, 236, 120, 0.3); */
    margin-top: 12px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 12px 32px rgba(143, 236, 120, 0.4); */
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-description {
    font-size: 14px;
    color: #999;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(143, 236, 120, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E37632;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #E37632;
    color: #202F43;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E37632;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #999;
    font-size: 14px;
}


/* ========================================
   COURSE DETAILS POPUP
   ======================================== */

   /* Accordion Syllabus Styles */
.syllabus-accordion {
    margin-top: 20px;
}

.syllabus-accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(143, 236, 120, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.syllabus-accordion-item:hover {
    /* border-color: rgba(143, 236, 120, 0.4); */
     /* border-color: 1px solid  rgba(215, 138, 94, 0.133); */
         border-color: rgba(214, 153, 117, 0.16);
    /* box-shadow: 0 4px 12px rgba(143, 236, 120, 0.1); */
        box-shadow: 1px solid  rgba(215, 138, 94, 0.133);
}

.syllabus-accordion-item.active {
    border-color: #E37632;
    box-shadow: 0 4px 16px rgba(143, 236, 120, 0.15);
}

.syllabus-accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: rgba(143, 236, 120, 0.05); */
        background: rgba(214, 153, 117, 0.16);
    transition: background 0.3s ease;
}

.syllabus-accordion-header:hover {
    /* background: rgba(143, 236, 120, 0.1); */
      background: 1px solid  rgba(215, 138, 94, 0.133);
}

.syllabus-accordion-item.active .syllabus-accordion-header {
    /* background: rgba(143, 236, 120, 0.1); */
     background: rgba(214, 153, 117, 0.16);
    /* border-bottom: 1px solid rgba(143, 236, 120, 0.2); */
     border-bottom: 1px solid  rgba(215, 138, 94, 0.133);
}

.accordion-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.module-number {
    /* background: linear-gradient(135deg, #E37632 0%, #b26737 100%); */
     background: rgba(214, 153, 117, 0.468);
    color: #202F43;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.accordion-module-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
}

.accordion-topic-count {
    background: rgba(26, 26, 26, 0.08);
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* background: rgba(143, 236, 120, 0.2); */
     background: rgba(214, 153, 117, 0.16);
    
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #E37632;
    margin-left: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.syllabus-accordion-item.active .accordion-icon {
    /* background: #E37632; */
    background: rgba(214, 153, 117, 0.468);
    color: #1a1a1a;
    transform: rotate(180deg);
}

.syllabus-accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.syllabus-accordion-item.active .syllabus-accordion-content {
    padding: 20px;
    max-height: 1000px; /* Adjust as needed */
}

.syllabus-topics-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.syllabus-topic-item {
    padding: 12px 0 12px 34px;
    position: relative;
    font-size: 14px;
    color: #202F43;
    line-height: 1.6;
    border-bottom: 1px solid rgba(143, 236, 120, 0.1);
}

.syllabus-topic-item:last-child {
    border-bottom: none;
}

.syllabus-topic-item .topic-icon {
    position: absolute;
    left: 0;
    top: 12px;
    width: 22px;
    height: 22px;
    /* background: rgba(143, 236, 120, 0.1); */
     background: rgba(214, 153, 117, 0.16);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #E37632;
    font-weight: bold;
}

.syllabus-topic-item:hover {
    color: #1a1a1a;
    background: rgba(143, 236, 120, 0.03);
    border-radius: 6px;
    padding-left: 36px;
    margin-left: -2px;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
    margin-bottom: 20px;
    font-style: italic;
}

/* Accordion Actions */
.accordion-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.accordion-expand-all,
.accordion-collapse-all {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e5e5e5;
    background: white;
    color: #666;
}

.accordion-expand-all:hover {
    border-color: #E37632;
    color: #E37632;
    transform: translateY(-2px);
}

.accordion-collapse-all:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
    transform: translateY(-2px);
}
   .view-details-btn {
    /* background: linear-gradient(135deg, #7967c7 0%, #7967c7 100%); */
    /* color: #ffffff; */
    /* border: none; */
     background: transparent;
    color: #202F43;
    /* border: 2px solid #8FEC78; */
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    position: relative;
    overflow: hidden;
    margin-left: 10px;
    white-space: nowrap;
}

.view-details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(143, 236, 120, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.view-details-btn:hover {
    /* background: linear-gradient(135deg, #7967c7 0%, #7967c7 100%); */
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); */

       background: #b7cde9;
    color: #202F43;
}

.view-details-btn:hover::before {
    left: 100%;
}

.view-details-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Button icon */
.view-details-btn::after {
    /* content: '🔍'; */
    /* margin-left: 6px; */
    font-size: 12px;
    opacity: 0.8;
}

/* Alternative Design: Outline Style */
.view-details-btn.outline {
    background: transparent;
    color: #202F43;
    border: 2px solid #b7cde9;
    padding: 8px 18px;
}

.view-details-btn.outline:hover {
    background: b7cde9;
    color: #202F43;
}

/* Alternative Design: Gradient Style */
.view-details-btn.gradient {
    background: linear-gradient(135deg, #b7cde9 0%, #b7cde9 100%);
    color: #202F43;
    padding: 10px 22px;
    border: none;
}

.view-details-btn.gradient:hover {
    background: linear-gradient(135deg, #b7cde9 0%, #b7cde9 100%);
    transform: translateY(-2px);
}

/* In course card specific styling */
.course-card .view-details-btn {
    margin-top: 8px;
    width: 100%;
    padding: 12px;
    font-size: 15px;
    order: 1; /* Make it appear before Enroll Now button */
}

.course-card .course-btn {
    order: 2; /* Make Enroll Now appear after View Details */
    margin-top: 8px;
}

/* Course meta container */
.course-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #666;
}
.course-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.course-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.course-popup-container {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 28px;
    max-width: 900px;
    width: 100%;
    max-height: 95vh;
    position: relative;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(40px) scale(0.95);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    overflow: hidden;
    border: 1px solid rgba(143, 236, 120, 0.15);
}

.course-popup-overlay.active .course-popup-container {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.course-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(26, 26, 26, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 300;
}

.course-popup-close:hover {
    background: rgba(26, 26, 26, 0.15);
    transform: rotate(90deg);
}

.course-popup-content {
    overflow-y: auto;
    max-height: calc(95vh - 90px);
    padding: 40px;
}

.course-popup-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(143, 236, 120, 0.2);
    position: relative;
}

.course-popup-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #E37632, #b26737);
}

.course-popup-title {
    font-size: 36px;
    font-weight: 800;
    color: #202F43;
    margin-bottom: 12px;
    line-height: 1.2;
}

.course-popup-outcome {
    font-size: 18px;
    color: #202F43;
    font-weight: 600;
    /* background: rgba(143, 236, 120, 0.1); */
     background: rgba(214, 153, 117, 0.16);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
}

.course-popup-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
    /* background: rgba(143, 236, 120, 0.05); */
    /* background: #e38e59; */
        background: rgba(214, 153, 117, 0.16);
    padding: 24px;
    border-radius: 20px;
    /* border: 1px solid rgba(143, 236, 120, 0.1); */
        border: 1px solid  rgba(215, 138, 94, 0.133);
    /* border: #E37632; */
}

.course-popup-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.course-popup-meta-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E37632 0%, #b26737 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
}

.course-popup-meta-text {
    flex: 1;
}

.course-popup-meta-label {
    font-size: 13px;
    color: #202F43;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.course-popup-meta-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.course-popup-section {
    margin-bottom: 32px;
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.course-popup-section:nth-child(1) { animation-delay: 0.1s; }
.course-popup-section:nth-child(2) { animation-delay: 0.2s; }
.course-popup-section:nth-child(3) { animation-delay: 0.3s; }
.course-popup-section:nth-child(4) { animation-delay: 0.4s; }
.course-popup-section:nth-child(5) { animation-delay: 0.5s; }

.course-popup-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #202F43;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(143, 236, 120, 0.2);
}

.course-popup-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #E37632, #b26737);
    border-radius: 2px;
}

.course-popup-roles-grid,
.course-popup-who-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.course-popup-role-tag,
.course-popup-who-tag {
    /* background: rgba(143, 236, 120, 0.1); */
        background: rgba(214, 153, 117, 0.16);
    color: #202F43;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    /* border: 1px solid rgba(143, 236, 120, 0.3); */
    border: 1px solid  rgba(215, 138, 94, 0.133);
    transition: all 0.3s ease;
}

.course-popup-role-tag:hover,
.course-popup-who-tag:hover {
    /* background: rgba(143, 236, 120, 0.2); */
      background: rgba(214, 153, 117, 0.16);
    transform: translateY(-2px);
}

.course-popup-syllabus-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.course-popup-syllabus-item {
    background: white;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
    color: #4a4a4a;
    position: relative;
    padding-left: 40px;
    transition: all 0.3s ease;
}

.course-popup-syllabus-item:hover {
    border-color: #E37632;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(143, 236, 120, 0.15);
}

.course-popup-syllabus-item::before {
    content: '✓';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #E37632 0%, #b26737 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
}

.course-popup-price-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(36, 36, 36, 0.95) 100%);
    color: white;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(143, 236, 120, 0.3);
}

.course-popup-price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E37632, #b26737);
}

.course-popup-price-title {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.course-popup-price {
    font-size: 48px;
    font-weight: 800;
    color: #E37632;
    margin: 16px 0;
    /* font-family: 'Poppins', sans-serif; */
}

.course-popup-price-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.course-popup-enroll-btn {
    background: linear-gradient(135deg, #E37632 0%, #b26737 100%);
    color: #1a1a1a;
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(143, 236, 120, 0.3);
    position: relative;
    overflow: hidden;
}

.course-popup-enroll-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.course-popup-enroll-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(143, 236, 120, 0.4);
}

.course-popup-enroll-btn:hover::before {
    left: 100%;
}

/* Custom scrollbar for popup */
.course-popup-content::-webkit-scrollbar {
    width: 8px;
}

.course-popup-content::-webkit-scrollbar-track {
    background: rgba(143, 236, 120, 0.1);
    border-radius: 4px;
}

.course-popup-content::-webkit-scrollbar-thumb {
    /* background: linear-gradient(180deg, #8FEC78, #6BCF5A); */
    background: linear-gradient(180deg, #E37632, #b26737);
    border-radius: 4px;
}

.course-popup-content::-webkit-scrollbar-thumb:hover {
    /* background: linear-gradient(180deg, #6BCF5A, #8FEC78); */
     background: linear-gradient(180deg, #b26737, #E37632);
}
/* ========================================
   POPUP OVERLAY
   ======================================== */
.popup-overlay {
        display: none; 
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: #ffffff;
    padding: 20px;
    border-radius: 24px;
    max-width: 600px;
    /* width: 90%; */
       width: 100%;
      /* max-height: 500px;
    height: 90%; */
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #666;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.popup-title {
    font-size: 32px;
    font-weight: 700;
    color: #202F43;
    margin-bottom: 12px;
    text-align: center;
}

.popup-description {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.6;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popup-input {
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.popup-input:focus {
    outline: none;
    border-color: #8FEC78;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(143, 236, 120, 0.1);
}

.popup-submit-btn {
    padding: 16px;
    background: linear-gradient(135deg, #8FEC78 0%, #6BCF5A 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(143, 236, 120, 0.3);
    margin-top: 8px;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(143, 236, 120, 0.4);
}

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1a1a1a;
    color: #ffffff;
    padding: 18px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    width: 24px;
    height: 24px;
    background: #8FEC78;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.toast-message {
    font-size: 15px;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-description {
        font-size: 18px;
    }

    .features-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        gap: 40px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Header Mobile */
    .nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        /* background: rgba(255, 255, 255, 0.98); */
        background: #FFFCF9;
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    .logo-footer{
        width: 30% !important;
        /* height: 50% !important; */
    }

    .cta-button {
        display: none;
    }

    /* Hero Mobile */
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    /* Section Titles */
    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    /* Grids Mobile */
    .features-grid,
    .courses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card,
    .course-card,
    .testimonial-card {
        padding: 28px;
    }

    /* Steps Mobile */
    .step-item {
        flex-direction: column;
        gap: 16px;
    }

    .step-item:not(:last-child)::after {
        display: none;
    }

    .step-number {
        min-width: auto;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Popup Mobile */
    .popup-content {
        padding: 36px 28px;
    }

    .popup-title {
        font-size: 26px;
    }

    /* Toast Mobile */
    .toast {
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    /* Contact Form Mobile */
    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .contact-info-title {
        font-size: 28px;
    }

    /* Filter Buttons Mobile */
    .filter-buttons {
        overflow-x: auto;
        padding-bottom: 8px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-buttons::-webkit-scrollbar {
        height: 4px;
    }
    
    .filter-buttons::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .filter-buttons::-webkit-scrollbar-thumb {
        background: #8FEC78;
        border-radius: 10px;
    }
    
    .filter-btn {
        flex-shrink: 0;
    }
    
    /* Pagination Mobile */
    .pagination {
        gap: 6px;
    }
    
    .pagination-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    /* Search Input Mobile */
    .search-input {
        font-size: 15px;
        padding: 14px 20px 14px 52px;
    }
    
    .search-icon {
        left: 16px;
        font-size: 18px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    
    .logo{
        width: 30% !important;
        height: 30% !important;
    }

     .logo-footer{
        width: 40% !important;
        /* height: 80% !important; */
    }

    .section-title {
        font-size: 26px;
    }

    .stat-number {
        font-size: 36px;
    }

    .feature-card,
    .course-card,
    .testimonial-card {
        padding: 24px;
    }

    .feature-icon,
    .course-icon {
        font-size: 40px;
    }

    .feature-icon1 {
    /* font-size: 1px; */
    width: 40px; /* Adjust as needed */
    height: 40px; /* Adjust as needed */
   margin-bottom: 20px;
    /* flex-shrink: 0; */
}

    .feature-title,
    .course-title {
        font-size: 19px;
    }

    .popup-content {
        padding: 28px 20px;
    }

    .popup-title {
        font-size: 22px;
    }

    .footer {
        padding: 60px 0 20px;
    }

    .filter-buttons {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .pagination-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .search-input {
        font-size: 14px;
        padding: 12px 16px 12px 48px;
    }

     .popup-content {
        width: 95%;
             max-width: 360px; 
               height: 95%;
             max-height: 560px; 
        padding: 30px 20px;
        margin: 10px;
        border-radius: 20px;
        overflow: hidden;
        overflow-y: auto;       /* ENABLE SCROLL */
        overflow-x: hidden;   
    }
    
    .popup-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .popup-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .popup-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
    
    .popup-content .form-grid {
  grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .popup-form .form-input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .popup-form .form-label {
        font-size: 13px;
    }
    
    .popup-submit-btn {
        padding: 14px;
        font-size: 15px;
    }

      .course-popup-overlay {
        padding: 10px;
    }
    
    .course-popup-container {
        max-width: 100vw;
        max-height: 95vh;
        height: 95vh;
        border-radius: 20px;
        margin: 0;
    }
    
    .course-popup-content {
        padding: 24px 20px;
        max-height: calc(95vh - 80px);
    }
    
    .course-popup-close {
        top: 16px;
        right: 16px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .course-popup-header {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .course-popup-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .course-popup-outcome {
        font-size: 15px;
        padding: 6px 14px;
        margin-bottom: 12px;
    }
    
    .course-popup-meta {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
        margin-bottom: 24px;
    }
    
    .course-popup-meta-item {
        gap: 10px;
    }
    
    .course-popup-meta-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
        border-radius: 8px;
    }
    
    .course-popup-meta-label {
        font-size: 12px;
    }
    
    .course-popup-meta-value {
        font-size: 14px;
    }
    
    .course-popup-section {
        margin-bottom: 24px;
    }
    
    .course-popup-section-title {
        font-size: 18px;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }
    
    .course-popup-roles-grid,
    .course-popup-who-grid {
        gap: 8px;
    }
    
    .course-popup-role-tag,
    .course-popup-who-tag {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .course-popup-price-section {
        padding: 24px 16px;
        margin-top: 32px;
    }
    
    .course-popup-price-title {
        font-size: 16px;
    }
    
    .course-popup-price {
        font-size: 36px;
        margin: 12px 0;
    }
    
    .course-popup-price-note {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .course-popup-enroll-btn {
        padding: 14px 24px;
        font-size: 16px;
        width: 100%;
        border-radius: 40px;
    }
    
    /* Accordion adjustments for mobile */
    .syllabus-accordion-header {
        padding: 16px;
    }
    
    .accordion-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .accordion-module-title {
        font-size: 15px;
        width: 100%;
    }
    
    .module-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .accordion-topic-count {
        font-size: 11px;
        padding: 3px 10px;
        align-self: flex-start;
    }
    
    .syllabus-accordion-item.active .syllabus-accordion-content {
        padding: 16px;
    }
    
    .syllabus-topic-item {
        padding: 10px 0 10px 30px;
        font-size: 13px;
    }
    
    .syllabus-topic-item .topic-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .section-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .accordion-actions {
        flex-direction: column;
        gap: 8px;
        margin-top: 16px;
    }
    
    .accordion-expand-all,
    .accordion-collapse-all {
        width: 100%;
        padding: 12px;
        font-size: 13px;
    }
    
    /* Course card adjustments for mobile */
    .course-card .view-details-btn {
        padding: 10px;
        font-size: 14px;
    }
    
    .view-details-btn::after {
        font-size: 11px;
    }
    
    /* Adjust view details button in meta section */
    .view-details-btn {
        padding: 8px 14px;
        font-size: 12px;
        margin-left: 0;
        width: 100%;
        margin-top: 8px;
    }
    .search-btn{
        display: none;
    }

}

/* Extra Small (max-width: 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 24px;
    }

    
   .logo{
        width: 30% !important;
        height: 30% !important;
    }
    .section-title {
        font-size: 22px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }

     .popup-content {
           width: 95%;
             max-width: 360px; 
               height: 95%;
             max-height: 560px; 
        padding: 30px 20px;
        margin: 10px;
        border-radius: 20px;
        overflow: hidden;
        overflow-y: auto;       /* ENABLE SCROLL */
        overflow-x: hidden;   
    }
    
    .popup-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .popup-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .popup-close {
        width: 32px;
        height: 32px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }
    
    .popup-content .form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .popup-form .form-input {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .popup-form .form-label {
        font-size: 13px;
    }
    
    .popup-submit-btn {
        padding: 14px;
        font-size: 15px;
    }

      .course-popup-content {
        padding: 20px 16px;
    }
    
    .course-popup-title {
        font-size: 24px;
    }
    
    .course-popup-outcome {
        font-size: 14px;
        padding: 5px 12px;
    }
    
    .course-popup-meta {
        padding: 12px;
        gap: 10px;
    }
    
    .course-popup-meta-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
        border-radius: 6px;
    }
    
    .course-popup-meta-label {
        font-size: 11px;
    }
    
    .course-popup-meta-value {
        font-size: 13px;
    }
    
    .course-popup-section-title {
        font-size: 17px;
    }
    
    .course-popup-role-tag,
    .course-popup-who-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .course-popup-price {
        font-size: 32px;
    }
    
    .course-popup-price-note {
        font-size: 12px;
    }
    
    .course-popup-enroll-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    /* Accordion adjustments */
    .syllabus-accordion-header {
        padding: 14px;
    }
    
    .accordion-module-title {
        font-size: 14px;
    }
    
    .module-number {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
    
    .accordion-icon {
        width: 20px;
        height: 20px;
        font-size: 16px;
        margin-left: 12px;
    }
    
    .syllabus-accordion-item.active .syllabus-accordion-content {
        padding: 14px;
    }
    
    .syllabus-topic-item {
        padding: 8px 0 8px 28px;
        font-size: 12px;
    }
    
    .syllabus-topic-item .topic-icon {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    .search-btn{
        display: none;
    }
}