@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');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Just+Another+Hand&display=swap');
@font-face {
  font-family: augie;
  src: url(fonts/augie.ttf);
}
:root{
    --red: #e22428;
    --pink: #d82578;
    --pink2: #b56261;
    --pink3: #f8aaa7;
    --white: #ffffff;
    --dark: #3c332d;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Outfit", sans-serif; */
    /* font-family: "Poppins", serif; */
    /* font-family: "Jost", sans-serif; */
    /* font-family: "Just Another Hand", cursive; */
    font-family: "Jost", sans-serif;
    scroll-behavior: smooth;
}

/********* Back To Top Button Start *********/

#top{
    display: inline-block;
    background-color: var(--pink);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    text-decoration: none;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.6);
  }
  #top::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 1.5em;
    line-height: 50px;
    color: #fff;
  }
  #top:hover {
    cursor: pointer;
    background-color: var(--black);
  }
  #top:active {
    background-color: var(--black);
  }
  #top.show {
    opacity: 1;
    visibility: visible;
  }

/********* Back To Top Button End *********/

/********* Header Section Start *********/

.header-shadow{
    background-color: var(--white);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
    top: 0 !important;
}

#header{
    position: fixed;
    top: 10px;
    padding: 20px 80px !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    margin: 0 auto !important;
    width: 100%;
    transition: .4s ease-in-out;
}
#header .navwrap {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .menu {
      position: relative;
    }

    .menu ul {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
    }

    .menu #navMenu li {
      list-style: none;
    }

    .menu #navMenu li a {
        font-size: 20px;
        font-weight: 400;
        text-decoration: none;
        color: #1a0606;
        position: relative;
        transition: .4s ease-in-out;
    }
    .sub-menu{
        background-color: #fff !important;
    }
    .menu #navMenu li a::after{
        content: "";
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        border-radius: 30px;
        height: 2px;
        transition: .4s ease-in-out;
        background-color: var(--pink);
    }

    .menu #navMenu li a:hover::after {
      width: 60%;
    }
    .hamburger {
      width: 28px;
      height: 22px;
      display: none;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      width: 100%;
      height: 3px;
      background: var(--pink);
      border-radius: 2px;
      transition: all 0.4s ease;
    }
    .hamburger:hover span {
      background: var(--pink);
    }
    .contact a{
        padding: 12px 18px;
        font-weight: 500;
        background: var(--pink);
        text-decoration: none;
        color: #fff;
        transition: .3s ease-in-out;
    }
    .contact a:hover{
        background: #299ec3;
        color: #fff;
    }
    .contact-link{
        display: none !important;
        padding: 12px 18px;
        font-weight: 500;
        background: var(--pink);
        text-decoration: none;
        color: #fff;
        transition: .3s ease-in-out;
    }
    .contact-link:hover{
        background: #299ec3;
        color: #fff;
    }
    #navMenu li {
    position: relative;
}
#navMenu li a{
    padding: 0;
}

/* Submenu - initially hidden */
.sub-menu {
    position: absolute;
    top: 150%;
    left: 0;
    background-color: var(--pink);
    min-width: 250px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border-radius: 0;
    z-index: 1000;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, visibility 0.4s;
}

/* Submenu links */
.sub-menu li a {
    display: block;
    padding: 18px 16px !important;
    text-decoration: none;
    background-color: #ffdaec;
    color: black !important;
    font-size: 17px !important;
    transition: background-color 0.3s ease;
}
.sub-menu li a::after {
    display: none;
}

.sub-menu li a:hover {
    color: var(--white) !important;
    background-color: var(--pink);
}

/* Show submenu on parent li hover */
#navMenu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Optional: hover effect for parent link */


/* Dropdown toggle button */
.submenu-toggle {
    cursor: pointer;
    margin-left: 0px;
    user-select: none;
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 0.8em;
    color: #fff;
}

/* Rotate arrow when submenu is open */
.submenu-toggle.open {
    transform: rotate(180deg);
}

/* Show submenu when active via click */
.sub-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.submenu-toggle i{
    color: #1a0606;
    transition: .4s ease-in-out;
}
#navMenu li:hover .submenu-toggle i{
    transform: rotate(180deg);
    color: var(--black);
}
#navMenu li a:hover{
    color: #000;
}
/* .sub-menu li a:hover{
    color: #d82578 !important;
} */

