/* ================================
   GLOBAL RESET
================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}



body {
    font-family: "Inter", sans-serif;
    font-size: var(--fs-14);
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    font-weight: 400;
}

img {
    max-width: 100%;
    display: block;
}

p {
    margin: 0;
    color: var(--text-grey);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    background: none;
}

.fs-12 {
    font-size: var(--fs-12);
}

.fs-14 {
    font-size: var(--fs-14);
}

.fs-16 {
    font-size: var(--fs-16);
}

.fs-18 {
    font-size: var(--fs-18);
}

.fs-20 {
    font-size: var(--fs-20);
}

.fs-24 {
    font-size: var(--fs-24);
}

.fs-32 {
    font-size: var(--fs-32);
}

.fs-40 {
    font-size: var(--fs-40);
}


/* Margin All */

.m-4 {
    margin: var(--space-4px);
}

.m-8 {
    margin: var(--space-8px);
}

.m-16 {
    margin: var(--space-16px);
}

.m-24 {
    margin: var(--space-24px);
}


/* Margin Top */

.mt-4 {
    margin-top: var(--space-4px);
}

.mt-8 {
    margin-top: var(--space-8px);
}

.mt-16 {
    margin-top: var(--space-16px);
}


/* Margin Bottom */

.mb-4 {
    margin-bottom: var(--space-4px);
}

.mb-8 {
    margin-bottom: var(--space-8px);
}

.mb-16 {
    margin-bottom: var(--space-16px);
}


/* Margin X */

.mx-16 {
    margin-left: var(--space-16px);
    margin-right: var(--space-16px);
}


/* Margin Y */

.my-16 {
    margin-top: var(--space-16px);
    margin-bottom: var(--space-16px);
}


/* Padding All */

.p-4 {
    padding: var(--space-4px);
}

.p-8 {
    padding: var(--space-8px);
}

.p-16 {
    padding: var(--space-16px);
}

.p-24 {
    padding: var(--space-24px);
}


/* Padding Top */

.pt-4 {
    padding-top: var(--space-4px);
}

.pt-8 {
    padding-top: var(--space-8px);
}

.pt-16 {
    padding-top: var(--space-16px);
}


/* Padding Bottom */

.pb-4 {
    padding-bottom: var(--space-4px);
}

.pb-8 {
    padding-bottom: var(--space-8px);
}

.pb-16 {
    padding-bottom: var(--space-16px);
}

.pl-4 {
    padding-left: var(--space-4px);
}

.pl-8 {
    padding-left: var(--space-8px);
}

.pl-16 {
    padding-left: var(--space-16px);
}

.pl-40 {
    padding-left: var(--space-40px);
}

.pr-4 {
    padding-right: var(--space-4px);
}

.pr-8 {
    padding-right: var(--space-8px);
}

.pr-16 {
    padding-right: var(--space-16px);
}

.pr-40 {
    padding-right: var(--space-40px);
}


/* Padding X */

.px-16 {
    padding-left: var(--space-16px);
    padding-right: var(--space-16px);
}


/* Padding Y */

.py-16 {
    padding-top: var(--space-16px);
    padding-bottom: var(--space-16px);
}

.text-center {
    text-align: center;
}


/* ================================
   RESPONSIVE CONTAINER
================================ */

.container {
    max-width: 1320px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: auto;
    margin-right: auto;
}

.container-fluid {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}


/* ================================
   HEADING STYLES
================================ */

.heading_main p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: var(--text-grey);
    margin-bottom: 15px;
}

.heading_main h2 {
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -0.5px;
}


/* ================================
   BUTTON STYLES
================================ */

.button_main {
    display: flex;
    width: auto;
}

.button_main a {
    background: #D9D9D926;
    border: 1px solid #fff;
    display: flex;
    width: auto;
    padding: 10px 30px;
    border-radius: 50px;
    gap: 20px;
    align-items: center;
    cursor: pointer;
    transition: 0.3s all ease;
}

.button_main a:hover {
    background: transparent;
}

.button_main a img {
    width: 16px;
    transition: 0.3s all ease;
}

