@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ubuntu";
}

a {
    text-decoration: none;
    color: inherit;
}

.navbar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    align-items: center;
    justify-content: space-between;
    background: #F5F5F5;
    padding: 18px 80px;
}

.navbar_brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0F1628;
    font-weight: bold;
    font-size: 20px;
}

.navbar_logo svg {
    width: 40px;
    height: 40px;
    margin-bottom: -5px;
    margin-right: 2px;
}

.navbar_links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #A6AEB8;
}

.navbar_links a:hover {
    color: #2A6CFC;
}

.navbar_action {
    border: 1px solid #2A6CFC;
    border-radius: 10px;
    color: #2A6CFC;
    padding: 8px 20px;
}

.navbar_action:hover {
    background: #2A6CFC;
    color: #ffffff;
}

.skip_link {
    position: absolute;
    left: -9999px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 120px 80px 60px;
    background: #EEF2F9;
    gap: 40px;
}

.hero_text {
    flex: 1;
    max-width: 560px;
}

.hero_badge {
    display: inline-block;
    background: #D9E5FE;
    color: #2A6CFC;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    margin-bottom: 20px;
}

.hero_title {
    font-size: 52px;
    font-weight: 700;
    color: #0F1628;
    line-height: 1.15;
    margin-bottom: 14px;
}

.hero_role {
    font-size: 22px;
    font-weight: 500;
    color: #2A6CFC;
    margin-bottom: 14px;
}

.hero_description {
    color: #555E6E;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 420px;
}

.hero_actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

#btn_view {
    background: #2A6CFC;
    color: #ffffff;
    border: 1px solid #2A6CFC;
}

#btn_view:hover {
    transform: scale(1.06);
}

#btn_contact {
    background: #ffffff;
    color: #2A6CFC;
    border: 1px solid #2A6CFC;
}

#btn_contact:hover {
    background: #2A6CFC;
    color: #ffffff;
}

.hero_socials {
    display: flex;
    gap: 12px;
}

.hero_image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero_image_container {
    background: #0D1B4B;
    border-radius: 20px;
    border: 3px solid #2A6CFC;
    box-shadow: 0 0 40px #1A3A8A;
    overflow: hidden;
    width: 460px;
    height: 345px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.Section_Divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #2A6CFC, #9B59D0);
    border-radius: 4px;
    margin: 10px auto 50px;
}

.About {
    padding: 90px 80px;
    background: #ffffff;
    text-align: center;
}

.About_head {
    font-size: 36px;
    font-weight: 700;
    color: #0F1628;
}



.About_Container {
    max-width: 780px;
    margin: 0 auto;
    background: #F3F6FB;
    border-radius: 16px;
    padding: 42px 48px;
    text-align: left;
}

.About_Paragraph {
    color: #3A4458;
    line-height: 1.75;
    font-size: 15px;
    margin-bottom: 28px;
}

.about-stats {
    display: flex;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid #DDE3EE;
}

.stat {
    flex: 1;
    text-align: center;
}

.stat_value {
    font-size: 32px;
    font-weight: 700;
}

