
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

:root{
    --heading-font:"Montserrat", sans-serif;
    --paragraph-font:"Poppins",sans-serif;
    --text-color-white: #ffffff;
    --text-black: rgb(69,62,62);
}

/* =============== FOOTER ===================== */

.footer{
    position: relative;
    background: #a5692a;
    /* background: #4D0012; */
}

.footer-overlay{
    background-color: #252422;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer_Wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    position: relative;
}

.footer_links ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px;
    border-bottom: 1px solid grey;
    position: relative;
}

.footer_links:nth-of-type(3) ul{
    border: none;
}

.footer_links ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.footer_links ul li a{
    color: #fff;
    font-size: 18px;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
}

.footer_links p{
    text-align: center;
    padding-top: 20px;
    color: #fff;
    font-size: 16px;
    font-family: "Poppins",sans-serif;
    font-weight: 400;
}

.footer_links ul li a i{
    font-size: 28px;
}



/*
.top_footer{
    padding: 50px;
    position: relative;
}

.footer_section{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    justify-content: center;
    gap: 20px;
}

.footer_item:nth-of-type(1){
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_item img{

}

.footer_item h2{
    font-size: 24px;
    font-weight: 700;
    font-family: "Montserrat",sans-serif;
    color: #fff;
    margin-bottom: 20px;
}

.footer_item p ,.footer_section ul li a{
    font-size: 16px;
    font-weight: 400;
    font-family: var(--paragraph-font);
    color: var(--text-color-white);
    line-height: 26px;
}

.social_links{
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.social_links li a i{
    font-size: 28px;
}


.footer_section ul li a:hover{
    color: #db0303;
}


.copyright{
    display: flex;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #453e3e;
}

.copyright_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    line-height: 26px;
}

.copyright_wrapper p{
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
} */


/* =============GALLERY============ */

