* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 0;
}

.logo-mobile {
    display: none;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #00165C;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 20px 50px;
    top: 0;
    left: 0;
}

.logo-desktop {
    width: 178px;
    height: 38px;
}

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #CCD7FA21;
    padding: 10px 20px;
    border-radius: 8px;
    min-width: 250px;
}

.search-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.search-input {
    background: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-family: 'Figtree';
    font-size: 12px;
    width: 100%;
}

.search-input::placeholder {
    color: #FFFFFF80;
}

.login-link {
    font-family: 'Figtree';
    font-weight: 600;
    font-size: 20px;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.login-link:hover {
    opacity: 0.8;
}



.footer-section {
    background: #00165C;
    padding: 60px 50px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.logo-section {
    margin-bottom: 30px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

.column-title {
    color: #FFFFFF;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Satoshi';
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    margin-top: 0px;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-icon img {
    width: 24px;
    height: 24px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    color: #FFFFFF;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Satoshi';
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
}

.contact-item:hover {
    color: white;
}

.address-text {
    color: #FFFFFF;
    font-size: 20px;
    line-height: 1.7;
    font-family: 'Satoshi';
    font-weight: 400;
    font-style: normal;
    margin-top: 0px;
}

.footer-bottom {
    padding-top: 30px;
}

.copyright-text {
    color: #A9A9A9;
    font-family: 'Satoshi';
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
}

.contact-section {
    background-color: #F5F5F5;
    padding: 100px 20px;
    padding-top: 150px;
    text-align: center;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    margin-bottom: 10px;
    font-family: 'Figtree';
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    color: #000000;
}

.form-container p {
    margin-bottom: 40px;
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #000000;
    line-height: 1.5;
}

.start-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.input-row {
    display: flex;
    gap: 15px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-family: 'Figtree';
    font-weight: 500;
    font-size: 16px;
    color: #000000;
}

.start-form input {
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    padding: 15px;
    border-radius: 8px;
    color: #000000;
    outline: none;
    font-family: 'Figtree';
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.start-form input:focus {
    border-color: #0035DE;
}

input::placeholder {
    color: #9CA3AF;
}

.course-selection {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.course-selection>label {
    font-family: 'Figtree';
    font-weight: 500;
    font-size: 16px;
    color: #000000;
    text-align: left;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.course-btn {
    background: #FFFFFF;
    border: 1px solid #D1D5DB;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Figtree';
    font-weight: 400;
    font-size: 16px;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.course-btn:hover {
    border-color: #0035DE;
    background: #EEF2FF;
}

.course-btn.selected {
    background: #CCD7FA;
    border: 1px solid #0038E6;
    color: #000000;
}

.submit-btn {
    background: #0035DE;
    color: #FFFFFF;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s ease;
    font-family: 'Figtree';
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    width: 100%;
}

.submit-btn:hover {
    background: #0029B8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 53, 222, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    /* Header & Nav */
    .nav-list nav a {
        font-size: 14px;
    }

    .search-container {
        min-width: 250px;
    }

    .nav-right {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-bar {
        padding: 15px 20px;
        gap: 10px;
    }

    .login-link {
        font-size: 16px;
    }

    .search-input {
        font-size: 10px;
    }

    .logo-desktop {
        display: none;
    }

    .logo-mobile {
        display: block;
    }

    .footer-section {
        padding: 40px 30px 30px;
    }

    .footer-logo img {
        width: 192px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .column-title {
        font-size: 16px;
    }

    .address-text {
        font-size: 16px;
    }

    .social-links {
        gap: 15px;
    }

    .contact-item {
        font-size: 16px;
    }

    .copyright-text {
        font-size: 12px;
    }

    .input-row {
        display: flex;
        flex-direction: column;
        gap: 7px;
    }

    .form-container h2 {
        font-size: 32px;
    }

    .form-container p {
        font-size: 16px;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }
}