@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

* {
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;

}

:root {
    --black-color: #0F0F0F;
    --white-color: #fff;
    --gray-color: #696661;
    --red-color: #ca180f;
    --gray-border: rgba(245, 245, 245, 0.05);
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray-color);
    background-color: var(--black-color);
    overflow-x: hidden;
}

.clear:before,
.clear:after {
    content: "";
    display: block;
    clear: both;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 700;
    color: var(--white-color);
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 16px;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    color: var(--red-color);
}

p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 100dvh;
    position: relative;
}

.main-section-seperator {
    width: 1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.top-transparent {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.15) 20%, rgba(255, 255, 255, 0.15) 80%, transparent 100%);
}

.main-section-column {
    position: relative;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    overflow: hidden;
}

.main-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-in-out;
    z-index: 0;
}

.main-section-column:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(to bottom, rgba(15, 15, 15, 0.1) 0%, rgba(15, 15, 15, 0.15) 50%, rgba(15, 15, 15, 0.3) 100%); */
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0.1) 50%, rgba(15, 15, 15, 0.3) 100%);
    z-index: 1;
}

.main-section-column:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(315deg, #0f24004d 0.000%, #33000047 20.000%, #a9000033 40.000%, #c10d0614 60.000%, #0000007a 80.000% 80%, #f57e0000 100.000%);
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    z-index: 2;
    pointer-events: none;
}

.main-section-column:hover:after {
    opacity: 1;
}

.main-section-column:hover .main-section-bg {
    transform: scale(1.05);
}

.main-section-column-content {
    position: relative;
    z-index: 3;
}

.main-section-column h6 {
    position: relative;
    color: var(--red-color);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    font-family: "Plus Jakarta Sans", sans-serif;
    padding-left: 50px;
}

.main-section-column h6:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 36px;
    height: 1px;
    background-color: var(--red-color);
}

.main-section-column h2 {
    font-size: 48px;
    font-weight: 700;
    max-width: 500px;
    line-height: 1.1;
    margin: 20px 0;
}

.main-section-column p {
    font-size: 15px;
    font-weight: 400;
    max-width: 448px;
    line-height: 1.5;
    margin-bottom: 35px;
    /* color: var(--white-color); */
    color: rgba(255, 255, 255, 0.7);
}

.main-section-column button,
a.primary-btn {
    background-color: var(--red-color);
    color: var(--white-color);
    border: none;
    padding: 14px 25px 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    border-radius: 35px;
    width: fit-content;
    display: flex;
    align-items: center;
    text-decoration: none;
}

a.primary-btn {
    margin-top: 30px;
    margin-bottom: 15px;
}

.main-section-column button:hover,
a.primary-btn:hover {
    background-color: var(--white-color);
    color: var(--red-color);
}

.main-section-column button svg,
a.primary-btn svg {
    margin-left: 10px;
    vertical-align: middle;
    transition: all 0.3s ease-in-out;
}

.main-section-column button:hover svg,
a.primary-btn:hover svg {
    transform: translateX(6px);
}

.countries-section {
    padding: 60px 0;
    border-top: solid 1px var(--gray-border);
    border-bottom: solid 1px var(--gray-border);
    text-align: center;
}

.countries-section-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.countries-section-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countries-section-column svg {
    color: var(--red-color);
    margin-bottom: 5px;
}

.countries-section-column h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 0;
}

.countries-section-column h5 {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-color);
    text-transform: uppercase;
}

.about-section {
    padding: 70px 0;
    text-align: center;
}

.about-section .container {
    max-width: 750px;
    margin: 0 auto;
}

.about-section .sub-heading {
    font-size: 12px;
    font-weight: 600;
    color: var(--red-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.about-section .sub-heading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 36px;
    height: 1px;
    background-color: var(--red-color);
}

.about-section .sub-heading::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 36px;
    height: 1px;
    background-color: var(--red-color);
}

.about-section .heading {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-section p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-color);
}

.footer-section {
    padding: 70px 0 30px;
    border-top: solid 1px var(--gray-border);
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 60px;
}

img.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-column h5 {
    color: rgba(245, 245, 245, 0.6);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-column p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-color);
}