.gallery{
    background: #f5f5f5;
    padding: 90px 20px;
  }

  .gallery_wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    justify-content: center;
  }

  .gallery-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    /* box-shadow: 4px 4px 20px 1px rgba(0, 0, 0, 0.32); */
    min-width: 300px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .thumbnail-row {
    display: flex;
    gap: 10px;
    padding: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .thumbnail-row img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .thumbnail-row img:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .showAll_btn{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .showAll_btn a{
    background-color: #a5692a;
    color: #fff;
    font-size: 18px;
    margin-top: 50px;
    display: inline-block;
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: 500;
    font-family: "Poppins",sans-serif;
  }

/* ================  ABOUT MORE ====================== */

.more_about{
    position: relative;
    padding: 70px 20px;
}

.more_about h2{
    font-family: "Montserrat",sans-serif;
    font-size: 24px;
    color: #a5692a;
    font-weight: 800;
    text-align: center;
}

.more_about_container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    overflow-y: auto !important;
  }

  .more_about_list{
    flex: 0 0 250px;
    background: #f1f1f1;
    border-right: 1px solid #ddd;
    display: flex;
    flex-direction: column;
  }

  .more_about_list a {
    padding: 16px 20px;
    text-align: left;
    background: none;
    border: none;
    font-size: 16px;
    color: #333;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s;
    cursor: pointer;
    font-family: "Montserrat",sans-serif;
  }

  .more_about_list a:hover {
    background-color: #746c6c1a;
  }

  .more_about_list a.active {
    background-color: #a5692a;
    color: white;
    font-weight: bold;
  }

  .content {
    margin-top: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: none;
    animation: fadeIn 0.3s ease-in-out;

    /* 👇 Add these for scrollable content */
    max-height: 400px;       /* or any height you prefer */
    overflow-y: auto;
  }

  .content h3{
    margin-bottom: 35px;
    color: #a5692a;
    font-weight: 400 !important;
  }

  .content ul li{
    list-style-type: disc;
    margin-bottom: 5px;
  }

  .content.active {
    display: block;
  }



/* ===========RESPONSIVE ========== */

@media(max-width:900px){

    .slide_item{
        flex: 0 0 50% !important;
    }

    .contact_btn{
        display: none;
    }

    .navbar_wrapper{
        justify-content: space-between !important;
    }

    .about_wrapper{
        grid-template-columns: 1fr !important;
        gap: 50px;
        padding: 10px !important;
    }

    .aboutLeft{
        padding: 0 40px !important;
    }
    .aboutRight{
        padding: 10px;
    }

    .nav_links{
        display: none;
    }
    .hamburg{
        display: block;
    }

    .hamburg svg{
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 25px;
    }

    .contact_form{
        padding: 0;
        padding-top: 40px !important;
    }

    .gallery_wrapper{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px){

    .slide_item{
        flex: 0 0 100% !important;
    }

    .navbar_wrapper{
        justify-content: space-between;
    }

    .about_content h2{
        text-align: left;
        padding-left: 20px;
    }
    .about_content p{
        text-align: left;
        padding-left: 20px;
    }

    .more_about_container {
        flex-direction: column;
      }

      .more_about_list {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid #ddd;
        flex: 1 !important;
      }

      .more_about_list a {
        flex: 1;
        white-space: nowrap;
        text-align: center;
        border-bottom: none;
        border-right: 1px solid #ddd;
      }

      .more_about_list a:last-child {
        border-right: none;
      }

      .contact_btn{
        display: none !important;
      }

      .copyright_wrapper{
        flex-direction: column-reverse !important;
      }

      .gallery_wrapper{
        grid-template-columns: 1fr !important;
    }

}


@media(max-width:570px){
    .form-50{
        flex-direction: column;
    }

    .contact_form{
        padding: 20px !important;
    }

    .breadcrumb_txt h2{
        font-size: 48px !important;
    }
}


/* =========== HEADER ================ */

.header{
    /* position: relative; */
    background-color: var(--default-white);
    /* box-shadow: 1px 1px 7px; */
    border-bottom: 1px solid #808080;
    z-index: 55;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ffffff;
}

.navbar{
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    min-height: 60px;
}

.navbar_wrapper{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding: 10px 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.logo img{
    height: 50px;
    width: 100%;
}

.nav_links{
    position: relative;
    margin: 0 50px;
}

.nav_links .nav--items{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0 !important;
}

.nav_links .nav--items li{
    list-style: none;
    /* padding: 40px 0; */
}

.nav_links .nav--items li a{
    text-decoration: none;
    color: var(--primary-color);
    font-family: "Poppins",sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 15px;
    transition: all 0.2s linear;
}

.nav_links .nav--items li a span{
    margin-left: 5px;
    font-size: 14px;
}

.nav_links .nav--items li a:hover{
    color: #a5692a;
}

.dropdown-menus{
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 100%;
    text-align: center;
    background-color: #ffffff;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s linear;
    padding: 0;
}

.dropdown-item{
    text-decoration: none;
    color: var(--primary-color);
    font-family: "Poppins",sans-serif;
    font-size: 20px;
    font-weight: 600;
    padding: 15px;
    transition: all 0.2s linear;
}

.dropdown-item:nth-of-type(1){
    border-bottom: 1px solid rgba(128, 128, 128, 0.377);
}

.nav--items li:hover .dropdown-menus{
    visibility: visible;
    opacity: 1;
    transform: rotateX(0deg);
}


.contact_btn{
    display: flex;
    align-items: center;
    position: relative;
}

.contact_btn a{
    background-color: #a5692a;
    padding: 12px 24px;
    border-radius: 3px;
    font-family: "Poppins",sans-serif;
    font-size: 18px;
    line-height: 18px;
    color:#ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s linear;
}

.contact_btn a:hover{
    background-color: #fff;
    color: #a5692a;
    border: 1px solid #a5692a;
}


/* WRAP MENU BAR */

.menu_back_filter{
    background-color: #776e6ebd;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 8;
    right: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition:all 0.7s ease;
}

.menu_wrap_container{
    background-color: white;
    top: 0;
    right: -100%;
    position: fixed;
    z-index: 99;
    width: 300px;
    max-width: 100%;
    height: 100%;
    /* visibility: hidden; */
    transition:all 0.4s ease-out;
    cursor: pointer;
}

.menu_wrap{
    display: flex;
    flex-direction: column;
    position: absolute;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    max-height: 100%;
    top: 0;
    left: 0;
}
/* .wrap_logo_btn{
    position: relative;
} */

.wrap__close_btn{
    position: absolute;
    font-size: 22px;
    top: 20px;
    right: 30px;
    text-align: center;
    display: flex;
    color: red;
    z-index: 40;
}

.nav_wrap_logo{
    padding: 20px 25px;
    position: relative;
}
.nav_wrap_logo a img{
    height: 80px;
    object-fit: contain;
}

.menu_container{
    margin-top: 80px;
}

.menu_list{
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.192);
    width: 100%;
}

.menu_list li{
    border-top: 1px solid rgba(0, 0, 0, 0.192);
    display: block;
    position: relative;
}

.menu_list li a{
    text-decoration: none !important;
}

.menu_list li>a{
    display: block;
    padding: 10px 20px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
}

.menu_list li>a:hover{
    color: #22aa11;
}





/* ========== CONTACT =========== */

.contact{
    position: relative;
}

.contact_container{
    padding: 150px 0 50px 0;
    position: relative;
}


.contact_details{
    position: relative;
}

.contact_details h2{
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 39px;
    font-family: "League Spartan",sans-serif;
}

.contact_info{
    display: flex;
    margin-bottom: 30px;
}

.contact_info .icon i{
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: #ebf3fa;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    color: #a5692a;
}

.contact_txt{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
}

.contact_txt h2{
    position: relative;
    display: block;
    font-size: clamp(20px,24px,26px);
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 1px;
    font-family: "League Spartan",sans-serif;
}

.contact_txt p{
    font-size: 16px;
    line-height: 26px;
    color: #8a8d91;
    font-family: 400;
}

.contact_form{
    padding-left: 50px;
}

.contact_form_wrapper{
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
    margin-bottom: 39px;
    font-family: "League Spartan";
    text-transform: capitalize;
}

.form-50{
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

form input,textarea{
    position: relative;
    display: block;
    width: 100%;
    height: 54px;
    border: 1px solid #e5e5e5;
    padding: 10px 20px;
    font-size: 15px;
    color: #8a8d91;
}

form input:focus{
    outline: none;
}

.form-50 textarea{
    width: 100%;
    height: 150px;
}

.form-50  button{
    border: none;
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 17px;
    line-height: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
    padding: 15px 34px;
    border-radius: 30px;
    z-index: 1;
    color: #ffffff;
    background: #a5692a;
    margin-top: 30px;
}





/* ====================PRODUCT SLIDE ======================= */

.product_slides{
    background-color: #f7f3f5;
}

.slider{
    position: relative;
    /* overflow: hidden; */
    width: 100%;
    padding: 30px 0;
}

.slider:nth-of-type(2){
    padding: 0 0 70px 0 !important;
}

.slider h2{
    font-size: 28px;
    font-family: var(--heading-font);
    font-weight: 700;
    padding: 30px 0;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    max-width: 1200px;
    line-height: 1.3;
    padding-left: 20px !important;
    text-align: center;
    text-transform: uppercase;
}

.slider_container{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
   margin-left: auto;
   margin-right: auto;
   max-width: 1200px;
   overflow: hidden;
   background-color: #fff;
}

.slider_wrapper{
    display: flex;
    align-items: center;
    width: 100%;
    transition: transform 0.5s ease-in-out;
    /* display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px; */
}

.slide_item{
    padding: 10px;
    position: relative;
    display: flex;
    flex: 0 0 33%;
    height: 430px;
    justify-content: center;
}

.slide_item img{
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.nav{
background: transparent;
border: none;
font-size: 28px;
color: #DDDDDD;
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 10;
padding: 10px;
}

.prev{
    left: 0;
}

.next{
    right: 0;
}




/* ===================breadcrumb============ */


.breadCrumb{
    position: relative;
    padding-top: 80px;
}

/* .bread-img{
    background: url(../img/Sculptures-img/IMG-20220507-WA0030-e1656569227410-768x768.jpg.jpeg) ;
    background-size: contain;
} */

.bread-img {
    background-image:
        url('../img/cycle-1.jpeg'),
        url('../img/gym-1.jpg'),
        url('../img/w-3.jpeg'),
        url('../img/m-2.jpg');
    background-repeat: no-repeat, no-repeat,no-repeat,no-repeat;
    background-position: top left,
    top right,
    center center,
    bottom left;
    background-size: contain, contain;
}


.breadcumb-overlay{
    background-color: #a5692a;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.breadcrumb_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.breadcrumb_txt{
    position: relative;
    padding: 20px;
    padding-bottom: 20px !important;
}

.breadcrumb_txt h2{
    color: #ffffff;
    font-size: 72px;
    font-weight: 700;
    font-family: var(--heading-font);
}

/* ==============  HERO ====================== */

.hero{
    position: relative;
    margin-top: 80px;
}


.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  .hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* dark transparent overlay */
    z-index: 2;
  }

  .hero-text {
    color: white;
    text-align: center;
    position: relative;
    z-index: 3;
  }

  .hero-text h2 {
    font-size: 56px;
    font-family: "Poppins",sans-serif;
    font-weight: 800;
    line-height: 84px;
    margin-top: 50px;
    letter-spacing: -2px;
  }


  /* ====================ABOUT============== */



/* ======== ABOUT ========== */

.about{
    position: relative;
    padding: 70px 0;
    background: url(../img/texture-bg.webp) center / cover no-repeat;
}

.about_wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding-right: 50px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.aboutLeft{
    width: 100%;
    padding-right: 80px;
    display: flex;
}

.img_about{
    width: 100%;
    position: relative;
}

.img_about img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.aboutRight{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_content h2{
    font-family: "Montserrat",sans-serif;
    font-size: clamp(32px,36px,40px);
    font-weight: 700;
    line-height: 45px;
    color: #a5692a;
    /* text-align: center; */
    margin-bottom: 20px !important;
}

.about_content p{
    font-family: "Poppins",sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7em;
    color: black;
    margin-bottom: 5px !important;
    /* text-align: center; */
    text-align: justify;
}

.btnAbout{
    margin-top: 50px;
    position: relative;
    display: flex;
    align-items: center;
}

.btnAbout a{
    padding: 15px 50px;
    color: #ffffff;
    background-color: #a5692a;
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 17px;
    line-height: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
    border-radius: 30px;
    z-index: 1;
    transition: all 0.5s ease;
    text-decoration: none;
}
