* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Thin.ttf") format("treutype");
    font-weight: 100;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Light.ttf") format("treutype");
    font-weight: 300;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Semibold.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Bold.ttf") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Extrabold.ttf") format("truetype");
    font-weight: 800;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/Gilroy-Black.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter_18pt-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter_18pt-Bold.ttf") format("truetype");
    font-weight: 700;
}

:root {
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --black: #2A2F35;
    --dark-gray: #1D1E20;
    --text-dark: #1A1A1A;
    --deep-blue: #034569;
    --primary-blue: #025B84;
    --bg-gradient: linear-gradient(to right, #025B84, #58A441);

    --transition-ease-in: all ease-in 0.3s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Gilroy';
    font-weight: 400;
    top: 0px !important;
    overscroll-behavior: none;
    overflow-x: hidden;
    height: 100vh;
}

.smooth-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.smooth-content {
    will-change: transform;
}

/* #smooth-content {
    overflow: visible;
    width: 100%;
    height: auto;
} */

a {
    text-decoration: none;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    margin-bottom: 0px;
}

.main {
    background-image: url("../images/main_bg/main-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 30px;
}

.about-bg {
    background-image: url("../images/main_bg/about-bg.jpg");
}

.product {
    background-image: url("../images/main_bg/product-bg.jpg");
}

.contact-bg {
    background-image: url("../images/main_bg/contact-bg.jpg");
}

header {
    background-color: var(--background-dark);

}

.multiple {
    color: var(--white);
    text-align: center;
    font-size: 21.447px;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.nav-menu {
    background-color: var(--white);
    padding: 10px 15px;
    border-radius: 45px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-menu ul li.active {
    background: var(--bg-gradient);
}

.nav-menu ul li:hover a {
    color: var(--white);
    transition: var(--transition-ease-in);
}

.nav-menu ul li.active a {
    color: var(--white);
}

.nav-menu ul li {
    position: relative;
    padding: 7px 15px;
    border-radius: 30px;
    transition: var(--transition-ease-in);
    z-index: 1;
}

.nav-menu ul li::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    width: 100%;
    transition: var(--transition-ease-in);
    z-index: -1;
    border-radius: 30px;
    background: var(--bg-gradient);
    opacity: 0;
}

.nav-menu ul li:hover::after {
    transition: var(--transition-ease-in);
    opacity: 1;
}

.nav-menu ul li a {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    transition: var(--transition-ease-in);
}

.nav-menu ul li.active a,
.nav-menu ul li:hover a {
    opacity: 1;
    transition: var(--transition-ease-in);
}

.header-button {
    color: var(--white);
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    width: 181px;
    height: 50px;
    /* padding: 0px 48px; */
    background: var(--bg-gradient);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-btn {
    padding: 5px;
    display: none;
}

.offcanvas.main-menu {
    background-color: transparent;
    justify-content: center;
    transform: translateX(0);
    visibility: visible;
    position: unset;
    width: auto;
    border: 0px;
}

.offcanvas.main-menu .offcanvas-body {
    padding: 0px;
}

.hero-section {
    padding-top: 100px;
}

.semi-title {
    font-size: 20px;
    color: var(--black);
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    border: 1px solid var(--black);
    border-radius: 30px;
    padding: 15px;
    width: fit-content;
    margin: 0px auto;
}

.main-title {
    font-size: 80px;
    font-weight: 400;
    color: var(--black);
    line-height: 100%;
    text-align: center;
    margin-bottom: 0px;
}

.pera-content {
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    color: var(--black);
}

.product-button {
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    color: var(--white);
    height: 64px;
    padding: 0px 30px;
    background: var(--white);
    display: flex;
    align-items: center;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-section {
    padding-top: 32px;
}

.second-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 120%;
    color: var(--black);
    text-align: center;
}

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

.blog-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-img {
    height: 250px;
}

.card-img img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 40px;
    color: var(--black);
    margin-bottom: 15px;
}

.card-pera {
    font-size: 24px;
    font-weight: 500;
    line-height: 40px;
    color: var(--black);
}

.slim-section {
    padding: 125px 0px;
    position: relative;
    z-index: 1;
}

.slim-section::after {
    content: "";
    width: 100%;
    height: 848px;
    background-image: url("../images/main_bg/bg2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 10px;
    left: 0px;
    z-index: -1;
}

.technology-section {
    position: relative;
    z-index: 2;
}

.slim-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: -0.2px;
    color: var(--dark-gray);
}

.user-num {
    font-size: 64px;
    font-weight: 500;
    line-height: 100%;
    color: var(--black);
    margin-bottom: 19px;
}

.user-img {
    width: 96px;
    margin-top: 20px;
}

.hr-border::after {
    content: "";
    height: 100%;
    width: 1px;
    background-color: var(--dark-gray);
    position: absolute;
    top: 0px;
    left: 56%;
    transform: translateX(-50%);
    opacity: 20%;
}

.tec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.accordion .accordion-item {
    background-color: var(--white);
    border-radius: 15px !important;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    padding: 30px 28px 20px;
}

.accordion-button {
    border-radius: 15px !important;
    padding: 30px 28px;
}

.accordion-button:focus {
    box-shadow: 0 0 0 transparent;
}

.accordion-header .accordion-button {
    font-size: 28px;
    font-weight: 900;
    line-height: 40px;
    color: var(--black);
}

.accordion-button::after {
    background-image: url(../images/icon/plus.svg);
    background-size: 100% 100%;
    width: 25px;
    height: 25px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon/minus.svg);
    width: 20px;
    height: 20px;
}

.quality-section {
    margin-top: 102px;
}

.precision-list {
    list-style-type: disc !important;
    padding-left: 32px;
}

.precision-list li {
    font-size: 24px;
    list-style: none;
    color: var(--black);
    font-weight: 500;
    list-style-type: disc !important;
    line-height: 60px;
}

.vision-section {
    margin-top: 150px;
}

.vision-card {
    padding: 0px 60px 55px 56px;
    background-image: url("../images/product/product4.jpg");
    background-repeat: no-repeat;
    /* background: linear-gradient(to right, #025B84, #58A441); */
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 742px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.mission-card {
    background-image: url("../images/product/product5.jpg");
}

.vision_card_body {
    position: relative;
    z-index: 1;
    padding: 60px;
    border-radius: 20px;
    background-color: #fff;
}

/* .vision_card_body::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    border-radius: 20px;
    opacity: 0.3;
} */

.vision_card {
    /* background-color: #d5d7f5; */
    padding: 20px 0px;
    /* background-image: url("../images/main_bg/bg4.png"); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.vision-border {
    width: 100%;
    height: 2px;
    background-color: var(--black);
    margin: 30px 0px;
    position: relative;
}

.vision-border::before,
.vision-border::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid var(--black);
}

.vision-border::after {
    left: unset;
    right: 0px;
}


.footer-menu li a {
    font-size: 24px;
    line-height: 50px;
    font-weight: 500;
    color: var(--black);
}

.footer {
    padding: 100px 0px 40px;
}

.menu-title {
    font-size: 24px;
    line-height: 50px;
    font-weight: 800;
    color: var(--black);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 160px;
}

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

.f-address {
    padding-top: 40px;
}

.h-border {
    width: 100%;
    height: 1px;
    background-color: var(--black);
    opacity: 10%;
    margin: 30px 0px;
}

.about-title {
    font-size: 64px;
    line-height: 120%;
    font-weight: 400;
    color: var(--black);
}

.industry-section {
    padding-top: 148px;
}

.industry-grid {
    display: flex;
    /* align-items: center; */
    gap: 16px;
}

.industry-card {
    position: relative;
    height: 665px;
    max-width: 490px;
    width: 100%;
    background: url("../images/about/our.jpeg") no-repeat center/cover;
    border-radius: 20px;
    /* ✅ round corners */
    overflow: hidden;
    /* ✅ image overflow hide karega */
    padding: 50px 30px 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    /* ✅ text white */
    z-index: 1;
}

.industry-card1 {
    position: relative;
    height: 665px;
    max-width: 490px;
    width: 100%;
    background: url("../images/about/varn.jpeg") no-repeat center/cover;
    border-radius: 20px;
    /* ✅ round corners */
    overflow: hidden;
    /* ✅ image overflow hide karega */
    padding: 50px 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    /* ✅ text white */
    z-index: 1;
}

.industry-card1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #2B363B80;
    /* ✅ black overlay with opacity */
    z-index: 0;
}

.industry-card1 * {
    position: relative;
    z-index: 1;
    /* ✅ text overlay ke upar dikhai de */
}

.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #2B363B80;
    /* ✅ black overlay with opacity */
    z-index: 0;
}

.industry-card * {
    position: relative;
    z-index: 1;
    /* ✅ text overlay ke upar dikhai de */
}

.service-card {
    background-image: url("../images/product/product13.png");
    border-radius: 30px;
    mix-blend-mode: luminosity;
}

.industry-status {
    padding: 10px 30px;
    border: 1px solid #fff;
    border-radius: 35px;
    width: fit-content;
}

.industry-title {
    font-size: 40px;
    line-height: 100%;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.industry-pera {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: var(--white);
}

.industry-list {
    list-style-type: disc !important;
    padding-left: 32px;
}

.industry-list li {
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
    list-style-type: disc !important;
    line-height: 40px;
}

.industry-year {
    padding: 40px 40px 27px;
    height: 325px;
    width: 100%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.year-num {
    font-size: 40px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 0px;
}

.year-text {
    font-size: 30px;
    line-height: 110%;
    font-weight: 400;
}

.team-section {
    padding: 150px 0px 100px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 32px;

}

.team-post {
    font-size: 20px;
    line-height: 100%;
    font-weight: 400;
    color: var(--black);
}

.team-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 30px;
    left: 0px;
    padding: 0px 27px;
    width: 100%;
}

.future-section {
    padding: 60px 0px 80px;
    background-color: var(--white);
    border-radius: 27px;
}

.about-video {
    padding: 100px 0px;
}

.product-img {
    margin-top: 46px;
}

.categories-section {
    padding-top: 150px;
}

.interior-section {
    padding-top: 68px;
}

.nav-tabs {
    gap: 30px;
}

.nav-tabs .nav-link {
    font-size: 24px;
    line-height: 40px;
    font-weight: 500;
    color: var(--black);
    padding: 0px 30px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: 34px;
}

.nav-tabs .nav-link.active {
    background: var(--bg-gradient);
    color: var(--white);
}

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

.download-btn,
.download-btn:hover,
.download-btn:focus,
.download-btn:active {
    font-size: 20px;
    font-weight: 600;
    height: 64px;
    padding: 0px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(to right, #025B84, #58A441) border-box;
    border-radius: 32px;
    border: 1px solid transparent !important;
    text-transform: capitalize;
    margin: 0 auto;
    width: fit-content;
}

.furniture-section {
    padding-top: 120px;
}

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

.service-section {
    width: 100%;
    height: 754px;
    background-image: url("../images/product/product8.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding-bottom: 80px;
    margin-top: 120px;
}

.surface-section {
    padding-top: 162px;
    position: relative;
    z-index: 1;
}

.surface-section::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("../images/main_bg/bg2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.delivery-list {
    padding-left: 32px;
    list-style-type: disc;
    margin-top: 37px;
}

.delivery-list li {
    font-size: 28px;
    font-weight: 500;
    line-height: 60px;
    color: var(--black);
}

.support-section {
    padding: 118px 0px 93px;
    position: relative;
    z-index: 1;
}

.support-section::before {
    content: "";
    width: 100%;
    height: 700px;
    background-image: url("../images/product/rnd.jpeg");
    color: #000;
    opacity: 0.3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    mix-blend-mode: luminosity;
}

.testing-section {
    position: relative;
    z-index: 1;
}

.contect-section {
    padding-top: 150px;
}

.contect-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 30px;
    height: 245px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contect-icon {
    width: 60px;
    height: 60px;
}

.contect-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 120%;
    margin-bottom: 10px;
}

.contect-link {
    font-size: 32px;
    font-weight: 500;
    line-height: 40px;
    color: var(--black);
}

.corporate-section {
    background-image: url("../images/product/product13.jpg");
    padding: 145px 0px 107px;
    margin-top: 100px;
}

.units-section {
    padding-top: 150px;
}

.unit-card {
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.units-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 45px;
}

.units-text {
    font-size: 30px;
    font-weight: 400;
    line-height: 120%;
    color: var(--black);
}

.contact-section {
    padding-top: 116px;
    position: relative;
    z-index: 1;
}

.contact_shadow {
    position: relative;
    z-index: 1;
}


.contact_shadow::after {
    content: "";
    width: 100%;
    height: 60%;
    /* background-image: url("../images/main_bg/bg5.png"); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
}

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

.input_form,
.input_form:focus {
    height: 115px;
    padding: 0px 50px;
    font-size: 24px;
    font-weight: 500;
    color: var(--black);
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 0 0 transparent;
    border: 0px;
}

.text-area,
.text-area:focus {
    height: 288px;
    padding: 50px 50px 20px;
    resize: unset;
}

.form-button,
.form-button:focus,
.form-button:active,
.form-button:hover {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    height: 77px;
    background: var(--bg-gradient);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 50px;
    color: var(--white) !important;
    margin: 0px auto;
    box-shadow: 0 0 0 transparent;
}

.career-card {
    padding: 30px 40px 25px;
    background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(to right, #025B84, #58A441) border-box;
    border-radius: 30px;
    border: 1px solid transparent !important;
}

.departments-section {
    padding-top: 127px;
}

.apply_btn {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    line-height: normal;
    display: flex;
    align-items: center;
    padding: 0px 30px;
    height: 70px;
    background: var(--bg-gradient);
    border-radius: 34px;
    width: fit-content;
    margin-top: 10px;
}

.testimonial_section {
    padding-top: 150px;
    overflow: hidden;
}

.varn-life {
    padding: 10px 15px;
    background-color: var(--white);
    border-radius: 27.5px;
    font-family: Inter;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    text-transform: capitalize;
    font-family: "Inter";
}

.career_stories {
    gap: 44px;
}

.career_text {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--text-dark);
    font-family: 'Inter';
}

.testimonial_swiper {
    padding-top: 115px;
    overflow: visible;
}

.review-card {
    height: 440px;
    background-color: var(--white);
    padding: 86px 40px 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.review-card-icon {
    position: absolute;
    top: -50px;
    left: 34px;
    height: 100px;
    width: 100px;
}

.user_img {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
}

.slide-pera {
    font-size: 15px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text-dark);
}

.client-review {
    font-size: 12px;
    font-weight: 700;
    line-height: 20px;
    color: var(--text-dark);
}

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

.more_btn,
.more_btn:hover,
.more_btn:focus,
.more_btn:active,
.more_btn:focus-visible {
    font-size: 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    border: 0px;
    background-color: transparent;
    outline: 0px;
}

.product-image {
    width: 100%;
    height: 285px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.product-title {
    font-size: 24px;
    line-height: 40px;
    color: var(--black);
    margin: 15px 0px 0px;
}

.section-slider {
    padding: 40px 0px 80px;
    position: relative;
}

.section-slider::before,
.section-slider::after {
    content: "";
    width: 30%;
    height: 90%;
    background: linear-gradient(to right, #d6dde3, #d6dde350);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
}

.section-slider::after {
    left: unset;
    right: 0px;
    background: linear-gradient(to left, #D7DDE3, #D7DDE350);
}

.marquee {
    overflow: hidden;
}

.marquee__track {
    display: flex;
    will-change: transform;
    user-select: none;
    padding-block: 30px;
}

.marquee__pack {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-inline-end: 25px;
}

.marquee__item {
    border-radius: 15px;
    flex: 0 0 auto;
    white-space: nowrap;
    /* background-color: #fff; */
    height: 85px;
    width: 180px;
    padding: 10px;
}

.marquee__item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.down_btn,
.down_btn:hover,
.down_btn:focus,
.down_btn:active {
    font-size: 24px;
    width: fit-content;
    margin: 60px auto 0px;
    gap: 5px;
    border: 0px;
}

.curtain-section {
    padding-top: 80px;
}

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

.applications-section {
    padding-top: 120px;
}

.excellence-card {
    padding: 50px 30px 28px;
}

.footer_add {
    line-height: 42px !important;
}

/* common css */

.text-gradient {
    background: linear-gradient(55deg, #025B84, #58A441);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text_black {
    color: var(--black);
}

.bg-gradient {
    background: var(--bg-gradient) !important;
}

.bg-off-white {
    background-color: var(--off-white);
}

.bg-deep-blue {
    background-color: var(--deep-blue);
}

.primary-bg {
    background-color: var(--primary-blue);
}

.gap_10 {
    gap: 10px;
}

.gap_15 {
    gap: 15px;
}

.gap_30 {
    gap: 30px;
}

.gap_y_60 {
    gap: 60px 0px;
}

.mb_30 {
    margin-bottom: 30px;
}

.mt_60 {
    margin-top: 60px;
}

.mt_120 {
    margin-top: 120px;
}

.p_30 {
    padding: 30px;
}

.lh_40 {
    line-height: 40px !important;
}

.lh_60 {
    line-height: 60px;
}

.lh_70 {
    line-height: 70px !important;
}

.lh_100 {
    line-height: 100%;
}

.lh_110 {
    line-height: 110%;
}

.fw_light {
    font-weight: 300;
}

.fw_extrabold {
    font-weight: 800;
}

.flex-1 {
    flex: 1 0 0;
}

.rounded_15 {
    border-radius: 15px;
}

.rounded_30 {
    border-radius: 30px;
}

.mix-blend {
    mix-blend-mode: Luminosity;
}