* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inter, sans-serif;
}

@font-face {
    font-family: 'inter';
    font-weight: 400;
    src: url('/font/Inter-Medium.ttf') format('ttf'),
        url('/font/Inter-Regular.ttf') format('ttf');
}

@font-face {
    font-family: 'inter-bold';
    font-weight: bolder;
    src: url('/font/Inter-Black.ttf') format('ttf'),
        url('/font/Inter-ExtraBold.ttf') format('ttf');
}

/* navbar */
.sec_pad {
    padding: 1rem;
}

.container-fluid {
    --bs-gutter-x: 0rem;
}

.row {
    --bs-gutter-x: 0rem;
}

.top-head {
    height: 80px;
    width: 100%;
}

.bg-navtop {
    background-color: #D10106;
}

.top-mail {
    display: flex;
    align-items: center;
    padding: 5px;
    /* Padding around the container */
}

.top-mail img {
    width: 17px;
    /* Adjust size of the image */
    height: 17px;
    margin-right: 10px;
    /* Space between image and text */
}

.top-mail p {
    margin-bottom: 0;
    cursor: pointer;
    color: #fff;
    /* Text color */
    font-size: 16px;
    /* Font size */
}

.top-mail a {
    color: #fff;
    /* Link color */
    text-decoration: none;
    /* Remove underline */
    transition: color 0.3s;
    /* Smooth transition for hover effect */
}

.top-mail p a:hover {
    color: #f0eeee;
    /* Hover color for the link */
}

.top-mail .img :hover {
    color: #d5d5d5;
    /* Hover color for the link */
}

.logo {
    /* height: 40px; */
    /* width: 110px; */
    margin-left: 40px;
}

.nav-link {
    font-weight: bolder;
    font-size: 18px;
    position: relative;
}

.nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 3px;
    width: 0;
    background-color: #D10106;
    transition: width 0.3s;
}

.nav-link:hover::before {
    width: 100%;
    /* Full width on hover */
}

.nav-link:hover {
    color: #D10106;
    /* Change link color on hover */
}

.nav-btn {
    background-color: #D10106;
    color: white;
    border-radius: 5px;
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 8px 10px;
    border: 1px solid #D10106;
}

.nav-btn:hover {
    background-color: white;
    color: #D10106;
    border: 1px solid #D10106;
}

.nav-link.active {
    color: #D10106;
}

