* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary: #DA251D;
    --primary-light: #FEF2F3;

    --text-red: #DA251D;
    --text-black: #171717;
    --text-grey: #868593;
    --text-grey-2: #8B8B8B;
    --text-white: #fff;

    --primary-bg: #fff;
    --secondary-bg: #171717;
    --tertiary-bg: #F2F3F4;
    --tertiary-bg-deep: #E5E7E9;

    --primary-font: "Oswald", serif;
    --secondary-font: "Poppins", serif;
}

ol,
ul,
li,
a {
    list-style: none;
    text-decoration: none;
}

ol,
ul {
    padding: 0 !important;
    margin-bottom: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
ul {
    margin-bottom: 0 !important;
}

p {
    font-size: 16px !important;
    line-height: 1.6;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-black);
    font-family: var(--secondary-font);
}

/* Top Bar */
.top-bar {
    padding: 7px 0;
    background-color: var(--secondary-bg);
}

.top-bar-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
}

.top-bar-text {
    margin-bottom: 3px;
}

.top-bar-text span {
    color: var(--text-grey-2);
    font-size: 12px;
    line-height: 1.2;
}

.top-bar-text p {
    line-height: 1.2;
    font-size: 15px !important;
}

.top-bar-icon i {
    font-size: 1.25rem;
    color: var(--primary);
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar-info a {
    padding-right: 1.5rem;
    margin-right: 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar-info a:last-child {
    border-right: 0px solid rgba(255, 255, 255, 0.12);
}

.social-icons-container span {
    font-size: 15px;
    color: var(--text-white);
    margin-right: 1.25rem;
}

.social-icons a {
    height: 30px;
    width: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text-grey-2);
}

.social-icons a i {
    color: var(--text-white);
    font-size: 14px;
}

/* Navbar */
.navigation {
    z-index: 999;
    background-color: var(--primary-bg);
    transition: 300ms ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo img {
    width: 400px;
}

.navigation-links li a {
    font-weight: 500;
    color: var(--text-black);
    padding: 10px 16px;
}

.navigation-btn-container a:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.navigation-btn-container a:first-child {
    font-weight: 500;
    color: var(--text-black);
}

.navigation-btn-container a:first-child i {
    font-size: 1.5rem;
    color: var(--text-red);
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    border-radius: 0;
}

.dropdown-menu li a {
    padding: 10px 16px;
    font-size: 15px;
}

.dropdown-menu li:not(:last-child) a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.active-nav {
    color: var(--text-red) !important;
}

.custom-dropdown-container {
    position: relative;
}

.custom-dropdown {
    position: absolute;
    padding-top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    /* padding-top: 2.5rem; */
    z-index: 99999;
    display: none;
}

.custom-dropdown ul {
    background-color: var(--primary-bg);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.custom-dropdown ul li {
    width: 100%;
}

.custom-dropdown ul li a {
    padding: 8px 16px;
    display: block;
    min-width: 150px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.custom-dropdown ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.custom-dropdown-container-2 {
    position: relative;
}

.custom-dropdown-2 {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
}

.custom-dropdown-container:hover .custom-dropdown,
.custom-dropdown-container-2:hover .custom-dropdown-2 {
    display: block;
}

.nav-close-btn {
    display: none;
}

.menu-btn {
    height: 36px;
    width: 36px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 1px solid var(--text-red);
    cursor: pointer;
    flex-shrink: 0;
}

.menu-btn i {
    font-size: 1.25rem;
    color: var(--primary);
}

.navigation-scrolled {
    position: sticky;
    top: 0;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Hero */
.hero {
    position: relative;
}

.hero-card {
    height: 100%;
}

.hero-card .hero-card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-content-container .container {
    height: 100%;
}

.hero-content {
    z-index: 99;
    height: 100%;
    color: var(--text-white);
    padding: 4rem 0;
}

.hero-content h1 {
    font-size: 70px;
    font-weight: 700;
    font-family: var(--primary-font);
    line-height: 1.3;
}

.hero-content h1 span {
    color: var(--text-red);
}

.hero-slider-btn-container {
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 199;
}

.hero-slider-btn {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-slider-btn i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.hero-btn-container .primary-btn {
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: var(--primary-bg) !important;
    color: var(--text-black) !important;
    height: 56px;
    padding-right: 5px !important;
    font-weight: 500;
    width: max-content;
    flex-shrink: 0;
}

.hero-btn-container .primary-btn span {
    height: 46px;
    width: 46px;
    border-radius: 100%;
    background-color: var(--secondary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn-container .primary-btn span img {
    height: 18px;
}

/* Text Scroller */
.certificate-slider .swiper-slide,
.partner-slider .swiper-slide {
    width: max-content;
    display: flex;
    align-items: center;
}

.certificate-slider>.swiper-wrapper,
.partner-slider>.swiper-wrapper {
    transition-timing-function: linear;
}

.certificate-slider-card {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--tertiary-bg);
    margin-right: 3rem;
}

.certificate-slider .swiper-slide img,
.partner-slider .swiper-slide img {
    width: 60px;
}

.certifications .section-header h2 {
    font-size: 2.5rem !important;
}

/* About Us */
.about-card {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.about-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-card-bg {
    background-color: var(--secondary-bg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
}

.about-card-icon {
    height: 90px;
    width: 90px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-bg);
}


.about-card-icon img {
    width: 45px;
    object-fit: contain;
}

.about-card-content h2 {
    font-size: 5rem;
    font-weight: 600;
    color: var(--text-white);
    font-family: var(--primary-font);
    margin-bottom: 1rem !important;
}

.about-card-content p {
    font-size: 1.25rem !important;
    color: var(--text-white);
}

.about-point {
    display: grid;
    grid-template-columns: 5.5fr 5.5fr 1fr;
    padding: 1.5rem 0;
    gap: 1rem;
}

.about-point-icon {
    height: 60px;
    width: 60px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.about-point-icon img {
    height: 26px;
}

.about-point-icon-b {
    background-color: var(--primary-bg);
}

.about-point-icon-w {
    display: none;
    background-color: var(--secondary-bg);
}

.about-point:hover .about-point-icon-b {
    display: none;
}

.about-point:hover .about-point-icon-w {
    display: flex;
}

.about-point:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.about-point h2 {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: var(--primary-font);
}

/* Products */
.product-slider {
    padding-bottom: 3.5rem !important;
}

/*.product-slider .swiper-slide {*/
/*    width: 425px;*/
/*}*/

.product-card-img {
    height: 350px;
    border-radius: 20px;
    background-color: var(--tertiary-bg-deep);
    padding: 1rem;
}

.product-card-img img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-card-content {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-card-content h6 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 2rem;
}

.product-card-content a {
    font-weight: 600;
    text-decoration: underline;
    color: var(--text-red);
}

/* Services */
.service-card:not(:last-child) {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.service-card-img {
    height: 400px;
}

.service-card-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service-card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card .product-card-content {
    gap: 1.5rem;
}

.service-card-content span {
    font-size: 3rem;
    font-weight: 600;
    font-family: var(--primary-font);
}

/* Indutries */
.industry .section-header p {
    width: 100% !important;
    color: var(--text-black);
}

.industry-card .product-card-img {
    padding: 0;
}

.industry-card .product-card-img img {
    object-fit: cover !important;
    border-radius: 20px;
}

.industry-card .product-card-content h6 {
    color: var(--text-black);
}

.industry-slider {
    padding-bottom: 3.5rem !important;
}

/* Map */
.map img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* Counter */
.counter-col {
    display: flex;
    justify-content: center;
}

.counter-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter-card-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.counter-card-title .count {
    font-size: 5rem !important;
    font-weight: 700;
}

.counter-card-title .count-plus {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-red);
}

.counter-card p {
    font-size: 1.5rem !important;
    font-weight: 500;
    margin-top: -5px;
}

/* Footer */
.footer {
    background-color: var(--secondary-bg);
    color: var(--text-white);
}

.footer .services::after {
    background-color: transparent;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col-container {
    display: flex;
    justify-content: center;
}

.footer-col p {
    color: var(--text-white);
    font-weight: 300;
}

.footer-col h6 {
    font-size: 28px;
    font-family: var(--primary-font);
    color: var(--text-white);
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-links li a {
    color: var(--text-white);
    font-weight: 300;
}

.footer-location {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-location a {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-location-icon {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid var(--primary);
    flex-shrink: 0;
}

.footer-location-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.query-box {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.query-box h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-white);
    font-family: var(--primary-font);
}

.query-box h2 span {
    color: var(--text-red);
}

.query-box .primary-btn {
    padding: 16px 48px;
    flex-shrink: 0;
    background-color: var(--primary-bg) !important;
    color: var(--text-black) !important;
    font-weight: 500;
}

.footer-bottom-box {
    margin-top: 1rem;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    gap: 2rem;
}

.footer-bottom-box p {
    color: var(--text-white);
    font-weight: 300;
}

.footer-bottom-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.footer-bottom-social a {
    height: 40px;
    width: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom-social a i {
    font-size: 1.35rem;
    color: var(--primary);
}

/* Service Page */
.service-page-card-content {
    margin-top: 0 !important;
}

.duration {
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    background-color: #DA251D25;
    width: max-content;
}

.duration span {
    font-size: 16px !important;
    font-family: var(--secondary-font);
    color: var(--text-red);
}

/* Testimonial Sec */
.testimonial-sec {
    background-color: var(--primary);
}

.testimonial-sec .section-header {
    margin-right: 2rem;
}

.testimonial-sec .section-header h2 {
    color: var(--text-black);
}

.testimonial-sec .section-header h2 span {
    color: var(--text-secondary);
}

.testimonial-card {
    padding: 3rem 4rem;
    position: relative;
    border-radius: 15px;
    border: 1px solid var(--border-secondary);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-black);
    background-color: var(--tertiary-bg);
    height: 100%;
}

.testimonial-icon {
    position: absolute;
    left: -30px;
    top: 50px;
    height: 60px;
    width: 60px;
    border: 1px solid var(--border-secondary);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
}

.testimonial-icon img {
    width: 30px;
}

/* 
.testimonial-slider {
    padding: 0 0 0 30px !important;
} */

.testimonial-rating {
    background-color: var(--primary);
    width: max-content;
    padding: 2px 16px;
    border-radius: 30px;
    border: 1px solid var(--border-secondary);
    gap: 3px;
    margin-top: 3px;
}

.testimonial-rating span {
    margin-left: 7px;
    line-height: 0;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-white);
}

.testimonial-rating i {
    color: var(--text-white);
}

.testimonial-card h6 {
    margin-top: 0.75rem;
    font-size: 1.5rem;
    font-family: var(--primary-font);
    font-weight: 600;
}

.testimonial-card h6 span {
    font-size: 1rem;
    font-family: var(--tertiary-font);
    font-weight: 300;
    color: var(--text-primary-light);
    margin-left: 1rem;
}

.testimonial-slider .swiper-slide {
    height: auto !important;
}

.testimonial-sec-container {
    position: relative;
}

.testimonial-btn-container {
    position: absolute;
    top: 0.5rem;
    right: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-btn {
    height: 46px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid var(--border-secondary);
    cursor: pointer;
}

.testimonial-btn i {
    color: var(--text-black);
    font-size: 1.5rem;
}

.testi-home {
    position: relative;
}

.testi-home::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: -50px;
    background-color: var(--primary);
    z-index: -1;
}

.testimonial-slider {
    padding-bottom: 3.5rem !important;
}

/* Media Page */
.media-img {
    overflow: hidden;
    border-radius: 15px;
}

.media-card img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: 300ms ease;
}

.media-img:hover img {
    transform: scale(1.2);
}

.media-card h6 {
    margin-top: 16px;
    padding: 1.25rem;
    border-radius: 10px;
    background: #751813;
    background: linear-gradient(90deg, rgba(117, 24, 19, 1) 0%, rgba(0, 0, 0, 1) 100%);
    color: var(--text-white);
    text-align: center;
    line-height: 1.4;
}

/* Contact Us */
.contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-box:not(:first-child) {
    margin-top: 3rem;
}

.contact-info-icon {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.45rem;
    color: var(--text-black);
}

.contact-info-text h6 {
    font-size: 1.25rem;
    font-family: var(--primary-font);
    font-weight: 600;
}

.contact-info-text p {
    color: var(--text-grey);
    margin: 0.25rem 0 0.25rem 0 !important;
}

.contact-info-text a {
    font-weight: 600;
    color: var(--text-black);
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.contact-info-text a i {
    color: var(--primary);
    margin-top: -1px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form {
    padding: 3.5rem;
    border-radius: 20px;
    background-color: var(--tertiary-bg);
}

.contact-form h4 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--primary-font);
    margin-bottom: 1.75rem !important;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 12px 16px;
    border: 2px solid var(--primary);
    background-color: var(--primary-bg);
}

.contact-form button {
    background-color: var(--primary) !important;
}

.address-card {
    padding: 2rem;
    border-radius: 20px;
    background-color: var(--tertiary-bg);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    height: 100%;
}

.address-card .address-icon {
    font-size: 2.5rem;
    color: var(--text-red);
}

.address-card h4 {
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--primary-font);
    margin-bottom: 1rem !important;
}

.address-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.address-card-info a {
    color: var(--text-black);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-weight: 500;
}

.address-card-info a i {
    font-size: 1.25rem;
    margin-top: -4px;
    color: var(--text-red);
}

/* Blogs Page */
.blog-img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.blog-card-content {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.blog-card-content span {
    color: var(--text-grey)
}

.blog-card-content h6 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--primary-font);
}

.blog-card-content a {
    font-weight: 600;
    color: var(--text-red);
    margin-top: 0.5rem;
    text-decoration: underline;
}

/* Blog Detail Page */
.blog-content-page .section-header p {
    width: 100%;
    font-size: 15px !important;
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.blog-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    font-weight: 700;
}

.blog-content p {
    color: var(--text-black);
}

.blog-content ul {
    padding-left: 17px !important;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.blog-content ul li {
    font-weight: 500;
    list-style: disc;
}

/* Industries Page */
.industries-card-content p {
    color: var(--text-black);
}

/* Career Page */
.career-card {
    position: relative;
}

.career-card h6 {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.career-card h6 a {
    color: var(--text-red) !important;
}

.career-num {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.25;
}

/* Product Listing Page */
.product-listing-card .product-card-img {
    height: 300px;
}

.product-listing-card .product-card-content h6 {
    font-size: 1.5rem;
}

.product-listing-card .product-card-content {
    align-items: center;
    text-align: center;
}

.product-listing-card a {
    text-decoration: none;
    padding: 10px 24px;
    width: 100%;
    background-color: var(--primary);
    color: var(--text-white);
    border-radius: 50px;
    text-align: center;
    font-weight: 300;
    margin-top: 0.25rem;
}

/* Product Details Page */
.product-details-img {
    height: 500px;
    border-radius: 20px;
    background-color: var(--tertiary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-details-img img {
    height: 450px;
    width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-table {
    font-size: 14px;
}

.product-table th,
.product-table td {
    padding: 7px;
}

.product-table thead tr th {
    color: var(--text-red);
    font-size: 16px;
}

/* About Page Section */
.about-img img {
    height: 600px;
    width: 100%;
    object-fit: cover;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100% !important;
}

.about-content .primary-btn img {
    width: 28px;
    margin-left: 10px;
}

.about-content .section-header {
    margin-bottom: 0 !important;
}

.about-content .section-header p {
    width: 100%;
}

/* Choose Us */
.choose-header-img img {
    width: 60px;
    position: relative;
}

.choose-header-img img:nth-child(1) {
    z-index: 1;
}

.choose-header-img img:nth-child(2) {
    z-index: -1;
}

.choose-header-img img:nth-child(3) {
    z-index: -3;
}

.choose-header-img img:not(:first-child) {
    margin-left: -30px;
}

.choose-us-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.choose-us-card {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.choose-us-card:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.25);
}

.choose-us-icon {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.choose-us-card h6 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--primary-font);
    margin-top: 0.5rem;
}

.choose-us-icon img {
    width: 50px;
}

/* Security Box */
.security-box {
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.security-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.security-box::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.security-box-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    color: var(--text-white);
    align-items: flex-start;
    z-index: 99;
    width: 50%;
}

.security-box-content h2 {
    font-size: 3.5rem;
    font-weight: 600;
    font-family: var(--primary-font);
}

.product-details-col .secondary-btn {
    border: 1px solid var(--primary) !important;
    color: var(--text-red) !important;
}

/* Quote Form */
.quote-form {
    padding: 3rem 2.5rem;
    background-color: var(--tertiary-bg);
    border-radius: 15px;
}

.quote-form label {
    font-weight: 500;
    margin-bottom: 5px;
}

.quote-form input {
    padding: 12px 32px;
}

.product-details-content ul li a {
    color: var(--text-black);
    text-decoration: underline;
}

.about-card-ceo {
    position: relative;
}

.about-card-ceo::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 50%;
    content: '';
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.about-ceo-content {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 1;
    color: var(--text-white);
}

.about-ceo-content h6 {
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem !important;
}

/* Project Page */

.project-card {
    height: 450px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.project-card::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.project-img {
    height: 100%;
    width: 100%;
    object-fit: cover;

}

.project-card-content {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 2;
    color: var(--text-white);
}

.project-card-content h6 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--primary-font);
}

.project-card-content p {
    line-height: 1.4;
}

/* Project Detail Page */
.project-content-page .section-header p {
    width: 100%;
    font-size: 15px !important;
}

.project-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.project-content img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 15px;
}

.blog-content p {
    color: var(--text-black);
}

.Office-card {
    padding: 1.5rem 1rem;
    border-radius: 15px;
    background-color: var(--tertiary-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
}

.Office-card i {
    font-size: 2.5rem;
    color: var(--text-red);
    line-height: 1;
}

.Office-card h6 {
    font-size: 1.25rem;
    font-weight: 600;
}

.top-bar-number-container {
    display: flex;
    align-items: center;
}

.top-bar-number {
    margin-left: 10px;
}

.top-bar-number p {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-number p a {
    padding-right: 0 !important;
    margin-right: 0 !important;
    border-right: none;
}

.product-slider-container {
    position: relative;
}

.product-slider-btn {
    position: absolute;
    top: 155px;
    z-index: 99;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    cursor: pointer;
}

.product-slider-btn i {
    color: #fff;
    font-size: 2rem;
}

.product-slider-prev {
    left: -20px;
}

.product-slider-next {
    right: -20px;
}