root {
    --font-family-inter: "Inter", sans-serif;
    --bg-copyright: #ebebeb;
    --bg-white: #ffffff;
    --bg-black: #303030;
    --color-white: #ffffff;
    --color-black-none: #4e4e4e;
    --color-green: #1a903b;
    --color-blue: #007dd1;
    --color-black: #000000;
    --color-gray-dark: #919191;
    --color-footer: #f6f6f6;
    --color-line: #d1d1d1;
    --color-text: #0a1a25;
}


.menu_logo_1 {
    display: none;
}
.menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}
.menu-style-one {
    box-shadow: 0 4px 4px 0 #0000000D;
}

/* About Page Styles */
/* About Header */
.project_header__title {
    padding-bottom: 50px;
}
.project__header_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.project_header_text .header_title {
    margin-bottom: 24px;
}
.project_header_text {
    flex: 1;
}
.project_header_desc {
    text-align: center;
    font-size: 14px;
    color: var(--color-black-none);
    line-height: 1.5;
    margin: 0;
    max-width: 830px;
}

/* About Banner */
.banner__image {
    margin: 0;
    padding: 0;
}
.banner__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Content Section */
.about__content {
    padding: 60px 0;
}
.about__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
    margin-bottom: 90px;
}
.about__item:last-child {
    margin-bottom: 0;
}

.about__item .about__brand {
    align-self: start;
}

.about__item:nth-child(odd) .item__description{
    max-width: 600px;
}


/* Item 2: Image left, Description right + gray background */
.about__item:nth-child(even) .item__image {
   border-radius: 0 200px 0 0;
}
.about__item:nth-child(even) {
    align-items: start;
}


/* Brand Styles */
.about__brand {
    padding-top: 20px;
}
.brand__title,
.brand__subtitle {
    font-size: 68px;
    font-weight: 700;
    color: var(--color-green);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

/* Image Styles */
.item__image {
    position: relative;
    border-radius: 200px 0 0 0;
    overflow: hidden;
}
.item__image img {
    width: 100%;
    display: block;
}
.image__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 70px;
    display: flex;
    align-items: center;
    justify-content: start;
}
.overlay__text {
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
}

.item__description p {
    font-size: 1rem;
    line-height: 1.7;
    color: #919191;
    margin: 0;
    text-align: justify;
}

/* Why About Us Section */

.why__section {
    padding: 90px 0;
    background-image: url(../images/bg-why-about-us.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.why__header {
    text-align: start;
    margin-bottom: 56px;
}

.why__title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-white);
    margin-bottom: 20px;
}

.why__desc {
    font-size: 1rem;
    color: var(--color-white);
    margin: 0;
    line-height: 1.6;
}

.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.why__item {
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 24px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    position: relative;
}

.why__item:nth-child(4n) {
    border-right: none;
}

.why__item:nth-last-child(-n+4) {
    border-bottom: none;
}

.why__item:hover {
    background: rgba(26, 144, 59, 0.02);
}

.why__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #F6F6F6;
    border-radius: 50%;
    transition: all 0.3s ease;
    padding: 10px;
}
.why__item_title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-white);
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.why__item_desc {
    font-size: 0.875rem;
    color: var(--color-white);
    margin: 0;
    line-height: 1.4;
}

/* Why About Us Responsive */
@media (max-width: 1199px) {
    .why__section {
        padding: 80px 0;
    }
    .why__header {
        margin-bottom: 44px;
    }
    .why__title {
        font-size: 1.75rem;
    }
    .why__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .why__item:nth-child(4n) {
        border-right: 1px solid var(--color-line);
    }
    .why__item:nth-child(3n) {
        border-right: none;
    }
    .why__item:nth-last-child(-n+4) {
        border-bottom: 1px solid var(--color-line);
    }
    .why__item:nth-last-child(-n+3) {
        border-bottom: none;
    }
}

@media (max-width: 991px) {
    .why__section {
        padding: 70px 0;
    }
    .why__header {
        margin-bottom: 36px;
    }
    .why__title {
        font-size: 1.6rem;
    }
    .why__desc {
        font-size: 0.95rem;
    }
    .why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why__item:nth-child(3n) {
        border-right: 1px solid var(--color-line);
    }
    .why__item:nth-child(2n) {
        border-right: none;
    }
    .why__item:nth-last-child(-n+3) {
        border-bottom: 1px solid var(--color-line);
    }
    .why__item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .why__section {
        padding: 60px 0;
    }
    .why__header {
        margin-bottom: 28px;
    }
    .why__title {
        font-size: 1.45rem;
    }
    .why__desc {
        font-size: 0.9rem;
    }
    .why__grid {
        grid-template-columns: 1fr;
    }
    .why__item {
        border-right: none;
    }
    .why__item + .why__item {
        border-top: 1px solid var(--color-line);
    }
    .why__item:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--color-line);
    }
    .why__item:nth-last-child(-n+1) {
        border-bottom: none;
    }
}

@media (max-width: 575px) {
    .why__section {
        padding: 54px 0;
    }
    .why__title {
        font-size: 1.35rem;
    }
    .why__item {
        padding: 24px 18px;
    }
    .why__item_title {
        font-size: 1rem;
    }
    .why__item_desc {
        font-size: 0.85rem;
    }
}

@media (max-width: 374px) {
    .why__section {
        padding: 50px 0;
    }
    .why__title {
        font-size: 1.25rem;
    }
    .why__desc {
        font-size: 0.85rem;
    }
}




/* Responsive */
@media (max-width: 1199px) {
    .about__item {
        gap: 40px;
    }
    .about__item:nth-child(1) {
        grid-template-columns: 240px 1fr;
    }
    .brand__title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .about__content {
        padding: 50px 0;
    }
    .about__item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }
    .about__item:nth-child(1) {
        grid-template-columns: 1fr;
    }
    .about__item:nth-child(1) .about__brand,
    .about__item:nth-child(1) .item__image,
    .about__item:nth-child(1) .item__description {
        grid-column: 1;
        grid-row: auto;
    }
    .about__brand {
        text-align: center;
    }
    .about__item:nth-child(2) {
        padding: 40px 20px;
        margin-left: -20px;
        margin-right: -20px;
    }
    .about__item:nth-child(2) .item__image,
    .about__item:nth-child(2) .item__description,
    .about__item:nth-child(3) .item__description,
    .about__item:nth-child(3) .item__image {
        grid-column: 1;
        padding-top: 0;
    }
    .item__image img {
        height: 350px;
    }
    .overlay__text {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .about__content {
        padding: 40px 0;
    }
    .about__item {
        margin-bottom: 40px;
    }
    .brand__title {
        font-size: 36px;
    }
    .brand__subtitle {
        font-size: 16px;
    }
    .item__description p {
        font-size: 13px;
    }
    .item__image img {
        height: 280px;
    }
    .item__image {
        border-radius: 0 0 50px 0;
    }
    .overlay__text {
        font-size: 24px;
    }


}

@media (max-width: 480px) {
    .about__content {
        padding: 30px 0;
    }
    .about__item {
        margin-bottom: 30px;
    }
    .brand__title {
        font-size: 28px;
    }
    .brand__subtitle {
        font-size: 14px;
    }
    .item__description p {
        font-size: 12px;
    }
    .item__image img {
        height: 220px;
    }
    .item__image {
        border-radius: 0 0 40px 0;
    }
    .overlay__text {
        font-size: 20px;
    }

}
