:root {
    --bg-dark: #080b11;
    --bg-navy: #0b1528;
    --bg-card: #101f38;
    --bg-card-hover: rgba(18, 32, 64, 0.8);
    --border-color: rgba(30, 58, 115, 0.4);
    --accent-yellow: #ffc800;
    --accent-yellow-hover: #e6b400;
    --accent-blue: #0088ff;
    --accent-purple: #8b5cf6;
    --accent-green: #10b981;
    --accent-orange: #f97316;
    --accent-red: #ef4444;
    --light-blue: #3882f6;
    --text-white: #ffffff;
    --text-muted: #94a3b8;
    --text-dark: #1e293b;
    --text-gray: #94a3b8;
    --text-darkgray: #546378;
    --text-lightgray: #b4c3d8;
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html{
    scroll-behavior:smooth
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.5;
    overflow-x: hidden;
}

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

.vop-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 1.25em;
}

.vop-container h3 {
    font-size: 2.25em;
    font-weight: 100;
}

.vop-container p {
    padding-top: 20px;
    padding-bottom: 20px;

}



a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

header {
    background-color: rgba(7, 13, 25, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

input, textarea, select {
    background: rgba(10, 20, 40, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 12px 16px 12px;
    font-size: 18px;
    color: var(--text-lightgray);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--text-lightgray) !important;
    caret-color: var(--text-lightgray);

    -webkit-box-shadow: 0 0 0 1000px #0a1222 inset !important;
    box-shadow: 0 0 0 1000px #0a1222 inset !important;

    border: 1px solid #142241;
    outline: none;
}


input::placeholder, option:disabled {
    color: var(--text-darkgray);
}

input:focus, select:focus {
    outline: none;
    border: 1px solid var(--text-darkgray);
}

input[type="checkbox"] {
    width: 20px !important;
    height: 20px;
    padding: 0;
    display: block !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-color: rgba(10, 20, 40, 0.75);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin: auto;
}


input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

select {
    appearance: none;
    color: var(--text-darkgray);
}

select option {
    background: #2e2e33;
}

table {
    margin-top: 8px;
    width:50%;
    border-spacing: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px
}

table th {
    background: rgba(10, 20, 40, 0.75);
    color: var(--text-gray);
    font-weight: normal;
    padding: 6px;
}

.tab-nl {
    display: none;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-title {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
    line-height: 1;
}

.logo-title span {
    color: var(--accent-yellow);
}

.logo-subtitle {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-top: 3px;
    display: block;
}

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

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #cbd5e1;
    padding: 6px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-yellow);
    border-radius: 2px;
}

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

.btn-cta-nav {
    background-color: var(--accent-yellow);
    color: #000;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 20px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 200, 0, 0.3);
}

.btn-cta-nav:hover {
    background-color: var(--accent-yellow-hover);
    transform: translateY(-1px);
}

.shade {
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,#020a13 0%,#020a13f2 30%,#020a1390 50%,transparent 78%);
}


.main {
    position: relative;
    overflow: hidden;
}

.main-container {
    max-width: 1300px;
    padding: 60px 24px 80px 24px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    background: url('/images/boy.webp') center right 24px/cover no-repeat;
    background-size: 57%;
}

.main-content {
    max-width: 520px;
}

h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

h1 span, h3 span {
    color: var(--accent-yellow);
}

.main-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    color: var(--accent-yellow);
    margin-top: 2px;
}

.feature-icon i {
    width: 24px;
}

.feature-text h2 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-gray);
}

.main-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 32px;
}

.center-buttons {
    justify-content: center;
}

.btn-primary {
    background-color: var(--accent-yellow);
    color: #000;
    padding: 14px 28px;
}

.btn-primary:hover {
    background-color: var(--accent-yellow-hover);
    box-shadow: 0 0 20px rgba(242, 97, 29, 0.5);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 24px;
    gap: 8px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

/* INFO BAR SECTION */
.info-bar-section {
    position: relative;
}

.info-bar-card {
    background: rgba(10, 20, 40, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-bar-center {
    background: rgba(10, 20, 40, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px 32px;
    font-size: 18px;
    text-align: center;
    color: var(--text-gray);
}

.info-bar-center p {
    padding-top: 4px;
    padding-bottom: 4px;
}

.info-bar-center a {
    color: var(--text-lightgray);
    text-decoration: none;
}

.info-bar-center a:hover {
    text-decoration: underline;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

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

.info-icon i {
    font-size: 32px;
}

.info-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.info-text p {
    font-size: 14px;
    color: var(--text-gray);
}

.info-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
    margin: 0 24px;
}


.courses-section {
    padding: 40px 0 40px 0;
}

.courses-section a {
    color: var(--text-lightgray);
    text-underline-position: under;
}

.courses-section a:hover {
    color: var(--text-white);
    text-decoration: underline;
}
.section-title-wrapper {
    text-align: center;
    margin-top: 48px;
    margin-bottom: 48px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #ffffff;
    text-transform: uppercase;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: var(--accent-blue);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

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

.course-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 130, 246, 0.5);
    background: var(--bg-card-hover);
}

.course-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.course1-bg {
    background: url('/images/pacman.webp') center no-repeat;
    background-size: 100%;
}

.course2-bg {
    background: url('/images/web.webp') center no-repeat;
    background-size: 100%;
}

.course3-bg {
    background: url('/images/apps.webp') center no-repeat;
    background-size: 100%;
}

.course4-bg {
    background: url('/images/server.webp') center no-repeat;
    background-size: 100%;
}

.course5-bg {
    background: url('/images/arduino.webp') center no-repeat;
    background-size: 100%;
}

.course-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.course-content h2 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.course-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.4;
}

.link-arrow {
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-yellow)!important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.link-arrow:hover {
    gap: 10px;
}

.mission-card {
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, rgba(29, 97, 242, 0.15), rgba(12, 22, 45, 0.6));
}

.mission-content {
    max-width: 480px;
}

.mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.mission-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--light-blue);
}

