*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;   
   }
   body{
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    font-family: "Assistant", sans-serif;
   }
   body::-webkit-scrollbar{
       display: none;
   }
 
   .mobile-header {
    display: none; /* Hide the mobile header by default */
   }
   .mobile-menu {
    display: none; /* Hide the mobile menu by default */
   }
  /* WhatsApp Icon */
.whatsapp-container {
    position: fixed;
    left: 10px;
    top: 180px;
    padding-top: 2.1px;
    padding-left: 0px;
    border-radius: 100%;
    z-index: 1000;
    background-color:rgb(39,211,103);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.whatsapp-icon {
    height: 40px;
    width: 44px; /* Adjust size */
    transition: transform 0.3s ease-in-out;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; */
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

/* Order Now Button */
.order-now-container {
    position: fixed;
    left: 5px;
    top: 220px;
    z-index: 1000;
    /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */
}

.order-now-icon {
    /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */
    width: 90px; /* Adjust size */
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.order-now-icon:hover {
    transform: scale(1.1);
}
   /* Transparent Navigation Bar */
.navbar {
    position: fixed;
    top: 50px;
    left: 0;
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content:center;
    padding: 0px;
    background: transparent;
    z-index: 10000;
    transition: background 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
.subnavbar{
    height: 100%;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    overflow: hidden;

}
/* Navbar when scrolling */
.navbar.scrolled {
    top: 0px;
    background: rgb(16,17,48);
    box-shadow: 0px 4px 10px rgba(255, 165, 0, 0.2);
}

/* Logo */
.subnavbar .logo img {
    height: 80px;
    width: 80px;
    object-fit: contain;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline-block;
}

/* .nav-links li a {
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    color: white;
    font-size: 16px;
    padding: 10px;
    transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links .active {
    color: orange;
    position: relative;
    border-bottom: 2px solid transparent;
    background-image: linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: bottom;
    
}
.nav-links li a::after,
.nav-links .active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}


.nav-links li a:hover::after,
.nav-links .active::after {
    transform: scaleX(1);
    transform-origin: left;
} */

.nav-links li a {
    position: relative; /* Ensures the pseudo-element is positioned relative to the link */
    text-decoration: none; /* Removes default underline */
    color: #fff; /* Set default text color */
    padding-bottom: 5px; /* Space for the underline */
    font-family: "Poppins", sans-serif;
    color: white;
    font-size: 16px;
}

.nav-links li a:hover,
.nav-links .active {
    color: orange;
}

/* Pseudo-element for the gradient bottom border */
.nav-links li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-in-out;
}

/* Show the bottom border on hover or if the link is active */
.nav-links li a:hover::after,
.nav-links .active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Order Button */
/* .order-btn {
    background: #ff2e87;
    color: white;
    font-family: "Poppins", sans-serif;
    padding: 10px 15px;
    border: none;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
}

.order-btn:hover {
    background: #e02875;
} */
/* Order Button */
/* Order Button */
/* Order Button */
.order-btn {
    position: relative;
    background: #ff2e87;
    color: white;
    font-family: "Poppins", sans-serif;
    padding: 10px 15px;
    border: none;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.4s ease-in-out;
}

/* Pseudo-element for background transition */
.order-btn::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: white;
    transition: width 0.4s ease-in-out;
    z-index: 0;
}

/* Ensuring text remains above */
.order-btn span {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: color 0.2s ease-in-out 0.2s; /* Delays text color transition slightly */
}

/* Hover Effect */
.order-btn:hover::before {
    left: 0;
    width: 100%; /* Expands the background from right to left */
}

.order-btn:hover span {
    color: #ff2e87; /* Changes text color after background transition starts */
}


.banner {
    width: 100%;
    overflow: hidden;
    background-color: rgb(76,139,245);
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 0;
    white-space: nowrap;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.banner-track {
    display: flex;
    width: 200%;
    animation: scrollBanner 15s linear infinite;
}

.banner-content {
    flex-shrink: 0;
    width: 100%;
    text-align: center;
}

.banner-icon {
    width: 35px;  /* Adjust as needed */
    height: 30px;
    vertical-align: middle;
}
@keyframes scrollBanner {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}




.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.active {
    opacity: 1;
}

.content {
    margin-top: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    animation: fadeIn 1s ease-in-out;
}

.content h2 {
    font-size: 60px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
    font-family: 'Ubuntu', sans-serif;
}

.content span{
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.content p {
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    margin: 0 10px;
}
.content i{
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    margin: 0 10px;
    color: #FAAC1D;
}
#btn {
    background: #FAAC1D;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
    margin-top: 25px;
    border-radius: 5px;
    margin-bottom: 40px;
}

#btn:hover {
    background:white;
    color: #FAAC1D;
}

#contact {
    margin-top: 5px;
    color: #ffffff;
    font-size: 20px;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6em;
    font-weight: 600;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.prev {
    height: 100px;
    width: 30px;
    left: -5px;
}

.next {
    right: -5px;
    height: 100px;
    width: 30px;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}


.aboutdivi{
    height: 800px;
    width: 100%;
    background-color:white;
    padding: 0px;
    background-image: url(../icons/icon-circle-1.png);
    background-position: -220px -120px;
    background-size:500px;
    background-repeat: no-repeat;
}
.subaboutdivi{
    padding-top: 150px;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.93);
    display: flex;
    align-items: center;
    justify-content: center;
}
.subabout1{
    height: 100%;
    width: 38%;
    background-color:transparent;
    padding: 10px;
    overflow: hidden;
}
.subabout1 p {
    letter-spacing: 2px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 20px;
    background: linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subabout1 h3{
    font-family:  "Josefin Sans", sans-serif;
    font-size: 28px;
    color: #777777;
    margin-top: 20px;
    font-weight: 400;
    font-weight: normal;
    letter-spacing: 1px;
}
.subabout1 h4{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #888888;
    text-align: justify;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 25px;
    margin-top: 20px;
}
.subabout1 h2{
    font-family: "Josefin Sans", sans-serif;
    font-size: 24px;
    color: #777777;
    margin-top: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}
.subabout1 h5{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color:#2e2e2ea5;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}
#go{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color:#2e2e2ea5;
    margin-top: 10px;
    margin-bottom: 40px;
    font-weight: 500;
}
.subabout1 i{
    font-size: 14px;
    color:#ff007a;
    margin-right: 15px;

}
.subabout1 a {
    position: relative;
    padding: 15px 20px;
    border-radius: 10px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    transition: color 0.4s ease-in-out;
}

/* Pseudo-element for background transition */
.subabout1 a::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background: white;
    transition: width 0.4s ease-in-out;
    z-index: 0;
}

/* Ensuring text remains above */
.subabout1 a span {
    position: relative;
    z-index: 1;
}

/* Hover Effect */
.subabout1 a:hover {
    background: white;
    color: #3498db;
    /* 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; */
}

.subabout1 a:hover::before {
    border-radius: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    /* box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; */
    left: 0;
    width: 100%;
}

.subabout2{
    position: relative;
    height: 100%;
    width: 40%;
    /* background-color: rgb(195, 10, 10); */
}

.subabout2 img{
    position: absolute;
    margin-top: 160px;
    margin-left: 150px;
}

@keyframes slightRotate {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(5deg);
    }
}

