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


body {
    --header-font: 'Poppins', 'Courier New', Courier, monospace;
    --body-font: 'Montserrat', 'Jaldi', Arial, sans-serif;

    --Accent-Color: #30c662;
    --Normal-Color: #000000;
    --soft-color: rgb(197, 197, 197);

    --hero-img-offset: 450px;

    background-color: #eeeeee;
    flex-direction: column;
    display: flex;
    gap: 300px;
    margin: 0px;
    padding: 0px;

    height: fit-content;
}

/* For modern browsers */
body {
    overflow: auto;
    -ms-overflow-style: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(48, 198, 98, 0.7) transparent;
    transition: scrollbar-color 0.3s;
}

body::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}

body:hover::-webkit-scrollbar,
body:active::-webkit-scrollbar,
body:focus::-webkit-scrollbar {
    background: rgba(48, 198, 98, 0.7);
}

body::-webkit-scrollbar-thumb {
    background: rgba(48, 198, 98, 0.7);
    /* Accent color with transparency */
    border-radius: 4px;
}

body:not(:hover):not(:active):not(:focus)::-webkit-scrollbar-thumb {
    background: transparent;
}


.header {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    width: 100%;
    height: 150px;
    position: fixed;

    z-index: 1;
}

.nav-bar {
    background-color: var(--Accent-Color);
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: end;

    width: fit-content;
    height: fit-content;


    border-radius: 80px;
    box-shadow: 0px 13px 25.1px #30c662;
    margin-right: 60px;
    position: relative;
}

.nav-bar ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-left: 12px;
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    height: fit-content;
}

.nav-bar img {
    width: 30px;
    height: 30px;
    padding-right: 16px;
}

.nav-bar .nav-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 2px 0px;
}


.nav-bar .nav-links a {
    text-decoration: none;
    font-family: var(--header-font);
    font-size: 22px;
    color: inherit;
}

.nav-bar .nav-links li {
    padding: 0px;
    height: auto;
    color: var(--Normal-Color);
    align-items: center;
    justify-content: center;
    display: flex;

    border-radius: 25px;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.nav-bar .nav-links .nav-link {
    position: relative;
    z-index: 2;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;

}

.nav-bar #highlight-rect {
    position: absolute;
    background: white;
    border-radius: 25px;
    box-shadow: 0px 2px 20px rgba(255, 255, 255, 0.322);
    transition: left 0.3s cubic-bezier(.4, 0, .2, 1), width 0.3s cubic-bezier(.4, 0, .2, 1);
    z-index: 0;
    pointer-events: none;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    align-self: center;
    margin-left: var(--hero-img-offset);
    width: 960px;
}

.hero-section .company-name {
    font-family: var(--header-font);
    font-size: 60px;
    color: var(--Accent-Color);
    text-align: center;
    margin: 0px;
    padding: 0px;
    letter-spacing: 5px;
    font-weight: 500;
}

.hero-section .help-line,
.hero-section .rotating-item {
    font-family: var(--body-font);
    font-size: 55px;
    color: var(--Normal-Color);
    text-align: center;
    margin: 0px;
    padding: 0px;
    line-height: 1.2;
    font-weight: 300;
}


.hero-section .rotating-item {
    color: var(--Accent-Color);
    transition: margin 0.5s ease-in-out, opacity 0.5s ease-in-out, color 0.5s ease-in-out;
    z-index: 0;
    overflow: wrap;
    align-items: baseline;
    text-align: left;
    height: 200px;
}

.hero-section .rotating-text {
    display: flex;
    flex-direction: column;
    width: fit-content;
    height: 92px;
}

.hero-section .about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: left;
    margin: 0px 0px;
    gap: 20px;
    width: 100%;
    font-family: var(--body-font);
    font-size: 35px;
    color: var(--Normal-Color);
    text-align: justify;
    padding: 0px;
    margin-top: 300px;
}

.brands-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: fit-content;
    background-color: var(--soft-color);
    gap: 60px;
    padding: 30px 0px 50px 0px;
}

.brands-container .brand-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    gap: 80px;
}

