.whatsappIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 17px;
    padding: 8px 15px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    /* background-color: #00A884; */
    background-color: #00a828;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    z-index: 8;
}

.whatsappIcon:hover {
    color: white;
    background-color: #02bf2e;
}

.whatsappIcon .chat-hover {
    font-size: 16px;
    margin-left: 5px;
}

.navbar {
    padding: 0.8rem 0;
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.12);

}

.navbar.fixed {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 8;
}

.navbar .bars {
    display: none;
}

.navbar .logo {
    width: 100px;
}

.navbar .logo img {
    width: 100%;
}

.links {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.links li {
    margin: 0 15px;
    font-size: 18px;
}

.links li a {
    transition: all 0.2s ease;
}

.links li a:hover {
    color: var(--primary-color);
}


/* hero */
.hero {
    width: 100%;
    height: 85vh;
    background: url('../images/bg-1.jpeg');
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;

}

.hero::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #2e2d2d98;
}

.hero .content {
    z-index: 1;
}

.hero .hero-heading {
    font-family: 'Alata', sans-serif;
    font-weight: bold;
    text-align: center;
    color: #fff;
    font-size: 3rem;
    padding: 0 25px;
    text-transform: uppercase;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.11);
}

.hero .hero-subheading {
    text-align: center;
    color: #fff;
    font-size: 2.7rem;
    padding: 5px 25px;
    text-transform: uppercase;
    margin: 0 auto;
    font-family: 'Hind', sans-serif;
    color: yellow;
}


.attributes .attributes-split {
    display: flex;
    justify-content: center;
    align-items: center;
}

.attributes-split .att-card {
    width: 33%;
    padding: 45px 30px;
    height: 420px;
    background-color: var(--secondary-color);
    color: #fff;
}

.attributes-split .att-card:nth-child(2) {
    background-color: var(--primary-color);
    color: #fff;
    min-height: 450px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.att-card .icon {
    font-size: 4rem;
}

.about .types-grid {
    display: grid;
    grid-template-columns: repeat(4, 20%);
    justify-content: space-between;
    grid-row-gap: 15px;
}

.types-grid .item {
    width: 100%;
    padding: 15px 0;
    transition: all 0.2s ease;
}

.types-grid .item:hover {
    box-shadow: 0 0 9px rgba(0, 0, 0, 0.11);
}

.item img {
    height: 100%;
}

.types-grid .item .image {
    width: 100%;
    height: 150px;
    text-align: center;
}


/* about company  */

.about-company .about-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-company .aboutcontent {
    width: 62%;
}

.about-company .aboutImage {
    width: 35%;
}

.about-company .aboutImage img {
    width: 100%;
}

/* categories  */
.swiper {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    padding: 15px 10px;
    font-size: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(104, 104, 104);
    min-height: 300px;
    border-radius: 7px;
    overflow: hidden;
    text-align: center;
}

.swiper-slide .image{
    margin: 0 auto;
    height: 200px;
    width: 80%;
    overflow: hidden;
        display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide .image img {
    height: 100%;
    object-fit: cover;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    transform: translate3d(0px,0,0);
    /* margin-bottom: 12px; */
    padding-bottom: 51px;
}

/* products  */
.products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 23%);
    justify-content: space-between;
    grid-row-gap: 35px;
}

.product-item {
    cursor: pointer;
}

.product-item .image {
    width: 100%;
    position: relative;
    height: 290px;
    overflow: hidden;
    border: 1px solid #989898;
    border-radius: 7px;
}

.product-item .image::before{
    content: 'Click for details';
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    top: -1000px;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.4); */
    background: linear-gradient(90deg, rgba(0,0,0,0.4), rgba(0,0,0,0.5));
    transition: top 0.2s ease-in;
    z-index: 5;
}

.product-item .image:hover::before{
    top: 0;
}

.product-item .image .product-id {
    position: absolute;
    min-width: 70px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    border-radius: 15px;
    top: 8px;
    right: 4px;
    background-color: red;
    z-index: 5;
}

.product-item .image img {
    height: 100%;
    width: 100%;
    transition: all 0.2s ease;
}

.product-item .name {
    border: 1px solid var(--primary-color);
    padding: 6px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 14px;
    font-family: 'Alata', sans-serif;
    color: var(--primary-color);
    transition: all 0.2s ease;
    margin-top: 20px;
}

.product-item:hover .name {
    color: #fff;
    background-color: var(--primary-color);
}

.product-item:hover .image img {
    transform: scale(1.07);
}


/* FOOTER  */
.footer {
    background-color: var(--secondary-color);
    padding: 3.5rem 0;
}

.footer a,
.footer p,
.footer .subheading,
.footer i {
    color: #fff;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a:hover {
    color: var(--primary-color);
}



/* ABOUT PAGE  */
.aboutus {
    background: url('../images/breadcrumb.jpg');
    background-position: bottom center;
    background-size: cover;
    height: 50vh;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: end;
    position: relative;
}

.aboutus::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1818187a;
    z-index: -1;
}

.aboutus .aboutcontainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin: 6rem auto; */
    margin-top: 4rem;
}

.aboutcontainer .title {
    color: var(--white-color);
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
}

.aboutcontainer p,
.aboutcontainer a {
    color: var(--white-color);
    font-size: 1.2rem;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.25);
}

.team .member .image {
    width: 90%;
    overflow: hidden;
    margin: 0 auto;
    max-height: 300px;
    border: 1px solid var(--secondary-color);
    z-index: 1;
    position: relative;
    text-align: center;
}

.member .image img {
    width: 85%;
}

.member .details {
    margin-top: -50px;
    padding-top: 70px;
    padding-bottom: 20px;
    width: 100%;
    background-color: rgb(196, 233, 242);
    border-radius: 12px;
}

.member .name {
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: bold;
}


.lineBreakdiv {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.lineBreakdiv .d {
    width: 100%;
    height: 7px;
}

.lineBreakdiv .d1 {
    background-color: red;
}

.lineBreakdiv .d2 {
    background-color: green;
}

.lineBreakdiv .d3 {
    background-color: yellow;
}

.lineBreakdiv .d4 {
    background-color: blue;
}

.lineBreakdiv .d5 {
    background-color: orange;
}

.lineBreakdiv .d6 {
    background-color: violet;
}

.lineBreakdiv .d7 {
    background-color: brown;
}

/* modal  */
.custom-modal {
    width: 65%;
    /* min-height: 20vh; */
    position: fixed;
    top: -1000%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #fff;
    z-index: 9;
    padding: 18px 22px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}
.custom-modal .image{
    overflow: hidden;
    max-height: 400px;
}
.custom-modal .image img{
    width: 100%;
}

.custom-modal.show {
    top: 20%;
}

.custom-modal .closeModal {
    position: absolute;
    right: 15px;
    top: 9px;
    font-size: 22px;
    cursor: pointer;
    color: red;
}

.custom-modal .split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.custom-modal .image,
.custom-modal .info {
    width: 50%;
}

.custom-modal .info {
    text-align: start;
}

.info ul {
    margin-left: 20px;
}