@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", system-ui;
}

.hd-top {
    display: flex;
    justify-content: space-between;
    padding: 20px 100px;
    color: white;
    background-color: rgb(0, 0, 0);
}

.top-cont {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.top-media a {
    padding: 0px 10px;
    color: white;
}

.top-media a:hover {
    color: rgb(0, 255, 229);
    transition: 0.5s;
}

.top-cont p:hover {
    color: rgb(0, 255, 229);
}

@media (max-width:777px) {
    .hd-top {
        padding: 8px;
    }

    .top-media {
        display: none;
    }

    .container {
        width: 100% !important;
        margin: 0 10px;
    }

    .logo-photo {
        padding: 0 10px;
    }

    .start-row .toggle-btn {
        display: block;
        padding: 0 10px;
    }

    .start-row ul a {
        display: none;
    }
}

.container {
    width: 80%;
    margin: 0 auto;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 80%;
    margin: 0 auto;
}

.navbar {
    background-color: white;
    color: black;
    padding: 10px 20px;
    position: relative;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pogo img {
    width: 65%;
}



.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

.menu-icon .bar {
    background-color: black;
    height: 3px;
    width: 25px;
    margin: 3px 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.close-icon {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 50px;
        right: 20px;
        background-color: #ffffff;
        flex-direction: column;
        width: 200px;
        border-radius: 5px;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-icon {
        display: flex;
    }

    .close-icon {
        display: none;
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
    }

    .nav-menu.active+.close-icon {
        display: block;
    }
}


/* !--------------------------  navbar end ----------------------! */

.logo-photo img {
    width: 120px;
}

.imageslider {
    background-image: url(Image/banner-01.jpg);
    width: 100%;

    background-size: 100% 100%;
    box-shadow: rgba(255, 0, 0, 0.35) 0px 5px 15px;
    animation: changeimage 10s ease-in-out infinite;
}

@keyframes changeimage {
    0% {
        background-image: url(Image/Hair/hair-02.jpg);
    }

    25% {
        background-image: url(Image/Hair/hair-03.jpg);
    }

    75% {
        background-image: url(Image/Hair/hair-04.jpg);
    }

    100% {
        background-image: url(Image/Hair/hair-06.jpg);
    }
}

/* .imageslider {
    padding-top: 10vh;
    padding-left: 50px;
} */

/* .slider-p {
    width: 50%;
}

.imageslider h1 {
    font-size: 50px;
    padding-top: 40px;
}

.slider-p p {
    color: black;
    font-size: 20px;
    margin: 30px 0;
}

button {
    color: rgb(255, 255, 255);
    font-size: 30px;
    background-color: #19A6B4;
    padding: 8px 20px;
    outline: none;
    border: none;
    border-radius: 10px;
    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;
}

button:hover {
    background-color: red;
    scale: 1.05;
} */


.slider-p p {
    margin-top: 2%;
    font-size: 20px;
    width: 40%;
}

.slider-p h1 {
    padding: 10% 0 0 0;
    width: 67%;
    font-size: 45px;
}

.more-btn {
    padding: 10px 35px;
    margin: 3% 0;
    color: white;
    background-color: #19A6B4;
    border: none;
    border-radius: 5px;
    font-size: 15px;
}

.more-btn:hover {
    background-color: red;
    scale: 1.05;
}

/* !------------------------Responisve imageslider (Tab)--------------------------! */

@media (max-width:779px) {
    .slider-p h1 {
        padding-left: 5%;
        font-size: 30px;
    }

    .slider-p p {
        font-size: 15px;
        padding-left: 5%;
    }

    .more-btn {
        margin-left: 5%;
    }
}

/* !------------------Hero Section-------------------------! */

.hero {
    background-color: #F4F4F4;
}

.hero-row {
    display: flex;
    justify-content: space-around;
    /* align-items: center; */
    width: 100%;
}

.hero-1 {
    width: 50%;
    padding: 10px 10px 10px 40px;
    color: black;
}

.hero-2 {
    width: 50%;
}

.hero-1 h1 {
    font-size: 45px;
    margin: 30px 0 0;
}

.hero-1 h3 {
    font-size: 100%;
    margin-top: 15px;
    line-height: 25px;
}

.hero-1 p {
    margin: 10px 0;
    line-height: 25px;
}

.hero-2 img {
    width: 100%;
}




/* !------------------------Responisve imageslider (Tab)--------------------------! */

@media (max-width:947px) {
    .hero-row {
        flex-wrap: wrap;
    }

    .hero-1 {
        width: 100%;
    }

    .hero-2 {
        width: 100%;
    }

    .hero-1 h1 {
        font-size: 30px;

    }

    .hero-1 h3 {
        font-size: 15px;
    }

    .hero-1 p {
        font-size: 12px;
    }
}

.after {
    text-align: center;
    margin-top: 30px;
}

.after-row {
    max-width: 80%;
    margin: 0 auto;
}

.after-photo-1 {
    justify-content: space-between;
    display: flex;
}

.after-photo-1 img {
    width: 50%;
    padding: 20px;
    border-radius: 73px;

}

.after-photo-1 img:hover {
    scale: 1.05;
}

/* !---------------------After & Before (End)--------------------------! */

.experience {
    background-image: url(Image/office-background.jpg);
    height: 40vh;
    background-attachment: fixed;
}

.experience img {
    width: 100%;
}

.experience-main {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-top: 50px;
}

.experience-section {
    color: #ffffff;
}

.experience-section h3 {
    font-size: 40px;
}

.experience-section h1 {
    font-size: 40px;
}

.experience-section h1 span {
    color: #19A6B4;
}

.experience-icon p {
    color: white;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 10px 0;
    font-size: 30px;
}

.experience-icon p:hover {
    scale: 1.05;
}

@media (max-width:835px) {
    .experience-main {
        flex-wrap: wrap;
        padding: 30px;
    }

    .experience-section {
        width: 500px;
        text-align: center;
    }

    .experience-icon {
        width: 500px;
        padding-top: 30px;
    }

    .experience-section h1 {
        font-size: 20px;
    }

    .experience-icon p {
        font-size: 20px;
        padding-left: 20%;
    }
}

@media (max-width:375px) {
    .experience-section h3 {
        font-size: 35px;
    }

    .experience-icon {
        width: 500px;
        padding-top: 13px;
    }

    .experience-icon p {
        font-size: 16px;
        padding-left: 20%;
    }
}

/* 
!----------------------product shop (start)---------------------------------! */

.product-title {
    text-align: center;
    margin-top: 50px;
}

.product-title h1 {
    font-size: 40px;
}

.product-title span {
    color: #19A6B4;
}

.product-title p {
    margin-top: 20px;
    font-size: 20px;
}

.product-img {
    display: flex;
    justify-content: space-around;
    padding-top: 50px;
}

.product-img img:hover {
    scale: 1.05;
}

.product-img1 {
    text-align: center;
}

.product-img1 h2 {
    margin: 10px;
}

.product-img1 a {
    display: inline;
    text-align: center;
    font-size: 20px;
    background-color: #19A6B4;
    border-radius: 5px;
    padding: 5px 20px;
    text-decoration: none;
    color: white;
}

.product-img1 a:hover {
    background-color: red;
    scale: 1.05;
}

.btn-shop {
    color: white;
    background-color: #19A6B4;
    border-radius: 5px;
    padding: 10px 20px;
    border: none;
}

.btn-shop:hover {
    background-color: red;
    scale: 1.05;
}


/* !-------------------------Responsive product shop --------------------! */


@media (max-width:988px) {
    .product-img {
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
    }
}


/* 
!----------------------------last hero------------------------! */

.container {
    width: 80%;
    margin: 0 auto;
}


.last {
    background-color: white;
    margin-top: 30px;
    display: flex;
    justify-content: space-around;
}

.last-span span {
    background-color: rgba(0, 0, 0, 0.533);
    padding: 25px;
    color: rgb(255, 255, 255);
    margin-left: 30px;
}

.last-photo {
    width: 50%;

}



.last-section {
    width: 40%;
    margin: 20px auto;
}

.last-section h1 {
    margin-top: 20%;
    font-size: 50px;
    color: #19A6B4;
}

.last-section p {
    font-size: 20px;
    margin-bottom: 60px;
}

.btn-shop {
    font-size: 30px;
    margin: 10% 20% auto;

}


/* !-------------------------Responsive Last section--------------------! */

@media (max-width:931px) {
    .last {
        display: flex;
        flex-wrap: wrap;
        margin-top: -20px;
    }

    .last-photo {
        width: 100%;
    }

    .btn-shop {
        margin: 56px;
    }

    .last-span span {
        margin-left: 12px;
    }

    .last-section {
        width: 80%;
        text-align: center;
        margin: 0;
    }

    .last-section h1 {
        font-size: 33px;
    }

    .last-section p {
        font-size: 15px;
    }

    .btn-shop {
        font-size: 20px;
    }

    .last-span span {
        padding: 18px;
    }
}


/* !------------------------------- Footer------------------------! */

footer {
    background-color: black;
    /* background-repeat: no-repeat; */
}

.lasts-container {
    display: flex;
    justify-content: space-evenly;
    color: white;
    gap: 50px;
    width: 100%;
}

.responsive-1 {
    width: 50%;
    margin-top: 61px;
}

.responsive-2 {
    width: 50%;
    margin-top: 61px;
}

.footer-part1 {
    margin-bottom: 30px;
}

.footer-part1 h1 {
    font-size: 23px;
    color: yellow;
}

.footer-part1 hr {
    margin-bottom: 20px;
}

.footer-part1 p {
    font-size: 18px;
    margin-bottom: 10px;
    padding-right: 20px;
}

.footer-part1 i {
    letter-spacing: 20px;
}

.footer-part1 i:hover {
    color: #19A6B4;
}


.footer-part1 input {
    font-size: 20px;
    padding: 10px 5px 10px 30px;
    margin-bottom: 20px;
    background-color: rgba(245, 245, 220, 0);
    color: white;
    margin-right: 30px;
}

.btn-button {
    font-size: 20px;
    color: white;
    background-color: #19A6B4;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
}

.btn-button:hover {
    background-color: red;
    scale: 1.05;
}

.footer-row p {
    color: white;
    padding: 30px;
    display: flex;
    justify-content: center;
}

.footer-row a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
}

.footer-row a:hover {
    scale: 1.05;
}

.container-footer {
    width: 80%;
    margin: 0 auto;
}


@media (max-width:1221px) {
    .lasts-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .container-footer {
        width: 100%;
    }

    .responsive-2 {
        margin-top: 0;
    }

}



/* !-----------------------------About Us Section-----------------------------------! */

.abt-nav-img {
    background-image: url(Image/banner-04.jpg);
    background-attachment: fixed;
    height: 25vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    backface-visibility: hidden;
}

.about-nav-section h1 {
    font-size: 50px;
    padding: 2%;
}

.about-nav-section a {
    text-decoration: none;
    color: black;
}

.about-nav-section p {
    font-size: 20px;
    font-weight: bold;
    padding: 0 2%;
}

.abt-2row {
    margin: 70px 0;
    display: flex;
    justify-content: space-around;
}

.abt-2row-img {
    width: 50%;
}

.abt-2row-img img {
    width: 100%;
}

.abt-2row-contant {
    width: 50%;
    padding: 0 8%;
}

.abt-2row-contant h1 {
    font-size: 35px;
    margin-bottom: 5%;
}

.abt-2row-contant p {
    font-size: 22px;
    margin-bottom: 5%;
}


@media (max-width: 970px) {
    .abt-2row {
        display: flex;
        flex-wrap: wrap;
    }

    .abt-2row-img {
        width: 100%;
    }

    .abt-2row-contant {
        width: 100%;
    }
}













/* From Uiverse.io by Smit-Prajapati */
.parent {
    width: 290px;
    height: 100%;
    perspective: 1000px;
}

.mission-card {
    display: flex;
    justify-content: space-around;
    margin-bottom: 90px;
    margin-top: 60px;
}

.card {
    height: 110%;
    border-radius: 50px;
    background: linear-gradient(135deg, rgb(0, 255, 214) 0%, rgb(8, 226, 96) 100%);
    transition: all 0.5s ease-in-out;
    transform-style: preserve-3d;
    box-shadow: rgba(5, 71, 17, 0) 40px 50px 25px -40px, rgba(5, 71, 17, 0.2) 0px 25px 25px -5px;
}

.glass {
    transform-style: preserve-3d;
    position: absolute;
    inset: 8px;
    border-radius: 55px;
    border-top-right-radius: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.349) 0%, rgba(255, 255, 255, 0.815) 100%);
    /* -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px); */
    transform: translate3d(0px, 0px, 25px);
    border-left: 1px solid white;
    border-bottom: 1px solid white;
    transition: all 0.5s ease-in-out;
}

