@import url(./assets/Font/Anglecia-Pro-Display.otf);

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
}

:root {
    --color-primary: #77cc46; /* #77cc46 (RGB: 119, 204, 70) */
    --color-secondary: #47992c; /* #47992c (RGB: 71, 153, 44) */
}

html {
    scroll-behavior: smooth;
}

.container {
    margin: 0 auto;
    max-width: 1144px;
}

body {
    background: #f9f6f1;
}

/* Header start */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: all 0.3s ease-in-out;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

header nav {
    position: relative;
    display: flex;
    align-items: center;
}

header nav .left-bar a {
    display: inline-block;
    width: 100px;
    height: 100px;
}

header nav .left-bar a img {
    width: 100%;
    height: 100%;
}

header nav .right-bar {
    width: 81%;
}

nav .right-bar .nav-list {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.custom-select {
    position: relative;
    cursor: pointer;
}

.custom-select .selected {
    background-color: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

#arrow {
    transition: transform 0.3s ease;
}

.custom-select.open #arrow {
    transform: rotate(180deg);
}

.custom-select .selected p {
    margin-right: 10px;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
    font-size: 16px;
}


.options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 43px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 5px;
    display: none;
    margin-top: 5px;
    list-style: none;
    padding: 0;
    z-index: 100;
}

.options li {
    font-size: 16px;
    border-radius: 4px;
    padding: 10px;
    transition: all 0.4s ease-in-out;
}

.options li:hover {
    background: var(--color-primary);
}

.custom-select.open .options {
    display: block;
}


nav .right-bar .nav-list .nav-item a {
    color: black;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease-in-out;
}

nav .right-bar .nav-list .nav-item a:hover {
    color: var(--color-secondary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 25px;
    margin: 20px;
}

.menu-toggle span {
    height: 4px;
    background: black;
    margin: 2px 0;
    border-radius: 4px;
    transition: 0.4s;
}

.menu-toggle span:nth-child(2) {
    width: 80%;
    transform: translate(5px, 0);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -10px);
}

#menu {
    position: absolute;
    top: 80px;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 0px;
    overflow: hidden;
    background-color: white;
    border-radius: 15px;
    border: 1px solid #e3d3cf;
    padding: 20px 15px;
    transition: all 0.3s ease;
    z-index: 9;
}

#menu.active {
    height: 190px;
    opacity: 1;
}

#menu ul li {
    margin: 8px 0;
}

#menu ul li a {
    color: black;
    text-decoration: none;
    padding: 8px 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

#menu a:hover {
    color: var(--color-secondary);
}

/* Header end */

.hero-section {
    position: relative;
    width: 100%;
    height: 910px;
    overflow: hidden;
    padding: 0 60px;
}

.hero-section .hero {
    position: absolute;
    right: 0;
    top: 0;
    width: 783px;
    height: 910px;
    background-image: url("./Images/hero-bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    margin-top: 160px;
}

.hero-content .left-content {
    margin-top: 60px;
    width: 45%;
}

.hero-content .left-content .banner-text .hero-typing {
    font-size: 16px;
    color: var(--color-secondary);
}

.hero-content .left-content .banner-text h1 {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-content .left-content .banner-text b {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 60px;
}

.hero-content .left-content .banner-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

#typed-output {
    font-size: 16px;
    color: var(--color-secondary);
    height: 20px;
}

.app-btns ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.app-btns ul li a {
    background-color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border: none;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
}

.app-btns ul li a:hover {
    background-color: var(--color-primary);
}

.app-btns ul li a img {
    width: 100%;
    height: 100%;
}

/* About Section start */

.about-section {
    flex-direction: row-reverse;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 150px;
    margin-bottom: 3rem;
}

.about-content p {
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    color: black;
}

.about-title {
    text-align: center;
}

.about-title2 h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-title h2 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    color: black;
}

.feature-list li i {
    color: var(--color-secondary);
    margin-right: 10px;
    font-size: 18px;
}

.right-content {
    width: 30%;
}

.right-content img {
    width: 100%;
    height: 100%;
}

/* About Section end */

/*Acardion Section start */


.section-title {
    padding: 50px 0;
    text-align: center;
}

.section-title h2 {
    font-size: 50px;
    font-weight: bold;
}

