/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

/* Colors & Fonts */
:root {
    --dark: #000;
    --light: #DEDEDE;
    --secondary-color: #f9ae1c;
    --primary-color: #e81c24;

    --primary-font: Montserrat;
    --secondary-font: Poppins;
}

body {
    background-color: white;
    color: var(--text-color);
    font-family: var(--primary-font);
    overflow-x: hidden;
}




















/* full navbar */

.navbar {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 5px 80px;
    z-index: 1000;
}

.navbar-brand img {
    height: 60px;
    transition: transform .3s
}

.navbar-brand img:hover {
    transform: scale(1.05)
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: color .2s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    font-weight: 550;
}




/* Mobile side nav */
.mobile-side-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 12px rgba(0, 0, 0, .1);
    transition: right .35s;
    z-index: 1050;
    padding: 20px;
}

.mobile-side-nav.open {
    right: 0
}

.mobile-side-nav .close-btn {
    position: absolute;
    top: 10px;
    right: 40px;
    font-size: 4rem;
    background: none;
    border: 0;
    cursor: pointer
}

.mobile-side-nav .nav-link {
    display: block;
    text-align: left;
    margin: 10px 0;
    font-weight: 500
}


.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}



.submenu a {
    font-size: 15px;
}

@media(min-width:992px) {
    .mobile-side-nav {
        display: none
    }
}

@media(min-width:992px) {

    .nav-item .dropdown-menu {
        display: none;
    }

    .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
    }

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu>.dropdown-menu {
        position: absolute;
        top: 0;
        left: 100%;
        margin-top: -0.125rem;
        display: none;
        min-width: 12rem;
        z-index: 2000;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        border-radius: .25rem;
        background: #ffffff;
    }

    .dropdown-submenu:hover>.dropdown-menu,
    .dropdown-submenu:focus-within>.dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        padding: .15rem 0;
    }

    .dropdown-item {
        white-space: nowrap;
    }
}

.mobile-dropdown-menu,
.mobile-submenu {
    display: none;
    list-style: none;
    padding: 0;
}

.mobile-dropdown-menu.show,
.mobile-submenu.show {
    display: block;
}




.mobile-side-nav a {
    color: var(--dark);
    font-size: 18px;
}


.mobile-dropdown-btn {
    color: var(--dark);
    font-size: 18px;
}



.mobile-dropdown-btn:hover {
    color: var(--primary-color);
}


.mobile-side-nav a:hover {
    color: var(--primary-color);
}


.mobile-submenu-toggle {
    color: var(--dark);
    font-size: 18px;
}

.mobile-submenu-toggle::after {
    content: "\25B6";
    font-size: .7em;
    margin-left: 8px;
    transition: transform .25s;
}

.mobile-submenu-toggle.open::after {
    transform: rotate(90deg);
}


.mobile-dropdown-menu {
    text-align: left;
    padding: 10px 0px;
    padding-left: 25px;
    background-color: rgb(241, 234, 234);
    border-radius: 10px;
}


.mobile-submenu-toggle {
    font-size: 16px;
}

.mobile-dropdown-menu a {
    font-size: 16px;
}


.mobile-submenu {
    text-align: left;
    padding-left: 25px;
}


.mobile-dropdown-menu a {
    line-height: 2.2;
    font-size: 15px;
}









.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.dropdown-item.active {
    color: var(--primary-color) !important;
}



.dropdown-submenu>.dropdown-item.active {
    color: var(--primary-color);
    color: white !important;
    background-color: var(--primary-color);
}


.submenu>.dropdown-item.active {
    color: var(--primary-color);
    color: white !important;
    background-color: var(--primary-color);
}

.dropdown-menu.submenu .dropdown-item.active {
    color: white !important;
    background-color: var(--primary-color);
}


.product-menu .dropdown-item.active {
    color: white !important;
    background-color: var(--primary-color);
}

/* Navigation bar */


























/* Hero Section */