.button_main a:hover img {
    transform: translateX(5px);
}


/* ================================
   HEADER STYLES
================================ */

header {
    padding: 16px 0;
    position: fixed;
    width: 100%;
    z-index: 99;
    background: #0000006b;
}

.header_full {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.header_full nav {
    backdrop-filter: blur(10px);
    background: #D9D9D926;
    padding: 15px 15px;
    border-radius: 5px;
}

.header_full nav ul {
    display: flex;
    gap: 10px;
}

.header_full nav ul a {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 10px 15px;
    transition: 0.3s all ease;
}

.header_full nav ul a:hover {
    background: var(--black);
    border-radius: 5px;
}

.header_full nav ul li a.active {
    background: var(--black);
    border-radius: 5px;
}

.banner_main {
    height: 100vh;
    overflow: hidden;
}

.banner_main img {
    width: 100%;
}

.banner_main video {
    width: 100%;

}

.btn_header {
    border: 1px solid #fff;
    padding: 14px 20px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: 0.3s all ease;
}

.btn_header:hover {
    background: var(--white);
    color: var(--black);
}

.menu_toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
}

.index_why_choose_us {
    padding: 60px 0 0 0;
}

.index_why_choose_us .index_why_choose_us_full {
    display: flex;
    justify-content: space-between;
}

.index_why_choose_us_full .index_why_choose_us_left {
    display: flex;
    align-items: center;
    width: 50%;
}

.index_why_choose_us_full .index_why_choose_us_left p.text_why_choose {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    margin: 20px 0 40px 0;
    text-align: justify;
}

.index_why_choose_us_full .index_why_choose_us_right {
    overflow: hidden;
    width: 47%;
}

.index_why_choose_us_full .index_why_choose_us_right img {
    transition: 0.3s all ease;
}

.index_why_choose_us_full .index_why_choose_us_right:hover img {
    transform: scale(1.1);
}

.index_why_choose_us_points {
    padding: 40px 0;
}

.index_why_choose_us_points .index_why_choose_us_points_full {
    display: flex;
    justify-content: space-between;
}

.index_why_choose_us_points_full .index_why_choose_us_points_1 {
    display: flex;
    justify-content: space-between;
}

.index_why_choose_us_points_full .index_why_choose_us_points_1 {
    width: 30%;
    border-top: 1px solid var(--border-color);
    padding: 15px 0 0 0;
    transition: 0.3s all ease;
}

.index_why_choose_us_points_full .index_why_choose_us_points_1:hover {
    transform: translateY(10px);
}

.index_why_choose_us_points_full .index_why_choose_us_points_1 p {
    font-weight: 400;
    font-size: 18px;
}

.index_why_choose_us_points_full .index_why_choose_us_points_1 p span {
    font-weight: 700;
    color: var(--white);
}

.index_product_main {
    padding: 50px 0;
}

.index_product_main .index_product_full {
    display: flex;
    justify-content: space-between;
}

.index_product_full .index_product_left {
    width: 50%;
    overflow: hidden;
}

.index_product_full .index_product_left img {
    transition: 0.3s all ease;
}

.index_product_full .index_product_left:hover img {
    transform: scale(1.1);
}

.index_product_full .index_product_right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index_product_right .index_product_right_content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    margin: 20px 0 40px 0;
    text-align: justify;
}

.index_who_we_are_main {
    padding: 50px 0;
}

.index_who_we_are_full {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index_who_we_are_full .index_who_we_are_left {
    width: 50%;
}

.index_who_we_are_left .index_who_we_are_content {
    width: 90%;
    margin-top: 20px;
}

.index_who_we_are_left .index_who_we_are_content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: justify;
    letter-spacing: -0.36px;
}

.index_who_we_are_full .index_who_we_are_right {
    width: 50%;
}

.index_who_we_are_right .index_who_we_are_right_1 {
    display: flex;
    gap: 20px;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding: 20px 0 30px 0;
    transition: 0.3s all ease;
}

.index_who_we_are_right_1 .index_who_we_are_right_1_icon img {
    width: 50px;
}

