:root {
    --primary: #1e2a4a;
    --primary-light: #2d3a5c;
    --accent: #1e5a8e;
    --accent-hover: #2d7bb9;
    --accent-light: rgba(30, 90, 142, 0.1);
    --accent-rgb: 30, 90, 142;
    --teal: #0d9488;
    --teal-light: rgba(13, 148, 136, 0.1);
    --gold: #f39c12;
    --gold-light: rgba(243, 156, 18, 0.1);
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #fafbfc;
    --white: #ffffff;
    --border: #e2e8f0;
    --success: #10b981;
    --gradient-hero: linear-gradient(135deg, #1e2a4a 0%, #2d3a5c 50%, #1e5a8e 100%);
    --gradient-accent: linear-gradient(135deg, #1e5a8e 0%, #2d7bb9 100%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

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

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo img {
    height: 80px;
    width: auto;
}
.logo span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 24px;
    margin-right: 16px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.header-phone:hover {
    color: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 14px rgba(30, 90, 142, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 90, 142, 0.5);
}

.btn-ghost {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
}

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

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

/* ==================== HERO ==================== */
.hero {
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;

     background:
        linear-gradient(135deg, #1e2a4a 0%, #2d3a5c 50%, #1e5a8e91 100%),
        url("../images/banner.webp");
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-decoration-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -200px;
    right: -200px;
}

.hero-decoration-2 {
    width: 400px;
    height: 400px;
    background: var(--teal);
    bottom: -100px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.1);
    animation: fadeInUp 0.6s ease;
}

.hero-eyebrow .dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    color: white;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero h1 .highlight {
    color: var(--gold);
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    max-width: 540px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-subtitle strong {
    color: white;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.trust-item svg {
    color: var(--success);
}

/* Hero Form Card */
.hero-form-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    animation: fadeInRight 0.8s ease 0.3s backwards;
}

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

.form-header h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.form-placeholder {
    background: var(--bg);
    border-radius: 10px;
    padding: 20px 20px;
    text-align: center;
    color: #999;
    margin-bottom: 16px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--text-light);
    font-size: 0.8rem;
}

.form-footer svg {
    color: var(--success);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ==================== SECTION HEADER ==================== */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--primary);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ==================== ACCREDITATIONS ==================== */
.accreditations {
    padding: 80px 0;
    background: white;
}

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

.accred-item {
    background: var(--bg);
    padding: 10px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.accred-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.accred-badge {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}
.accred-badge img {
    max-width: 80px;
    height: auto;
}

.accred-item p {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0;
}

.accred-item strong {
    color: var(--accent);
}

/* ==================== PROGRAMS & TABS ==================== */
.programs {
    padding: 80px 0;
    background: var(--bg);
}

.tab-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px 32px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tab-btn:hover {
    border-color: var(--accent);
    background: var(--accent-light);
}

.tab-btn.active {
    background: var(--gradient-accent);
    border-color: transparent;
    color: white;
}

.tab-label {
    font-weight: 700;
    font-size: 1rem;
}

.tab-desc {
    font-size: 0.75rem;
    opacity: 0.8;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.program-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.program-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
    border-color: var(--accent);
}

.program-card:hover .card-image img {
    transform: scale(1.05);
}

.card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-light), var(--bg));
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gradient-accent);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.program-card h3 {
    color: var(--accent);
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 700;
}

.program-card p {
    flex: 1;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px;
    background: var(--bg);
    border-radius: 12px;
    margin-bottom: 24px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-icon {
    font-size: 1.5rem;
}

.spec-info {
    flex: 1;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

.program-card .btn {
    align-self: flex-start;
}

/* ==================== WHY SMU ==================== */
.why-smu {
    padding: 80px 0;
    background: white;
}

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

.benefit-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    gap: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ==================== STATS ==================== */
.stats {
    padding: 80px 0;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* ==================== ABOUT ==================== */
.about {
    padding: 80px 0;
    background: var(--bg);
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== FAQS ==================== */
.faqs {
    padding: 80px 0;
    background: white;
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg);
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: white;
}

.faq-question .icon {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ==================== FINAL CTA ==================== */
.final-cta {
    padding: 100px 0;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: white;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.final-cta .phone-link {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
}

.final-cta .phone-link:hover {
    text-decoration: underline;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--primary);
    padding: 0px 0 30px;
    color: rgba(255,255,255,0.7);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 0px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {

    .logo img {
    height: 70px;
    width: auto;
    max-width: 260px;
}
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-form-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .accred-showcase {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {

    .logo img {
    height: 60px;
    width: auto;
    max-width: 220px;
}

    .header-phone {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }

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

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

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

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

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

    .tab-btn {
        flex-direction: row;
        width: 100%;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 666px) {
    .nav-menu{
        display: none;
    }

}

@media (max-width: 480px) {
    .logo img {
    height: 40px;
    width: auto;
    max-width: 200px;
}
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 10px 10px;
        font-size: 0.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .programs,
    .why-smu,
    .about,
    .faqs,
    .final-cta {
        padding: 40px 0;
    }

    
    .accred-showcase > :nth-child(5) {
    display: none;
}

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

    .header-inner {
        padding: 12px 16px;
    }

    .logo {
        font-size: 1.2rem;
    }
}

/* Hiring Partner Logos  */


        .learners-section {
            /* max-width: 1200px; */
            margin: 0 auto;
              padding: 80px 0;
        }

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

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            font-weight: 400;
        }

        .carousel-container {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
             max-width: 1200px;
             margin: 0 auto;
        }

        .carousel-track {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-item {
            min-width: calc(20% - 24px);
            flex-shrink: 0;
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            padding: 40px 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .carousel-item:hover {
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .company-logo {
            max-width: 100%;
            height: 60px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .carousel-item:hover .company-logo {
            filter: grayscale(0%);
            opacity: 1;
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: #4f46e5;
            width: 30px;
            border-radius: 5px;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: 2px solid #e5e7eb;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-nav:hover {
            background-color: #4f46e5;
            border-color: #4f46e5;
            color: white;
        }

        .carousel-nav.prev {
            left: -20px;
        }

        .carousel-nav.next {
            right: -20px;
        }

        .carousel-nav svg {
            width: 20px;
            height: 20px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .carousel-item {
                min-width: calc(33.333% - 20px);
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .carousel-item {
                min-width: calc(50% - 15px);
            }
            
            .section-title {
                font-size: 1.75rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .carousel-nav {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .carousel-item {
                min-width: 100%;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .learners-section {
                padding: 40px 10px;
            }
            
            .carousel-track {
                gap: 15px;
            }
        }