.footer {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer li {
    margin-bottom: 8px;
}

.footer li a {
    color: var(--gray-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer li a:hover {
    color: var(--red-color);
}

.footer li a svg {
    transition: all 0.3s ease-in-out;
}

.footer li a:hover svg {
    transform: translateX(6px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item.align-top {
    align-items: flex-start;
}

.contact-item.align-top svg {
    margin-top: 4px;
}

.contact-item svg {
    color: var(--red-color);
    flex-shrink: 0;
    opacity: 0.6;
}

.contact-item span {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-color);
    line-height: 1.5;
}

.copyright {
    border-top: solid 1px var(--gray-border);
    padding-top: 30px;
    margin-top: 40px;
    font-size: 13px;
    font-weight: 400;
    color: var(--gray-color);
    text-align: left;
}

.header-wrapper {
    padding: 13px 0;
    background-color: var(--red-color);
    position: relative;
    z-index: 99;
}

.header-left {
    float: left;
    width: 300px;
}

.header-left img {
    max-width: 230px;
}

.header-right {
    float: right;
    width: calc(100% - 300px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5px;
    padding-top: 28px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

#nav-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 55px;
    justify-content: center;
}

#nav-menu li a {
    color: var(--white-color);
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
}

#nav-menu li a:hover {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

#nav-menu li a:hover:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    transition: all 0.3s ease-in-out;
    background-color: var(--white-color);
}

/* Google Translate Customization */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

.VIpgJd-Zvi9od-aZ2wEe-wOHMyf {
    display: none !important;
}

#goog-gt-tt {
    display: none !important;
    visibility: hidden !important;
}

.custom-lang-selector {
    position: relative;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
}

.lang-selector-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    transition: all 0.3s ease;
}

.lang-selector-btn:hover {
    opacity: 0.8;
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--black-color);
    border-radius: 8px;
    width: 180px;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 100;
}

.lang-dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: var(--white-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
    position: relative;
}

.lang-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-option .lang-iso {
    font-weight: 700;
    font-size: 12px;
    width: 24px;
    display: inline-block;
    margin-right: 8px;
}

.lang-option .check-icon {
    position: absolute;
    right: 20px;
    display: none;
}

.lang-option.active {
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-option.active .check-icon {
    display: block;
}

.language-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--black-color);
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
    z-index: 1;
    border-radius: 5px;
    top: 100%;
    left: 0;
    padding: 10px 0;
    border: 1px solid var(--gray-border);
}

.dropdown-content a {
    padding: 10px 20px;
    display: block;
    white-space: nowrap;
}

.dropdown-content a:hover {
    color: var(--white-color) !important;
    background-color: var(--red-color);
}

#nav-menu li .dropdown-content a:before,
#nav-menu li .dropdown-content a:hover:before {
    display: none;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}



.banner-section {
    padding: 160px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.banner-section:before {
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
}

.banner-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.sub-heading {
    position: relative;
    color: var(--red-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    font-family: "Plus Jakarta Sans", sans-serif;
    padding-left: 50px;
}

.sub-heading:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 36px;
    height: 1px;
    background-color: var(--red-color);
}

.heading {
    font-size: 48px;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.3;
}

.banner-section p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.welcome-wrapper {
    padding: 100px 0;
    background-color: var(--white-color);
}

.welcome-row,
.contact-row {
    display: flex;
    flex-direction: row;
}

.welcome-left {
    padding-right: 40px;
    flex: 0 0 50%;
}

.welcome-right {
    flex: 0 0 50%;
}

.contact-left {
    padding-right: 40px;
    flex: 0 0 65%;
}

.contact-right {
    flex: 0 0 35%;
}

.welcome-right img {
    border-radius: 20px;
}

.welcome-product-wrapper {
    padding: 40px 0;
    background-color: var(--white-color);
}

.welcome-product-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.welcome-product-cards li {
    list-style: none;
    background-color: var(--white-color);
    border: solid 1px #e0e0e0;
    border-radius: 20px;
}

.welcome-product-cards li a {
    display: block;
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.welcome-product-cards li a:hover {
    transform: translateY(-5px);
}

.welcome-product-cards li a .card-icon {
    margin-bottom: 10px;
}

.welcome-product-cards li a .card-icon svg {
    color: var(--red-color);
}

.welcome-product-cards li a h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--black-color);
}

.welcome-product-cards li a p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-color);
}

.welcome-right .welcome-product-cards {
    display: block;
}

.welcome-right .welcome-product-cards li {
    background-color: #FAFAFA;
}

.welcome-right .welcome-product-cards li+li {
    margin-top: 30px;
}

.product-wrapper {
    padding: 80px 0 20px;
    background-color: var(--white-color);
}

