@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: roboto;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}


/* ##################################################-navbar-################################################### */

.navbar {
    position: sticky;
    top: 0px;
    left: 0px;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.logo {
    width: 100%;
    height: 60px;
}

.nav-item {
    padding: 0px 10px;
}

.nav-link {
    font-size: 1.25rem;
    color: black;
    font-weight: 500;
}

.dropdown-item {
    color: #c12334;
}

.nav-link:hover {
    color: #c12334 !important;
}

button.navbar-toggler {
    background-color: white;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none !important;
}

.bg-body-tertiary {
    background-color: whitesmoke !important;
}

/* #######-pop-########## */

.inquery {
    font-size: 18px;
    font-weight: 500;
    color: white;
    background-color: #c12334;
    border: 3px solid #c12334;
    padding: 6px 10px;
    border-radius: 4px;
}

/* Popup container */
#popup {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    padding: 20px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-radius: 8px;
    z-index: 1000;
}

/* Overlay to dim background */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Close button */
.close-btn {
    margin-top: 10px;
    padding: 8px 15px;
    background: #006A67;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* ##################################################-banner-################################################### */


.carousel-item img {
    height: 80vh;
    object-fit: cover;
}

.carousel-item {
    position: relative;
}

.banner-main-content {
    width: 60%;
    height: auto;
    position: absolute;
    top: 200px;
    left: 120px;
    color: black;
}

.banner-heading {
    color: #c12334;
    font-size: 3rem;
    margin: 0px;
}

p.bannner-content {
    font-size: 1.1rem;
    text-align: justify;
    color: black;
    padding: 20px 0px;
    margin: 0px;
}

.banner-btn {
    width: 120px;
    border: 3px solid #c12334;
    padding: 6px;
    border-radius: 4px;
    text-align: center;
    margin: 5px 0px;
}

.banner-btn1 {
    color: #c12334;
}

/* .carousel-caption{
    color: black;
} */

/* ##################################################-About-################################################### */

.about-section {
    padding: 100px 0px;
    background-color: whitesmoke;
}

h2.heading-about {
    color: #c12334;
}

h1.heading-about {
    font-size: 3rem;
    color: #c12334;
}

.about-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 25px;
}

.about-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.about-content {
    color: black;
    font-size: 1rem;
    line-height: 2;
    text-align: justify;
    margin: 10px 0px;
}

.about-button {
    border: 3px solid #c12334;
    width: 120px;
    text-align: center;
    padding: 5px 0px;
    border-radius: 4px;
    margin: 10px 0px;
}

a.about-link {
    color: #c12334;
}

/* ##################################################-product-################################################### */





/* Products Section */
.products {
    background: #f5f5f5;
    background-color: white;
    padding: 4rem 6%;
    text-align: center;
}

.products h2 {
    color: #c12334;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.product-card {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 20px 0px;
    width: calc(28% - 40px);
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
}

.product-content {
    border-top: 1px solid #c12334;
    padding: 10px 10px;
}

.card-p {
    width: 100%;
    height: 200px;
    object-fit: contain;
}


.product-content h3 {
    color: #c12334;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-content p {
    color: #000000;
    font-size: 1rem;
}


/* Read More Button */
.read-more-btn {
    display: inline-block;
    padding: 8px 16px;
    margin-top: 1rem;
    background-color: #c12334;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #a11e2b;
}

/* ##################################################-contact-################################################### */
.contact-section {
    padding: 100px 0px;
}

/* ##################################################-footer-two-################################################### */
.footer {
    margin-top: 40px;
    padding: 40px 0px;
    background-color: whitesmoke;
}

img.footer-logo {
    width: 30%;
    padding-bottom: 20px;
}

p.footer-link-content {
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 20px;
    margin: 0px;
}

ul.footer-menu {
    margin-left: 100px;
    margin-bottom: 0px;
}

li.footer-list {
    font-weight: 500;
    padding: 5px 0px;
}

a.footer-link {
    color: #a11e2b;
    text-decoration: underline;
}

h4.footer-contact-content {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0px;
    padding-bottom: 20px;
}

span.icon {
    padding-right: 15px;
    display: block;
    font-size: 20px;
    color: #c12334;
}

p.icon-content {
    display: inline-flex;
}

.icon-link {
    color: black;
}


/* ##################################################-media-querry-################################################### */

@media (min-width: 993px) {
    .dropdown .dropdown-menu.show {
        display: none !important;
    }

    .dropdown:hover .dropdown-menu {
        display: block !important;
    }

    .dropdown:focus .dropdown-menu {
        display: block !important;
    }

    /* remove-dropdown */

    .dropdown-toggle::after {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: none;
        border-top: .3em solid;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent;
    }


}

@media (max-width: 992px) {
    .logo {
        width: 100px;
        height: 50px;
    }

    .nav-link {
        border-bottom: 1px solid gray;
    }
    #popup {
        width: 70%;
    }

    .navbar {
        box-shadow: none;
    }

    .carousel-item img {
        height: 45vh;
        object-fit: cover;
    }

    .banner-main-content {
        width: 500px;
        height: auto;
        position: absolute;
        top: 120px;
        left: 70px;
        color: black;
    }

    .product-card {
        width: calc(50% - 40px);
    }
}

@media (max-width: 786px) {
    #popup {
        width: 70%;
    }

    .carousel-item img {
        height: 40vh;
        object-fit: cover;
    }

    .banner-main-content {
        width: 460px;
        height: auto;
        position: absolute;
        top: 87px;
        left: 42px;
        color: black;
    }

    .banner-heading {
        font-size: 2rem;
    }

    p.bannner-content {
        font-size: 1rem;
    }

    .carousel-container {
        width: 90%;
        margin: 50px auto;
    }

    .about-content {
        color: black;
        font-size: 1rem;
        line-height: 1.8;
        text-align: justify;
        padding: 10px 0px;
    }

    .about-section {
        padding: 40px 0px;
    }

    .about-img {
        margin: 30px 0px;
    }

    .card-p {
        width: 100%;
        height: 200px;
        object-fit: contain;
    }

    .footer-logo {
        margin: 0px 10px;
    }

    img.footer-logo {
        padding: 10px 0px;
        margin: 0px;
    }

    p.footer-link-content {
        font-size: 1.5rem;
        font-weight: 500;
        padding-bottom: 5px;
        margin: 0px;
    }

    .footer {
        padding: 20px 0px;
    }

    ul.footer-menu {
        margin-left: 0px;
        margin-bottom: 0px;
        padding-left: 0px;
    }

    ul.footer-menu {
        margin: 15px 10px;
    }

    ul.icon-menu {
        padding-left: 0px;
        margin: 15px 10px;
    }

    h4.footer-contact-content {
        font-size: 1.5rem;
        font-weight: 500;
        margin: 0px;
        padding-bottom: 15px;
    }

    .product-card {
        width: calc(50% - 40px);
    }


}

@media (max-width: 480px) {
    .logo {
        width: 100px;
        height: 50px;
    }

    #popup {
        width: 100%;
    }

    .carousel-item img {
        height: 40vh;
        object-fit: cover;
    }

    .banner-main-content {
        width: 250px;
        height: auto;
        position: absolute;
        top: 60px;
        left: 20px;
        color: black;
    }

    .banner-heading {
        font-size: 1rem;
    }

    p.bannner-content {
        font-size: 12px;
        padding: 10px 0px;
    }

    .product-card {
        width: calc(100% - 40px);
    }

    .desgine-image {
        margin: auto;
    }
}