@import url('https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Exo", sans-serif;
}

body {
    background-color: #ffffff;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-header {
    background-color: #00ADEE;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-header:hover {
    background-color: #008cbf;
}

.btn-cyan {
    display: inline-block;
    background-color: #00ADEE;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(0, 173, 238, 0.4);
    text-align: center;
}

.btn-cyan:hover {
    background-color: #008cbf;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    border: 2px solid #2b4c9b;
    color: white;
    padding: 13px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
    text-align: center;
}

.btn-outline:hover {
    background-color: #2b4c9b;
}

.header-short {
    background: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    border: none;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 50px;
    width: 100%;
    position: relative;
    z-index: 1000;
}

.logo img {
    width: 140px;
    display: block;
}

.navbar ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.navbar ul>li>a {
    color: #b0b0b0;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
    padding: 10px 0;
}

.navbar ul>li>a:hover,
.navbar ul>li>a.active-link {
    color: white;
    font-weight: 600;
}

#menu {
    display: none;
}

.menu-icono {
    width: 30px;
    cursor: pointer;
    display: none;
    filter: invert(100%);
}

.menu label {
    display: none;
}

.dropdown-item {
    position: relative;
}

.dropdown-trigger i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.menu-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.tab-link {
    font-size: 14px;
    font-weight: 700;
    color: #b0b0b0;
    cursor: pointer;
    text-transform: uppercase;
    padding-bottom: 5px;
    position: relative;
}

.tab-link:hover,
.tab-link.active {
    color: #fff;
}

.tab-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
}

.menu-content {
    display: none;
}

.menu-content.active {
    display: block;
    animation: fadeIn 0.3s;
}

.menu-content ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.menu-content li {
    width: 100%;
}

.menu-content li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #cccccc;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid #2a2a2a;
    transition: color 0.2s, padding-left 0.2s;
    width: 100%;
}

.menu-content li a i {
    font-size: 10px;
    color: #666;
}

.menu-content li a:hover {
    color: #fff;
    padding-left: 5px;
}

.about-hero {
    background: linear-gradient(rgba(9, 23, 46, 0.9), rgba(9, 23, 46, 0.95)), url('img/background.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    padding: 150px 0 100px 0;
    overflow: hidden;
    min-height: 80vh;
}

.about-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.about-text-content {
    flex: 1;
    max-width: 600px;
}

.about-text-content h1 {
    font-size: 52px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.main-desc {
    color: #b0b0b0;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 45px;
}

.vm-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.vm-icon {
    font-size: 24px;
    color: #00ADEE;
    margin-top: 5px;
    min-width: 30px;
}

.vm-content h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.vm-content p {
    color: #cccccc;
    font-size: 15px;
    line-height: 1.6;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.about-image-content {
    flex: 1;
    position: relative;
}

.about-image-content img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.values-section {
    padding: 100px 0 80px 0;
    background-color: #ffffff;
}

.values-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.values-content {
    flex: 1;
    max-width: 600px;
}

.values-content h2 {
    font-size: 42px;
    color: #0b111e;
    margin-bottom: 20px;
    font-weight: 700;
}

.underline {
    border-bottom: 3px solid #333;
    display: inline-block;
    line-height: 1.1;
}

.values-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.val-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.val-item i {
    font-size: 28px;
    color: #00ADEE;
}

.val-item span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.values-image {
    flex: 1;
}

.values-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: block;
    object-fit: cover;
    height: 400px;
}

.experience-section {
    padding: 60px 0 120px 0;
    background-color: #ffffff;
}

.exp-title {
    text-align: center;
    font-size: 42px;
    color: #0b111e;
    font-weight: 700;
    margin-bottom: 60px;
}

.underline-blue {
    border-bottom: 4px solid #00ADEE;
    display: inline-block;
    line-height: 1.1;
}

.experience-cards {
    display: flex;
    gap: 30px;
}

.exp-card {
    flex: 1;
    background-color: #F8F9FA;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.exp-card:hover {
    transform: translateY(-5px);
}

.exp-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.exp-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.footer {
    background-color: #060b14;
    padding: 80px 0 30px 0;
    color: #ffffff;
    font-size: 14px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-left {
    flex: 1;
    max-width: 500px;
}

.footer-logo img {
    width: 140px;
    margin-bottom: 20px;
    display: block;
}

.footer-desc {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 15px;
}

.footer-nav {
    display: flex;
    gap: 30px;
    padding: 0;
}

.footer-nav li a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-nav li a:hover {
    color: #00ADEE;
}

.footer-right {
    flex: 1;
    max-width: 500px;
}

.footer-right h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-right p {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    color: #cccccc;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-info-list li i {
    color: #00ADEE;
    font-size: 16px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #1f2a40;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #7a8ba6;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: #ffffff;
    font-size: 18px;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    color: #00ADEE;
    transform: translateY(-2px);
}

.hidden,
.hidden-left,
.hidden-right {
    opacity: 0;
    transition: all 1s ease-out;
}

.hidden {
    transform: translateY(30px);
}

.hidden-left {
    transform: translateX(-30px);
}

.hidden-right {
    transform: translateX(30px);
}

.show {
    opacity: 1;
    transform: translate(0);
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 992px) {
    .menu {
        padding: 20px;
    }

    .menu-icono {
        display: block;
    }

    .menu label {
        display: block;
    }

    .btn-header {
        display: block;
        font-size: 12px;
        padding: 8px 15px;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0b111e;
        display: none;
        padding: 20px;
        text-align: center;
    }

    #menu:checked~.navbar {
        display: block;
    }

    .navbar ul {
        flex-direction: column;
        gap: 20px;
    }

    .mega-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        background-color: #151f32;
    }

    .dropdown-item:hover .mega-menu {
        display: block;
    }

    .about-hero {
        padding: 120px 0 60px 0;
        min-height: auto;
    }

    .about-grid {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }

    .about-text-content h1 {
        font-size: 36px;
    }

    .about-buttons {
        justify-content: flex-start;
    }

    .btn-cyan,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .values-grid {
        flex-direction: column;
        gap: 40px;
    }

    .values-content h2,
    .exp-title {
        font-size: 32px;
    }

    .values-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .experience-cards {
        flex-direction: column;
    }

    .exp-card {
        padding: 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        max-width: 100%;
    }

    .footer-logo img {
        margin: 0 auto 20px auto;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .subscribe-form {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .subscribe-form input,
    .subscribe-form button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}