.index_who_we_are_right .index_who_we_are_right_1:hover {
    transform: scale(0.96);
}

.index_who_we_are_right .index_who_we_are_right_1 h2 {
    font-weight: 500;
    font-size: 40px;
    letter-spacing: -2.4px;
}

.index_who_we_are_right .index_who_we_are_right_1 p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
}

.index_who_we_are_right_1 .index_who_we_are_right_1_content {
    width: calc(100% - 40px);
}

.index_gallery_main {
    padding: 50px 0;
}

.index_gallery_full {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.index_gallery_left_content {
    margin: 25px 0 50px 0;
}

.index_gallery_left .index_gallery_left_content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: justify;
    letter-spacing: -0.36px;
}

.index_gallery_full .index_gallery_left {
    width: 60%;
    padding-right: 30px;
}

.index_gallery_full .index_gallery_right {
    width: 40%;
    padding-left: 30px;
}

.index_gallery_left .index_gallery_left_img {
    margin-bottom: 30px;
    display: flex;
    justify-content: end;
    overflow: hidden;
}

.index_gallery_left .index_gallery_left_img img {
    transition: 0.3s all ease;
}

.index_gallery_left .index_gallery_left_img:hover img {
    transform: scale(1.1);
}

.index_gallery_right .index_gallery_right_img {
    margin-bottom: 30px;
    display: flex;
    overflow: hidden;
    justify-content: start;
}

.index_gallery_right .index_gallery_right_img img {
    transition: 0.3s all ease;
}

.index_gallery_right .index_gallery_right_img:hover img {
    transform: scale(1.1);
}

.index_feature_main {
    padding: 50px 0;
}

.index_feature_main .index_feature_full {
    display: flex;
    justify-content: space-evenly;
    margin-top: 35px;
}

.index_feature_full .index_feature_1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.index_feature_full .index_feature_1 p {
    width: 70%;
    text-align: center;
}

.index_feature_full .index_feature_1 .index_feature_1_img {
    background: var(--gray);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: 0.3s all ease;
}

.index_feature_full .index_feature_1 .index_feature_1_img:hover {
    transform: scale(0.9);
}

.stats-section {
    padding: 50px 0;
}

.stats-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-box {
    text-align: center;
    color: #fff;
    padding: 20px;
    position: relative;
}

.stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: var(--border-color);
}

.stat-box h2 {
    font-size: 48px;
    margin: 0;
}

.stat-box p {
    margin-top: 10px;
}

.footer_main {
    padding: 50px 0 0 0;
    position: relative;
}

.footer_main::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 500px;
    background: url(../images/footer_logo.svg);
    background-size: 100%;
    z-index: -1;
    opacity: 0.5;
    background-repeat: no-repeat;
}

.footer_top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 300px;
    z-index: 99;
}

.footer_top .footer_top_left {
    width: 50%;
}

.footer_top .footer_top_left p {
    font-size: 40px;
    line-height: 40px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 50px;
}

.footer_top .footer_top_center {
    width: 25%;
}

.footer_top .footer_top_right {
    width: 25%;
}

.footer_top_center p {
    margin-bottom: 15px;
}

.footer_top_center ul li {
    margin-bottom: 15px;
    transition: 0.3s all ease;
}

.footer_top_center ul li:hover {
    transform: translateX(8px);
}

.footer_top_center ul li a {
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.72px;
}

.footer_top_right p {
    margin-bottom: 15px;
}

.footer_top_right ul li {
    margin-bottom: 15px;
    transition: 0.3s all ease;
}

.footer_top_right ul li:hover {
    transform: translateX(8px);
}

.footer_top_right ul li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
}

.footer_bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding: 15px 0;
    z-index: 99;
}

.footer_bottom .footer_bottom_left ul {
    display: flex;
    gap: 25px;
}

.footer_bottom .footer_bottom_left ul li a {
    text-transform: uppercase;
}

.index_gallery_left_img img,
.index_gallery_right_img img {
    transition: transform .6s ease;
}