.mission-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.schedule-section {
    padding: 80px 0 40px 0;
}

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

.schedule-card {
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.schedule-card-items {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
}

.schedule-card-item-left {
    display: flex;
    flex-direction: column;
}

.schedule-card-item-left i {
    color:#4169d3;
    padding-top: 10px;
    font-size: 18px;
}

.schedule-card-item-left span {
    color: var(--accent-yellow);
}

.schedule-card-item-right {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.schedule-card-item-right p {
    padding-top: 10px;
    font-size: 14px;
    color: var(--text-gray);
}


#schedule-days {
    display: none;
    align-items: center;
    font-size: 20px;   
    flex: 1;
    color: var(--text-gray);
}

#schedule-days div {
    padding: 0px 20px 0px 20px;;
    cursor: pointer;
}

.schedule-day-active {
    background-color: var(--accent-yellow);
    color: #000;
    font-weight: 700;
    border-radius: 6px;
}

.projects-section {
    padding: 40px 0 40px 0;
}

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

.projects-card {
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
}

.projects-card img {
    border-radius: 12px;
}

.projects-card p {
    border-radius: 12px;
    padding-top: 8px;
}

.prices-section {
    padding: 40px 0 40px 0;
}

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

.prices-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.prices-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prices-content2, .prices-content3 {
    padding-top: 20px;
    background: rgba(10, 20, 40, 0.75);
    height: 200px;

}

.prices-content2 p, .prices-content3 p {
    padding: 8px;
    font-size: 18px;
    font-weight: 700;
}

.prices-content2 span, .prices-content3 span {
    color: var(--text-gray);
}

.contact-section {
    padding: 40px 0 40px 0;
}

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

.contact-card {
    background: rgba(10, 20, 40, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-img-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.contact-section a {
    color: var(--text-lightgray);
    text-underline-position: under;
}

.contact-section a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.contact-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    
}

.contact-content p {
    color: var(--text-gray);
    padding: 4px 20px 4px 20px;
}

.contact-content span {
    color: var(--text-white);
    display: inline-block;
    width: 100px;
}

#address-fix {
    display: none;
}

.contact1-bg {
    background: url('/images/map.webp') center no-repeat;
    filter: brightness(85%);
    background-size: 100%;
    transition: filter 0.6s ease;
    cursor: pointer;
}

.contact1-bg:hover {
    filter: brightness(100%);
}


.contactľ-bg {
    background: url('/images/building.webp') center no-repeat;
    background-size: 100%;
}

.registration-section {
    padding: 40px 0 40px 0;
}

.registration-section a:hover {
    text-decoration: underline;
}

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

.registration-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.registration-content {
    padding: 20px 0px 20px 0px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
}

.registration-content input {
    width: 100%;
}


.registration-content p {
    color: var(--text-gray);
    padding: 4px 20px 4px 20px;
}

.registration-select-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 150px;
}


.select-wrap {
    position: relative;
}

.select-wrap::before,
.select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;

    width: 16px;
    height: 2px;

    background: var(--text-darkgray);

    pointer-events: none;
}

.select-wrap::before {
    right: 24px;
    transform: translateY(-50%) rotate(45deg);
}

.select-wrap::after {
    right: 14px;
    transform: translateY(-50%) rotate(-45deg);
}


/* STATS SECTION */
.stats-section {
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
    background: rgba(5, 10, 20, 0.8);
}

.stats-section p {
    text-align: center;
    padding-top: 32px;
    color: var(--text-darkgray);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    font-size: 32px;
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-gray);
}

#vop {
    text-align: center;
}

.hide {
    display: none;
}


/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
    .main-container {
        background: none;
        display: inline;
    }

    .main-content {
        padding: 0px 24px 0px 24px;
        max-width: 1024px;
    }

    .info-item {
        justify-content: center;
    }


    .nav-menu {
        display: none;
    }

    .courses-grid, #schedule-grid, .projects-grid, .prices-grid, .contact-grid, .registration-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .courses-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
        gap: 24px;
    }

    .stats-grid {
        padding-left: 15%;
    }

    .info-bar-card {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .info-divider {
        display: none;
    }

    .projects-card {
        width: 60%;
        margin: 0 auto;
    }

    .schedule-card {
        padding: 5px;
    }

    .schedule-space {
        display: none;
    }

    table {
        width:100%;
    }
}

@media (max-width: 600px) {
    .main-buttons {
        flex-direction: column;
    }

    header .btn-cta-nav {
        padding: 10px 10px !important;
    }

    .btn {
        width: 100%;
    }

    .contact-content p {
        padding: 4px 0px 4px 0px;
    }

    #address-fix {
        display: inline-block;
    }

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

    .stats-grid {
        display: none;
    }

    .projects-card {
        width: 100%;
    }

    .prices-content3 {
        height: 280px;
    }

    .tab-dash {
        display: none;
    }

    .tab-nl {
        display: inline;
    }


}