.brands-container .brand-title {
    font-family: var(--header-font);
    font-size: 50px;
    letter-spacing: 15px;
    color: var(--Normal-Color);
    text-align: center;
    margin: 0px;
    padding: 0px;
}

.brands-container .row {
    display: flex;
    flex-direction: row;

    justify-content: center;

    width: 100%;
    height: fit-content;
    gap: 100px;
    overflow-x: hidden;
}

.brands-container .brand-logo {
    opacity: 1;
    max-height: 100px;
}

.team-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
    gap: 110px;
    border-radius: 10px;
    width: 90%;
    align-self: center;
    font-family: var(--body-font);
    color: var(--Normal-Color);
}

.team-display .ceo-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: fit-content;
    gap: 130px;
    transition: all 1s ease-in-out;
    margin-top: 50px;
}

.ceo-card .photo-container {
    display: flex;
    align-items: end;
    justify-content: center;
    width: 266px;
    height: 360px;
    aspect-ratio: 266 / 360;
    background-color: black;
    border-radius: 25px;
}

.ceo-card .photo-container img {
    width: 262px;
    margin-bottom: 2px;
    aspect-ratio: 1 / 1;
    border-radius: 25px;
}

.ceo-card .info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0px 0px;
    margin: 0px;
    gap: 30px;
}

.ceo-card .info-container .name {
    font-size: 40px;
    text-align: center;
    margin: 0px;
    padding: 0px;
    font-family: var(--header-font);
}

.ceo-card .info-container .passion-background-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 0px 40px;
}

.ceo-card .info-container .passion-background {
    font-size: 20px;
    letter-spacing: 2px;
    text-align: center;
    margin: 0px;
    padding: 0px;
    font-weight: 400;
}

.ceo-card .info-container .bottom-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    height: fit-content;
}

.ceo-card .info-container .bottom-container .experience-container,
.ceo-card .info-container .bottom-container .vision-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 45%;
    align-self: center;
    gap: 10px;
    padding: 10px 0px;
    height: fit-content;
}

.ceo-card .info-container .bottom-container .divider {
    width: 3px;
    height: 105px;
    background-color: var(--Accent-Color);
    border-radius: 10px;
}

.ceo-card .info-container .bottom-container .experience-container .experience,
.ceo-card .info-container .bottom-container .vision-container .vision {
    font-size: 20px;
    text-align: center;
    margin: 0px;
    padding: 0px;
    letter-spacing: 1px;
    font-weight: 400;
}

/* 
.team-display .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    gap: 90px;
    flex-wrap: wrap;
    opacity: 0;
    transition: all 1s ease-in-out;
    margin-top: 50px;
}

.team-display .employee-card {
    width: fit-content;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.team-display .employee-card .photo-container {
    display: flex;
    align-items: end;
    justify-content: center;
    width: 185px;
    height: 250px;
    aspect-ratio: 185 / 250;
    background-color: black;
    border-radius: 25px;
}

.team-display .employee-card .photo-container img {
    width: 181px;
    margin-bottom: 2px;
    aspect-ratio: 1 / 1;
    border-radius: 25px;
}

.team-display .employee-card .text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 0px;
    margin: 0px;
    gap: 20px;
}

.team-display .employee-card .text-container .name {
    font-size: 30px;
    text-align: center;
    margin: 0px;
    padding: 0px;
    font-family: var(--header-font);
}

.team-display .employee-card .info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 0px;
    margin: 0px;
    gap: 10px;
}

.team-display .employee-card .text-container .position,
.team-display .employee-card .text-container .description {
    font-size: 20px;
    text-align: center;
    margin: 0px;
    padding: 0px;
    font-weight: 400;
} */

footer {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: fit-content;
    padding: 30px;
    font-size: 30px;
    background-color: var(--soft-color);
}

footer .logo {
    aspect-ratio: 1 / 1;
    width: 120px;
    border-radius: 15px;
    margin: 15px;
}

footer .footer-text {
    font-family: var(--header-font);
    font-size: 30px;
    letter-spacing: 4px;
    color: var(--Normal-Color);
    text-align: center;
    margin: 0px;
    padding: 0px;
    width: fit-content;
}