/* Mobile Styles */
@media screen and (max-width: 850px) {
    .hamburger {
        display: flex;
        z-index: 10001;
    }
    .menu #navMenu li a:hover::after {
      width: 90%;
    }
    #navMenu li:hover .submenu-toggle i{
    transform: rotate(0);
    color: var(--pink);
}
    .submenu-toggle i{
    color: #000;
    transition: .4s ease-in-out;
}
    .menu ul {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding-top: 80px;
        transition: left 0.4s ease;
        z-index: 1000;
    }

    .menu ul li {
        width: 100%;
    }

    .menu #navMenu li a {
        font-size: 16px;
        color: #000;
        padding: 15px 25px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    #navMenu .contact-link{
        font-size: 18px !important;
        margin-top: 20px !important;
        padding: 10px 25px !important;
        margin-left: auto;
        width: 90% !important;
        border: none;
        display: flex !important;
        text-align: center !important;
        margin-right: auto;
        justify-content: center;
    }
    #navMenu .contact-link:hover{
        color: #fff !important;
    }
    
    .menu ul.active {
        left: 0;
    }
    
    .contact{
        display: none;
    }
    
    .contact-link{
        margin-top: 0 !important;
        display: block;
        color: #fff !important;
        text-align: center;
    }
    
    .contact-link::after{
        display: none;
    }
    
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        visibility: hidden;
        transition: 0.3s ease;
        z-index: 999;
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile submenu styles */
    .sub-menu {
        position: static;
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        opacity: 1;
        visibility: visible;
        width: 100%;
    }
    
    .sub-menu.active {
        max-height: 500px;
    }
    
    .sub-menu li a {
        color: #000 !important;
        padding: 12px 35px !important;
        font-size: 16px !important;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .submenu-toggle {
        color: #000 !important;
    }
    
    /* Hide submenu on mobile by default */
    .sub-menu:not(.active) {
        display: none;
    }
    
    /* Make entire menu item clickable on mobile */
    .menu-item-with-submenu {
        cursor: pointer;
    }
}

/********* Header Section End *********/

/********* Banner Section Start *********/

#banner img{
    position: relative;
    object-fit: cover;
    vertical-align: top;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}
#banner .ban-text{
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
#banner .ban-text h3{
    font-family: augie;
    font-size: 68px;
    color: #b55e25;
    margin-bottom: 0;
}
#banner .ban-text h1{
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 68px;
    color: #a1567a;
}

/********* Banner Section End *********/

/********* info Section Start *********/

#info img{
    margin-bottom: 20px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(18%) sepia(9%) saturate(3138%) hue-rotate(301deg) brightness(96%) contrast(92%);
}
#info .i-text h4{
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 10px;
    color: var(--dark);
}
#info .i-text p{
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    color: var(--dark);
}

/********* info Section End *********/

/********* About Section Start *********/

#about{
    background-image: url(./img/about.webp);
    background-size: cover;
    background-position: bottom;
}
#about h1{
    font-size: 60px;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 23px;
}
#about p{
    font-size: 17px;
    font-weight: 300;
    color: #0e0a08;
    line-height: 1.4;
    margin-bottom: 23px;
}
#about .a-btn a{
    display: inline-block;
    text-decoration: none;
    font-size: 21px;
    text-transform: uppercase;
    padding: 0px 20px;
    border: 2px solid var(--red);
    border-radius: 50px;
    color: var(--red);
    transition: .4s ease-in-out;
}
#about .a-btn i{
    font-size: 26px;
}
#about .a-btn a:hover{
    background-color: var(--red);
    color: var(--white);
}

/********* About Section End *********/

/********* Products Section Start *********/