.content {
    padding: 100px 60px 0px 30px;
    transform: translate3d(0, 0, 26px);
}

.content .title {
    display: block;
    color: #00894d;
    font-weight: 900;
    font-size: 25px;
}

.content .text {
    display: block;
    color: rgba(0, 137, 78, 0.7647058824);
    font-size: 19px;
    margin-top: 20px;
}

.bottom {
    padding: 10px 12px;
    transform-style: preserve-3d;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translate3d(0, 0, 26px);
}

.bottom .view-more {
    display: flex;
    align-items: center;
    width: 40%;
    justify-content: flex-end;
    transition: all 0.2s ease-in-out;
}

.bottom .view-more:hover {
    transform: translate3d(0, 0, 10px);
}

.bottom .view-more .view-more-button {
    background: none;
    border: none;
    color: #00c37b;
    font-weight: bolder;
    font-size: 12px;
}

.bottom .view-more .svg {
    fill: none;
    stroke: #00c37b;
    stroke-width: 3px;
    max-height: 15px;
}

.bottom .social-buttons-container {
    display: flex;
    gap: 10px;
    transform-style: preserve-3d;
}

.bottom .social-buttons-container .social-button {
    width: 30px;
    aspect-ratio: 1;
    padding: 5px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    border: none;
    display: grid;
    place-content: center;
    box-shadow: rgba(5, 71, 17, 0.5) 0px 7px 5px -5px;
}