.title-badge {
    margin-bottom: 10px;
    display: inline-block;
    background-color: #77cc463f;
    padding: 2px 18px;
    border-radius: 50px;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.faq-blocks {
    display: flex;
    gap: 20px;
}

.faq-blocks ul {
    width: 553px;
}

.faq-blocks li {
    list-style: none;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e3d3cf;
    transition: all 0.3s ease;
}

.faq-blocks li label {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: var(--color-secondary);
}

.faq-blocks li label h2 {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-secondary);
    margin: 0;
}

.faq-blocks label span {
    font-size: 22px;
    color: #333;
    display: flex;
    gap: 5px;
}

.faq-blocks input[type="radio"] {
    display: none;
}

.faq-blocks .content {
    padding: 0 10px;
    line-height: 26px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.faq-blocks input[type="radio"]:checked + label + .content {
    max-height: 500px;
}

.faq-blocks label span i.fa-minus {
    display: none;
}

.faq-blocks label span i.fa-plus {
    display: inline-block;
}

.faq-blocks input[type="radio"]:checked + label span i.fa-plus {
    display: none;
}

.faq-blocks input[type="radio"]:checked + label span i.fa-minus {
    display: inline-block;
}

/*Acardion Section end */

/* Contact Section start */
#contact-section {
    position: relative;
    z-index: 2;
    top: 100px;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 0;
    background-color: var(--color-primary);
    border-radius: 20px;
    padding: 60px 50px;
}

.contact-box .left-box {
    display: flex;
    align-items: center;
}

.contact-box .left-box img {
    background-color: white;
    border-radius: 20px;
    width: 62px;
    height: 62px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.contact-box .left-box .texts {
    margin-left: 10px;
}

.contact-box .left-box .texts h3 {
    font-size: 40px;
    font-weight: bold;
    color: white;
}

.contact-box .left-box .texts p {
    font-size: 18px;
    color: white;
}

.contact-box .right-box button {
    position: relative;
    cursor: pointer;
    padding: 12px 30px;
    border: none;
    background-color: white;
    color: black;
    border-radius: 10px;
    font-size: 18px;
    margin-right: 50px;
    margin-top: 20px;
    transition: all 0.4s ease-in-out;
    font-weight: 600;
}

.contact-box .right-box button i {
    margin-right: 10px;
    font-size: 18px;
}

.contact-box .right-box span {
    position: absolute;
    top: -20px;
    left: 10%;
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: none;
}

.contact-box .right-box span.show {
    animation: jumpUp 0.8s forwards;
    opacity: 1;
}

@keyframes jumpUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translateY(-20px) scale(0.9);
        opacity: 0;
    }
}

.contact-box .right-box button:hover {
    box-shadow: 0 0 10px rgb(255, 255, 255);
    background-color: var(--color-secondary);
    color: white;
}

/* Contact Section end */

/*Footer Section start */
footer {
    background-color: black;
    position: relative;
}

.blur-box {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 100%;
    filter: blur(120px);
    background-color: var(--color-secondary);
}

.box1 {
    top: -200px;
    left: 250px;
}

.box2 {
    bottom: -250px;
    right: 250px;
    top: inherit;
}

footer .footer-top {
    position: relative;
    overflow: hidden;
    color: white;
    padding: 200px 0 00px 0;
}

footer .footer-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

footer .footer-content .left-footer {
    display: flex;
    flex-direction: column;
    width: 458px;
    padding-right: 100px;
}

footer .footer-content .left-footer p {
    font-size: 16px;
    padding-bottom: 30px;
}

footer .footer-content .left-footer .footer-logo {
    display: flex;
    align-items: center;
    width: 100px;
    gap: 20px;
    margin-bottom: 2rem;
}

footer .footer-content .left-footer .footer-logo img {
    width: 100%;
    height: 100%;
}

footer .footer-content .left-footer .footer-logo h1 {
    color: #74c944;
}

footer .footer-content .right-footer {
    display: flex;
    gap: 60px;
}

footer .footer-content .right-footer .links h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 55px;
    position: relative;
}

footer .footer-content .right-footer .links h3::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 18px;
    background-color: var(--color-primary);
    top: 1px;
    transform: rotate(20deg);
    left: -10px;
}

