body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: #031927;
}

ul, ol {
    list-style: none;
}

* {
    box-sizing: border-box;
    margin: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
}

.app {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-top: 99px;
}

.app-header {
    z-index: 1000;
    height: 99px;
    background: #031927;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 5px 5px 0px #00000080;
}

.app-header_container {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.app-header_content {
    position: relative;
    width: 90%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-header_logo-container a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-header_logo {
    height: 99px;
    width: 99px;
}

.app-header_links {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
}

.app-header_links-list {
    margin: 0;
    padding: 0;
    display: flex;
    height: 100%;
    align-items: center;
}

.app-header_links-list-item {
    margin: 0 20px;
    padding: 10px;
    transition: 0.4s ease;
}

li.app-header_links-list-item:active {
    text-shadow: 0px 0px 14px rgba(255, 0, 0, 1);
}

.app-header_links-list-item a {
    font-family: 'Chillax', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.app-header_links-list-item:hover {
    text-shadow: 0px 0px 14px rgba(0, 255, 255, 1);
    transition: 0.4s ease;
}

.active {
    text-shadow: 0px 0px 14px rgba(255, 0, 0, 1);
    border-bottom: 3px solid rgba(228, 63, 51, 1);
}

.app-header_button {
    position: relative;
    font-family: 'Chillax', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #ffffff;
    width: 246px;
    padding: 6px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    border: 3px solid transparent;
    background-image:
        linear-gradient(#031927, #031927), /* inner background */
        linear-gradient(to right, #0691B9, #E43F33); /* border gradient */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    z-index: 1;
}

.app-header_button:hover {
    border: none;
}

.app-header_button:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 25% center, rgba(6, 145, 185, 0.9), transparent 100%),
              radial-gradient(circle at 75% center, rgba(228, 63, 51, 0.9), transparent 100%);
  z-index: -1;
  pointer-events: none;
  border: none;
  border-radius: 12px;
}

.app-header_button_inner-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.circle {
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: transparent;
  top: 50%;
  z-index: -1;
}

.circle1 {
    left: -1px;
    box-shadow: 0 0 70px 80px rgba(228, 63, 51, 0.15);
}

.circle2 {
    right: -1px;
    box-shadow: 0 0 70px 80px rgba(6, 145, 185, 0.15);
}

.circle3 {
    left: 17.5%;
    box-shadow: 0 0 40px 16px rgba(228, 63, 51, 0.75);
}

.circle4 {
    right: 17.5%;
    box-shadow: 0 0 40px 16px rgba(6, 145, 185, 0.75);
}


.app-header_hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
}

#home {
    scroll-margin-top: 7rem;
}

#about {
    scroll-margin-top: 5rem;
}

#projects {
    scroll-margin-top: 6rem;
}

.home {
    flex: 1;
}

.home-hero-section {
    height: calc(100vh - 99px);
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
}

.home-hero_bg-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.home-hero_bg-container img {
    height: 100%;
    width: 100%;
}

.hero-text_container {
    z-index: 1;
    max-width: 773px;
    width: 100%;
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    align-items: end;
    width: 55%;
}

.hero-text_text {
    font-family: 'Chillax', sans-serif;
    font-weight: 700;
    font-size: 58px;
    color: lightblue;
    text-align: right;
    margin: 0 0 60px;
}

.hero-text_alt {
    color: #fff;
}

.hero-team_button {
    width: 260px;
    height: 60px;
    background: #E43F33;
    color: #fff;
    font-family: 'Chillax', sans-serif;
    font-size: 24px;
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-team_button span,
.project-card_button span,
.footer-contact_button span,
.footer-careers span,
.footer-connect_form-submit span{
    z-index: 2;
}

.hero-team_button:hover::before,
.project-card_button:hover::before,
.footer-contact_button:hover::before,
.footer-careers:hover::before,
.footer-connect_form-wrapper:hover::before{
    left: 0;
}

.hero-team_button::before,
.project-card_button::before,
.footer-contact_button::before
 {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #0690B7;
    transition: left 0.6s ease;
    border-radius: 50px;
 }
 
.footer-careers::before,
.footer-connect_form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #E43F33;
    transition: left 0.6s ease;
    border-radius: 50px;
}