.stat:nth-child(1) .stat_value { color: #2A6CFC; }
.stat:nth-child(3) .stat_value { color: #9B59D0; }
.stat:nth-child(5) .stat_value { color: #2ECC71; }

.stat_label {
    font-size: 13px;
    color: #6B7585;
    margin-top: 4px;
}

.stat_divider {
    width: 1px;
    height: 50px;
    background: #DDE3EE;
    flex-shrink: 0;
}

#skills {
    padding: 90px 80px;
    background: #F3F6FB;
    text-align: center;
}

.skills_title {
    font-size: 36px;
    font-weight: 700;
    color: #0F1628;
}

.skills_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.skill_card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 26px;
    border: 1px solid transparent;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.skill_card:hover {
    box-shadow: 0 4px 20px #D9E5FE;
}

.skill_card:nth-child(1) { border-color: #2A6CFC; }
.skill_card:nth-child(2) { border-color: #C084FC; }
.skill_card:nth-child(3) { border-color: #34D399; }
.skill_card:nth-child(4) { border-color: #60A5FA; }
.skill_card:nth-child(5) { border-color: #A78BFA; }
.skill_card:nth-child(6) { border-color: #4ADE80; }

.skill_card_icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.skill_card_icon_chart    { background: #EEF3FF; }
.skill_card_icon_target   { background: #F5EEFF; }
.skill_card_icon_category { background: #EDFDF5; }
.skill_card_icon_alert    { background: #EEF3FF; }
.skill_card_icon_report   { background: #F5EEFF; }
.skill_card_icon_security { background: #EDFDF5; }

.skill_card_title {
    font-size: 17px;
    font-weight: 600;
    color: #0F1628;
    margin-bottom: 16px;
}

.skills_tags_container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skills_tag {
    background: #F0F3F8;
    color: #3A4458;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
}

#projects {
    padding: 90px 80px;
    background: #ffffff;
    text-align: center;
}

.projects_title {
    font-size: 36px;
    font-weight: 700;
    color: #0F1628;
}

.projects_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.project_card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 16px #E2E8F0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.project_card_image {
    width: 100%;
    height: 200px;
    background: #E2E8F0;
    overflow: hidden;
    margin-bottom: 20px;
}

.project_card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project_card_title {
    font-size: 18px;
    font-weight: 600;
    color: #0F1628;
    margin: 0 20px 10px;
}

.project_card_text {
    font-size: 14px;
    color: #6B7585;
    line-height: 1.6;
    margin: 0 20px 16px;
    flex: 1;
}

.project_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 20px 4px;
}

.project_tag {
    display: inline-block;
    background: #EEF3FF;
    color: #2A6CFC;
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 13px;
}

.project_divider {
    height: 1px;
    background: #E8EDF4;
    margin: 16px 20px;
}

.project_links {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    font-size: 14px;
    color: #6B7585;
}

.project_links a:hover {
    color: #2A6CFC;
}

#offers {
    padding: 90px 80px;
    background: #F3F6FB;
    text-align: center;
}

.offers_title {
    font-size: 36px;
    font-weight: 700;
    color: #0F1628;
}

.offers_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.offer_card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 2px 12px #E2E8F0;
    transition: box-shadow 0.2s;
}

.offer_card:hover {
    box-shadow: 0 6px 24px #CDD5E0;
}

.offer_card_icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
}

.offer_card_icon_chart    { background: #EEF3FF; }
.offer_card_icon_target   { background: #F5EEFF; }
.offer_card_icon_category { background: #EDFDF5; }
.offer_card_icon_alert    { background: #EEF3FF; }
.offer_card_icon_report   { background: #F5EEFF; }
.offer_card_icon_security { background: #EDFDF5; }

.offer_card_title {
    font-size: 17px;
    font-weight: 600;
    color: #0F1628;
    margin-bottom: 12px;
}

.offer_card_text {
    font-size: 14px;
    color: #6B7585;
    line-height: 1.65;
}

#testimonials {
    padding: 90px 80px;
    background: #ffffff;
    text-align: center;
}

.testimonials_title {
    font-size: 36px;
    font-weight: 700;
    color: #0F1628;
}

.testimonials_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.testimonial_card {
    background: #F3F6FB;
    border-radius: 16px;
    padding: 28px 26px;
}

.testimonial_card_stars {
    font-size: 18px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial_card_text {
    font-size: 14px;
    color: #3A4458;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial_divider {
    height: 1px;
    background: #DDE3EE;
    margin-bottom: 16px;
}

.testimonial_author b {
    display: block;
    font-size: 15px;
    color: #0F1628;
    margin-bottom: 3px;
}

.testimonial_author p {
    font-size: 13px;
    color: #8A93A2;
}

#contact {
    padding: 90px 80px;
    background: #EEF2F9;
    text-align: center;
}

.contact_title {
    font-size: 36px;
    font-weight: 700;
    color: #0F1628;
}

.contact_layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    align-items: start;
}

.contact_info_title {
    font-size: 22px;
    font-weight: 700;
    color: #0F1628;
    margin-bottom: 14px;
}

.contact_info_text {
    font-size: 14px;
    color: #6B7585;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact_info_highlight {
    color: #2A6CFC;
}

.contact_detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact_detail_icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact_detail_icon_email    { background: #EEF3FF; }
.contact_detail_icon_location { background: #F5EEFF; }
.contact_detail_icon_phone    { background: #EDFDF5; }

.contact_detail_label {
    font-size: 12px;
    color: #A6AEB8;
    margin-bottom: 2px;
}

.contact_detail_value {
    font-size: 14px;
    font-weight: 500;
    color: #0F1628;
}

.contact_follow_label {
    font-size: 13px;
    color: #6B7585;
    margin-top: 32px;
    margin-bottom: 12px;
}

.contact_socials {
    display: flex;
    gap: 10px;
}

.contact_social_btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #DDE3EE;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: border-color 0.2s;
}

.contact_social_btn:hover {
    border-color: #2A6CFC;
}

.contact_form_card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 4px 24px #D9E5FE;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact_field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact_label {
    font-size: 13px;
    font-weight: 600;
    color: #0F1628;
}

.contact_input {
    border: 1px solid #DDE3EE;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #0F1628;
    font-family: "Ubuntu";
    outline: none;
    transition: border-color 0.2s;
}

.contact_input:focus {
    border-color: #2A6CFC;
}

.contact_input::placeholder {
    color: #A6AEB8;
}

.contact_textarea {
    height: 130px;
    resize: vertical;
}

.contact_submit {
    background: linear-gradient(90deg, #2A6CFC, #9B59D0);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Ubuntu";
    cursor: pointer;
    transition: opacity 0.2s;
}

.contact_submit:hover {
    opacity: 0.9;
}

.footer {
    background: #0F1628;
    text-align: center;
}

.footer_body {
    padding: 48px 80px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer_name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.footer_sub {
    font-size: 14px;
    color: #A6AEB8;
}

.footer_made {
    font-size: 14px;
    color: #A6AEB8;
    margin-top: 8px;
}

.footer_bottom {
    border-top: 1px solid #1E2A42;
    padding: 20px 80px;
}

.footer_bottom p {
    font-size: 13px;
    color: #6B7585;
    text-align: center;
}

.navbar_burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar_burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #0F1628;
    border-radius: 2px;
    transition: all 0.25s;
    transform-origin: center;
}

.navbar_burger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar_burger--open span:nth-child(2) {
    opacity: 0;
}

.navbar_burger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.navbar_mobile {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #F5F5F5;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 4px;
    z-index: 99;
    border-top: 1px solid #E8EDF4;
}

.navbar_mobile--open {
    display: flex;
}

.navbar_mobile_link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    color: #0F1628;
    border-radius: 10px;
    transition: background 0.2s;
}

.navbar_mobile_link:hover {
    background: #EEF2F9;
}

.navbar_mobile_contact {
    margin-top: 8px;
    border: 1px solid #2A6CFC;
    color: #2A6CFC;
    text-align: center;
    border-radius: 10px;
}

.navbar_mobile_contact:hover {
    background: #2A6CFC;
    color: #ffffff;
}

@media (max-width: 768px) {

    .navbar {
        padding: 16px 24px;
    }

    .navbar_links {
        display: none;
    }

    .navbar_action {
        display: none;
    }

    .navbar_burger {
        display: flex;
    }

    .hero {
        flex-direction: column;
        padding: 100px 24px 60px;
        min-height: 100vh;
        text-align: center;
        gap: 40px;
    }

    .hero_text {
        max-width: 100%;
    }

    .hero_title {
        font-size: 36px;
    }

    .hero_role {
        font-size: 18px;
    }

    .hero_description {
        max-width: 100%;
        font-size: 15px;
    }

    .hero_actions {
        justify-content: center;
    }

    .hero_socials {
        justify-content: center;
    }

    .hero_image {
        justify-content: center;
        width: 100%;
    }

    .hero_image_container {
        width: 100%;
        height: 260px;
    }

    .About {
        padding: 60px 24px;
    }

    .About_Container {
        padding: 28px 20px;
    }

    .stat_value {
        font-size: 24px;
    }

    #skills {
        padding: 60px 24px;
    }

    .skills_grid {
        grid-template-columns: 1fr;
    }

    #projects {
        padding: 60px 24px;
    }

    .projects_grid {
        grid-template-columns: 1fr;
    }

    #offers {
        padding: 60px 24px;
    }

    .offers_grid {
        grid-template-columns: 1fr;
    }

    #testimonials {
        padding: 60px 24px;
    }

    .testimonials_grid {
        grid-template-columns: 1fr;
    }

    #contact {
        padding: 60px 24px;
    }

    .contact_layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact_form_card {
        padding: 24px 20px;
    }

    .footer_body {
        padding: 40px 24px 20px;
    }

    .footer_bottom {
        padding: 16px 24px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    .navbar {
        padding: 18px 40px;
    }

    .hero {
        padding: 100px 40px 60px;
    }

    .hero_image_container {
        width: 340px;
        height: 255px;
    }

    .About {
        padding: 70px 40px;
    }

    #skills {
        padding: 70px 40px;
    }

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

    #projects {
        padding: 70px 40px;
    }

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

    #offers {
        padding: 70px 40px;
    }

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

    #testimonials {
        padding: 70px 40px;
    }

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

    #contact {
        padding: 70px 40px;
    }

    .footer_body {
        padding: 48px 40px 24px;
    }

    .footer_bottom {
        padding: 20px 40px;
    }
}