.bottom .social-buttons-container .social-button:first-child {
    transition: transform 0.2s ease-in-out 0.4s, box-shadow 0.2s ease-in-out 0.4s;
}

.bottom .social-buttons-container .social-button:nth-child(2) {
    transition: transform 0.2s ease-in-out 0.6s, box-shadow 0.2s ease-in-out 0.6s;
}

.bottom .social-buttons-container .social-button:nth-child(3) {
    transition: transform 0.2s ease-in-out 0.8s, box-shadow 0.2s ease-in-out 0.8s;
}

.bottom .social-buttons-container .social-button .svg {
    width: 15px;
    fill: #00894d;
}

.bottom .social-buttons-container .social-button:hover {
    background: black;
}

.bottom .social-buttons-container .social-button:hover .svg {
    fill: white;
}

.bottom .social-buttons-container .social-button:active {
    background: rgb(255, 234, 0);
}

.bottom .social-buttons-container .social-button:active .svg {
    fill: black;
}

.logo {
    position: absolute;
    right: 0;
    top: 0;
    transform-style: preserve-3d;
}

.logo .circle {
    display: block;
    position: absolute;
    aspect-ratio: 1;
    border-radius: 50%;
    top: 0;
    right: 0;
    box-shadow: rgba(100, 100, 111, 0.2) -10px 10px 20px 0px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: rgba(0, 249, 203, 0.2);
    transition: all 0.5s ease-in-out;
}