#products h1{
    font-size: 60px;
    font-weight: normal;
    color: var(--dark);
    margin-bottom: 10px;
}
#products span{
    font-size: 22px;
    font-weight: 300;
    color: #0e0a08;
}
#products .p-img img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: .4s ease-in-out;

}
#products .p-text{
    margin-top: 25px;
}
#products .p-text h4{
    font-size: 19.5px;
    color: var(--dark);
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
    transition: .4s ease-in-out;
}
#products .p-text p{
    font-size: 16px;
    color: #0e0a08;
    font-weight: 300;
    line-height: 1.3;
}
.slide-wrap {
  position: relative;
}
.slide a{
    text-decoration: none;
}
.slide a:hover h4{
    color: var(--red) !important;
}
.slide .p-img{
    overflow: hidden;
}
.slide a:hover img{
    transform: scale(1.1);
}

.slick-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  background: #d1d1d1;
  border: none;
  border-radius: 50%;
  padding: 10px 14px;
  cursor: pointer;
  transition: .4s ease-in-out;
}
.slick-arrow:hover {
  background: var(--red);
  color: var(--white);
}

.custom-prev {
  left: -60px; /* move outside */
}

.custom-next {
  right: -60px; /* move outside */
}

.slick-arrow i {
  font-size: 20px;
}

/********* Products Section End *********/

/********* Sustainability Section Start *********/

#sus{
    background-image: url(./img/sus.webp);
    background-size: cover;
    background-position: bottom;
}
#sus h1{
    font-size: 60px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 23px;
}
#sus p{
    font-size: 17px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 23px;
}
#sus .a-btn a{
    display: inline-block;
    text-decoration: none;
    font-size: 21px;
    text-transform: uppercase;
    padding: 0px 20px;
    border: 2px solid var(--white);
    border-radius: 50px;
    color: var(--white);
    transition: .4s ease-in-out;
}
#sus .a-btn i{
    font-size: 26px;
}
#sus .a-btn a:hover{
    background-color: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/********* Sustainability Section End *********/

/********* Footer Section Start *********/

#footer{
    background-image: url(./img/footer.webp);
    background-size: cover;
    background-repeat: no-repeat;
    border-top: 1px solid #c2c2c2;
}
#footer h4{
    font-weight: 500;
    font-size: 22px;
    color: var(--dark);
    font-family: "Montserrat", sans-serif !important;
    margin-bottom: 25px;
}
#footer ul{
    margin-bottom: 0;
    padding-left: 0;
}
#footer ul li{
    list-style: none;
    margin-bottom: 10px;
}
#footer ul li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
    font-family: "Montserrat", sans-serif !important;
    transition: .4s ease-in-out;
}
#footer ul li a:hover{
    color: var(--red);
}
#footer p{
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
    font-family: "Montserrat", sans-serif !important;
}
#footer span{
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.4;
    font-family: "Montserrat", sans-serif !important;
}

/********* Footer Section End *********/

/********* Inner Banner Section Start *********/

#inner-banner-section{
    position: relative;
    width: 100%;
    height: 450px;
    background-color: #ffdddc;
    overflow: hidden;
}
#inner-banner-section .ban-text{
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
#inner-banner-section .ban-text h1{
    font-size: 45px;
    color: var(--dark);
    text-transform: uppercase;
    font-weight: 600;
    /* font-family: "Just Another Hand", cursive; */
}
#inner-banner-section .ban-text p{
    font-size: 18px;
    /* font-family: "Just Another Hand", cursive; */
}
#inner-banner-section .ban-text p a{
    font-weight: 500;
    color: var(--black2);
    text-decoration: none;
    transition: .4s ease-in-out;
}
#inner-banner-section .ban-text p a:hover{
    color: var(--pink);
}
#inner-banner-section .ban-text p span{
    color: #585858;
}

/********* Inner Banner Section End *********/

/********* Inner Profile Section Start *********/

#in-pro h1{
    font-size: 32px;
    text-align: justify;
    line-height: 1.4;
}
#in-pro h1 span{
    font-weight: 700;
    color: var(--pink2);
}
#in-pro img{
    border-radius: 20px;
}
#in-pro p{
    font-size: 23px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--dark);
}

/********* Inner Profile Section End *********/


/********* Inner Management Section Start *********/