.index_gallery_left_img:hover img,
.index_gallery_right_img:hover img {
    transform: scale(1.08);
}


/* ================================
   PAGE BANNER (All inner pages)
================================ */

.page_banner {
    padding: 180px 0 80px 0;
    position: relative;
}

.page_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(25, 25, 25, 0) 0%, rgba(25, 25, 25, 1) 100%);
    z-index: 1;
}

.page_banner_content {
    position: relative;
    z-index: 2;
}

.page_banner .heading_main h2 {
    max-width: 700px;
    margin: 0 auto;
}


/* ================================
   ABOUT PAGE STYLES
================================ */

.about_story_main {
    padding: 60px 0;
}

.about_story_full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about_story_full .about_story_left {
    width: 50%;
    overflow: hidden;
}

.about_story_full .about_story_left img {
    transition: 0.3s all ease;
}

.about_story_full .about_story_left:hover img {
    transform: scale(1.1);
}

.about_story_full .about_story_right {
    width: 50%;
}

.about_story_content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    margin-top: 20px;
    text-align: justify;
}

/* Mission Section */

.about_mission_main {
    padding: 60px 0;
}

.about_mission_full {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.about_mission_1 {
    width: 33.33%;
    border-top: 1px solid var(--border-color);
    padding: 30px 20px;
    transition: 0.3s all ease;
}

.about_mission_1:hover {
    transform: translateY(-8px);
}

.about_mission_icon {
    background: var(--gray);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
}

.about_mission_icon img {
    width: 40px;
}

.about_mission_1 h3 {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    color: var(--white);
}

.about_mission_1 p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.36px;
    text-align: justify;
}

/* Why Us Section */

.about_why_us_main {
    padding: 60px 0;
}

.about_why_us_full {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.about_why_us_1 {
    width: calc(50% - 15px);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    transition: 0.3s all ease;
}

.about_why_us_1:hover {
    transform: translateX(10px);
}

.about_why_us_1 span {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    opacity: 0.15;
    display: block;
    margin-bottom: 10px;
}

.about_why_us_1 h3 {
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--white);
}

.about_why_us_1 p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.36px;
}


/* ================================
   PRODUCT PAGE STYLES
================================ */

.product_category_main {
    padding: 60px 0;
}

.product_category_full {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.product_category_1 {
    width: calc(50% - 20px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s all ease;
}

.product_category_1:hover {
    transform: translateY(-8px);
    border-color: var(--text-grey);
}

.product_category_img {
    overflow: hidden;
    height: 280px;
}

.product_category_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s all ease;
}

.product_category_1:hover .product_category_img img {
    transform: scale(1.1);
}

.product_category_content {
    padding: 25px;
}

.product_category_content h3 {
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    color: var(--white);
}

.product_category_content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.36px;
}

/* Product Features */

.product_features_main {
    padding: 60px 0;
}

.product_features_full {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.product_feature_1 {
    width: calc(33.33% - 20px);
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    transition: 0.3s all ease;
}

.product_feature_1:hover {
    transform: translateY(-5px);
}

.product_feature_icon {
    background: var(--gray);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
}

.product_feature_icon img {
    width: 30px;
}

.product_feature_1 h3 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--white);
}

.product_feature_1 p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.36px;
}

/* Product CTA */

.product_cta_main {
    padding: 80px 0;
}

.product_cta_full {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 60px 40px;
}

.product_cta_text {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    max-width: 600px;
    margin: 20px auto 0 auto;
}


/* ================================
   DOWNLOAD PAGE STYLES
================================ */

.download_intro_main {
    padding: 0 0 40px 0;
}

.download_intro_text {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-grey);
}

.download_cards_main {
    padding: 40px 0;
}

.download_cards_full {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.download_card_1 {
    width: calc(33.33% - 20px);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s all ease;
}

.download_card_1:hover {
    transform: translateY(-8px);
    border-color: var(--text-grey);
}

.download_card_img {
    overflow: hidden;
}

.download_card_img img {
    width: 100%;
    object-fit: cover;
    transition: 0.4s all ease;
}

.download_card_1:hover .download_card_img img {
    transform: scale(1.1);
}

.download_card_content {
    padding: 25px;
}

.download_card_content h3 {
    font-weight: 600;
    font-size: 20px;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    color: var(--white);
}

.download_card_content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.36px;
}