footer .links {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 150px;
}

footer .links .social-link {
    width: 65px;
    aspect-ratio: 1 / 1;
}

@media (max-width: 1470px) {

    body {
        gap: 275px;
    }

    .hero-section {
        width: 800px;
    }

    .hero-section .company-name {
        font-size: 50px;
    }

    .hero-section .help-line,
    .hero-section .rotating-item {
        font-size: 45px;
    }

    .about-section .about-text {
        font-size: 30px;
    }

}

@media (max-width: 1250px) {

    body {
        gap: 250px;
    }

    .hero-section {
        margin: 0px auto;
        width: 700px;
    }

    .hero-section .about-text {
        width: 100%;
    }

    .hero-section .company-name {
        font-size: 45px;
    }

    .hero-section .help-line,
    .hero-section .rotating-item {
        font-size: 40px;
    }

    .hero-section .about-text {
        font-size: 28px;
        margin-top: 250px;
    }

    .brands-container .brand-display {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .brands-container .row {
        flex-direction: column;
        align-items: center;
        gap: 80px;
        width: fit-content;
    }

    .brands-container .brand-title {
        font-size: 40px;
    }

    .brands-container .brand-logo {
        height: 45px;
    }
}

@media (max-width: 1100px) {

    body {
        gap: 175px;
    }

    .hero-section {
        width: 610px;
    }

    .hero-section .company-name {
        font-size: 40px;
    }

    .hero-section .help-line,
    .hero-section .rotating-item {
        font-size: 35px;
    }

    .hero-section .about-text {
        font-size: 25px;
        margin-top: 250px;
    }

    .brands-container .row {
        gap: 30px;
    }

    .brands-container .brand-title {
        font-size: 35px;
    }

    .brands-container .brand-logo {
        height: 40px;
    }

    footer {
        padding: 25px;
    }

    footer .footer-text {
        font-size: 26px;
    }

    footer .logo {
        width: 100px;
    }

    footer .links {
        gap: 15px;
        width: 140px;
    }

    footer .links .social-link {
        width: 60px;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 950px) {

    body {
        gap: 150px;
    }

    .hero-section {
        width: 530px;
    }

    .hero-section .company-name {
        font-size: 35px;
    }

    .hero-section .help-line,
    .hero-section .rotating-item {
        font-size: 30px;
    }

    .hero-section .about-text {
        font-size: 22px;
        margin-top: 225px;
    }

    .brands-container .brand-title {
        font-size: 30px;
    }

    .brands-container .brand-logo {
        height: 35px;
    }

    footer {
        padding: 20px;
    }

    footer .footer-text {
        font-size: 22px;
    }

    footer .logo {
        width: 80px;
    }

    footer .links {
        gap: 10px;
        width: 130px;
    }

    footer .links .social-link {
        width: 50px;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 800px) {

    body {
        gap: 125px;
    }

    .hero-section {
        width: 440px;
    }

    .hero-section .company-name {
        font-size: 30px;
    }

    .hero-section .help-line,
    .hero-section .rotating-item {
        font-size: 25px;
    }

    .hero-section .about-text {
        font-size: 20px;
        margin-top: 200px;
    }

    .brands-container .brand-title {
        font-size: 25px;
    }

    .brands-container .brand-logo {
        height: 30px;
    }

    footer {
        padding: 15px;
    }

    footer .footer-text {
        font-size: 18px;
    }

    footer .logo {
        width: 60px;
    }

    footer .links {
        gap: 5px;
        width: 120px;
    }

    footer .links .social-link {
        width: 40px;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 650px) {

    body {
        gap: 100px;
    }

    .hero-section {
        width: 380px;
    }

    .hero-section .company-name {
        font-size: 25px;
    }

    .hero-section .help-line,
    .hero-section .rotating-item {
        font-size: 20px;
    }

    .hero-section .about-text {
        font-size: 18px;
        margin-top: 175px;
    }

    .brands-container .brand-title {
        font-size: 20px;
    }

    .brands-container .brand-logo {
        height: 25px;
    }

    footer {
        padding: 10px;
    }

    footer .footer-text {
        font-size: 16px;
    }
}