* {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #B71C1C;
    --secondary-color: #D1D1CF;
}

body a {
    text-decoration: none;
}

body p {
    font-size: 17px;
}

.primary-color {
    color: var(--primary-color);
}

.primary-bg {
    background: var(--primary-color);
}

.main-header {
    z-index: 99;
}

.sub-header {
    background-color: #B71C1C;
}

.main-header .nav-link:hover,
.nav-link:focus {
    color: #B71C1C;
}

.icon-style {
    display: inline-flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border-radius: 50%;
    color: #B71C1C;
    background-color: #FFF;
}

.hover-zoom {
    scale: 1;
    transition: transform .3s;
}

.hover-zoom:hover {
    transform: scale(1.1);
}

.swaad-logo {
    background-color: #B71C1C;
    padding: 8px 20px;
    border-radius: 50%;
    overflow: hidden;
}

.nav-item .nav-link {
    padding: 5px 15px;
    font-size: 20px;
}

.main-header .logo {
    position: relative;
    /* background-color: #FFF; */
    /* padding: 5px; */
}

.swaad-logo {
    position: absolute;
    width: auto;
    height: auto;
    top: -5px;
    z-index: 999;
    border: #FFF 8px solid;
}

.h-new {
    height: 200px;
}


/* Pages Banner */
.about-banner {
    position: relative;
}

.about-banner::before {
    content: "";
    background-image: url("../images/page-banner/about-banner.webp");
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    opacity: .2;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #FFFFFF !important;
}

.text-justify {
    text-align: justify;
}



/* About Us */
.welcome {
    /* background: #FFF9E9; */
}

.quality .btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.quality .btn:hover {
    background: #FFFFFF;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.quality {
    background: #FFF9E9;
}

.quality-box {
    border: 5px solid var(--primary-color);
    padding: 15px;
}




/* Gallery */
.gallery-img {
    cursor: pointer;
    transition: 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.modal-content {
    background: transparent;
    border: none;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}



/* Clients */
.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    width: calc(250px * 20);
    /* adjust based on number of logos */
    animation: scroll 25s linear infinite;
}

.logo-item {
    width: 200px;
    margin: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-item img {
    max-height: 80px;
    transition: 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Pause on hover */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Products */
.product-box {
    box-shadow: 0 0 15px 2px #e5e5e5;
    padding-top: 20px;
}

.image-box {
    padding: 0px 30px 10px 30px;
}


/* Career */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://picsum.photos/1600/600?random=10');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.job-card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}


/* Contact */
.contact-banner {
    position: relative;
}

.contact-banner::before {
    content: "";
    background-image: url("../images/page-banner/contact-banner.jpg");
    background-size: cover;
    background-position: bottom;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    opacity: .2;
}





/* Footer */
.footer {
    background-color: #d1d1cf;
}

.footer-title {
    color: #B71C1C;
}

.footer a {
    color: #000;
}

/* Sub-Footer */
.sub-footer {
    background-color: #B71C1C;
}





/* Mobile */
@media (min-width:576px) {
    .h-new {
        height: 400px;
    }

}