@font-face {
    font-family: 'Montserrat';
    src: url("asset/fonts/Montserrat-Bold.ttf") format('truetype');
}

@font-face {
    font-family: 'Numans';
    src: url("asset/fonts/Numans-Regular.ttf") format('truetype');
}

@font-face {
    font-family: 'Lora';
    src: url("asset/fonts/Lora-Bold.ttf") format('truetype');
}

@font-face {
    font-family: 'BBHBartle';
    src: url('../fonts/BBHBartle-Regular.woff2') format('woff2'),
        url('../fonts/BBHBartle-Regular.woff') format('woff'),
        url('../fonts/BBHBartle-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'DancingScript';
    src: url('../fonts/DancingScript-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --black: black;
    --white: white;
    --gray: gray;

    --primary-color: red;
    --secondary-color: wheat;
    --action-color: rgb(233, 0, 0);

    --bg1: green;
    --bg2: pink;

    --gradient1: background-image: linear-gradient(to right top, #051937, #004d7a, #008793, #00bf72, #a8eb12);

    --heading: 'Montserrat', sans-serif;
    --sub-heading: 'Numans', sans-serif;
    --content: 'Lora', serif;
}

a {
    text-decoration: none;
    color: var(--action-color)
}

li {
    list-style: none;
}

ul {
    margin: 0;
    padding: 0;
}

p {
    font-family: var(--sub-heading);
    font-size: 13px;
    line-height: 20px;
    text-align: justify;
    word-break: break-word;
    margin-top: 10px;
    color: rgb(44, 44, 44);
}

/* ================== class ================= */

.text-action {
    color: var(--action-color) !important;
}

.text-secondary-color {
    color: var(--secondary-color) !important;
}


/* text color  */

section {
    padding: 0;
    margin: 0;
}

.container-fluid {
    position: relative;
    padding: 0;
    margin: 0;
}

.section-item {
    position: relative;
    padding: 70px clamp(15px, 6vw, 60px);
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

.align-item {
    display: flex;
    align-items: center;
}

strong{
    text-transform: capitalize;
}

/* -------------- button ------------- */
.custom-btn {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: rgb(233, 0, 0);
    overflow: hidden;
    padding: 1rem 1.8rem;

}

.custom-btn .text {
    font-size: 19px;
    font-weight: 500;
    color: white;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;

}

.custom-btn::after {
    position: absolute;
    height: 50%;
    width: 0%;
    background-color: black;
    content: '';
    left: 0;
    top: 0;
    transition: ease-in 0.3s;


}

.custom-btn::before {
    position: absolute;
    height: 50%;
    width: 0%;
    background-color: black;
    content: '';
    right: 0;
    bottom: 0;
    transition: ease-in 0.3s;
}

.custom-btn:hover::before {
    width: 100%;

}

.custom-btn:hover::after {
    width: 100%;

}

.custom-btn-2 .custom-btn::before {
    background-color: var(--secondary-color);
}

.custom-btn-2 .custom-btn::after {
    background-color: var(--secondary-color);
}

.custom-btn-2 .custom-btn:hover .text {
    color: black;
}



/* ============================================== */
/* HEADING */
/* ============================================== */

.heading-body {
    display: flex;
    flex-direction: column;
}

.heading-body .small-heading {
    color: var(--secondary);
    /* font-family: var(--sub-heading); */
    /* font-style: italic; */
    font-size: 18px;
    position: relative;
    width: fit-content;
    color: black;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 1;
    font-family: 'BBHBartle', sans-serif;
    font-family: 'DancingScript', cursive;
    color: var(--action-color);
    margin-bottom: 15px;
}

/* 
.heading-body .small-heading::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 1px;
    top: 11px;
    right: -28px;
    background: var(--primary-color);
}

.heading-body .small-heading::before {
    position: absolute;
    content: '';
    width: 35px;
    height: 1px;
    top: 16px;
    right: -43px;
    background: var(--primary-color);
} */
.heading-body .big-heading {
    font-size: clamp(25px, 3.5vw, 70px);
    font-weight: 700;
    font-family: var(--heading);
    color: var(--black);
    line-height: 1;
}

.heading-body .big-heading span {
    color: var(--action-color);
    font-weight: bold;
    font-family: var(--heading);
}

.heading-body .content-heading {
    width: 80%;

}

.center {
    align-items: center;
}

.start {
    align-items: start;
}

.end {
    align-items: end;
}




/* ============================================= */
/* Myheader  */
/* ============================================= */


header {
    background: var(--black);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header .header-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header .header-item a {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    font-size: var(--heading);
}

.header .header-item a:hover {
    color: var(--action-color);
}

.mynavbar {
    background-color: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    /* padding: 10px 0; */
    position: relative;
    z-index: 100;
}

.logo-body {
    position: relative;
}

.mynavbar::before {
    width: 50%;
    height: 100%;
    position: absolute;
    content: '';
    left: -20%;
    top: 0;
    background-color: var(--action-color);
    transform: skewX(-30deg);
}

.logo-body .logo {
    min-width: 100px;
    width: 200px;
    position: relative;
    z-index: 1;
}

.logo-body .logo img {
    width: 100%;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-right .social-bar-body {
    position: relative;
    height: 100%;
    background-color: red;
}

.nav-right .social-bar-body .social-bar {
    background-color: black;
    padding: 10px 15px;
    color: white;
    color: var(--action-color);
    font-size: 15px;

}

.nav-right .social-bar-body .social-bar:hover {
    background-color: var(--action-color);
    color: var(--white);
}



.nav-right .social-bar-body .social-list {
    position: absolute;
    background-color: white;
    width: 200px;
    right: 0;
    top: 100%;
    padding: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: none;
    transition: ease-out 0.8s;
}

.nav-right .social-bar-body .social-list ul li:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: var(--secondary-color);
}

.nav-right .social-bar-body .social-list ul li a {
    font-weight: 600;
    display: flex;
    align-items: center;
    align-items: center;
    gap: 15px;
    color: black;
    padding: 7px;

}

.nav-right .social-bar-body .social-list ul li a i {
    font-size: 28px;
    color: var(--action-color);
}

.nav-right .social-bar-body .social-list ul li {
    width: 100%;
    /* padding-bottom: 10px; */
}

.nav-right .social-bar-body .social-list ul li:hover a {
    color: var(--black);
}

.nav-right .social-bar-body:hover .social-list {
    display: block;
    opacity: 1;
    animation: dropdown ease-in 0.2s;
}

@keyframes dropdown {
    0% {
        transform: translateY(5px) scale(0.5);
        opacity: 0;
    }

    100% {
        transform: translateY(0px) scale(1);
        opacity: 1;
    }
}

.nav-right .menu-body {
    display: flex;
    align-items: center;
    justify-content: center;

}

.nav-right .menu-body .menu-list {
    padding: 27px 1vw;
    color: black;
    font-size: 16px;
    font-family: var(--heading);
}

.menu-body .menu-list {
    transition: 0.3s;
    position: relative;
}

.menu-body .menu-list::before {
    position: absolute;
    width: 100%;
    height: 0%;
    content: '';
    left: 0;
    bottom: 0;
    background-color: rgba(255, 0, 0, 0.137);
    transition: height 0.2s ease-in;
    transition-delay: 0.2s;
    /* ⬅ starts AFTER ::after */
}


.menu-body .menu-list::after {
    position: absolute;
    width: 0%;
    height: 3px;
    content: '';
    left: 0;
    bottom: 0;
    background-color: var(--action-color);
    transition: width 0.2s ease;
}

.menu-body .menu-list:hover::after {
    width: 100%;
}

.menu-body .menu-list:hover::before {
    height: 100%;
}

.menu-item {
    position: relative;
    height: 100%;
    padding: 24px 0vw;
    border: 0;
}

.mune-dropdown {
    position: absolute;
    width: 200px;
    height: auto;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: none;
}

.mune-dropdown .drop-item {
    width: 100%;
    padding: 10px 5px;
    border-bottom: 1px solid var(--black);
    position: relative;
}

.mune-dropdown .drop-list {
    padding: 20px 10px;
    color: var(--black);
    font-family: var(--heading);
    font-weight: 500;
}

.mune-dropdown .drop-item:last-child {
    border-bottom: 0;
}

.mune-dropdown .drop-item:hover {
    background-color: var(--action-color);
    border-color: white;
}

.mune-dropdown .drop-item:hover .drop-list {
    color: var(--white);
}

.sub-mune-dropdown {
    position: absolute;
    left: 100%;
    top: 10px;
    width: 200px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    display: none;
}

.sub-mune-dropdown .sub-menu-item {
    width: 100%;
    background: white;
    padding: 10px;
    border-bottom: 1px solid var(--black);
}

.sub-mune-dropdown .sub-menu-item:last-child {
    border-bottom: 0;
}

.sub-mune-dropdown .sub-menu-item .sub-menu-list {
    color: var(--black);
    font-family: var(--heading);
}

.sub-mune-dropdown .sub-menu-item:hover {
    background: var(--action-color);
    border-color: var(--white);
}

.sub-mune-dropdown .sub-menu-item:hover .sub-menu-list {
    color: var(--white);
}

.mune-dropdown .drop-item:hover .sub-mune-dropdown {
    display: block;
    animation: dropdown ease-in 0.2s;
}

.menu-item:hover .mune-dropdown {
    display: block;
    animation: dropdown ease-in 0.2s;
}

.nav-cross-btn {
    width: 46px;
    height: 41px;
    background-color: var(--action-color);
    display: flex;
    align-items: end;

    justify-content: space-evenly;
    flex-direction: column;
    display: none;
}

.nav-cross-btn .nav-line {
    width: 35px;
    height: 3px;
    background-color: var(--white);
    margin-right: 5px;
    transition: all 0.3s;
}

.nav-cross-btn .nav-line-2 {
    width: 20px;
}

.nav-cross-btn .nav-line-3 {
    width: 28px;
}

.nav-cross-btn:hover .nav-line {
    width: 35px;
}

/* Silder section  */

.myBanner {
    width: 100%;
}

.myBanner .banner-img {
    width: 100%;
}

.myBanner .banner-img img {
    width: 100%;
}

.arrow-body {
    position: absolute;
    top: 48%;
    z-index: 50;
    right: 10%;
    left: auto;
    width: 50px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.arrow-body .arrow-banner {
    position: unset;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.322);
    color: var(--white);
    font-size: 22px;
}

.arrow-body .arrow-banner:hover {
    background: rgba(0, 0, 0, 0.856);
    color: var(--action-color);
}

.myBanner .swiper-button-next::after,
.myBanner .swiper-button-prev::after {
    display: none;

}


/* ================== About Us ==================== */

.aboutus {
    background: linear-gradient(135deg, #f9fbff, #eef3ff);
    background: linear-gradient(135deg, #fffdf8, #f3efe7, #f9fbff);
    /* background: linear-gradient(135deg, #ffffff, #f8f9fb);
    background: linear-gradient(135deg, #fffefb, #f3f1ec);
    background: linear-gradient(135deg, #f8f9fb, #eef1f6);
    background: linear-gradient(135deg, #121212, #242424);
    background: linear-gradient(135deg, #ffb3b3, #ff6666); */
}

.about-word-body {
    width: 100%;
}

.about-word-body .letter-body {
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: rebeccapurple; */
    width: fit-content;
    margin: auto;
    /* overflow: hidden; */
}

.about-word-body .letter-body .letter {
    /* font-size: clamp(48px, 10vw, 180px); */
    font-size: clamp(43px, 10vw, 200px);
    font-family: 'BBHBartle', sans-serif;
    line-height: 1;
    transition: all ease 0.4s;
    color: var(--action-color);

}

.about-word-body .letter-body .word {
    position: relative;
    overflow: hidden;
}

.about-word-body .letter-body .word .letter-img {
    width: 250px;
    min-width: 100px;
    position: absolute;
    left: 0%;
    bottom: 100%;
    z-index: 5;
    transition: all ease 0.4s;
}

.about-word-body .letter-body .word .letter-img img {
    width: 100%;
    height: 100%;
object-fit: contain;
}

.about-word-body .letter-body .word:hover .letter-img {
    bottom: 0%;
    cursor: pointer;

}

.about-word-body .letter-body .word:hover .letter {
    transform: translateY(100%);
    cursor: pointer;
}


/* About Us part  */

.about-section {
    margin-top: 70px;
    width: 100%;
}

.about-left {
    width: 50%;
    float: left;
    padding-right: 20px;
}

.about-left .about-img-body {
    width: 100%;
    position: relative;
}

.about-left .about-img-body .about-img {
    width: 100%;
    display: flex;
    align-items: end;
    position: relative;
}

.about-left .about-img-body .about-img::after {
    position: absolute;
    width: 50%;
    height: 105%;
    content: '';
    /* background:linear-gradient(rgba(0, 0, 0, 0.514),rgb(0, 0, 0)),url('../images/img/about\ \ \(1\).jpg'); */
    /* background: black; */
    background-position: center;
    z-index: -1;
    top: -10%;
    left: -20px;
    border-radius: 30px;
}

.about-left .about-img-body .about-img img {
    width: 100%;
    margin-left: auto;
    margin-right: 0;
}

.about-left .about-img-body .about-top {
    width: 45%;
    position: absolute;
    top: 10%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.about-left .about-img-body .about-top img {
    width: 100%;
}

.about-left .about-img-body .about-img-2 {
    top: auto;
    bottom: 10%;
}

/* .about right section  */

.about-right {
    margin-left: 10px;
}

.tagline {
    margin-top: 15px;
    font-family: var(--content);
    color: var(--action-color);
    font-weight: 400;
}

.about-card {
    width: 100%;
    background-color: white;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    border-radius: 7px;
    gap: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: 30px;
    transition: all ease-out 0.2s;
}

.about-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

.about-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card .name {
    font-size: 23px;
    font-family: var(--heading);
    color: var(--action-color);
}

.about-card:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    transform: scale(1.05) translateY(-15px);
}

/* ================ product section ================= */

.myProducts {
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.prodcut-card {
    width: 100%;
    height: auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.prodcut-card .product-img {
    width: 100%;
    overflow: hidden;
}

.prodcut-card .product-img img {
    width: 100%;
    transition: all ease-in 0.2s;
}

.prodcut-card .product-name {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    font-size: 20px;
    color: white;
}

.prodcut-card .product-img:hover img {
    transform: scale(1.1) rotate(3deg);
}

.prodcut-card:hover .product-name {
    background-color: var(--action-color);
}

.prodcut-card .product-name:hover {
    text-decoration: underline;
}

.product-back {
    position: absolute;
    width: 350px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background: linear-gradient(rgba(255, 255, 255, 0.445), rgba(255, 255, 255, 0.438)), url('../images/img/product-back.jpg');
    background-position: center;
    background-size: cover;
}

.product-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-arrow {
    position: absolute;
    top: 120px;
    right: 8%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

}

.product-custom {
    position: unset;
    width: 40px;
    height: 40px;
    background-color: var(--action-color);
    transition: 0.5s;
    color: var(--black);
}

.product-custom::after {
    display: none;
}

.product-arrow .swiper-button-next {
    background-color: var(--secondary-color);

}

.product-custom:hover {
    transform: scale(1.2);
    background-color: var(--secondary-color);
}

.cate-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.cate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;
}

.cate-img:hover img {
    transform: scale(1.1);
}

.cate-content {
    padding: 20px;
}


/* ============== Why Choose us =============== */
.why-top{
        display: none;
        margin-bottom: 60px;
    }
.why-img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.why-img img {
    width: 80%;
    box-shadow: 30px 30px rgba(255, 0, 0, 0.795);
}

.why-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 15px 0;
    transition: all 0.3s;
}

.why-card .icon {
    font-size: 20px;
    color: var(--action-color);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 0, 0, 0.164);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card .name {
    font-size: 18px;
    font-family: var(--heading);
    color: var(--black);
}

.why-card .des {
    text-align: center;
    font-size: 15px;
    padding: 0 15px;
}

.why-card:hover {
    background-color: white;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    transform: translateY(-5px);
}

.why-btn {
    margin: auto;
    margin-top: 70px;
    width: fit-content;

}

.vision-sec-img {
    width: 100%;
    height: 100%;
}

.vision-sec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vision-body {
    margin-top: 20px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}




.tablink {
    background-color: black;
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 10px;
    font-size: 15px;
    width: 33.33%;
    border-right: 1px solid white;
}


.tablink:hover {
    background-color: rgb(66, 66, 66);
}


.tabcontent {
    color: white;
    display: none;
    text-align: center;
    padding: 60px 15px 5px 15px;

}

.vision-img {
    width: 100%;
}

.vision-img img {
    width: 100%;
}



/* counter part  */

.counter-body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.counter-body .counter-card {
    padding: 20px;
    background-color: wheat;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.counter-body .counter-card .num {
    color: var(--action-color);
    font-size: clamp(18px, 4vw, 30px);
    font-family: var(--heading);
}

.counter-body .counter-card .title {
    color: black;
    font-size: 20px;
}

.vis-img {
    height: 150px;
    margin: auto;
    margin-top: 20px;
    display: flex;
}

.vis-img img {
    height: 100%;

}

.mid-banner-body {
    width: 100%;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.664)), url('../images/bg/pall.jpg');
    background-position: center;
    background-size: cover;
    background-attachment: fixed;

    display: flex;
    align-items: center;
    justify-content: center;
}

.mid-banner-body .big-heading {
    color: white;
}


/* <!-- ================ Presence ============== --> */


.map-body {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.781), rgba(255, 255, 255, 0.884)), url('../images/bg/map1.jpg');
    background-position: center;
    background-size: cover;
}

#map {
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;

}

#map img {
    width: 100%;
}

.myGallery {
    width: 100%;

}

.myGallery .swiper-wrapper {
    transition: linear 0.3s;
}

.gal-img {
    width: 100%;
    height: 250px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid red
}

.gal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.quotation-section {
    /* padding: 60px 15px; */
    background: #f8f9fa;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.quotation-container {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

.quotation-container h2 {
    text-align: center;
    margin-bottom: 10px;
}

.quotation-container p {
    text-align: center;
    margin-bottom: 25px;
    color: #666;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #b71c1c;
}

.myTestimonial {
    width: 100%;
    margin-top: 70px;
}

.test-card-body {
    width: 100%;
    padding: 100px 2vw;
    /* background-color: red; */
}

.test-card {
    background-color: wheat;
    padding: 15px;
}

.test-card .test-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    transform: translateY(-70px);
    display: block;
    margin: auto;
}


.test-card .test-img img {
    width: 100%;
}

.test-card .test-des {
    transform: translateY(-40px);
    text-align: center;
    width: 80%;
    margin: auto;
    font-size: 16px;
}

.test-card .test-name {
    font-size: 21px;
    transform: translateY(-20px);
    text-align: center;
    color: var(--action-color);
    font-weight: 500;
}

.test-card .test-rating {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    transform: translateY(-10px);
    font-size: 20px;

}



.footer-body {
    background: linear-gradient(135deg, #8f010186, #770101d3), url('../images/bg/footer.jpg');
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.f-heading {
    text-transform: uppercase;
    font-size: 20px;
    font-family: var(--heading);
    color: white;
}

.f-item .des {
    color: rgb(207, 206, 206);
}

.f-item .f-logo {
    width: 100%;
    margin-bottom: 10px;
    background-color: white;
    padding: 14px;
}

.f-item .f-logo img {
    width: 100%;
    /* filter: invert(1); */
}

.f-item li a {
    font-size: 16px;
    transition: all ease-in 0.3s;
    position: relative;
    color: whitesmoke !important;
}

.f-item li a i {
    font-size: 12px;
}

.f-item li a::before {
    width: 0%;
    height: 1px;
    background-color: var(--black);
    content: '';
    left: 0;
    bottom: 0;
    position: absolute;
    transition: all ease-in 0.3s;

}

.f-item li a:hover {
    color: black;
}

.f-item ul {
    height: 250px;
    overflow-y: auto;
}

.f-item ul::-webkit-scrollbar {
    width: 8px;
    background-color: white;
}

.f-item ul::-webkit-scrollbar-thumb {
    background: var(--black);
}

.f-item li {
    margin: 10px;
}

.f-item li a:hover {
    letter-spacing: 1px;
    color: var(--black) !important;
}

.f-item li b {
    color: white
}

.f-item li a:hover::before {
    width: 100%;
}

.f-social-link {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.f-social-link .f-social {

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
}

.f-social-link .f-social a {

    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50%;

}

.f-social-link .f-social a:hover {
    color: var(--action-color);
}

.f-contact li a:hover {
    letter-spacing: 0px;
}


.copyright {
    background: var(--white);
    padding: 0;
    margin: 0;
}

.copyright p {
    padding: 20px;
    text-align: start;
}
.copyright p .promotion-line{
 color: white;
}
.copyright p .promotion-line a{
    color: white;
}

.copyright p a {
    color: var(--action-color);
}

.copyright p a:hover {
    color: black;
}


.phone-navbar {
    position: fixed;
    top: 0;
    right: 0;
    background: white;
    width: 50%;
    height: 100%;
    z-index: 100;
    padding: 0px;
    display: none;
    overflow-y: auto;
}

.phone-navbar .phone-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--action-color);
    padding: 10px;
}

.phone-navbar .phone-header .logo {
    width: 220px;
}

.phone-navbar .phone-header .logo img {
    width: 100%;
}

.phone-navbar .phone-header .nav-close {
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    transition: 0.3s;
}

.phone-navbar .phone-header .nav-close:hover {
    transform: rotate(180deg);
    color: var(--action-color);
}

.phone-navbar .pmenu-body .pmenu-item {
    padding: 15px 0;
    border-bottom: 1px solid lightgray;
    position: relative;
}

.phone-navbar .pmenu-body .pmenu-item .pmenu-list {
    padding: 0 20px;
}

.phone-navbar .pmenu-body .pmenu-item .pmenu-item-b {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pdrop-body {
    margin-top: 10px;
    background-color: #a7a6a6;
    display: none;
    position: relative;
    position: 3;
}

.pdrop-body .pdrop-item {
    padding: 20px 0;
    border-bottom: 1px solid lightgray;
    background-color: #a7a6a6;
}

.pdrop-body .pdrop-item .pdrop-list {
    padding: 0 20px;
}

.pdrop-body .pdrop-item .pdrop-item-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pdrop-body .pdrop-item .sub-drop {
    background-color: rgb(255, 255, 255);
    margin-top: 15px;
    display: none;
}

.pdrop-body .pdrop-item .sub-drop .sub-drop-item {
    padding: 15px 20px;
    border-bottom: 1px solid rgb(194, 193, 193);
    background-color: lightgray;

}

.down,
.sub-down {
    margin-right: 15px;
}

.pnav {
    display: block;
}

.pnav-sub {
    display: block !important;
}

.sub-down {
    /* width: 30px;
    height: 30px; */

}

.gallery-img {
    width: 100%;
}

.gallery-img img {
    width: 100%;
}
/*.product-page::{*/
/*    position: relative;*/
/*}*/
.all-page::after{
      content: "";
    display: block;
    clear: both;
}
.page-body{
      background: linear-gradient(rgba(255, 255, 255, 0.733),rgba(255, 255, 255, 0.733)) ,url("../images/bg/product-bg.jpg");
      background-size: contain;
      background-position: center;
}
.all-page{
    position: relative;
    padding: 100px 0;
   
} .all-page-left{
    float: right;
    width: 30%;
    padding-left: 20px ;
}
.all-page .all-page-left img{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.all-page .all-page-right p{
    font-size: 17px;
    color: black;
}
.all-page .all-page-right h2{
    font-size: clamp(25px, 3.5vw, 70px);
    font-weight: 700;
    font-family: var(--heading);
    color: var(--black);
    line-height: 1;
}

.project-card{
    margin-top: 40px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    border-radius: 10px;
    transition: all 0.5s;
}
.project-card .project-img{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.project-card .project-img::before{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.295);
    transform: scaleX(0);
    transition:all 0.4s;
}
.project-card .project-img img{
    width: 100%;
}
.project-card .project-name{
padding: 10px;
font-size: 20px;
width: 100%;
background: red;
color: white;
text-align: center;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
text-transform: capitalize;
}
.project-card:hover .project-img::before{
     /*transform: scaleX(1);*/
     animation: project 1.5s;
}
.project-card .project-img .project-text{
    position: absolute;
    right: -100%;
    top: 0;
    height: 100%;
    width: 60%;
    padding: 20px;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, 0.712);
    font-size: 20px;
    font-weight: 600;
    transition:  0.5s;
    color: white;
    
}
.project-card:hover .project-img  .project-text{
    right: 0;
}
.project-card:hover{
    transform: translateY(-20px) scale(1.05);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
@keyframes project{
    0%{
         transform: scaleX(0);
    }
    80%{
         transform: scaleX(1);
    }
    100%{
       transform: scale(2) ; 
       opacity: 0;
    }
    
}