.logo .circle1 {
    width: 170px;
    transform: translate3d(0, 0, 20px);
    top: 8px;
    right: 8px;
}

.logo .circle2 {
    width: 140px;
    transform: translate3d(0, 0, 40px);
    top: 10px;
    right: 10px;
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    transition-delay: 0.4s;
}

.logo .circle3 {
    width: 110px;
    transform: translate3d(0, 0, 60px);
    top: 17px;
    right: 17px;
    transition-delay: 0.8s;
}

.logo .circle4 {
    width: 80px;
    transform: translate3d(0, 0, 80px);
    top: 23px;
    right: 23px;
    transition-delay: 1.2s;
}

.logo .circle5 {
    width: 50px;
    transform: translate3d(0, 0, 100px);
    top: 30px;
    right: 30px;
    display: grid;
    place-content: center;
    transition-delay: 1.6s;
}

.logo .circle5 .svg {
    width: 20px;
    fill: white;
}

.parent:hover .card {
    transform: rotate3d(1, 1, 0, 30deg);
    box-shadow: rgba(5, 71, 17, 0.3) 30px 50px 25px -40px, rgba(5, 71, 17, 0.1) 0px 25px 30px 0px;
}

.parent:hover .card .bottom .social-buttons-container .social-button {
    transform: translate3d(0, 0, 50px);
    box-shadow: rgba(5, 71, 17, 0.2) -5px 20px 10px 0px;
}