.download_file_info {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-grey);
    background: var(--gray);
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}


/* ================================
   CONTACT PAGE STYLES
================================ */

.contact_main {
    padding: 60px 0 80px 0;
}

.contact_full {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.contact_left {
    width: 45%;
}

.contact_right {
    width: 55%;
}

.contact_info_list {
    margin-top: 40px;
}

.contact_info_1 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    transition: 0.3s all ease;
}

.contact_info_1:hover {
    transform: translateX(8px);
}

.contact_info_icon {
    background: var(--gray);
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact_info_icon img {
    width: 24px;
}

.contact_info_content h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--white);
}

.contact_info_content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.36px;
}

.contact_info_content a {
    transition: 0.3s all ease;
}

.contact_info_content a:hover {
    color: var(--white);
}

/* Contact Form */

.contact_form {
    background: var(--gray);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.form_group {
    margin-bottom: 20px;
}

.form_group label {
    display: block;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--text-grey);
}

.form_group input,
.form_group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 16px;
    color: var(--white);
    font-family: "Inter", sans-serif;
    transition: 0.3s all ease;
}

.form_group input::placeholder,
.form_group textarea::placeholder {
    color: var(--text-grey);
    opacity: 0.6;
}

.form_group input:focus,
.form_group textarea:focus {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.form_group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact_form .button_main button {
    background: #D9D9D926;
    border: 1px solid #fff;
    display: flex;
    width: auto;
    padding: 10px 30px;
    border-radius: 50px;
    gap: 20px;
    align-items: center;
    cursor: pointer;
    transition: 0.3s all ease;
    color: var(--white);
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.contact_form .button_main button:hover {
    background: transparent;
}

.contact_form .button_main button img {
    width: 16px;
    transition: 0.3s all ease;
}

.contact_form .button_main button:hover img {
    transform: translateX(5px);
}

.f_d_flex {
    display: flex;
    align-items: center;
    gap: 15px;
}


/* ================================
   SUBMIT BUTTON LOADER / SPINNER
================================ */

.btn_loader {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* ================================
   THANK YOU PAGE STYLES
================================ */

.thankyou_main {
    padding: 0 0 100px 0;
}

.thankyou_content {
    max-width: 650px;
    margin: 0 auto;
}

.thankyou_icon {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease forwards;
}

.thankyou_icon svg {
    margin: 0 auto;
}

.thankyou_icon svg circle:nth-child(1) {
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thankyou_content h2 {
    font-weight: 600;
    font-size: 36px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    color: var(--white);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.thankyou_content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.36px;
    color: var(--text-grey);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.thankyou_buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}


/* ================================
   PRODUCT DETAIL PAGE STYLES
================================ */

.product_detail_main {
    padding: 60px 0 80px 0;
}

.product_detail_intro {
    max-width: 700px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.product_detail_intro p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.36px;
    color: var(--text-grey);
}

.product_detail_grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

/* --- New Card Design (Glassmorphism) --- */

.pd_card {
    width: calc(25% - 18px);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.pd_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    border-radius: 16px;
}

.pd_card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.03);
}

.pd_card_img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.pd_card_img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 1;
}

.pd_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pd_card:hover .pd_card_img img {
    transform: scale(1.12);
}

.pd_card_body {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.pd_card_body h3 {
    font-weight: 600;
    font-size: 17px;
    letter-spacing: -0.3px;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.pd_card_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd_card_tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--text-grey);
    letter-spacing: 0.3px;
    transition: 0.3s all ease;
}

.pd_card:hover .pd_card_tag {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.pd_card_tag span {
    color: var(--white);
    font-weight: 500;
}

/* ================================
   DOWNLOAD TABS
================================ */

.download_tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0 40px 0;
}

.tab_btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab_btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tab_btn.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.tab_content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab_content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}