:root {
    --bg-color: #0f172a;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-color: #f59e0b;
    --accent-hover: #d97706;
    --nav-bg: #1b2333;
    --border-color: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.03);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    /* Grid and top-left glow background */
    background-image: 
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.15) 0%, transparent 800px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 60px 60px, 60px 60px;
    background-position: top right, center top, center top;
    background-repeat: no-repeat, repeat, repeat;
}

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

/* Announcement Bar */
.announcement-bar {
    background-color: #1e1e1e;
    color: var(--accent-color);
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--nav-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    padding: 10px 0; /* slightly smaller padding on scroll */
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-main {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-sub {
    font-size: 8px;
    color: #cbd5e1;
    letter-spacing: 2px;
    margin-top: 4px;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn line {
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-left: auto;
    align-items: center;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
    padding-top: 4px;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
}

.btn-large {
    padding: 12px 28px;
    font-size: 15px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
    max-width: 650px;
}

.hero-title .highlight {
    color: var(--accent-color);
    font-style: italic;
}

.hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 40px;
    text-align: justify;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.features-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.feature-card {
    background: linear-gradient(180deg, rgba(30, 39, 52, 0.5) 0%, rgba(19, 24, 33, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 12px;
    padding: 16px 20px;
    flex: 1;
    min-width: 140px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    border-top: 2px solid rgba(245, 158, 11, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 158, 11, 0.1);
    background: linear-gradient(180deg, rgba(35, 45, 60, 0.6) 0%, rgba(22, 28, 38, 0.9) 100%);
}

.feature-icon {
    margin-bottom: 4px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.feature-title {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 14px;
    margin: 0;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Program Section */
.program-section {
    background-color: #ffffff;
    padding: 50px 0;
    color: #111827;
}

.program-section .section-header {
    margin-bottom: 50px;
}

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

.program-section .section-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.program-section .section-desc {
    color: #6b7280;
    font-size: 16px;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.program-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

.phase-header {
    text-align: center;
    padding: 15px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.phase-1 {
    background-color: var(--accent-color);
    color: #ffffff;
}

.phase-2 {
    background-color: #1e293b;
    color: #ffffff;
}

.program-card-body {
    padding: 30px;
}

.card-title-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.duration-badge {
    background-color: #fffbeb;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
    padding: 8px 12px;
    border-radius: 8px;
}

.phase-2-badge {
    background-color: #f1f5f9;
    color: #1e293b;
}

.program-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.program-card-desc {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
}

.check-icon {
    flex-shrink: 0;
}

.phase-1-icon {
    color: var(--accent-color);
}

.phase-2-icon {
    color: #64748b;
}

.project-types-wrapper {
    text-align: center;
}

.project-types-title {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.project-tag {
    background-color: #ffffff;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.project-tag:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.1);
}

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

/* Why Primo Section */
.why-primo-section {
    padding: 50px 0;
    background-color: var(--bg-color);
}

.why-primo-section .section-header {
    margin-bottom: 60px;
}

.why-primo-section .section-title {
    color: #ffffff;
}

.why-primo-section .section-desc {
    color: #94a3b8;
}

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

.bento-card {
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);

    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.bento-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.bento-card-large {
    grid-column: span 2;
    background-color: #1e1e1e;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: right top;
}

.bento-card-medium, .bento-card-standard {
    grid-column: span 1;
}

.highlight-border {
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.bento-card-bg-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 240px;
    height: 240px;
    background-image: 
        radial-gradient(circle at center, transparent 60px, rgba(255, 255, 255, 0.05) 61px, rgba(255, 255, 255, 0.05) 62px, transparent 63px);
    border-left: 1px dashed rgba(255, 255, 255, 0.08);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 25px;
    align-self: flex-start;
}

.orange-badge {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.gray-badge {
    background-color: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bento-icon {
    margin-bottom: 20px;
}

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

.bento-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
    z-index: 1;
}

.bento-desc {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    z-index: 1;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-card-large, .bento-card-medium, .bento-card-standard {
        grid-column: span 1;
    }
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--accent-color);
    padding: 60px 0;
    margin: 80px 0;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    color: #ffffff;
}

.philosophy-subtitle {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.philosophy-quote {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.philosophy-highlight {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.philosophy-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .philosophy-section {
        clip-path: polygon(0 0, 100% 2%, 100% 98%, 0 100%);
        padding: 80px 0;
    }
    .philosophy-quote {
        font-size: 32px;
    }
}

/* Training Environment Section */
.training-env-section {
    position: relative;
    background-image: url('../Images/image.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
}

.training-env-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 1;
}

.training-env-section .container {
    position: relative;
    z-index: 2;
}

.training-env-content {
    max-width: 600px;
}

.training-env-subtitle {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.training-env-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 768px) {
    .training-env-section {
        padding: 60px 0;
    }
    
    .training-env-subtitle {
        font-size: 9px;
    }
    
    .training-env-title {
        font-size: 20px;
    }
}

/* Placements Section */
.placements-section {
    background-color: var(--bg-color);
}

.placements-section .section-header {
    margin-bottom: 60px;
}

.placements-section .section-title {
    color: #ffffff;
}

.placements-section .section-desc {
    color: #94a3b8;
}

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

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

.stat-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--accent-color);
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.author-role {
    color: #64748b;
    font-size: 12px;
}

.guarantee-wrapper {
    margin-top: 20px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.guarantee-badge:hover {
    background-color: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.5);
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background-color: transparent;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
}

.footer-banner {
    background-color: var(--accent-color);
    color: #ffffff;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Main Footer */
.main-footer {
    background-color: var(--bg-color);
    padding: 60px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-right: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
}

.footer-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-list a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.branch-list li, .contact-list li {
    color: #94a3b8;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.branch-list li svg, .contact-list li svg {
    color: var(--accent-color);
}

.footer-confused-box {
    margin-top: 25px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    background-color: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 6px;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.5;
}

.footer-confused-box .highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: #475569;
}

.slider-controls {
    display: none;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 40px 0 0 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    .footer-logo {
        max-width: 100px;
        margin-bottom: 15px;
    }
    .footer-desc {
        font-size: 11px;
    }
    .footer-title {
        font-size: 12px;
        margin-bottom: 15px;
    }
    .footer-list a, .branch-list li, .contact-list li {
        font-size: 11px;
    }
    .footer-list li {
        margin-bottom: 10px;
    }
    .footer-confused-box {
        font-size: 11px;
        padding: 12px;
        margin-top: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px 0;
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }

    .hero-title {
        font-size: 26px;
    }
    
    .tagline {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-actions {
        gap: 10px;
    }
    
    .hero-actions .btn-large {
        padding: 10px 14px;
        font-size: 13px;
        flex: 1;
        white-space: nowrap;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-card {
        min-width: 0;
        padding: 12px 10px;
    }
    
    .feature-title {
        font-size: 13px;
    }
    
    .feature-desc {
        font-size: 11px;
    }
    
    .section-subtitle {
        font-size: 10px;
    }
    
    .section-title,
    .program-section .section-title {
        font-size: 22px;
    }
    
    .section-desc {
        font-size: 13px;
    }
    
    .section-header {
        text-align: left !important;
    }
    
    .program-cards {
        grid-template-columns: 1fr;
    }
    
    .phase-header {
        padding: 10px;
        font-size: 12px;
    }
    
    .program-card-body {
        padding: 20px;
    }
    
    .duration-badge {
        font-size: 14px;
        padding: 6px 10px;
    }
    
    .program-card-title {
        font-size: 18px;
    }
    
    .program-card-desc {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .feature-list li {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .project-types-wrapper {
        text-align: left;
    }
    
    .project-types-title {
        font-size: 10px;
    }
    
    .project-tags {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .project-tag {
        font-size: 11px;
        padding: 6px 10px;
        text-align: center;
        white-space: nowrap;
    }
    
    .bento-card {
        padding: 20px;
    }
    
    .badge {
        font-size: 8px;
        padding: 4px 10px;
        margin-bottom: 15px;
    }
    
    .bento-icon {
        margin-bottom: 15px;
    }
    
    .bento-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .bento-desc {
        font-size: 12px;
    }
    
    .philosophy-section .container {
        text-align: left !important;
    }

    .philosophy-subtitle {
        font-size: 9px;
    }
    
    .philosophy-quote {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .philosophy-highlight {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .philosophy-desc {
        font-size: 11px;
        text-align: left;
    }
    
    .cta-section {
        padding: 40px 0;
        text-align: left !important;
    }
    
    .cta-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .cta-desc {
        font-size: 11px;
        margin-bottom: 25px;
        text-align: justify;
    }
    
    .cta-desc br {
        display: none;
    }
    
    .cta-btn {
        font-size: 14px;
        padding: 10px 25px;
    }
    
    .footer-banner {
        font-size: 11px;
        text-align: justify;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-action {
        display: block;
        margin-top: 20px;
        width: 100%;
    }
    
    .nav-action .btn {
        width: 100%;
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 76px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 76px);
        background-color: var(--nav-bg);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 30px;
        align-items: flex-start;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        margin: 0;
        gap: 30px;
    }
    
    .nav-links a {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-btn.active .line1 {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .mobile-menu-btn.active .line2 {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .line3 {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px 10px;
    }
    
    .stat-number {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 12px;
    }

    /* Testimonials Slider Mobile */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        margin-top: 0;
        margin-bottom: 0;
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-card {
        min-width: calc(100vw - 40px);
        scroll-snap-align: center;
        padding: 20px 15px;
    }
    
    .testimonial-text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .author-avatar {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .author-role {
        font-size: 11px;
    }
    
    .slider-controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 10px;
    }
    
    .slider-btn {
        background: transparent;
        border: none;
        color: var(--accent-color);
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-dots {
        display: flex;
        gap: 8px;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    
    .slider-dots .dot.active {
        background-color: var(--accent-color);
    }
}