.parent:hover .card .logo .circle2 {
    transform: translate3d(0, 0, 60px);
}

.parent:hover .card .logo .circle3 {
    transform: translate3d(0, 0, 80px);
}

.parent:hover .card .logo .circle4 {
    transform: translate3d(0, 0, 100px);
}

.parent:hover .card .logo .circle5 {
    transform: translate3d(0, 0, 120px);
}


@media (max-width: 918px) {
    .mission-card {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width:793px) {
    .mission-card1 {
        width: 100%;
        justify-content: center;
        display: flex;
        margin-bottom: 60px;
    }

    .mission-card2 {
        width: 100%;
        justify-content: center;
        display: flex;
        margin-bottom: 60px;
    }

    .mission-card3 {
        width: 100%;
        justify-content: center;
        display: flex;
        margin-bottom: 60px;
    }
}

@media (max-width:527px) {
    .mission-card1 {
        margin: 50px
    }

    .mission-card2 {
        margin: 50px
    }

    .mission-card3 {
        margin: 50px
    }
}




/* 
!----------------------------service page--------------------------------! */

/* .brand-photo {
    display: flex;
    justify-content: space-around;
    margin: 3%;
}

.brand-photo1 {
    background-color: #F5F5F5;
    width: 30%;
    display: flex;
    justify-content: center;
    padding: 2%;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.brand-photo1 img:hover {
    scale: 1.05;
} */


.products-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    margin: 10% 10% 0;
    flex-wrap: wrap;
}

.cards {
    background-color: white;
    border-radius: 20px;
    transition: .3s ease-in-out;
    overflow: hidden;
}

.cards h2 {
    font-size: 20px;
    padding: 10px;
    font-weight: 500;
    margin-top: 10px;
    color: #d3ad69;
}

.cards h3 {
    font-size: 20px;
    padding: 10px;
    font-weight: 500;
    margin-top: 10px;
    color: #d3ad69;
}

button {
    /* padding: 10px; */
    outline: none;
    margin: 30px 0;
    background: transparent;
    border: none;
}

button a {
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid rgb(6, 0, 43);
    color: rgb(0, 0, 3);
    border-radius: 5px;
    /* z-index: 1; */
}

button:hover a {
    background: green;
    color: white;
    border: none;
}

.product {
    /* padding: 10px; */
    overflow: hidden;
    transition: .5s ease-in-out;
    width: 100;
}

.cards.product img {
    width: 100;
    transition: .5s ease-in-out;
}

.cards:hover .product img {
    transform: scale(120%);


}

@media (max-width: 777px) {
    .haeading h1 {
        font-size: 30px;
    }

    .haeading h4 {
        font-size: 15px;
    }

}

@media (max-width: 450px) {
    .cards {
        width: 100%;
    }
}







