* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #1a2b3e;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Ranglar */
.highlight {
    color: #00b4d8;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a2b3e;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #00b4d8, #2ecc71);
    margin: 10px auto 0;
    border-radius: 3px;
}

/* HEADER */
header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 180, 216, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0.8rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a2b3e;
}

.logo span {
    color: #00b4d8;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    flex-wrap: wrap;
}

nav ul li a {
    text-decoration: none;
    font-weight: 500;
    color: #1a2b3e;
    transition: 0.3s;
    font-size: 0.9rem;
}

nav ul li a:hover {
    color: #00b4d8;
}

.apply-btn {
    background: linear-gradient(135deg, #00b4d8, #2ecc71);
    color: white !important;
    padding: 6px 18px;
    border-radius: 30px;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: #1a2b3e;
    margin: 5px;
    transition: 0.3s;
}

/* HERO */
.hero {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, #e8f8f5 0%, #ffffff 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 280px;
}

.hero-image {
    flex: 1;
    min-width: 280px;
}

.hero-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a2b3e;
}

.hero-content p {
    color: #5a6e7f;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn.primary {
    background: linear-gradient(135deg, #00b4d8, #2ecc71);
    color: white;
    margin-right: 0.8rem;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 180, 216, 0.3);
}

.btn.secondary {
    background: transparent;
    color: #00b4d8;
    border: 2px solid #00b4d8;
}

.btn.secondary:hover {
    background: rgba(0, 180, 216, 0.1);
    transform: translateY(-2px);
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
}

/* PROMO */
.promo-small {
    padding: 20px 0;
}

.promo-small-card {
    background: linear-gradient(135deg, #e8f8f5, #d5f5e3);
    border-radius: 50px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.promo-small-icon {
    background: linear-gradient(135deg, #00b4d8, #2ecc71);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.promo-small-text h4 {
    color: #00b4d8;
    font-size: 0.9rem;
}

.promo-small-text p {
    color: #5a6e7f;
    font-size: 0.75rem;
}

.promo-small-btn {
    background: linear-gradient(135deg, #00b4d8, #2ecc71);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.promo-small-btn:hover {
    transform: translateX(5px);
}

/* DIRECTIONS */
.directions {
    padding: 3rem 0;
    background: #f8fcf9;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}

.direction-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid rgba(0, 180, 216, 0.2);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.direction-card:hover {
    transform: translateY(-5px);
    border-color: #2ecc71;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.15);
}

.direction-card i {
    font-size: 2.2rem;
    color: #00b4d8;
    margin-bottom: 0.8rem;
}

.direction-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a2b3e;
}

.dir-id {
    font-size: 0.75rem;
    color: #2ecc71;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.dir-duration {
    font-size: 0.8rem;
    color: #5a6e7f;
    margin-bottom: 0.5rem;
}

.more-btn {
    background: none;
    border: none;
    color: #00b4d8;
    margin-top: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
}

.more-btn:hover {
    color: #2ecc71;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.modal-content {
    background: white;
    margin: 15% auto;
    padding: 1.8rem;
    width: 90%;
    max-width: 450px;
    border-radius: 24px;
    position: relative;
    border-top: 4px solid #2ecc71;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #00b4d8;
    transition: 0.3s;
}

.close-modal:hover {
    color: #2ecc71;
    transform: rotate(90deg);
}

/* STARTUPS */
.startups {
    padding: 3rem 0;
    background: #e8f8f5;
}

.startups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
}

.startup-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.startup-card:hover {
    transform: translateY(-5px);
    border-color: #2ecc71;
}

.startup-icon {
    font-size: 2rem;
    color: #00b4d8;
    margin-bottom: 0.8rem;
    display: inline-block;
}

.startup-stats {
    display: flex;
    gap: 0.8rem;
    margin: 0.8rem 0;
    flex-wrap: wrap;
}

.startup-stats span {
    background: #e8f8f5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    color: #00b4d8;
}

.student-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.student-social a {
    color: #5a6e7f;
    font-size: 1rem;
    transition: 0.3s;
}

.student-social a:hover {
    color: #00b4d8;
}

/* Student Achievements */
.student-achievements {
    padding: 3rem 0;
    background: #ffffff;
}

.achievement-item {
    text-align: center;
    padding: 1.8rem;
    background: #f8fcf9;
    border-radius: 24px;
    border: 1px solid rgba(0, 180, 216, 0.1);
}

.achievement-item i {
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 0.8rem;
}

/* Testimonials */
.testimonials {
    padding: 3rem 0;
    background: #e8f8f5;
}

.testimonial-card {
    background: white;
    padding: 1.8rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-card i {
    font-size: 1.8rem;
    color: #00b4d8;
    margin-bottom: 0.8rem;
}

.testimonial-card p {
    color: #5a6e7f;
    font-style: italic;
}

.testimonial-card h4 {
    margin-top: 0.8rem;
    color: #1a2b3e;
}

/* GALLERY */
.gallery {
    padding: 3rem 0;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* TEACHERS */
.teachers {
    padding: 3rem 0;
    background: #f8fcf9;
}

.teachers-slider {
    padding: 10px 0 40px;
}

.teacher-card {
    background: white;
    border-radius: 24px;
    text-align: center;
    padding: 1.5rem;
    border: 1px solid rgba(0, 180, 216, 0.1);
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.teacher-card:hover {
    transform: translateY(-5px);
    border-color: #2ecc71;
}

.teacher-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.8rem;
    border: 3px solid #00b4d8;
}

.teacher-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: #1a2b3e;
}

.teacher-card p {
    color: #00b4d8;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* Swiper */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.swiper-pagination-bullet {
    background: #00b4d8;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #2ecc71;
    opacity: 1;
}

/* APPLICATION FORM */
.application {
    padding: 3rem 0;
    background: linear-gradient(135deg, #e8f8f5, #ffffff);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.85rem;
    color: #1a2b3e;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    background: #f8fcf9;
    border: 1px solid rgba(0, 180, 216, 0.3);
    border-radius: 12px;
    font-size: 0.9rem;
    color: #1a2b3e;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00b4d8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-group small {
    font-size: 0.7rem;
    color: #5a6e7f;
    display: block;
    margin-top: 0.3rem;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #00b4d8, #2ecc71);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 180, 216, 0.3);
}

.form-message {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
}

/* CONTACT */
.contact {
    padding: 3rem 0;
    background: #1a2b3e;
    color: white;
}

.contact-box {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: 0.3s;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-item i {
    font-size: 1.8rem;
    color: #2ecc71;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: #00b4d8;
}

.contact-item p {
    font-size: 0.85rem;
    color: #cbd5e1;
}

/* FOOTER */
footer {
    background: #0f1a24;
    color: white;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.75rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .container {
        padding: 0 25px;
    }
    .hero-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    .hero-image {
        order: -1;
    }

    nav ul {
        position: fixed;
        right: -100%;
        top: 60px;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        width: 70%;
        transition: 0.3s;
        padding: 2rem;
        gap: 1.2rem;
        box-shadow: -2px 0 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .burger {
        display: block;
    }
    .nav-active {
        right: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-box {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }
    .contact-item {
        flex-direction: column;
        gap: 0.3rem;
    }

    .promo-small-card {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero-content h2 {
        font-size: 1.4rem;
    }
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .direction-card {
        padding: 1rem;
    }
    .form-container {
        padding: 1.2rem;
    }
    .gallery-item img {
        height: 150px;
    }
}