@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'IBM Plex Sans', 'sans-serif';
    font-weight: 400;
    color: #000;
    font-size: 22px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.wrapper {
    background-image: linear-gradient(to bottom, #3e6169, #527e89, #679dab, #7dbdce, #93def2);
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

header {
    padding: 50px 0;
}

header .logo,
footer .blocks .logo {
    text-transform: uppercase;
    font-size: 29px;
    font-weight: 800px;
}

header nav {
    float: right;
    width: 50%;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    color: #000;
}

header nav ul li:not(.active):not(.btn) a:hover {
    border-bottom: 5px solid #93DEF2;
}

header nav ul li.btn a {
    background: #00b0e0;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 500ms ease;
}

header nav ul li.active::after {
    content: '';
    display: block;
    width: 40px;
    height: 5px;
    background: #00b0e0;
    border-radius: 10px;
    position: relative;
    top: 8px;
    left: 4px;
}

header nav ul li.btn a:hover {
    background: #007fa2;
}

.hero {
    padding-bottom: 100px;
    position: relative;
}

.hero--info {
    width: 600px;
    padding-top: 40px;
}

.hero--info h2 {
    color: #93DEF2;
    font-size: 90px;
    font-weight: 600;
}

.hero--info h1 {
    font-size: 50px;
    font-weight: 500;
}

.hero--info p {
    font-weight: 400;
    line-height: 140%;
    margin: 20px 0;
}

.hero--info .btn,
.hero-info .info .btn {
    background: #93DEF2;
    border-radius: 50px;
    padding: 30px 45px;
    border: 0;
    transition: all 500ms ease;
    font-size: 22px;
    font-weight: 600;
}

.hero--info .btn:hover,
.hero-info .info .btn:hover {
    cursor: pointer;
    transform: scale(1.15);
}

.hero img {
    position: absolute;
    top: -10px;
    right: -50px;
    width: 800px;
    height: 800px;
}


/* info.html */

.hero-info {
    position: relative;
}

.hero-info img {
    position: absolute;
    right: -400px;
    top: 0;
    width: 1000px;
    height: 600px;
}

.hero-info .info {
    width: 500px;
    padding: 200px 0;
}

.hero-info .info h1 {
    margin-bottom: 15px;
    font-size: 30px;
}

.hero-info .info .btn {
    margin-top: 20px;
}


/* footer */

footer {
    background: #000;
    padding: 50px 0;
    color: white;
}

footer .blocks {
    display: flex;
    justify-content: space-between;
}

footer .blocks p {
    width: 300px;
    margin: 15px 0;
}

footer .blocks h4 {
    font-weight: 600;
    font-size: 25px;
}

footer .blocks ul {
    list-style: none;
}

footer .blocks ul li {
    margin-top: 10px;
    opacity: 0.8;
    font-size: 15px;
}

footer .blocks ul li a {
    color: white;
}

footer hr {
    margin: 30px 0;
    border: 0;
    height: 0.6px;
    background: #ccc;
}

footer > p {
    text-align: center;
    font-size: 14px;
}

/* uco.html */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}
.modal-overlay.active {
    display: flex;
}
.modal {
    background-image: linear-gradient(to bottom, #3e6169, #527e89, #679dab, #7dbdce, #93def2);
    position: absolute;
    width: 100%;
    overflow-x: hidden;
    padding: 20px;
}
@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #FFD700;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
}
.modal h2 {
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #FFD700;
    font-weight: 600;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid #FFD700;
    border-radius: 8px;
    color: #fff;
    font-family: &#39;Montserrat&#39;, sans-serif;
}
.form-group textarea {
    min-height: 80px;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.btn-submit {
    width: 100%;
    padding: 15px;
    background: #FFD700;
    color: #0a0f1e;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-submit:hover {
    background: #fff;
    box-shadow: 0 0 20px gold;
}
.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1a1f2e;
    border: 2px solid #FFD700;
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    z-index: 2000;
    display: none;
    animation: slideIn 0.3s ease;
}
.notification.show {
    display: block;
}
.notification.success { border-color: #00ff00; }
.notification.error { border-color: #ff0000; }
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
footer {
    text-align: center;
    padding: 30px;
    background: rgba(0,0,0,0.3);
    border-top: 1px solid #FFD700;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .application-container { flex-direction: column; }
    .form-row { grid-template-columns: 1fr; }
}