.hero-section {
    position: relative;
    width: 100%;
    height: 89vh;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/hero4.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(50%) blur(2px);
    z-index: 0;
}



.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    letter-spacing: -1px;
    padding: 20px;
    width: 100%;
}


.hero-text span {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 1px;
}



.hero-text h1 {
    font-family: var(--primary-font);
    color: var(--light);
    text-align: center;
    font-size: 60px;
    font-weight: 800;
    padding: 10px 120px;
    margin-bottom: 20px;
}


.hero-text p {
    font-family: var(--prinary-font);
    color: var(--light);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-btn {
    font-size: 18px;
    font-weight: 400;
    background-color: var(--primary-color);
    text-transform: capitalize;
    color: var(--light);
    padding: 10px 20px;
    border-radius: 25px;
    border-style: none;
    text-decoration: none;
    position: relative;
    transition: background-color 0.3s ease, padding-right 0.3s ease;
}


/* Hover state */
.hero-btn:hover {
    background-color: var(--secondary-color);
    color: #000;
    /* Make space for arrow */
}

.hero-btn:hover::after {
    opacity: 1;
}

/* Hero Section */





















/* Intro section */

.intro-section {
    padding: 80px;
}


.intro-img-col {
    position: relative;
}

.intro-img-col {
    padding: 0px;
}

.intro-img-col img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}


.intro-msg {
    width: 250px;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    background-color: #FBEC6B;
    position: absolute;
    top: -60px;
    left: 30px;
}


.intro-msg h4 {
    font-size: 20px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--primary-color);
}


.intro-msg p {
    font-size: 14px;
}








.intro-txt-col {
    padding: 40px 20px 0px 20px;
}

.intro-txt-col span {
    text-transform: uppercase;
    font-size: 18px;
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;

}


.intro-txt-col h2 {
    font-size: 33px;
    margin: 10px 0px;
    font-weight: 800;
}

/* intro section */















/* Our value section  */

.our-value-section {
    padding: 80px 0px;
    background-color: #EBEBEB;
}


.home-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    margin-bottom: 40px;
}



.our-value-row {
    padding: 0px;
    margin: 0px;
}


.our-value-col {
    padding: 0;
    margin: 0;
    position: relative;
}


.image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}


.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: blur(2px);
}


.image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: hsla(0, 0%, 0%, 0.6);
    z-index: 1;
}


.image-wrapper-txt {
    position: absolute;
    width: 100%;
    height: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    align-items: center;
    padding: 80px 20px;
    z-index: 4;
}


.image-wrapper-txt h4 {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    color: var(--primary-color);
    text-transform: uppercase;

}

.image-wrapper-txt p {
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: var(--light);

}

/* Our value section  */












/* Our Product section  */


.our-service-section {
    padding: 80px;
    background-color: #ffffff;
}


.our-service-section .row {
    display: flex;
    flex-wrap: wrap;
}


.our-service-col {
    padding: 10px;
    display: flex;
    flex-direction: column;
}


.service-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    background-color: #EBEBEB;
    transition: all 0.3s ease;
}


.service-box:hover {
    transform: translateY(-5px);
}


.service-row {
    align-items: center;
    padding-bottom: 10px;
}

.service-row img {
    width: 80px;
}

.service-row h3 {
    color: var(--dark);
    text-transform: capitalize;
    font-weight: 600;
    padding-left: 20px;
}

.our-service-col p {
    padding: 10px;
    color: rgb(57, 57, 57);
}


.service-box a {
    border-radius: 30px;
    border-style: none;
    padding: 10px 20px;
    margin-left: 5px;
    width: fit-content;
    text-decoration: none;
    text-transform: capitalize;
    color: rgb(255, 255, 255);
    background-color: var(--primary-color);
    transition: all 0.4s ease;
}



.our-service-col a:hover {
    background-color: var(--secondary-color);
    color: var(--dark);
}

/* Our Product section  */
