.home-hero_darkener {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 57.5%;
    background: radial-gradient(56.49% 46.12% at 15.7% 50%, rgba(0, 81, 107, 0.8) 0%, rgba(0, 28, 46, 0.8) 100%);
    clip-path: url(#myClip);
}

.home-hero_divider {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    height: 102%;
    width: 100%;
}

.home-hero_divider svg {
    height: 100%;
    width: 100%;
}

.partner-section {
    height: 140px;
    width: 100%;
    position: relative;
    background: #01121C;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 10;
}

.partner-slider_container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    white-space: nowrap;
}

.partner-slider_container::after,
.partner-slider_container::before {
    content: "";
    z-index: 2;
    position: absolute;
    top: 0;
    width: 160px;
    height: 100%;
}
.partner-slider_container::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 0), #01121C);
    right: 0;
}
.partner-slider_container::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), #01121C);
}
.partner-list {
    display: inline-block;
    animation: slide-left 24s linear infinite;
}

.partner-section:hover .partner-list {
    animation-play-state: paused;
}

.partner-list_partner {
    width: 100px;
    height: 100px;
    object-fit: contain;
    user-select: none;
    margin: 0 2rem;
    filter: brightness(0.7) contrast(1.5) hue-rotate(160deg);
    opacity: 0.4;
}

@keyframes slide-left {
    0% {
        transform: translateX(0%)
    }
    100% {
        transform: translateX(-100%)
    }
}

.projects-section {
    width: 100%;
    position: relative;
}

.projects-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 6rem 6rem 12rem;
    gap: 3rem;
}