footer .footer-content .right-footer .links ul li {
    margin-bottom: 16px;
}

footer .footer-content .right-footer .links ul li a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease-in-out;
}

footer .footer-content .right-footer .links ul li a:hover {
    color: var(--color-primary);
}

footer .footer-bottom {
    margin-top: 80px;
    padding: 30px 0 20px 0;
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    text-align: center;
}

footer .footer-content .left-footer .app-btns ul li {
    width: 198px;
}

/*Footer Section end */

.mobile-lang {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 1600px) {
    .hero-section .hero {
        right: -300px;
    }
}

@media (max-width: 1024px) {
    header nav {
        justify-content: center;
    }

    section .hero {
        display: none;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content .left-content {
        width: 46%;
    }

    .hero-content .left-content .banner-text h1 {
        font-size: 50px;
    }

    .faq-blocks {
        padding: 0 20px;
    }

    .faq-blocks ul {
        width: 480px;
    }

    .hero-content .left-content p {
        font-size: 18px;
    }

    .about-section {
        padding: 100px 20px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-content p {
        font-size: 16px;
        padding-right: 10px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
    }

    .hero-content {
        margin-top: 50px;
    }

    .faq-section .container {
        padding: 0 20px;
    }

    .about-title2 {
        text-align: center;
    }

    .feature-list li {
        display: flex;
        align-items: center;
    }

    .feature-list li p {
        font-size: 14px;
    }

    section {
        padding: 0 60px !important;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .faq-blocks {
        gap: 0;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .faq-blocks .content p {
        font-size: 16px;
    }

    .faq-blocks label span {
        font-size: 16px;
    }

    .faq-blocks ul {
        width: 100%;
    }

    .faq-blocks li label h2 {
        font-size: 16px;
    }

    .right-content {
        width: 100% !important;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-content .left-content {
        width: 100%;
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-bottom: 100px;
    }

    .hero-content .left-content .banner-text h1 {
        font-size: 40px;
    }

    .hero-content .left-content .banner-text b {
        font-size: 40px;
    }

    .about-section {
        flex-direction: column;
    }

    .about-title {
        text-align: center;
    }

    .about-section .about-content {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }

    .about-section .about-content h2 {
        font-size: 40px;
        text-align: center;
    }

    .about-section .about-content p {
        text-align: center;
    }

    .contact-box {
        flex-direction: column;
    }

    footer .footer-content {
        padding: 0 20px;
    }

    footer .footer-bottom {
        padding: 30px 20px 20px 20px;
    }

    header nav .right-bar .nav-list {
        display: none;
    }

    header .menu-toggle {
        display: flex;
    }

    header nav {
        padding: 0 20px;
        justify-content: space-between;
    }

    header nav .right-bar {
        display: flex;
        align-items: center;
        width: auto;
    }

    .desktop-lang {
        display: none;
    }

    .mobile-lang {
        display: block;
    }
}

@media (max-width: 525px) {
    header {
        padding: 0 20px;
    }

    header nav .left-bar a {
        width: 80px;
        height: 80px;
    }

    header nav {
        padding: 0;
    }

    section {
        padding: 0 20px !important;
    }

    .about-media {
        width: 100%;
    }

    .about-media img {
        width: 100%;
        height: 100%;
    }

    .contact-box {
        align-items: end;
    }

    .contact-box .left-box {
        align-items: start;
    }

    .contact-box .left-box .texts h3 {
        font-size: 25px;
    }

    .contact-box .left-box .texts p {
        font-size: 14px;
    }

    .contact-box .right-box button {
        font-size: 16px;
    }

    .feature-list li i {
        display: none;
    }

    footer .footer-content {
        flex-direction: column;
        align-items: center;
    }

    footer .footer-content .left-footer {
        align-items: center;
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    footer .footer-content .left-footer .app-btns ul {
        flex-direction: column;
    }

    footer .footer-content .left-footer p {
        font-size: 12px;
    }

    footer .footer-content .right-footer {
        flex-direction: column;
        margin-top: 60px;
    }

    footer .footer-content .right-footer .links h3 {
        margin-bottom: 30px;
    }

    footer .footer-content .right-footer .links {
        text-align: center;
    }

    footer .footer-bottom p {
        text-align: center;
    }
}
