/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Header styles */
.header {
    background-color: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo styles */
.logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-container {
    display: flex;
    align-items: center;
}

/* Navigation styles */
.main-nav {
    display: none;
}

.nav-link {
    color: #111827;
    text-decoration: none;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #EAB308;
}

/* Button styles */
.auth-buttons {
    display: none;
}

.sign-in-btn {
    background: none;
    border: none;
    color: #111827;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 15px;
}

.sign-in-btn:hover {
    color: #EAB308;
}

.get-started-btn {
    background-color: #EAB308;
    color: black;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    height: 40px;
    font-size: 15px;
}

.get-started-btn:hover {
    background-color: #CA8A04;
}

/* Mobile menu button */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #111827;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #111827;
    transition: transform 0.2s;
}

.menu-icon::before {
    top: -6px;
}

.menu-icon::after {
    bottom: -6px;
}

.mobile-menu-btn.active .menu-icon {
    background-color: transparent;
}

.mobile-menu-btn.active .menu-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .menu-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid #E5E7EB;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #111827;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #EAB308;
}

.get-started-btn.mobile {
    width: fit-content;
}

/* Media queries */
@media (min-width: 768px) {
    .main-nav {
        display: flex;
    }

    .auth-buttons {
        display: flex;
        gap: 1rem;
    }

    .mobile-menu-btn {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}
/* Global Styles */
:root {
    --primary-color: #EAB308;
    --primary-hover: #CA8A04;
    --text-dark: #111827;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-dark: #1F2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.highlight {
    color: var(--primary-color);
}

/* Button Styles */
.btn-primary {
    background-color: var(--text-dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
    height: 60px;
    font-size: 16px;
}
.btn-primary-contact {
    background-color: var(--text-dark);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
    width: 100%;
    text-align: center !important;
}

.btn-primary:hover {
    background-color: #374151;
}
.btn-secondary-watch {
    background-color: transparent;
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 2px solid #E5E7EB;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}
.btn-secondary-watch:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.btn-secondary {
    /* background-color: transparent;
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: 2px solid #E5E7EB;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s; */
    background-color: #eab308; /* Tailwind bg-yellow-500 */
  color: #000000;            /* text-black */
  padding: 1rem 2rem;        /* py-4 = 1rem, px-8 = 2rem */
  border-radius: 0.5rem;     /* rounded-lg */
  font-weight: 600;          /* font-semibold */
  transition: background-color 150ms ease-in-out; /* transition-colors */
}

.btn-secondary:hover {
    /* border-color: var(--primary-color);
    color: var(--primary-color); */
    background-color: #ca8a04;    
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom right, #F9FAFB, white);
    padding: 5rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-weight: 600;
    color: var(--text-dark);
}

.stat-label {
    color: var(--text-light);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.success-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--primary-color);
    color: black;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.success-number {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Courses Section */
.courses-section {
    padding: 5rem 0;
    background-color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 48rem;
    margin: 0 auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

.course-card {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
}

.course-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.course-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.course-content {
    padding: 1.5rem;
}

.course-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.course-header i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.course-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin: 1rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-item i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.about-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.75rem;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-banner {
    background: linear-gradient(to right, var(--text-dark), #374151);
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.cta-banner h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.info-label {
    font-weight: 500;
    color: var(--text-dark);
}

.info-value {
    color: var(--text-light);
}

.office-hours {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.office-hours h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hours-list {
    color: var(--text-light);
}

.hours-list div {
    margin-bottom: 0.25rem;
}

.contact-form {
    background-color: white;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E5E7EB;
    border-radius: 0.375rem;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(234, 179, 8, 0.1);
}

/* Media Queries */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .courses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-logo {
    height: 130px !important;
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 80px !important;
        margin-bottom: 0.75rem;
        float: left !important;
        display: block;
    }
    
    .footer-section {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        height: 80px !important;
        margin-bottom: 0.5rem;
        float: left !important;
        display: block;
    }
    
    .footer-section {
        align-items: flex-start;
    }
} 