.projects-intro {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.projects-label {
    font-weight: 800;
    font-size: 16px;
    color: #F25D4F;
    text-transform: uppercase;
    font-family: 'Supreme', sans-serif;
}

.projects-headline {
    font-family: 'Chillax', sans-serif;
    font-weight: 700;
    font-size: 40px;
    text-transform: capitalize;
    color: #fff;
    max-width: 575px;
}

.projects-headline_highlight {
    color: #0691B9;
}

.projects-description {
    font-family: 'Supreme', sans-serif;
    font-size: 20px;
    color: #E3F3F8;
    max-width: 600px;
    margin: 2rem 0;
}

.projects-features_list {
    color: #fff;
    font-family: 'Supreme', sans-serif;
    font-size: 20px;
    padding: 0;
}

.projects-features_list li {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.checkmark {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 60%;
    gap: 3.5rem;
}

.project-card {
    max-width: 400px;
    background: #01121C;
    box-shadow: 0px 5px 10px 2px #0691B94D;
    border-radius: 10px;
    transition: 0.3s ease;
}

.project-card:hover {
    box-shadow: -2px -2px 25px #e43f33b3;
    transition: 0.3s ease;
    transform: translateY(-0.5rem);
}

.project-card:hover .project-card_image {
    filter: brightness(2.4);
    transition: 0.3s ease;
}

.project-card_image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    display: inline-block;
}

.project-card_image::before,
.project-card_image::after {
    content: '';
    position: absolute;
    background: #E43F33;
    top: 0;
    left: 0;
}

/* Top horizontal line */
.project-card_image::before {
    width: 87.5%;
    height: 6px;
    border-radius: 6px 0 0 0;
}

/* Left vertical line */
.project-card_image::after {
    width: 6px;
    height: 80%;
    border-radius: 10px 0 0 0;
}

.project-card_image .corner-bottom-right::before,
.project-card_image .corner-bottom-right::after {
    content: '';
    position: absolute;
    background: #0691B9;
    bottom: 0;
    right: 0;
}

/* Bottom horizontal line */
.project-card_image .corner-bottom-right::before {
    width: 87.5%;
    height: 6px;
    border-radius: 0 0 6px 0;
}

/* Right vertical line */
.project-card_image .corner-bottom-right::after {
    width: 6px;
    height: 80%;
    border-radius: 0 0 10px 0;
}

.project-card_image img {
    width: 100%;
    height: 100%;
    display:block;
}

.project-card_info {
    padding: 0 26px 26px 26px;
    text-align: center;
}

.project-card_title {
    font-family: 'Chillax', sans-serif;
    color: #fff;
    font-size: 32px;
    text-transform: capitalize;
    font-weight: 700;
    margin: 0.75rem 0;
}

.project-card_description {
    font-family: 'Supreme', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    color: #E3F3F8;
    margin: 0 0 1.5rem 0;
}

.project-card_media-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.project-card_icons {
    background: #031927;
    border-radius: 50px;
    width: 55%;
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.project-card_icons a,
.project-card_icons a svg {
    width: 24px;
    height: 24px;
}

.project-card_icons a:hover svg g,
.team-member_icon:hover svg g,
.footer-socials_icon:hover svg g {
    fill: #fff;
}

.project-card_button {
    background: #E43F33;
    border-radius: 50px;
    padding: 6px 18px;
    font-family: 'Chillax', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-section {
    position: relative;
    width: 100%;
    background: #00566F;
    display: flex;
    justify-content: center;
}

.wave-top {
    top: 0;
    transform: translateY(-50%);
}

.wave-bottom {
    bottom: 0;
    transform: translateY(50%);
}

.wave-top, .wave-bottom {
    width: 100%;
    overflow: hidden;
    position: absolute;
}

.wave-top svg, .wave-bottom svg {
    width: 100%;
    height: auto;
    display: block;
}

.wave-top img, .wave-bottom img {
    width: 100%;
}


.about-container {
    width: 80%;
    height: 63%;
    display: flex;
    flex-direction: column;
    padding: 8rem 0 14rem;
    align-items: center;
}

.about-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
}

.about-label {
    text-transform: uppercase;
    font-family: 'Supreme', sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #0691B9;
}

.about-headline {
    font-family: 'Chillax', sans-serif;
    font-weight: 700;
    font-size: 40px;
    text-transform: capitalize;
    color: #FFFFFF;
    text-align: center;
    width: 50%;
}

.about-headline_highlight {
    color: #E43F33;
}

.about-description {
    color: #E3F3F8;
    font-family: 'Supreme', sans-serif;
    font-weight: 400;
    font-size: 24px;
    width: 75%;
    text-align: center;
    margin: 1rem 0 2rem 0;
}

.about-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
}

.about-card {
    display: flex;
    flex-direction: column;
    width: 480px;
    text-align: center;
}

.about-card_title {
    color: #0691B9;
    font-family: 'Chillax', sans-serif;
    font-weight: 700;
    font-size: 24px;
    text-transform: capitalize;
}

.about-card_description {
    font-family: 'Supreme', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    margin: 0.4rem 0 1.5rem 0;
    text-transform: capitalize;
}

.about-card_image {
    margin: auto auto 0;
    border-radius: 10px;
}

.red-glow {
    box-shadow:
    -2px -2px 25px rgba(228,63,51, 0.7),
    2px 2px 25px rgba(228,63,51, 0.7);
}

.blue-glow {
    box-shadow:
    -2px -2px 20px rgba(6,145,185, 0.7),
    2px 2px 20px rgba(6,145,185, 0.7);
}

.about-card_image img {
    width: 100%;
    height: 100%;
}

.team-section {
    padding: 12rem 0 5rem;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.team-container {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.team-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 65%;
    margin-bottom: 5rem;
}

.team-label {
    color: #F25D4F;
    font-size: 16px;
    font-family: 'Supreme', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.team-headline {
    color: #fff;
    font-family: 'Chillax', sans-serif;
    font-weight: 700;
    font-size: 40px;
    text-transform: capitalize;
    width: 50%;
    text-align: center;
}

.team-headline_highlight {
    color: #0691B9;
}

.team-description {
    font-family: 'Supreme', sans-serif;
    font-weight: 400;
    font-size: 24px;
    text-transform: capitalize;
    color: #E3F3F8;
    text-align: center;
    width: 88%;
    margin-top: 1.5rem;
}

#team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    column-gap: 1rem;
    row-gap: 3rem;
}



.team-member {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #01121C;
    box-shadow:
    -3px -3px 10px rgba(228, 63, 51, 0.6),  /* top red glow */
    3px 3px 10px rgba(6, 145, 185, 0.6); /* bottom blue glow */
    border-radius: 10px;
    max-width: 310px;
    padding: 1.5rem;
    place-self: center;
    height: 100%;
}

.team-member_img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.team-member_name {
    font-family: 'Chillax', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.team-member_aka {
    font-family: 'Chillax', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #E43F33;
}

.team-member_title {
    font-size: 12px;
    font-family: 'Chillax', sans-serif;
    font-weight: 600;
    padding: 4px 12px;
    color: #fff;
    background: linear-gradient(84.42deg, #0691B9 0%, #031927 100%);
    border-radius: 10px;
    box-shadow: 2px 2px 8px #00566F,
    -2px -2px 8px #00566F;
    max-width: 75%;
    text-align: center;
    margin: 1rem 0;
    font-style: normal;
}

.team-member_bio {
    font-family: 'Supreme', sans-serif;
    font-weight: 400;
    font-size: 14px;
    text-transform: capitalize;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.team-custom_divider {
    margin: auto 0 1rem;
}

.team-member_info {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.team-member_time-at {
    color: #E43F33;
    font-family: 'Supreme', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.team-member_icon_container {
    background: #031927;
    border-radius: 50px;
    padding: 6px 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 6px;
}

.team-member_icon {
    width: 18px;
    height: 18px;
}

.team-member_icon svg {
    height: 18px;
    width: 18px;
}

.app-footer {
    width: 100%;
    position: relative;
}

.app-footer_container {
    display: flex;
    flex-direction: column;
}

.footer-main {
    background: #00566F;
    border-top: 4px solid #E43F33;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem 5rem;
    position: relative;
}

.footer-left, .footer-connect {
    width: 40%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.footer-connect {
    text-align: right;
}

.footer-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer-logo_img {
    height: 80px;
}

.footer-logo_text {
    font-family: 'Chillax', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #fff;
}

.footer-left_description {
    font-family: 'Supreme', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    margin: 0.5rem 0 2rem 0;
}

.footer-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-socials {
    background: #031927;
    border-radius: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 35%;
    padding: 0.4rem 0.8rem;
}

.footer-socials_icon {
    width: 28px;
    height: 28px;
}

.footer-socials_icon svg{
    width: 100%;
    height: 100%;
}

.footer-marked-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.footer-contact_button,
.footer-careers {
    color: #fff;
    border-radius: 50px;
    font-family: 'Chillax', sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.footer-contact_button {
    background: #E43F33;
}

.footer-careers {
    background: #0690B7;
}

.footer-custom_divider {
    margin: 0 3rem;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 106%;
    width: auto;
}

.footer-custom_divider svg {
    width: auto;
    height: 100%;
}

.footer-connect_title {
    font-family: 'Chillax', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 0.5rem;
}

.footer-connect_title-highlight {
    color: #E43F33;
}

.footer-connect_description {
    font-family: 'Supreme', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 2rem;
}

.footer-connect_form {
    background: #031927;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 5px 5px;
    border-radius: 50px;
    position: relative;
}

.footer-connect_form-icon {
    width: 24px;
    height: 24px;
    margin: 0 6px;
}

.footer-connect_form-icon svg {
    width: 100%;
    height: 100%;
}

.footer-connect_form-email {
    background: #092B41;
    font-family: 'Supreme', sans-serif;
    font-weight: 400;
    border: none;
    border-radius: 50px;
    color: #fff;
    outline: none;
    font-size: 20px;
    flex-grow: 1;
    padding: 7px 10px 7px 14px;
}

.footer-connect_form-email::placeholder {
    color: #fff;
}

.footer-connect_form-wrapper {
    position: absolute;
    overflow: hidden;
    border-radius: 50px;
    z-index: 1;
    right: 9px;
    background: #0690B7;
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
}

.footer-connect_form-submit {
    position: relative;
    color: #fff;
    border: none;
    background: transparent;
    z-index: 2;
    cursor: pointer;
    font-size: 14px;
    font-family: 'Chillax', sans-serif;
    font-weight: 500;
    flex-shrink: 0;
    padding: 0;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    margin: 0 6rem;
    z-index: 6;
    background: #031927;
}

.footer-bottom_left {
    color: #068BB2;
    font-family: 'Supreme', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.footer-bottom_right {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
}

.footer-bottom_right a {
    color: #E43F33;
    font-family: 'Supreme', sans-serif;
    font-weight: 400;
    font-size: 16px;
    transition: 0.4s ease;
}

.footer-bottom_right a:hover {
    text-shadow: 0px 0px 18px rgba(0, 255, 255, 1);
    transition: 0.4s ease;
}