#dip {
    left: 30px;
    top: -40px;
    bottom: 300px;
    height: 450px;
    width: 550px;
    animation: slightRotate 3s ease-in-out infinite alternate;
}

.subbi{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    position:absolute;
    top: 170px;
    left: 310px;
    height: 50%;
    width: 53%;
    padding: 10px;
    border-radius: 100%;
    background-color: red;
    overflow: hidden;
    background-image: url(../img/21.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 12px solid white;
}
.justspace{
    position: relative;
    height: 250px;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: white;
}
.justspace img{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: contain;
    right:-800px; 
    animation: slowwRotate 30s linear infinite; /* Slow infinite rotation */  
}
@keyframes slowwRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.productdivision{
    overflow: hidden;
    height: 1100px;
    width: 100%;
    /* background-color: rebeccapurple; */
    padding: 20px;
    
}
.subproductdivision{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background-color: #FAAC1D; */
}
.head{
    height: 20%;
    width: 100%;
    /* background-color: #65004f; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.head span{
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.head h2{
    font-size: 48px;
    line-height: 1.8em;
    color: #1e1f36;
    font-weight: 700;
    font-family: "Josefin Sans", sans-serif;
}
.cardings{
    z-index: 1;
    height: 80%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}
.cardima{
    background-color: white;
    position: relative;
   
}
.cardima img{
    position: absolute;
}
/* Left-side image */
.img-left {
    height: 350px;
    width: 370px;
    right: 600px;  /* Adjust distance from left */
    top: 650px; /* Center vertically */
    transform: translateY(-50%);
    opacity: 30%;
}

/* Right-side image */
.img-right {
    right: 100px;  /* Adjust distance from right */
    top: 65px;  
    left: 695px;   /* Center vertically */
    transform: translateY(-50%);
    opacity: 70%;
}
.subcardima{
    height: 100%;
    width: 80%;
    /* background-1color: pink; */
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    place-items: center;
}
.procard{
    height: 360px;
    width: 270px;
    /* background-color: red; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    /* box-shadow: rgba(17, 12, 46, 0.232) 0px 48px 100px 0px; */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
    border-bottom: 5px solid #1c94d2;
}
.subprocard1{
    height: 12%;
    width: 100%;
    margin-right: 100px;
    background-color: #1c94d2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px 20px 20px 0px;
}
.subprocard1 a{
    text-align: center;
    margin-left:40px;
    font-size: 18px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
}
.subprocard2{
    height: 45%;
    width: 60%;
    border-radius: 100%;
    background-color: #3498db;
    overflow: hidden;
    border: 5px solid #3498db;
}
.subprocard2 img{
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition:0.5s ease;
}
.procard:hover{
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
.procard:hover img{
    transform: scale(1.09);
}
.subcardima2{
    height: 100%;
    width: 80%;
    /* background-1color: pink; */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.footerdivi{
    margin-top: 15px;
    height: 690px;
    width: 100%;
    background-image: url(../img/back.jpg);
}
.subfooterdivi{
    padding-top: 50px;
    height: 100%;
    width: 100%;
    /* background-color: #00C897; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.door1{
    height:55%;
    width: 78%;
    /* background-color: rebeccapurple; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topf{
    height: 15%;
    width: 100%;
    /* background-color: red; */
    padding-top: 10px;
}
.topf h2{
    font-size: 24px;
    font-family: "Josefin Sans", sans-serif;
    text-transform: capitalize;
    color: #ffffff;
}
.topf p{
    background-color:#F70068;
    height: 2px;
    width: 45px;
    margin-left: 1px;
}
.subtopf{
    margin-top: 20px;
    height: 70%;
    width: 100%;
    /* background-color: darkseagreen; */
}
.subtoppf{
    height: 60%;
    width: 100%;
    /* background-color: rgb(27, 170, 27); */
}
.subtoppf p{
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    text-align: justify;
    font-weight: 500;
    color: #AAAAAA;
    line-height: 25px;
}
.subsubtoppf{
    height: 30%;
    width: 100%;
    /* background-color: saddlebrown; */
    display: flex;
    align-items: center;
    justify-content: left;
}
.subsubtoppf i{
    font-size: 16px;
    padding: 13px;
    margin-right: 10px;
    color: #a9b1bf;;
    background-color: #373851;
    transition: all 0.3s ease-in-out;
}
.subsubtoppf i:hover{
    color: #ffffff;
    background-color: #575a89;
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0px 4px 10px rgba(87, 90, 137, 0.5);
}
.door2{
    height: 35%;
    width: 78%;
    /* background-color: #3498db; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.door2 p{
    font-size: 13px;
    color: white;
    font-family: "Poppins", sans-serif;
    text-align: justify;
    font-weight: 500;
    line-height: 22px;
}
.door3{
    height: 10%;
    width: 100%;
    background-color: rgb(41, 42, 70);
    display: flex;
    align-items: center;
    justify-content: center;
}
.door3 p{
    font-size: 16px;
    color: #ffffff;
    letter-spacing: 1.2px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}
.subdoor1{
    height: 100%;
    width:25%;
    /* background-color: #c80057; */
    display: flex;
    flex-direction: column;
}
.subdoor2{
    height: 100%;
    width: 20%;
    padding-left: 60px;
    /* background-color: #65004f; */
}
.easylinks{
    margin-top: 20px;
    height:60%;
    width: 100%;
    /* background-color: #00C897; */
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: space-around;
}
.easylinks a{
    text-decoration: none;
    font-size: 14px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    border-left: 1px solid #f70068;
    padding-left: 10px;
    text-transform: capitalize;
    font-weight: 500;
}
.easylinks a:hover{
    color: #f70068;
}
.subdoor3{
    height: 100%;
    width: 25%;
    /* background-color: #8A2BE2; */
}
.adress{
    margin-top: 20px;
    height: 80%;
    width: 100%;
    /* background-color: salmon; */

}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon {
    width: 24px;  /* Adjust size as needed */
    height: 24px;
    filter: invert(1); /* Converts black PNG to white */
}
.contact-item span{
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
    color:#FFFFFF;
}
.subdoor4{
    height: 100%;
    width:25%;
    /* background-color: #ff2e87; */
}
.mapi{
    margin-top: 20px;
    height: 80%;
    width: 100%;
    background-color: seashell;
}
.mapi iframe{
    height: 100%;
    width: 100%;

}
/* Hide mobile navbar and menu by default on larger screens */
@media (min-width: 768px) {
    .mobile-navbar, 
    .mobile-slide-menu {
        display: none !important;
    }
}


@media screen and (max-width:600px) {

    *{
        margin: 0;
        padding: 0;
        box-sizing: border-box;   
       }
       body{
        width: 100vw;
        height: 100vh;
        overflow-x: hidden;
        font-family: "Assistant", sans-serif;
       }
       body::-webkit-scrollbar{
           display: none;
       }
        /* Mobile Navbar */
.mobile-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(22, 24, 76);
    padding: 5px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 48px;
}

/* Logo */
.mobile-logo-box img {
    height: 60px;
}

/* Hamburger Icon */
.mobile-menu-trigger {
    font-size: 34px;
    color: #f70068;
    -webkit-text-stroke: 1px rgb(22, 24, 76);
    cursor: pointer;
}

/* Mobile Slide Menu */
.mobile-slide-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 100000;
    transition: left 0.4s ease-in-out;
}

/* Show when active */
.mobile-slide-menu.active {
    left: 0;
}

/* Menu Top Bar */
.menu-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Logo inside menu */
.menu-logo-img {
    height: 150px;
}

/* Close Button */
.menu-close-icon {
    text-align: right;
    padding: 1px;
    cursor: pointer;
    background-color: #F70068;
}

.menu-close-icon i {
    font-size: 24px;
    color: white;
    padding: 5px 8px;
}

/* Menu List */
.menu-list {
    list-style: none;
    padding-top: 30px;
    margin: 0;
    text-align: left;
}

.menu-list li {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(13, 13, 13, 0.2);
}

.menu-list a {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 600;
    display: block;
    transition: color 0.3s ease-in-out;
}

.menu-list a:hover {
    color: #ff4b5c;
}

/* Active Link */
.menu-list a.menu-active {
    color: #f70068;
    font-weight: bold;
    border-left: 4px solid #f70068;
    padding-left: 10px;
}

      /* WhatsApp Icon */
    .whatsapp-container {
        position: fixed;
        left: 10px;
        top: 180px;
        padding-top: 2.1px;
        padding-left: 0px;
        border-radius: 100%;
        z-index: 10000;
        background-color:rgb(39,211,103);
        box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    }
    
    .whatsapp-icon {
        height: 40px;
        width: 44px; /* Adjust size */
        transition: transform 0.3s ease-in-out;
        /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; */
    }
    
    
    .whatsapp-icon:hover {
        transform: scale(1.1);
    }
    
    /* Order Now Button */
    .order-now-container {
        position: fixed;
        left: 5px;
        top: 220px;
        z-index: 10000;
        /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */
    }
    
    .order-now-icon {
        /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */
        width: 90px; /* Adjust size */
        height: auto;
        transition: transform 0.3s ease-in-out;
    }
    
    .order-now-icon:hover {
        transform: scale(1.1);
    }
       /* Transparent Navigation Bar */
    .navbar {
        display: none;
        position: fixed;
        top: 50px;
        left: 0;
        height: 90px;
        width: 100%;
        /* display: flex; */
        align-items: center;
        justify-content:center;
        padding: 0px;
        background: transparent;
        z-index: 10000;
        transition: background 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    }
    .subnavbar{
        height: 100%;
        width: 80%;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        overflow: hidden;
    
    }
    /* Navbar when scrolling */
    .navbar.scrolled {
        top: 0px;
        background: rgb(16,17,48);
        box-shadow: 0px 4px 10px rgba(255, 165, 0, 0.2);
    }
    
    /* Logo */
    .subnavbar .logo img {
        height: 80px;
        width: 80px;
        object-fit: contain;
    }
    
    /* Navigation Links */
    .nav-links {
        list-style: none;
        display: flex;
        gap: 20px;
    }
    
    .nav-links li {
        display: inline-block;
    }
    
    /* .nav-links li a {
        text-decoration: none;
        font-family: "Poppins", sans-serif;
        color: white;
        font-size: 16px;
        padding: 10px;
        transition: color 0.3s ease;
    }
    
    .nav-links li a:hover,
    .nav-links .active {
        color: orange;
        position: relative;
        border-bottom: 2px solid transparent;
        background-image: linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
        background-clip: padding-box, border-box;
        background-origin: padding-box, border-box;
        background-size: 100% 2px;
        background-repeat: no-repeat;
        background-position: bottom;
        
    }
    .nav-links li a::after,
    .nav-links .active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 2px;
        background: linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease-in-out;
    }
    
    
    .nav-links li a:hover::after,
    .nav-links .active::after {
        transform: scaleX(1);
        transform-origin: left;
    } */
    
    .nav-links li a {
        position: relative; /* Ensures the pseudo-element is positioned relative to the link */
        text-decoration: none; /* Removes default underline */
        color: #fff; /* Set default text color */
        padding-bottom: 5px; /* Space for the underline */
        font-family: "Poppins", sans-serif;
        color: white;
        font-size: 16px;
    }
    
    .nav-links li a:hover,
    .nav-links .active {
        color: orange;
    }
    
    /* Pseudo-element for the gradient bottom border */
    .nav-links li a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease-in-out;
    }
    
    /* Show the bottom border on hover or if the link is active */
    .nav-links li a:hover::after,
    .nav-links .active::after {
        transform: scaleX(1);
        transform-origin: left;
    }
    
    /* Order Button */
    /* .order-btn {
        background: #ff2e87;
        color: white;
        font-family: "Poppins", sans-serif;
        padding: 10px 15px;
        border: none;
        font-size: 14px;
        border-radius: 8px;
        cursor: pointer;
    }
    
    .order-btn:hover {
        background: #e02875;
    } */
    /* Order Button */
    /* Order Button */
    /* Order Button */
    .order-btn {
        position: relative;
        background: #ff2e87;
        color: white;
        font-family: "Poppins", sans-serif;
        padding: 10px 15px;
        border: none;
        font-size: 14px;
        border-radius: 8px;
        cursor: pointer;
        overflow: hidden;
        transition: background 0.4s ease-in-out;
    }
    
    /* Pseudo-element for background transition */
    .order-btn::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0%;
        height: 100%;
        background: white;
        transition: width 0.4s ease-in-out;
        z-index: 0;
    }
    
    /* Ensuring text remains above */
    .order-btn span {
        position: relative;
        z-index: 1;
        display: inline-block;
        transition: color 0.2s ease-in-out 0.2s; /* Delays text color transition slightly */
    }
    
    /* Hover Effect */
    .order-btn:hover::before {
        left: 0;
        width: 100%; /* Expands the background from right to left */
    }
    
    .order-btn:hover span {
        color: #ff2e87; /* Changes text color after background transition starts */
    }
    
    
    .banner {
        display: none;
        width: 100%;
        overflow: hidden;
        background-color: rgb(76,139,245);
        color: white;
        font-weight: bold;
        font-size: 18px;
        padding: 10px 0;
        white-space: nowrap;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
    }
    
    .banner-track {
        display: flex;
        width: 200%;
        animation: scrollBanner 15s linear infinite;
    }
    
    .banner-content {
        flex-shrink: 0;
        width: 100%;
        text-align: center;
    }
    
    .banner-icon {
        width: 35px;  /* Adjust as needed */
        height: 30px;
        vertical-align: middle;
    }
    
    @keyframes scrollBanner {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }
    
    
    
    .slider {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 70vh;
        overflow: hidden;
    }
    
    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    
    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .active {
        opacity: 1;
    }
    
    .content {
        margin-top: 25px;
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        animation: fadeIn 1s ease-in-out;
    }
    
    .content h2 {
        font-size: 30px;
        line-height: 1.2em;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 30px;
        margin-top: 20px;
        font-family: 'Ubuntu', sans-serif;
    }
    
    .content span{
        font-size: 23px;
        font-family: "Poppins", sans-serif;
        color:white;
        font-weight: 500;
        margin-bottom: 25px;
    }
    .info-banner{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .info-banner span{
        font-size: 17px;
        line-height: 26px;
        color: #ffffff;   
        /* color: #ffffff; */
        font-weight: 400;
        font-family: "Poppins", sans-serif;
        margin: 0 10px;
    }
    .info-banner i{
        font-size: 17px;
        line-height: 26px;
        
        margin: 0 10px;
        color: #FAAC1D;
    }
    #btn {
        background: #FAAC1D;
        color: white;
        padding: 10px 20px;
        font-size: 16px;
        border: none;
        font-family: "Poppins", sans-serif;
        cursor: pointer;
        margin-top: 25px;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    
    #btn:hover {
        background:white;
        color: #FAAC1D;
    }
    
    #contact {
        padding: 20px;
        margin-top: 0px;
        color: #ffffff;
        font-size: 18px;
        font-family: 'Ubuntu', sans-serif;
        line-height: 1.6em;
        font-weight: 600;
    }
    
    .prev, .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        font-size: 24px;
        z-index: 10;
    }
    
    .prev {
        height: 100px;
        width: 30px;
        left: -5px;
    }
    
    .next {
        right: -5px;
        height: 100px;
        width: 30px;
    }
    
    .prev:hover, .next:hover {
        background: rgba(0, 0, 0, 0.8);
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translate(-50%, -60%);
        }
        to {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }
   
    .aboutdivi{
        overflow: hidden;
        height: auto;
        width: 100%;
        background-color:white;
        padding: 0px;
        background-image: url(../icons/icon-circle-1.png);
        background-position: -220px -120px;
        background-size:500px;
        background-repeat: no-repeat;
    }
    .subaboutdivi{
        padding-top: 50px;
        height: 100%;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.93);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .subabout1{
        height: 100%;
        width: 100%;
        padding-bottom: 100px;
        background-color:transparent;
        padding: 20px;
        overflow: hidden;
    }
    .subabout1 p {
        letter-spacing: 2px;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        margin-top: 20px;
        background: linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .subabout1 h3{
        font-family:  "Josefin Sans", sans-serif;
        font-size: 28px;
        color: #777777;
        margin-top: 20px;
        font-weight: 400;
        font-weight: normal;
        letter-spacing: 1px;
    }
    .subabout1 h4{
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        color: #888888;
        text-align: justify;
        text-transform: capitalize;
        font-weight: 400;
        line-height: 25px;
        margin-top: 20px;
    }
    .subabout1 h2{
        font-family: "Josefin Sans", sans-serif;
        font-size: 24px;
        color: #777777;
        margin-top: 20px;
        font-weight: 400;
        margin-bottom: 20px;
    }
    .subabout1 h5{
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        color:#2e2e2ea5;
        margin-top: 10px;
        margin-bottom: 10px;
        font-weight: 500;
    }
    #go{
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        color:#2e2e2ea5;
        margin-top: 10px;
        margin-bottom: 40px;
        font-weight: 500;
    }
    .subabout1 i{
        font-size: 14px;
        color:#ff007a;
        margin-right: 15px;
    
    }
    /* .subabout1 a{
        padding: 15px 20px;
        border-radius: 10px;
        background-color: #3498db;
        color: white;
        text-decoration: none;
        font-family: "Poppins", sans-serif;
    
    } */
    .subabout1 a {
        position: relative;
        padding: 15px 20px;
        border-radius: 10px;
        background-color: #3498db;
        color: white;
        text-decoration: none;
        font-family: "Poppins", sans-serif;
        overflow: hidden;
        transition: color 0.4s ease-in-out;
    }
    
    /* Pseudo-element for background transition */
    .subabout1 a::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 0%;
        height: 100%;
        background: white;
        transition: width 0.4s ease-in-out;
        z-index: 0;
    }
    
    /* Ensuring text remains above */
    .subabout1 a span {
        position: relative;
        z-index: 1;
    }
    
    /* Hover Effect */
    .subabout1 a:hover {
        background: white;
        color: #3498db;
        /* 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; */
    }
    
    .subabout1 a:hover::before {
        border-radius: 10px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
        /* box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px; */
        left: 0;
        width: 100%;
    }
    
    .subabout2{
        position: relative;
        height:600px;
        width: 100%;
        overflow: hidden;
        /* background-color: rgb(195, 10, 10); */
    }
    
    .subabout2 img{
        position: absolute;
        /* bottom: 570px; */
        bottom: 450px;
        left: -200px;
    }
    
    @keyframes slightRotate {
        0% {
            transform: rotate(0deg);
        }
        50% {
            transform: rotate(-5deg);
        }
        100% {
            transform: rotate(5deg);
        }
    }
    
    #dip {
        top: 10px;
        left: -160px;
        height: 350px;
        width: 430px;
        animation: slightRotate 3s ease-in-out infinite alternate;
    }
    
    .subbi{
        box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
        position:absolute;
        top: 210px;
        left: 80px;
        height: 42%;
        width: 60%;
        padding: 10px;
        border-radius: 100%;
        background-color: red;
        overflow: hidden;
        background-image: url(../img/21.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border: 12px solid white;
    }
    .justspace{
        position: relative;
        height: 200px;
        overflow: hidden;
        width: 100%;
        display: flex;
        align-items: center;
        background-color: white;
    }
    .justspace img{
        position: absolute;
        height: 100%;
        width: 100%;
        object-fit: contain;
        right:-200px; 
        animation: slowwRotate 30s linear infinite; /* Slow infinite rotation */  
    }
    @keyframes slowwRotate {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }
    
    .productdivision{
        overflow: hidden;
        height: auto;
        width: 100%;
        /* background-color: rebeccapurple; */
        padding: 20px;
        
    }
    .subproductdivision{
        height: 100%;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        /* background-color: #FAAC1D; */
    }
    .head{
        height: 100%;
        width: 100%;
        /* background-color: #65004f; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .head span{
        font-size: 16px;
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 5px;
        background: linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .head h2{
        margin-top: 10px;
        font-size: 28px;
        line-height: 1.8em;
        color: #1e1f36;
        text-align: center;
        font-weight: 700;
        font-family: "Josefin Sans", sans-serif;
    }
   
    
    
    .gofac{
        overflow: hidden;
        height:auto;
        width: 100%;
        background-image: url(../img/back.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    .subgofac{
        height: 100%;
        width: 100%;
        /* display: flex; */
        display: grid;
        grid-template-columns: repeat(2,2fr);
        /* flex-direction: column; */
        align-items: center;
        gap: 10px;
        justify-content:center;
        place-items: center;
    }
    .photocar{
        height:100%;
        width: 100%;
        overflow: hidden;
    }
    .photocar img{
        height: 100%;
        width: 100%;
        object-fit: cover;
        opacity: 70%;
        transition: 1s;
    }
    .photocar:hover img{
        opacity: 95%;
    
    }
    .footerdivi{
        padding: 20px;
        overflow: hidden;
        margin-top: 15px;
        height:auto;
        width: 100%;
        background-image: url(../img/back.jpg);
    }
    .subfooterdivi{
        padding-top: 20px;
        height: 100%;
        width: 100%;
        /* background-color: #00C897; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }
    .door1{
        height:100%;
        width: 100%;
        /* background-color: rebeccapurple; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .topf{
        height: 100%;
        width: 100%;
        /* background-color: red; */
        padding-top: 10px;
    }
    .topf h2{
        font-size: 24px;
        font-family: "Josefin Sans", sans-serif;
        text-transform: capitalize;
        color: #ffffff;
    }
    .topf p{
        background-color:#F70068;
        height: 2px;
        width: 45px;
        margin-left: 1px;
    }
    .subtopf{
        
        height: 100%;
        width: 100%;
        /* background-color: darkseagreen; */
    }
    .subtoppf{
        height: 100%;
        width: 100%;
        margin-top: 20px;
        /* background-color: rgb(27, 170, 27); */
    }
    .subtoppf p{
        font-size: 14px;
        font-family: "Poppins", sans-serif;
        text-align: justify;
        font-weight: 500;
        color: #AAAAAA;
        line-height: 25px;
    }
    .subsubtoppf{
        margin-top: 20px;
        height: 100%;
        width: 100%;
        /* background-color: saddlebrown; */
        display: flex;
        align-items: center;
        justify-content: left;
    }
    .subsubtoppf i{
        font-size: 16px;
        padding: 13px;
        margin-right: 10px;
        color: #a9b1bf;;
        background-color: #373851;
        transition: all 0.3s ease-in-out;
    }
    .subsubtoppf i:hover{
        color: #ffffff;
        background-color: #575a89;
        transform: scale(1.2) rotate(10deg);
        box-shadow: 0px 4px 10px rgba(87, 90, 137, 0.5);
    }
    .door2{
        height: 100%;
        width:100%;
        /* background-color: #3498db; */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .door2 p{
        margin-top: 30px;
        margin-bottom: 30px;
        font-size: 13px;
        color: white;
        font-family: "Poppins", sans-serif;
        text-align: justify;
        font-weight: 500;
        line-height: 22px;
    }
    .door3{
        height: 60px;
        width: 100%;
        padding-right: 5px;
        padding-left: 5px;
        background-color: rgb(41,42,70);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .door3 p{
        font-size: 14px;
        text-align: center;
        color:white;
        letter-spacing: 1.2px;
        font-weight: 400;
        font-family: "Poppins", sans-serif;
    }
    .subdoor1{
        height: 100%;
        width:100%;
        /* background-color: #c80057; */
        display: flex;
        flex-direction: column;
    }
    .subdoor2{
        margin-top: 30px;
        margin-right: 120px;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* background-color: #65004f; */
    }
    .easylinks{
        margin-top: 20px;
        height:100%;
        width: 100%;
        /* background-color: #00C897; */
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .easylinks a{
        text-decoration: none;
        margin-top: 20px;
        font-size: 14px;
        color: #ffffff;
        font-family: "Poppins", sans-serif;
        border-left: 1px solid #f70068;
        padding-left: 10px;
        text-transform: capitalize;
        font-weight: 500;
    }
    .easylinks a:hover{
        color: #f70068;
    }
    .subdoor3{
        margin-top: 30px;
        height: 100%;
        width: 100%;
        /* background-color: #8A2BE2; */
    }
    .adress{
        margin-top: 20px;
        height: 100%;
        width: 100%;
        /* background-color: salmon; */
    
    }
    .contact-info {
        margin-top: 30px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 15px;
        color: #ffffff;
        font-family: "Poppins", sans-serif;
        font-size: 16px;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .icon {
        width: 24px;  /* Adjust size as needed */
        height: 24px;
        filter: invert(1); /* Converts black PNG to white */
    }
    .contact-item span{
        font-size: 14px;
        font-family: "Poppins", sans-serif;
        letter-spacing: 0.5px;
        color:#FFFFFF;
    }
    .subdoor4{
        margin-top: 30px;
        height: 100%;
        width:100%;
        /* background-color: #ff2e87; */
    }
    .mapi{
        margin-top: 30px;
        height: 400px;
        width: 100%;
        background-color: seashell;
    }
    .mapi iframe{
        height: 100%;
        width: 100%;
    
    }















}