.btn {
    width: 100%;
    text-align: center;
    margin: 20px 0;
}

.btn a {
    text-decoration: none;
    color: #ffffff;
    padding: 10px 20px;
    border: 1px solid;
    border-radius: 5px;
    background-color: #19A6B4;
}

.btn a:hover {
    background-color: red;
    font-weight: 500;
    scale: 1.05;
}





/* 
!----------------------------Responsive service page--------------------------------! */

@media (max-width:679px) {
    .brand-photo1 {
        flex-wrap: wrap;
        display: flex;
        width: 265px;
        margin: 10px;
    }

    .brand-photo {
        flex-wrap: wrap;
        /* margin: 20px; */
    }
}

/* 
!----------------------------Contact page--------------------------------! */

iframe {
    width: 90%;
    margin: 5%;
}

.contact-section {
    display: flex;
    justify-content: space-around;
    margin-bottom: 5%;
}

.contact-part1 {
    width: 35%;
}

.phone-content {
    text-align: center;
    padding: 20px;

}

.phone-content i {
    color: #19A6B4;
    font-size: 30px;
}

.phone-content h1 {
    color: #19A6B4;
}

.phone-content p span {
    font-weight: bold;
}

.contact-part2 {
    display: flex;
    justify-content: center;
    width: 65%;
    padding: 2%;
}

input {
    width: 100%;
    padding: 10px;
    margin: 20px auto;
    color: #19A6B4;
}

textarea {
    width: 100%;
    padding: 10px;
    margin: 20px auto;
    color: #19A6B4;
}

.contact-send {
    margin: 0 20%;
    font-size: 20px;
}

@media (max-width:635px) {
    .contact-section {
        display: flex;
        flex-wrap: wrap;
    }

    .contact-part1 {
        width: 100%;
    }

    .contact-part2 {
        width: 100%;
    }
}


.contact-send {
    color: white;
    background-color: #19A6B4;
    padding: 10px 30px;
}

.contact-send:hover {
    background-color: red;
    scale: 1.05;
}


/* <!----------------------------------------------Product-Items-List---------------------------------> */
.start-h h1 {
    color: #d3ad69;
    font-weight: bold;
}

.product-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    padding: 5% 5%;
}

.product-box {
    width: 320px;
    text-align: center;
    padding: 10px;
    border: 1px solid #19A6B4;
    border-radius: 10px;
    background: white;
    margin-bottom: 20px;
    /* box-shadow: 0 0 2rem #d3ad69; */
    /* background: #cdc3b2; */
}

.product-box:hover {
    scale: 1.02;
}

.product-box h3 {
    font-size: 20px;
    color: #19A6B4;
    padding-bottom: 5px;
}

.product-box .btn-part {
    display: flex;
    justify-content: space-around;
    gap: 10px;
    padding-top: 10px;
}

.product-box .btn-part .butt {
    font-size: 16px;
    color: #19A6B4;
    padding: 5px 8px;
    border-radius: 30px;
    margin: 0;
    background: none;
    border: 1px solid #19A6B4;
}

.product-box .btn-part .butt:hover {
    color: white;
    background: #19A6B4;
    border: none;
}

@media (max-width:635px) {
    .contact-section {
        display: flex;
        flex-wrap: wrap;
    }

    .contact-part1 {
        width: 100%;
    }

    .contact-part2 {
        width: 100%;
    }

    .product-items {
        padding: 5%;
    }

    .product-box {
        width: 300px;
    }

    .product-box h3 {
        font-size: 20px;
        color: #19A6B4;
        padding-bottom: 5px;
        font-weight: 500;
    }

    .product-box .btn-part .butt {
        font-size: 15px;
        color: #19A6B4;
        padding: 5px 8px;
        border-radius: 30px;
        margin: 0;
        background: none;
        border: 1px solid #19A6B4;
    }
}

/* <!----------------------------------------------Product-Items-List end---------------------------------> */



@media (max-width:925px) {
    .last-photo img {
        width: 100%;
    }
}



.last-photo img {
    width: 100%;
}