/* why choose us */
.why-choose-section {
    padding: 80px;
    background-color: #EBEBEB;
    align-items: center;
}



.why-choose-row {
    align-items: center;
}



.why-choose-col {
    padding: 0px 20px;
}

.why-choose-col span {
    text-transform: uppercase;
    font-size: 18px;
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}


.why-choose-col h2 {
    text-transform: capitalize;
    font-size: 33px;
    margin: 20px 0px;
    font-weight: 800;
}


.why-choose-col p {
    font-size: 16px;
    color: #393939;
    padding-bottom: 20px;
}


.why-choose-col a {
    background-color: var(--primary-color);
    border-radius: 30px;
    padding: 10px 30px;
    color: var(--light);
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.4s ease;

}

.why-choose-col a:hover {
    background-color: var(--secondary-color);
    color: black;

}









.why-choose-img {
    height: 440px;
    padding: 40px 20px;
}


.why-choose-img img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}








.why-choose-accordion .accordion-button {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #333;
}

.why-choose-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: #ffffff;
}

.why-choose-accordion .accordion-body {
    background-color: #fff;
    font-size: 16px;
    color: #555;
}


/* why choose us */
















/* testonominial section */


.testimonial-marquee-wrapper {
    overflow: hidden;
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.testimonial-marquee-track {
    display: flex;
    width: calc(400px * 6 + 10px * 12);
    /* 6 items + spacing */
    animation: scrollTestimonials 30s linear infinite;
}

.testimonial-marquee-item {
    flex: 0 0 auto;
    width: 400px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    margin: 0px 20px;
}





/* Review Card CSS */
.review-card {
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    color: #333;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.role {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.rating {
    font-size: 1.5rem;
    color: gold;
    letter-spacing: 2px;
}





.testimonial-marquee-item h6 {
    margin-top: 20px;
    font-weight: bold;
    color: #000000;
    text-align: left;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* testonominial section */
















/* footer section  */

.footer-container {
    background-color: #700303;
    padding: 80px 20px;
}


.footer-logo img {
    width: 250px;
    margin-bottom: 20px;
}


.text-uppercase {
    margin-bottom: 30px;
}

.list-unstyled li {
    padding: 3px 0px;
}



.f-c-link i {
    color: var(--light);
    margin-right: 3px;
}



.f-c-link a {
    color: var(--light);
    text-decoration: none;
    padding-left: 3px;
}


/* footer section  */















/* responsive  */

@media (max-width:992px) {

    .why-choose-section {
        padding: 80px 60px;
    }

    .our-service-section {
        padding: 80px 60px;
    }


    .intro-section {
        padding: 80px 60px;
    }

    .hero-text {
        padding: 60px 20px;
    }


    .hero-text h1 {
        padding: 10px 80px;
    }

    .navbar {
        padding: 5px 60px;
    }



    .footer-logo img {
        width: 200px;
        margin-bottom: 20px;
    }



}






@media (max-width:768px) {

    .why-choose-section {
        padding: 60px 40px;
    }

    .our-service-section {
        padding: 60px 40px;
    }

    .our-value-section {
        padding: 60px 0px;
    }

    .intro-section {
        padding: 60px 40px;
        padding-top: 80px;
    }

    .hero-text {
        padding: 60px 20px;
    }


    .navbar {
        padding: 5px 40px;
    }


    .footer-logo img {
        width: 250px;
    }



}





@media (max-width:576px) {

    .why-choose-section {
        padding: 40px 20px;
    }

    .our-service-section {
        padding: 40px 20px;
    }

    .our-value-section {
        padding: 40px 0px;
    }

    .intro-section {
        padding: 40px 20px;
        padding-top: 80px;

    }


    .hero-text {
        padding: 40px 20px;
    }


    .hero-text h1 {
        padding: 10px 0px;
        font-size: 50px;
    }

    .navbar {
        padding: 5px 20px;
    }



}


/* responsive  */