#in-man p{
    font-size: 18px;
    line-height: 1.6;
}
#in-man h4{
    color: var(--red);
    font-weight: 600;
}
#in-man h4 span{
    color: var(--dark);
    font-weight: 500;
}
#in-man h6 {
    color: #585858;
}
#in-man .man{
    margin: 30px 0;
    padding: 30px 0;
    border-bottom: 1px solid #d2d2d2;
}
#in-man .man:last-of-type{
    border-bottom: none;
}
#in-man .man-img img{
    border-left: 20px solid var(--pink);
    border-bottom: 20px solid var(--pink);
    border-radius: 0 90px 0 0;
    box-shadow: -10px 10px 15px 0 rgba(216, 37, 120, 0.4);
}
#in-man .man2 .man-img img{
    border-right: 20px solid var(--pink);
    border-left: none;
    border-bottom: 20px solid var(--pink);
    border-radius: 90px 0 0 0;
    box-shadow: 10px 10px 15px 0 rgba(216, 37, 120, 0.4);
}

/********* Inner Management Section End *********/

/********* Inner Strenghts Section Start *********/

#in-st .st{
    padding: 30px 50px;
    background-color: white;
    box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.15);
    height: 100%;
    border-radius: 15px;
    border: 1px solid var(--pink2);
}
#in-st .st-icon{
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    border-radius: 50%;
    background-color: #ffd5ca;
}
#in-st .st-text h3{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}
#in-st .st-text p{
    font-weight: 400;
    font-size: 17px;
    color: #585858;
    margin-bottom: 0;
}
#in-st .st-icon-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
}
#in-st .st i{
    font-size: 50px;
    color: #e24b47;
}

/********* Inner Strenghts Section End *********/

/********* Inner Product Section Start *********/

#pro h2{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}
#pro h2::after{
    position: absolute;
    content: "";
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    border-radius: 50px;
    height: 5px;
    background-color: var(--pink);
}
#pro .pro-text{
    background-color: var(--pink2);
    padding: 15px;
    font-size: 22px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 87px;
    margin-top: -50px;
    transition: .4s ease-in-out;
}
#pro .pro-text p{
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    color: var(--white);
    margin-bottom: 0;
}
#pro a{
    text-decoration: none;
}
#pro .pro-img-wrap{
    border-radius: 20px;
    width: 100%;
    height: 300px;
    border: 1px solid #d2d2d2;
    overflow: hidden;
}
#pro a .pro-img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s ease-in-out;
}
#pro a:hover .pro-img-wrap img{
    transform: scale(1.1);
}
#pro a:hover .pro-text{
    background-color: var(--pink);
}

/********* Inner Product Section End *********/

/********* Inner Qualtiy Policy Section Start *********/

#qp h2{
    line-height: 1.5;
    font-size: 33px;
}
#qp h2 span{
    font-weight: 700;
    color: var(--pink2);
}
#qp p{
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
}
#qp img{
    border-radius: 20px;
}

/********* Inner Qualtiy Policy Section End *********/

/********* Inner Contact Section Start *********/

#con h2{
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 25px;
}
#con p{
    font-size: 22px;
    margin-bottom: 25px;
}
#con .sub-text{
    color: var(--pink2);
}
#con .con-wrap i{
    font-size: 28px;
    color: var(--pink2);
}
#con .con-wrap h5{
    font-size: 23px;
    margin-bottom: 7px;
    font-weight: 600;
}
#con .con-wrap h6{
    line-height: 1.5;
    font-size: 19px;
    margin-bottom: 10px;
    color: #686868;
    font-weight: 400;
}
.contact-container {
    padding: 40px;
    background-color: #feeaf3;
    border-radius: 10px;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
}     
.contact-header {
    text-align: center;
    margin-bottom: 30px;
}
.contact-header h4 {
    font-size: 30px;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact-header span {
    color: #7f8c8d;
}
.form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 8px;
}
.form-control {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    transition: all 0.3s;
}
.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}
.form-check {
    margin: 20px 0;
}
.form-check-input:checked {
    background-color: #3498db;
    border-color: #3498db;
}
.btn-submit {
    background-color: var(--pink2);
    border: none;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 6px;
    width: 100%;
    transition: background-color 0.3s;
}
.btn-submit:hover {
    color: white;
    background-color: var(--pink);
}
.form-group {
    margin-bottom: 20px;
}
.required::after {
    content: " *";
    color: #e74c3c;
}

/********* Inner Contact Section End *********/