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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f0f4f8;
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 30%, #2e7d32 70%, #1b5e20 100%);
    padding: 0.8rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    background: #0d47a1;
    border-radius: 0;
    padding: 5px;
    object-fit: contain;
}

.logo-text {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.lang-switcher {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 30px;
}

.lang-switcher a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.lang-switcher a.active {
    background: #90be6d;
    color: #0d47a1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 0.8rem;
    border-radius: 5px;
    font-size: 0.95rem;
}

.nav-menu li a:hover {
    background: #90be6d;
    color: #0d47a1;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: white;
    transition: all 0.3s;
}

.mobile-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: linear-gradient(135deg, #0d47a1, #2e7d32);
    width: 100%;
    text-align: center;
    transition: 0.5s;
    padding: 2rem 0;
    gap: 1.5rem;
    z-index: 999;
}

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

.hero-section {
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 700%;
    height: 100%;
    transition: transform 0.5s ease;
}

.slide {
    width: 14.285%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 25%;
    left: 0;
    right: 0;
    color: white;
    background: transparent;
    padding: 1.5rem 2rem;
    text-align: center;
}

.slide-content h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

.btn-hero {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.btn-hero:hover {
    background: #1b5e20;
    transform: scale(1.05);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: white;
    border: none;
    padding: 0.8rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: #2e7d32;
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #2e7d32;
    width: 25px;
    border-radius: 10px;
}

.about-intro-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-intro-section h2 {
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.about-intro-section h3 {
    color: #2e7d32;
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.about-intro-section h4 {
    color: #0d47a1;
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.about-intro-section p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.courses-list, .why-choose-list {
    margin: 15px 0 15px 30px;
    padding: 0;
}

.courses-list li, .why-choose-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.tagline {
    font-style: italic;
    font-weight: bold;
    color: #2e7d32;
    text-align: center;
    margin: 20px 0;
}

.course-card-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.course-card-item {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    width: 100%;
    transition: transform 0.3s;
}

.course-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.course-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.course-card-content {
    padding: 25px;
    text-align: center;
}

.course-card-content h3 {
    color: #0d47a1;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.course-card-content p {
    color: #555;
    line-height: 1.6;
}

.apply-button {
    text-align: center;
    margin: 40px 0 20px;
}

.apply-button .btn-submit {
    display: inline-block;
    width: auto;
    padding: 12px 40px;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.apply-button .btn-submit:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.map-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

.map-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #2e7d32;
    margin: 15px auto 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

.page-banner {
    background: linear-gradient(135deg, #0d47a1, #2e7d32);
    color: white;
    padding: 100px 0 50px;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.application-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.application-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.form-section h3 {
    color: #0d47a1;
    margin-bottom: 20px;
    font-size: 1.4rem;
    padding-left: 10px;
    border-left: 4px solid #2e7d32;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46,125,50,0.1);
}

.submit-btn {
    background: #2e7d32;
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #1b5e20;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.about-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.about-intro {
    text-align: center;
    margin-bottom: 50px;
}

.about-intro h2 {
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-intro p {
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px;
}

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

.mission-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card-icon {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.mission-card h3 {
    color: #0d47a1;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
}

.management-section {
    margin-bottom: 60px;
}

.management-section h2 {
    text-align: center;
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
}

.management-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #2e7d32;
    margin: 15px auto 0;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.management-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    padding-bottom: 20px;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.management-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.management-card h3 {
    color: #0d47a1;
    font-size: 1.2rem;
    margin-top: 15px;
    margin-bottom: 5px;
}

.management-card .position {
    color: #2e7d32;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.location-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
}

.location-section h2 {
    text-align: center;
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 30px;
}

.location-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-info {
    text-align: center;
    padding: 20px;
}

.location-info i {
    font-size: 3rem;
    color: #2e7d32;
    margin-bottom: 15px;
}

.location-info p {
    font-size: 1rem;
    margin: 8px 0;
    color: #555;
}

.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card, .contact-form-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-info-card h3, .contact-form-card h3 {
    color: #0d47a1;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-left: 10px;
    border-left: 4px solid #2e7d32;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s;
}

.info-item:hover {
    background: #f0f4f8;
}

.info-item i {
    font-size: 1.5rem;
    color: #2e7d32;
    width: 40px;
}

.info-item h4 {
    color: #0d47a1;
    margin-bottom: 5px;
}

.info-item p {
    color: #666;
}

.courses-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.course-category {
    margin-bottom: 50px;
}

.course-category h2 {
    text-align: center;
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

.course-category h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #2e7d32;
    margin: 15px auto 0;
}

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

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    padding-bottom: 25px;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.course-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.course-card h3 {
    color: #0d47a1;
    font-size: 1.2rem;
    margin: 15px 0 10px;
    padding: 0 15px;
}

.course-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    padding: 0 15px;
}

.btn-enroll, .btn-course {
    display: inline-block;
    background: #2e7d32;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-enroll:hover, .btn-course:hover {
    background: #1b5e20;
}

.courses-preview {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    color: #0d47a1;
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

footer {
    background: linear-gradient(135deg, #0d47a1, #2e7d32);
    color: white;
    padding: 40px 5% 0;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    background: #0d47a1;
    border-radius: 0;
    padding: 5px;
    object-fit: contain;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 15px;
    color: #90be6d;
}

.footer-section p {
    margin: 8px 0;
    font-size: 0.9rem;
}

.footer-section a {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin: 8px 0;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #90be6d;
}

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

.social-links a {
    background: rgba(255,255,255,0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #90be6d;
    transform: translateY(-3px);
}

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

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .slide-content {
        bottom: 15%;
        padding: 1rem;
    }
    
    .slide-content h1 {
        font-size: 1.3rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
    }
    
    .btn-hero {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .slider-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .application-form {
        padding: 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .management-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
    }
    
    .lang-switcher {
        margin-right: 50px;
    }
    
    .about-intro-section h2 {
        font-size: 1.5rem;
    }
    
    .about-intro-section h3 {
        font-size: 1.2rem;
    }
    
    .courses-list, .why-choose-list {
        margin-left: 20px;
    }
    
    .course-card-image {
        height: 200px;
    }
    
    .course-card-content {
        padding: 20px;
    }
    
    .course-card-content h3 {
        font-size: 1.2rem;
    }
    
    .map-section h2 {
        font-size: 1.5rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .logo-text {
        font-size: 0.85rem;
    }
    
    .slide-content h1 {
        font-size: 1rem;
    }
    
    .slide-content p {
        font-size: 0.65rem;
    }
    
    .btn-hero {
        padding: 0.3rem 0.8rem;
        font-size: 0.65rem;
    }
    
    .lang-switcher a {
        font-size: 0.7rem;
        padding: 2px 6px;
    }
    
    .about-intro-section h2 {
        font-size: 1.3rem;
    }
    
    .course-card-image {
        height: 180px;
    }
    
    .course-card-content {
        padding: 15px;
    }
    
    .map-container iframe {
        height: 250px;
    }
}