/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #facc15; /* logo yellow */
    --primary-dark: #111827; /* near-black */
    --secondary-color: #f97316; /* warm accent */
    --text-color: #111827;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Ensure all sections are properly aligned */
section {
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Navigation */
.navbar {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.nav-brand a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-brand img {
    height: 55px;
    width: auto;
    max-width: 250px;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .nav-brand img {
        height: 45px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .nav-brand img {
        height: 40px;
        max-width: 150px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

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

.nav-menu a {
    position: relative;
    transition: color 0.3s;
}

.nav-menu .btn {
    margin-left: 1rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
}

.nav-menu .btn:hover {
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-demo {
    background-color: #2563eb;
    color: white;
}

.btn-demo:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Book a Demo Section */
.book-demo {
    background-color: #0b1120;
    color: white;
    padding: 3rem 0 4rem;
    box-shadow: var(--shadow);
}

.book-demo-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.book-demo-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.book-demo-text p {
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.book-demo-badge {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.1);
    color: #6ee7b7;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.book-demo-points {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem 1.5rem;
}

.book-demo-points li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.95rem;
    color: #d1d5db;
}

.book-demo-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #6ee7b7;
}

.book-demo-form-wrapper {
    background-color: white;
    border-radius: 1rem;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: var(--shadow-lg);
    color: var(--text-color);
    animation: scaleIn 0.6s ease-out;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.book-demo-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    z-index: 0;
    pointer-events: none;
}

.book-demo-form .form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.book-demo-form .form-group input,
.book-demo-form .form-group select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-family: inherit;
    box-sizing: border-box;
    background-color: white;
    color: var(--text-color);
    position: relative;
    z-index: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.book-demo-form .form-group input:focus,
.book-demo-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
    background-color: white;
    z-index: 2;
}

.book-demo-form .form-group {
    position: relative;
    z-index: 1;
}

.book-demo-form {
    position: relative;
    z-index: 1;
}

.professional-fields {
    margin-top: 0.5rem;
}

.professional-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-full-width {
    width: 100%;
    margin-top: 0.5rem;
}

.form-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.hidden {
    display: none;
}

/* Pricing */
.course-price {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-light);
}

.course-price strong {
    font-weight: 600;
    color: var(--text-color);
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 0.4rem;
}

.new-price {
    color: var(--secondary-color);
    font-weight: 700;
}


/* Owner Profile Section */
.owner-profile {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.owner-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.owner-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.owner-details h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.owner-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.owner-company {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.owner-education,
.owner-bio,
.owner-experience,
.owner-skills {
    margin-bottom: 2rem;
}

.owner-education h4,
.owner-bio h4,
.owner-skills h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.owner-bio p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.experience-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--primary-color);
    transition: height 0.3s ease;
}

.experience-item:hover::before {
    height: 100%;
}

.experience-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.experience-item h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.company {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.duration,
.location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.skills {
    color: var(--text-light);
    font-size: 0.9rem;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skills-tags span {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

.testimonial {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.quote {
    font-style: italic;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Student Login Section */
.student-login-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.login-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

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

.login-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    margin-top: -2rem;
}

.login-box {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.login-form {
    margin-bottom: 2rem;
}

.login-form .form-group {
    text-align: left;
}

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

.login-links {
    margin-top: 1rem;
    text-align: center;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.external-link-section {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.external-link-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.btn-external-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-external-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Courses Preview */
.courses-preview {
    padding: 5rem 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.course-card {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.course-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    animation: float 2s ease-in-out infinite;
}

.course-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.course-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.course-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-details p {
    color: var(--text-light);
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
    background-color: white;
    color: var(--text-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.15);
    background-color: white;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* About Content */
.about-content {
    padding: 5rem 0;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 1rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    animation: bounce 0.6s ease;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light);
}

.approach-list {
    list-style: none;
    padding-left: 0;
}

.approach-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

/* Courses Listing */
.courses-listing {
    padding: 5rem 0;
}

.courses-grid-large {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.course-card-large {
    background-color: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.course-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.course-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.course-header > * {
    position: relative;
    z-index: 1;
}

.course-icon-large {
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.course-header h2 {
    font-size: 2rem;
}

.course-body {
    padding: 2rem;
}

.course-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.course-highlights h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.course-highlights ul {
    list-style: none;
    padding-left: 0;
}

.course-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.course-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.course-cta {
    margin-top: 2rem;
}

.course-benefits {
    margin-top: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
}

.benefit-icon {
    font-size: 2rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.3) rotate(360deg);
    transition: transform 0.6s ease;
}

.benefit-item h3 {
    font-size: 1rem;
    color: var(--text-color);
}

/* Course Details */
.course-details {
    padding: 5rem 0;
}

.course-overview {
    margin-bottom: 4rem;
}

.course-intro {
    margin-bottom: 2rem;
}

.course-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.course-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.course-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.2), transparent);
    transition: left 0.5s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background-color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-weight: 600;
}

.curriculum-section {
    margin-bottom: 4rem;
}

.curriculum-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.curriculum-module {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.curriculum-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250, 204, 21, 0.1), transparent);
    transition: left 0.5s;
}

.curriculum-module:hover::before {
    left: 100%;
}

.curriculum-module:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.curriculum-module h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.curriculum-module ul {
    list-style: none;
    padding-left: 0;
}

.curriculum-module li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.curriculum-module li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.course-features {
    margin-bottom: 4rem;
}

.course-features h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-box {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    animation: pulse 1s ease-in-out;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-box p {
    color: var(--text-light);
}

.hiring-partners {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.hiring-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-top: -2rem;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.logo-scroller {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.logo-row {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    background-color: white;
    box-shadow: var(--shadow);
    padding: 0.75rem 0;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: scroll-right-1 40s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-row:nth-child(2) .logo-track {
    animation-duration: 36s;
}

.logo-row:nth-child(3) .logo-track {
    animation-duration: 32s;
}

.logo-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0.1);
    opacity: 0.9;
    transition: transform 0.3s, opacity 0.3s, filter 0.3s;
}

.logo-track img:hover {
    transform: scale(1.05);
    opacity: 1;
    filter: grayscale(0);
}

@keyframes scroll-right-1 {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.course-cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.course-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.course-cta-section h2,
.course-cta-section p,
.course-cta-section .cta-buttons {
    position: relative;
    z-index: 1;
}

.course-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.course-cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Content */
.legal-content {
    padding: 5rem 0;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-section h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.legal-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-logo {
    height: 55px;
    width: auto;
    max-width: 250px;
    margin-bottom: 0.75rem;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .footer-logo {
        height: 45px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        height: 40px;
        max-width: 150px;
    }
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding-left: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    margin-top: -2rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Stories Carousel */
.stories-carousel-wrapper {
    position: relative;
    padding: 0 3rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .stories-carousel-wrapper {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .stories-carousel-wrapper {
        padding: 0 0.5rem;
    }
}

.stories-carousel {
    overflow: hidden;
    position: relative;
}

.stories-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
    align-items: stretch;
}

@media (max-width: 768px) {
    .stories-track {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stories-track {
        gap: 1rem;
    }
}

.stories-track .story-card {
    min-width: calc(33.333% - 1.33rem);
    flex-shrink: 0;
    opacity: 1;
    transform: translateY(0);
    width: calc(33.333% - 1.33rem);
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 1rem;
}

.carousel-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    pointer-events: all;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: var(--text-light);
    transform: scale(1.2);
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.story-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.story-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.story-role {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.story-content {
    position: relative;
}

.story-quote {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.story-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.story-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Image-based story cards for feedback */
.story-card-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.story-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.story-feedback-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 0.5rem;
    display: block;
}

@media (max-width: 768px) {
    .story-card-image {
        min-height: 350px;
    }
    
    .story-feedback-image {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .story-card-image {
        min-height: 300px;
    }
    
    .story-feedback-image {
        max-height: 350px;
    }
}

.metric-item {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Motion Graphics and Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slide in from left */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slide in from right */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Apply animations to elements */
.course-card,
.feature-item,
.curriculum-module,
.feature-box {
    animation: fadeInUp 0.6s ease-out forwards;
}

.course-card:hover {
    animation: float 2s ease-in-out infinite;
}

/* Animated gradient background */
.animated-gradient {
    background: linear-gradient(-45deg, var(--primary-color), var(--secondary-color), var(--primary-color), var(--secondary-color));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hover effects with motion */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Loading spinner animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Additional motion graphics for page load */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animate page content on load */
body {
    animation: pageLoad 0.6s ease-out;
}

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.3s ease;
}

/* Hover effects for links */
a:hover {
    transform: translateY(-2px);
}

/* Animated underline for links */
a:not(.btn):hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Bounce animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu .btn {
        margin: 0.5rem 0;
        margin-left: 0 !important;
        width: auto;
        display: inline-block;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .course-header {
        flex-direction: column;
        text-align: center;
    }

    .course-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .book-demo {
        padding-top: 2.5rem;
    }

    .logo-track {
        gap: 1.25rem;
    }

    .logo-track img {
        height: 32px;
    }

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

    .story-card {
        padding: 1.5rem;
    }

    .stories-carousel-wrapper {
        padding: 0 1rem;
    }

    .carousel-controls {
        padding: 0 0.5rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    /* On tablets, show 2 cards */
    .stories-track .story-card {
        min-width: calc(50% - 1rem);
        width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    /* On mobile, show 1 card */
    .stories-track .story-card {
        min-width: 100%;
        width: 100%;
    }
}


@media (max-width: 480px) {
    .hero {
        padding: 4rem 0;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .course-stats {
        grid-template-columns: 1fr;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }

    .book-demo-form-wrapper {
        padding: 1.5rem 1.25rem 1.25rem;
    }
}

