/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Fonts Family */
    --poppins: 'Poppins', sans-serif;
    --inter: 'Inter', sans-serif;

    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #159755;
    --secondary: #f66843;
    --dark: #1e1e1f;
    --yellow: #ffb000;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--black);
    font-size: 16px;
    font-family: var(--poppins);
    font-weight: 400;
    line-height: normal;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
section,
.section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
button {
    padding: 0;
    border: none;
    background: unset;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: none;
}
*::selection {
    background: var(--secondary);
    color: var(--white);
    text-shadow: none;
}

/* =============================== */
/* :: 4.0 Common CSS */
/* =============================== */

/* ===== Typography CSS Start ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--inter);
}

.ff-inter {
    font-family: var(--inter);
}

.fs-1 {
    font-size: 34px !important;
    line-height: 1;
}
.fs-2 {
    font-size: 30px !important;
    line-height: 1.069;
}
.fs-lg,
.fs-xl {
    font-size: 16px;
}

.fw-extralight {
    font-weight: 200 !important;
}

/* ===== Typography CSS End ===== */

/* ===== Color CSS Start ===== */
.text-dark {
    color: var(--dark) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
/* ===== Color CSS End ===== */

/* ===== Button CSS Start ===== */
.btn {
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    padding: 11px 28px;
    border: none;
    border-radius: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease-in-out;
}
.btn:hover {
    color: var(--white);
}
.btn--primary {
    background-color: var(--primary);
}
.btn--primary:hover {
    background-color: var(--secondary);
}
.btn--secondary {
    background-color: var(--secondary);
}
.btn--secondary:hover {
    background-color: var(--primary);
}
.btn--trans {
    color: var(--black);
    padding: 0 !important;
    height: auto !important;
}
.btn--trans:hover {
    color: var(--secondary);
}

.btn__icon {
    transition: all 0.3s ease-in-out;
}
.btn__icon--tel,
.btn__icon--arrow {
    width: 16px;
    height: 16px;
    overflow: hidden;
}
.btn__icon svg {
    width: 100%;
    height: 100%;
}
/* Button Animation */

/* ===== Button CSS End ===== */

/* ===== CSS for Random Componetns/Classes Start ===== */
.pretitle {
    padding: 6px 15px;
    gap: 5px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-size: 14px;
}
.pretitle .ellipse {
    width: 6px;
    height: 6px;
    background-color: #116f76;
}
/* ===== CSS for Random Componetns/Classes End ===== */

/* =============================== */
/* :: 5.0 Header Area CSS Start */
/* =============================== */
.header__wrapper {
    padding: 20px 0;
}
.logo--header {
    max-width: 56px;
    width: 100%;
}
.mobile-menu-open {
    width: 32px;
    height: 32px;
    padding: 4px;
    border-radius: 4px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 16px;
}
.mobile-menu .offcanvas {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
}
.mobile-menu .offcanvas-header,
.mobile-menu .offcanvas-body {
    padding: 20px;
}
.nav__link--mobileMenu {
    padding: 12px 0;
    color: var(--black);
    font-size: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.nav__link--mobileMenu:hover,
.nav__link--mobileMenu.active {
    color: var(--secondary);
}
.mobile-menu__contact .title {
    font-size: 20px;
    text-underline-offset: 8px;
}
.social-link,
.contact__item {
    gap: 10px;
}
.contact__item,
.contact__item__link {
    font-size: 16px;
    color: var(--black);
}
.contact__item__link:hover {
    color: var(--secondary);
}
.social-link__item {
    width: 36px;
    height: 36px;
    color: var(--white);
    background-color: var(--secondary);
}
.social-link__item:hover {
    background-color: var(--primary);
}
.social-link__item svg {
    width: auto;
    height: 50%;
}
/* ===== Header CSS for Desktop Start ===== */

.header__topbar__inner,
.header__wrapper__inner {
    max-width: 1296px;
}

/* Header Topbar Start */
.header__topbar .social-link__item {
    color: var(--primary);
    background-color: var(--white);
}
.header__topbar .social-link__item {
    width: 24px;
    height: 24px;
}
.header__topbar .social-link__item:hover {
    color: var(--white);
    background-color: var(--secondary);
}
.header__topbar .contact__item,
.header__topbar .contact__item__link {
    color: var(--white);
    font-size: 12px;
}
.header__topbar .contact__item__link:hover {
    color: var(--yellow);
}
/* Header Topbar End */

/* Header Wrapper Start */
.nav__wrap--header {
    gap: 12px;
}
.nav__link--header {
    height: 38px;
    color: var(--black);
    font-size: 16px;
    line-height: 1;
    padding: 11px 21px;
    border-radius: 100px;
}
.nav__link--header:hover,
.nav__link--header.active {
    color: var(--white);
    background-color: var(--primary);
}
.nav__link--header.active {
    font-weight: 700;
}
.header__btn {
    height: 48px;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    padding: 11px 28px;
    border-radius: 100px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background-color: var(--secondary);
    transition: all 0.3s ease-in-out;
}
.header__btn:hover {
    color: var(--white);
    background-color: var(--primary);
}
/* Header Wrapper End */

/* ===== Header CSS for Desktop End ===== */

/* =============================== */
/* :: 5.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Hero Section CSS Start */
/* =============================== */
.hero--section {
    padding: 64px 0 48px;
}
.hero--section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(24, 24, 24, 0.89) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: -1;
}
.hero__wrapper {
    max-width: 1050px;
}
.hero__pretitle {
    padding: 8px 16px;
    gap: 10px;
    border: 1px solid rgba(246, 103, 67, 0.3);
    border-radius: 100px;
    background-color: rgba(255, 255, 255, 0.25);
}
.hero__pretitle .icon {
    max-width: 20px;
}
.hero__pretitle .text {
    font-size: 14px;
}
/* =============================== */
/* :: 6.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 About Section CSS Start */
/* =============================== */
.about--section {
    padding: 48px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.about__wrapper {
    max-width: 1312px;
}
.about__thumb {
    width: 100%;
    height: 260px;
}
.about__para {
    font-size: 16px;
}
/* =============================== */
/* :: 7.0 About Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Product Section CSS Start */
/* =============================== */
.product--section {
    padding: 48px 0;
}
.product--section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #fff 0%, #fff0 100%);
    z-index: -1;
}
.card {
    padding: 0;
    border: none;
    border-radius: 0;
}
.card--product {
    width: 100%;
    height: 308px;
    padding: 24px 16px;
    border-radius: 10px;
}
.card--product::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 47.5%;
    background: linear-gradient(to bottom, #0000 0%, #000 100%);
    transition: all 0.3s ease-in-out;
    z-index: -1;
}
.card__thumb {
    transition: all 0.4s ease-in-out;
}
.card--product:hover .card__thumb {
    transform: scale(1.05);
}
.card--product .btn--trans {
    color: var(--white);
    font-size: 18px;
    gap: 12px;
}
.card--product .btn--trans .btn__icon {
    color: var(--primary);
}
.card--product .btn--trans:hover,
.card--product .btn--trans:hover .btn__icon {
    color: var(--secondary);
}
/* =============================== */
/* :: 8.0 Product Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 News Section CSS Start */
/* =============================== */
.news--section {
    padding: 48px 0;
}
.news__wrapper {
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.news__slider {
    max-width: 1232px;
}
.card__thumb {
    width: 100%;
    height: 308px;
}
.card--news .card__thumb {
    border-radius: 10px;
}
.card__title {
    font-size: 18px;
    line-height: 1.4;
}
.card--news .btn--trans svg {
    color: var(--secondary);
}
.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}
.news__slide__btn {
    transform: translateY(-50%);
    margin-top: 0;
    color: var(--secondary);
    width: 32px;
    height: 32px;
    transition: all 0.3s ease-in-out;
}
.news__slide__btn:hover {
    color: var(--primary);
}
.news__slide__btn svg {
    width: 100%;
    height: 100%;
}
.swiper-button-prev {
    left: -8px;
}
.swiper-button-next {
    right: -8px;
}
/* =============================== */
/* :: 9.0 News Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Foundation Section CSS Start */
/* =============================== */
.foundation--section {
    padding: 48px 0;
}
.foundation--section::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000 0%, #05050500 100%);
    z-index: -1;
}
.foundation__para {
    line-height: 1.78;
}
/* =============================== */
/* :: 10.0 Foundation Section CSS End */
/* =============================== */