/*  section-1 */
.ban-left h1 {
    font-size: 4vw;
    font-weight: bolder;
    font-family: inter, sans-serif;
    font-weight: 800;
    word-spacing: 10px;
    background: linear-gradient(to right, #D10106 0%, #6B0103 100%);
    /* Adjust the gradient colors as needed */
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    /* Ensure the element's background only covers the text */
}

.ban-left p {
    font-size: 1.4vw;
    font-weight: 500;
    line-height: 1.5;
    width: 90%;
    color: black;
}

.ban-right img {
    width: 40vw;
}

.btn-box {
    /* background-color: #ffb1b1; */
    display: flex;
}

.btn-1 {
    text-decoration: none;
    color: white;
    font-size: 1.3vw;
    padding: 1.3vw 2vw;
    border-radius: 11px;
    border: 3px solid rgba(193, 5, 5, 0.996);
    background: linear-gradient(to right, #D10106 0%, #6B0103 100%);
}

.btn-1:hover {
    color: #d10105;
    background: white;
    border: 3px solid linear-gradient(to right, #D10106 0%, #6B0103 100%);
}

/* Base styles for the button */
.btn-box .btn-2 {
    padding: 1.3vw 2vw;
    font-size: 1.3vw;
    font-weight: 600;
    text-decoration: none;
    color: #D10106;
    border-radius: 11px;
    background: white;
    transition: all 0.3s ease;
    border: 3px solid #6B0103;
}

/* Arrow animation */
.btn-box .btn-2 img {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-box .btn-2:hover img {
    animation: move-arrow 1s infinite;
}

@keyframes move-arrow {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

/*section-2 about section */

.heading {
    position: relative;
    padding: 2vw;
}

.heading h1 {
    font-size: 4vw;
    color: #D10106;
    font-weight: 600;
    position: relative;
    text-align: center;
}

.heading h4 {
    font-size: 3vw;
    color: #D10106;
    font-weight: 600;
    position: relative;
    text-align: center;
}

.heading h1::after {
    content: "";
    position: absolute;
    height: 0.4vw;
    width: 15vw;
    background: linear-gradient(to right, #D10106 0%, #6B0103 100%);
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.heading h4::after {
    content: "";
    position: absolute;
    height: 0.3vw;
    width: 13vw;
    background: linear-gradient(to right, #D10106 0%, #6B0103 100%);
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.about-h {
    width: 80%;
    text-align: center;
    font-size: 3vw;
    font-weight: 600;
    line-height: 1.2;
    background: linear-gradient(to right, #D10106 0%, #6B0103 100%);
    /* Adjust the gradient colors as needed */
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.about-h span {
    color: black;
}

.about-img {
    width: 500px;
}

/* section-3 */
#product {
    background-color: #ffbfbed0;
}

.img-card {
    overflow: hidden;
}

.img-card img {
    border-radius: 5px;
}

.card:hover img {
    transform: scale(1.03);
    transition: 0.3s all ease-in;
}

.card-btn {
    background-color: #D10106;
    color: white;
    border-radius: 5px;
    transition: all 0.2s ease;
    text-decoration: none;
    padding: 5px 8px;
    border: 1px solid #D10106;
}

.card-text {
    font-size: 15px;
    font-weight: 600;
}

.card-btn:hover {
    background-color: rgb(141, 5, 5);
    color: #ffffff;
    border: 1px solid #D10106;
    transition: all 0.4s ease;
}

.card-btn:hover span img {
    transform: translateX(3px);
}

/* section-4 */
#contact {
    background-color: #6B0103;
}

.heading-con {
    position: relative;
    padding: 2vw;
}

.heading-con h1 {
    font-size: 4vw;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    text-align: center;
}

.heading-con h1::after {
    content: "";
    position: absolute;
    height: 0.4vw;
    width: 15vw;
    background: white;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

p {
    margin-bottom: 0 !important;
}

.con-add,
.con-mail,
.con-contact {
    transition: all 0.3s ease-in;
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 10px;
}

.con-add:hover,
.con-mail:hover,
.con-contact:hover {
    border: 1px solid rgba(255, 255, 255, 0.373);
}

.con-add:hover p {
    color: #d5d5d5;
}

.map iframe {
    width: 35vw;
    height: 25vw;
    border-radius: 10px;
}

/* footer */
#footer {
    background-color: #E0E0E0;
}

#footer .footer-img {
    width: 15vw;
}

#footer p {
    font-size: 1.2vw;
}

.f-mail::before,
.f-call::before,
.f-add::before {
    display: inline;
    margin-right: 8px;
    vertical-align: middle;
    width: 12px;
    height: 12px;
}

.f-mail::before {
    content: url('./images/footer-mail.svg');
}

.f-call::before {
    content: url('./images/footer-call.svg');
}

.f-add::before {
    content: url('./images/footer-location.svg');
}

.f-mail,
.f-call,
.f-add {
    position: relative;
}

.social-media {
    display: flex;
    justify-content: start;
    align-items: center;
    margin: 2vw;
}

.social-media img {
    height: 3vw;
    width: 3vw;
    margin: 0.6vw;
    border-radius: 50%;
}

.social-media img:hover {
    border: 3px solid #D10106;
}

/* about page */
.text-danger {
    color: #D10106 !important;
}

.vision-card {
    border: 2px solid #6E6E6E;
    transition: background-color 0.3s ease, background 0.3s ease;
    /* Smooth transition */
}

.vision-card:hover {
    border: 2px solid #6e6e6e00;
    background: linear-gradient(135deg, rgba(209, 1, 5, 0.307), rgba(255, 253, 253, 0.5));
}

#mission {
    background-color: #ffa8a793;
}

.mission-img {

    width: 30vw;
}

.misssion-p p {
    font-size: 1.2vw;
    font-weight: 500;
    padding: 3vw;
}

/* product details page */
/* Position the image container (needed to position the left and right arrows) */
.container-multi {
    height: 35vw;
    width: 40vw;
    margin: 2vw;
    position: relative;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 45%;
    width: auto;
    padding: 0.2vw;
    margin-top: -50px;
    color: rgb(176, 4, 4);
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    border: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(170, 3, 3, 0.349);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 16px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* Container for image text */
.caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Six columns side by side */
.column {
    float: left;
    width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
    opacity: 0.9;
}

.active-product,
.demo:hover {
    opacity: 1;
    border: 3px solid #D10106;
}


/* .product-detail-info {
    padding: 4vw;
    width: 80%;
} */

.product-detail-info h3 {
    font-size: 4vw;
    margin-bottom: 0px;
}

.product-detail-info p {
    /* padding: 4vw; */
    font-size: 1.4vw;
}

.f-description p {
    font-size: 1.4vw;
}

.product-table table tr td {
    padding: 10px;
    border: 2px solid black;
}

.product-table table tr td p {
    font-size: 1.4vw;
    letter-spacing: 5%;
}

/* contactus page */
.contactus-card {
    /* border: 2px solid #6E6E6E; */
    background-color: #D9D9D9;
    transition: background-color 0.3s ease, background 0.3s ease;
    /* Smooth transition */
}

.contactus-card:hover {
    border: 2px solid #6e6e6e00;
    background: linear-gradient(135deg, rgba(255, 120, 120, 0.397), rgba(206, 206, 206, 0.548));
}

/* .card-img-top {
    height: 4rem;
    width: 4rem;
} */

.social_media {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: linear-gradient(135deg, #000000, #6E6E6E);
    padding: 0.3vw 4vw;
    border-radius: 50px;
}

.social_media:hover {
    background: linear-gradient(135deg, #6E6E6E, #000000);
}

.social_media a {
    margin: 0.5vw 2vw;
}

.social_media a img {
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
}

.social_media a img:hover {
    border: 3px solid red;
}

.heading-contact {
    position: relative;
    padding: 2vw;
}

.heading-contact h1 {
    font-size: 4vw;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    text-align: center;
}

.heading-contact h1::after {
    content: "";
    position: absolute;
    height: 0.4vw;
    width: 35vw;
    background: white;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.form-box {
    margin: 2vw;
    padding: 2vw;
    border: 2px solid white;
    width: 80%;
    border-radius: 20px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.253);
}

@media (max-width:600px) {
    .logo {
        height: 40px;
        /* width: 100px; */
        margin-left: 10px;
    }

    .navbar-toggler {
        color: #d10105cd;
        margin-right: 5px;
    }

    .top-mail img {
        width: 12px;
        height: 12px;
        margin-right: 10px;
    }

    .top-mail p {
        margin-bottom: 0;
        cursor: pointer;
        color: #fff;
        /* Text color */
        font-size: 10px;
        /* Font size */
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        display: block;
        /* width: 100%; */
    }

    .nav-link:hover::before {
        width: 0%;
        /* no  width on hover */
    }

    .ban-right img {
        padding: 3vw;
        width: 80vw;
    }

    .p-5 {
        padding: 1.2rem !important;
    }

    .ban-left h1 {
        font-size: 8vw;
        text-align: center;
    }

    .ban-left p {
        width: 100%;
        font-size: 3.8vw;
        text-align: center;
    }

    .btn-box {
        /* background-color: #ffb1b1; */
        display: flex;
        justify-content: center;
    }

    .btn-1 {
        font-size: 4.3vw;
        padding: 2.3vw 3vw;
    }

    .btn-box .btn-2 {
        padding: 2.3vw 3vw;
        font-size: 4.3vw;
    }

    .btn-box .btn-2 img {
        width: 4vw;
    }

    /* about */
    .about-h {
        font-size: 6vw;
        width: 100%;
        padding: 3vw;
    }

    .fs-5 {
        font-size: 0.9rem !important;
        padding: 2vw;
    }

    /* product */
    .heading {
        position: relative;
        padding: 4vw;
    }

    .heading h1 {
        font-size: 6vw;
    }

    .card-btn {
        margin-top: 5px;
        font-size: 1rem;
    }

    /* contact */
    .heading-con {
        position: relative;
        padding: 5vw;
    }

    .map iframe {
        width: 80vw;
        height: 60vw;
    }

    .con-add,
    .con-mail,
    .con-contact {
        transition: all 0.3s ease-in;
        border: 1px solid rgba(255, 255, 255, 0);
        border-radius: 10px;
        margin: 3vw;
        padding: 2vw;
    }

    /* footer */
    #footer .footer-img {
        width: 25vw;
    }

    .f-mail::before,
    .f-call::before,
    .f-add::before {
        display: inline;
        margin-right: 4px;
        vertical-align: middle;
        width: 12px;
        height: 12px;
    }

    .social-media img {
        height: 6vw;
        width: 6vw;
        margin: 0.8vw;
        border-radius: 50%;
    }

    .fs-6 {
        font-size: 3.5vw !important;
    }

    /* about */
    /* .vision-card img {
        width: 15vw;
    } */
    .heading h4 {
        font-size: 5vw;
    }

    .mission-img {
        width: 50vw;
    }

    .about-img {
        width: 400px;
    }

    .misssion-p {
        padding: 4vw;
    }

    /* product details */
    .container-multi {
        height: 70vw;
        width: 80vw;
    }

    .active-product,
    .demo:hover {
        border: 2px solid #D10106;
    }

    .prev,
    .next {
        top: 50%;
        width: auto;
        padding: 1vw;
    }

    .product-detail-info {
        padding: 4vw;
    }

    .product-detail-info p {
        /* padding: 4vw; */
        font-size: 3vw;
    }

    .f-description p {
        font-size: 3vw;
    }

    .product-table table tr td p {
        font-size: 3.5vw;
        letter-spacing: 4%;
    }

    .product-detail-info h3 {
        font-size: 6vw;
    }

    /* contact us page  */
    .social_media {
        padding: 1vw 4vw;
    }

    .social_media a img {
        width: 2.3rem;
        height: 2.3rem;
    }
}

@media (min-width:600px) and (max-width:768px) {
    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        display: block;
        /* width: 100%; */
    }

    .ban-right img {
        width: 60vw;
    }

    .ban-left h1 {
        text-align: center;
    }

    .ban-left p {
        font-size: 2.4vw;
    }

    .btn-box .btn-1 {
        font-size: 2.3vw;
    }

    .btn-box .btn-2 {
        font-size: 2.3vw;
    }

    /* contact */
    .map iframe {
        width: 60vw;
        height: 35vw;
    }

    .con-add,
    .con-mail,
    .con-contact {
        transition: all 0.3s ease-in;
        border: 1px solid rgba(255, 255, 255, 0);
        border-radius: 10px;
        margin: 3vw;
        padding: 2vw;
    }

    /* about */
    /* .vision-card img {
        width: 8vw;
    } */
    /* product details */
    .container-multi {
        height: 80vw;
        width: 90vw;
    }

    .prev,
    .next {
        top: 50%;
        width: auto;
        padding: 1vw;
    }
}

@media (min-width:769px) and (max-width:1200px) {

    /* product */
    .card-text {
        font-size: 1.2vw;
        font-weight: 600;
        padding-bottom: 1vw;
    }

    /* contact */
    .map iframe {
        width: 50vw;
        height: 30vw;
    }

    .con-add img {
        width: 4vw;
    }

    .con-add p {
        font-size: 0.9rem;
    }

    .con-mail img {
        width: 4vw;
    }

    .con-mail p {
        font-size: 0.9rem;
    }

    .con-contact img {
        width: 4vw;
    }

    .con-contact p {
        font-size: 0.9rem;
    }

    .p-lg-5 {
        padding: 1rem !important;
    }

    /* contact */
    .heading-con {
        padding: 4vw;
    }

    .map iframe {
        width: 45vw;
        height: 25vw;
    }

    .con-add,
    .con-mail,
    .con-contact {
        transition: all 0.3s ease-in;
        border: 1px solid rgba(255, 255, 255, 0);
        border-radius: 10px;
        margin: 3vw;
        padding: 2vw;
    }

    /* about */
    .vision-card img {
        width: 6vw;
    }

    #mission {
        background-color: #ffa8a771;
    }

    /* product details */
    .active-product,
    .demo:hover {
        opacity: 1;
        border: 2px solid #D10106;
    }


}

/* @media (min-width: 992px) {
    .p-lg-5 {
        padding: 1rem !important;
    }

    .con-add img {
        width: 4vw;
    }

    .con-add p {
        font-size: 0.9rem;
    }

    .con-mail img {
        width: 4vw;
    }

    .con-mail p {
        font-size: 0.9rem;
    }

    .con-contact img {
        width: 4vw;
    }

    .con-contact p {
        font-size: 0.9rem;
    }
} */