.product-detail {
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-detail li {
    margin: 35px 0;
    padding-bottom: 10px;
    border-bottom: solid 1px var(--red-color);
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
}

.product-detail-img {
    flex: 0 0 350px;
}

.product-detail-img img {
    border-radius: 20px;
}

.product-detail li:last-of-type {
    border-bottom: 0;
}

.product-detail-flex {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.product-detail-flex span {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 600;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red-color);
    flex: 0 0 56px;
}

.product-detail-flex h3 {
    color: var(--black-color);
    font-size: 30px;
    font-weight: 700;
}

.product-detail p {
    line-height: 1.6;
    font-size: 15px;
    font-weight: 400;
    color: var(--gray-color);
    margin: 15px 0;
}

.contact-wrapper {
    padding: 80px 0;
    background-color: var(--white-color);
}

.contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background-color: transparent;
    color: var(--black-color);
    transition: all 0.3s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--red-color);
    color: var(--white-color);
    border: none;
    padding: 14px 30px;
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
    margin-top: 10px;
}

.contact-form button:hover {
    background-color: var(--black-color);
}

.contact-form button svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.contact-form button:hover svg {
    transform: translateX(4px) translateY(-4px);
}

.contact-right .heading,
.contact-left .heading {
    font-size: 28px;
}

.contact-right .heading {
    margin-bottom: 30px;
}

.contact-right .contact-item h5 {
    color: var(--black-color);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: "Inter", sans-serif;
}

.contact-right .contact-item {
    margin-bottom: 25px;
}

.contact-right .contact-info {
    gap: 0;
}

.map-wrapper {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .main-section-column {
        padding: 3rem;
    }

    .main-section-column h2 {
        font-size: 42px;
    }

    .contact-left {
        flex: 0 0 60%;
    }

    .contact-right {
        flex: 0 0 40%;
    }

    .product-detail-img {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .main-section {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .main-section-seperator {
        display: none;
    }

    .countries-section-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }

    .footer-column:first-child {
        grid-column: 1 / -1;
        margin-bottom: 40px;
    }

    .about-section .heading {
        font-size: 42px;
    }

    .menu-toggle {
        display: block;
        float: right;
        color: var(--white-color);
    }

    #nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 110px;
        right: 0;
        background-color: #000;
        transition: all ease-in-out 0.3s;
        z-index: 9;
        padding: 20px;
        gap: 30px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
    }

    .welcome-row,
    .contact-row {
        flex-direction: column;
    }

    #nav-menu.show {
        display: flex;
        width: 100%;
        text-align: left;
    }

    .welcome-product-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .banner-section {
        padding: 120px 0;
    }

    .product-detail-flex h3 {
        font-size: 26px;
    }

    .contact-wrapper {
        padding: 60px 0;
    }

    .contact-left {
        padding-right: 0;
    }

    .contact-wrapper .contact-right {
        margin-top: 30px;
    }

    .product-detail li {
        margin: 35px 0;
        display: flex;
        flex-direction: row;
        gap: 20px;
        flex-direction: column;
    }

}

@media (max-width: 650px) {
    .footer-row {
        gap: 30px;
    }

    .main-section-column {
        padding: 2rem;
    }

    .welcome-product-cards {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .banner-section {
        padding: 100px 0;
    }

    .welcome-wrapper {
        padding: 60px 0;
    }

    .heading {
        font-size: 40px;
    }

    .sub-heading {
        font-size: 12px;
    }

    .product-detail-flex {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .main-section-column h2 {
        font-size: 36px;
    }

    .countries-section {
        padding: 40px 0;
    }

    .countries-section-column h3 {
        font-size: 32px;
    }

    .countries-section-column h5 {
        font-size: 12px;
    }

    .about-section {
        padding: 40px 0;
    }

    .about-section .heading {
        font-size: 34px;
    }

    .footer-row {
        gap: 0;
        display: block;
    }

    .footer-column:last-child {
        margin-top: 40px;
    }

    .copyright {
        padding: 20px 0 0;
        margin-top: 25px;
    }

    .footer-section {
        padding: 40px 0 30px;
    }

    .heading {
        font-size: 34px;
    }

    .product-detail-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-detail-flex span {
        font-size: 18px;
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }

    .product-detail-flex h3 {
        font-size: 22px;
    }

    .container {
        padding: 0 15px;
    }

    .header-left {
        width: 200px;
    }

    .header-right {
        width: calc(100% - 220px);
        justify-content: flex-end;
    }
}