/* =============================== */
/* :: 11.0 Contact Section CSS Start */
/* =============================== */
.contact__wrapper {
    max-width: 1296px;
    padding: 48px 0;
}
.contact__items {
    gap: 12px;
}
.contact--section .contact__item__link {
    color: var(--white);
}
.contact--section .contact__item__link:hover {
    color: var(--yellow);
}
.contact--section .contact__item .icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: var(--secondary);
    color: var(--white);
}
.contact--section .contact__item .icon svg {
    width: 50%;
}
.form--contact {
    padding: 20px 16px;
    border: 1px solid #444;
    border-radius: 12px;
}
.form__label {
    font-size: 16px;
    letter-spacing: -0.16px;
}
.form__input {
    width: 100%;
    height: 48px;
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid #e2e2e2;
    transition: all 0.3s ease-in-out;
}
.form__input--textarea {
    height: 102px;
    resize: none;
}
.form__input:focus,
.form__input:not(:placeholder-shown) {
    border-color: var(--primary);
}
.contact__object {
    width: clamp(200px, 45%, 684px);
    position: absolute;
    left: 11%;
    bottom: -6px;
    z-index: -1;
}

/* =============================== */
/* :: 11.0 Contact Section CSS End */
/* =============================== */

/* =============================== */
/* :: 12.0 Footer Area CSS Start */
/* =============================== */
.footer__content {
    max-width: 1320px;
}
.footer__wrapper {
    padding: 24px 0 0;
}
.footer__widget {
    height: 100%;
    padding: 24px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer--area,
.footer--area p,
.footer--area a,
.footer--area span,
.footer__widget__title,
.nav__link--footer {
    font-size: 16px;
    color: var(--black);
    line-height: 2.25;
}
.footer--area .social-link__item {
    color: var(--white);
}
.nav__link--footer:hover {
    color: var(--secondary);
}
.logo--footer {
    max-width: 102px;
}
/* =============================== */
/* :: 12.0 Footer Area CSS End */
/* =============================== */
