/* poppins */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", serif;
}
:root{
    --color-white:#fff;
    --color-black:#000;
    --color-blue:#2F2A7E;
}

/* header */
:root {
    --color-white: #fff; /* Assuming this is defined somewhere */
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    position: relative;
}

header .logo {
    height: 120px;
}

header ul {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

header ul li {
    position: relative;
}

header ul li:not(:last-child)::after {
    content: '/';
    position: absolute;
    right: -18px;
    font-size: 12px;
    top: 3px;
    color: var(--color-white);
}

header ul li a {
    text-decoration: none;
    color: var(--color-white);
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
}

header .small-logo {
    margin-left: 15px;
    width: 50px;
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    font-size: 48px;
    color: var(--color-white);
    cursor: pointer;
    z-index: 3;
}

/* Mobile Sidebar Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: -240px; /* Hide initially */
    height: 100%;
    background: var(--color-blue);
    transition: left 0.3s ease;
    padding-top: 80px;
    z-index: 1111;
}

/* Sidebar Links */
.nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
    list-style: none;
}

.nav-menu a {
    color: var(--color-white);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 14px;
}

/* Active Sidebar */
.nav-menu.active {
    left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        
    }

    .nav-menu {
        display: block;
        background-color: var(--color-blue);
        width: 240px;
    }

    header ul {
        display: none;
    }
    .small-logo{
        display: none;
    }
    .nav-menu ul{
        padding-left: 0;
    }
    header ul li::after{
        display: none;
    }
}

/* Desktop View */
@media (min-width: 769px) {
    .nav-menu {
        position: static;
        background: transparent;
        height: auto;
        display: block;
        padding: 0;
        left: 0;
    }

    .nav-menu ul {
        flex-direction: row;
        gap: 30px;
    }

    .menu-toggle {
        display: none;
    }
}
/* slider */
.slider{
    height: 100vh;
    margin-top: -120px;
    z-index: -1;
}
.slider-item{
    width: 100%;
    height: 100vh;
}
.slider-item img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.hero-carousel-text{
    font-size: 80px;
    font-weight: 400;
    color: var(--color-white);
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
}
.hero-carousel-text-inner{
    font-weight: 600;
}

.owl-dots{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,-50%);
}
.owl-dot span{
    width: 10px;
    height: 10px;
    background-color: #808080a3;
    display: inline-block;
    border-radius: 20px;
    margin-right: 4px;
}
.owl-dot.active span{
    background-color: var(--color-white);
}
/* about section */
.about-section{
    padding: 100px 0;
}

.about-img{
    position: relative;
}
.about-img::before{
    content: '';
    width: 90%;
    height: 90%;
    background-color: var(--color-blue);
    position: absolute;
    left: -5%;
    top: 20%;
    z-index: -1;
    animation: upDown 2s ease-in-out infinite;

}
.team-img::before{
    background-color: #E3EDA6;
}
.production-img::before{
    background-color: #f1c3c6;
}
.about-head{
    font-size: 48px;
    font-weight: 700;
    color: var(--color-blue);
}
/* product  section */
.product-section h2{
    font-size: 48px;
    font-weight: 700;
    color: var(--color-blue);
    text-align: center;
}
.product-section h2 span{
    font-weight: 400;
}
.product-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    margin-top: 40px;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-small {
    background: #D0D2D3;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-medium {
    background: #D0D2D3;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 170px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-main {
    background: #D6DE23;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    width: 360px;
}

.product-main img {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

.product-info {
    margin-top: 15px;
    text-align: center;
}

.product-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 5px;
    transform: rotate(0) !important;
}

.product-name {
    font-size: 16px;
    color: #666;
}

img {
    max-width: 100%;
    height: auto;
}

.column-group {
    display: flex;
    gap: 20px;
}

@media (max-width:999px) {
    .product-container {
        flex-direction: column;
    }
    
    .column-group {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* cta-one */
.cta-one{
    margin: 100px 0;
    height: 420px;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.cta-one img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-one-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 74px;
    font-weight: 700;
    color: var(--color-white);
}
.fw-400{
    font-weight: 400;
}
/* story section */

.story-area{
    background-color: #EEE9BC;
    padding: 80px 50px;
    margin-top: -40px;
    z-index: 11;
    position: relative;
}
.w-75{
    width: 75%;
}
.story-text{
    font-size: 18px;
    color: var(--color-black);
    text-align: center;
}
.story-text-head{
    font-size: 20px;
    color: var(--color-black);
    font-weight: 600;
    text-align: center;
}

/* team-product-section */
.team-product-section{
    padding: 100px 0;
}

.heading-1{
    font-size: 50px;
    font-weight: 700;
    color: var(--color-black);
}
.text-1{
    font-size: 18px;
    color: var(--color-black);
}
.btn-1{
    border-style: none;
    background-color: #e3eda6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 20px;
    transition: .3s all ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.btn-1:hover{
    transform: scale(1.2);
}
.btn-2{
    background-color: #f1c3c6;
}
.spacing-100{
    height: 100px;
}

/* popsicle-section */
.popsicle-section{
    padding: 50px 0;
}
.popsicle-box{
    padding: 30px 80px 40px;
    background-color: #A4F1ED;
    border-radius: 30px;
}
.popsicle-img{
    position: relative;
}
.popsicle-img img{
    width: 350px;
    position: absolute;
    top:-100px;
    animation: upDown 2s ease-in-out infinite;

}
.popsicle-box-sm-text{
    font-size: 18px;
    color: var(--color-black);
}
.popsicle-box-md-text{
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
}
.popsicle-box-lg-text{
    font-size: 28px;
    font-weight: 700;
    color: var(--color-black);
}
/* kids carousel */
.kids-carousel .kids-carousel-item img{
    width: 140px;
    border-radius: 15px;
}
.kids-carousel .owl-dots{
    bottom: -35px;
}
.kids-carousel .owl-dot.active span {
    width: 10px;
    height: 10px;
    background-color: #000000;
}
.kids-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    background-color: #000000;
}

/* follow button */
.follow-btn {
    text-decoration: none;
    background: linear-gradient(90deg, #ff7e5f, #fd3a69, #8a3ab9);
    background-size: 200% 100%;
    background-position: center;
    border: none;
    color: white;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: background-position 0.4s ease-in-out;
    white-space: nowrap;
  }
  
  /* Hover Effect */
.follow-btn:hover {
    background-position: right;
}
.follow-button-div p{
    font-size: 34px;
    color: var(--color-blue);
    font-weight: 700;
    margin-bottom: 0;
  }
.follow-button-div span{
    font-weight: 400;
}
  
/* footer */
footer{
    margin-top: 100px;
    background-color: #000085;
    padding: 60px 0;
}
.footer-desc{
    font-size: 14px;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: 0;
}
.footer-certificate{
    width: 70px;
    margin-right: 10px;
}
.h-line{
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-white);
    margin: 20px 0;
}
.footer-image-div{
    position: relative;
    height: 100%;
    width: 100%;
}
.footer-img{
    position: absolute;
    bottom: -60px;
}





/* sticky button */
.sticky-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.contact-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}


/* media queries */


@media (max-width:999px){
    .about-img::before{
        top: -10%;
        left: -3%;
    }
    .about-img{
        margin-bottom: 20px;
    }
    .cta-one-text{
        white-space: nowrap;
    }
    .footer-image-div{
        display: none;
    }
    .popsicle-box{
        padding-top: 100px;
    }
    .popsicle-img img {
        width: 280px;
        position: absolute;
        top: -140px;
    }
    footer{
        margin-top: 50px;
    }
    .hero-carousel-text{
        font-size: 60px;
    }
}

@media (max-width:767px){
    .about-head{
        font-size: 36px;
    }
    .cta-one-text{
        font-size: 44px;
    }
    .heading-1{
        font-size: 44px;
    }
    .about-section{
        padding: 80px 10px;
    }
    .product-section h2 {
        font-size: 44px;
    }
    .cta-one{
        height: 340px;
    }
    .team-product-section{
        padding: 100px 10px 20px;
    }
    .popsicle-img img {
        width: 250px;
        position: absolute;
        top: -115px;
    }
    .popsicle-box{
        padding: 100px 20px 30px;
    }
    .footer-logo{
        width: 100px;
    }
    footer{
        padding: 40px 10px 15px;
    }
    .follow-button-div p{
        font-size: 20px;
    }
    .hero-carousel-text{
        font-size: 44px;
    }
}

/* animation */
@keyframes upDown {
    0%, 100% {
        transform: translateY(0); /* Original Position */
    }
    50% {
        transform: translateY(-5px); /* Moves Up */
    }
}


/* loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white); /* Fallback background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Keep it above all content */
}

#loader video {
    width: 500px;
    height: auto;
    object-fit: cover;
}


.force-redraw {
    will-change: background;
}



/* employee page */
.employee-banner{
    background-image: url("../images/employee/employe\ \(6\).jpg");
    height: 70vh;
    width: 100%;
    background-size: cover;
    background-position: center top;
    position: relative;
    overflow:hidden;
    
}
.career-banner{
        background-image: url("../images/employee/employe\ \(14\).jpg");
}
.employee-banner::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.521);
}
.employee-banner-head{
    color: var(--color-white);
    font-size: 64px;
    letter-spacing: 1px;
    font-weight: 700;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

@media (max-width:999px){
    .employee-banner-head{
        font-size: 34px;
    }
    .employee-banner{
        height: 40vh;
    }
}

/* gallery */
.gallery {
    padding: 80px 10px;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  .gallery h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    justify-items: center;
  }
  
  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
  }
  /* Make sure lightbox UI is not hidden */
.lb-close {
    display: block !important;
    opacity: 1 !important;
    right: 10px;
    top: 10px;
    position: absolute;
    font-size: 2rem;
    z-index: 1050;
  }
  

  /* career page */
  
.career-container {
  max-width: 600px;
  margin: 40px auto 80px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
}

h1 {
  text-align: center;
  color: #000085; /* ice cream red/orange */
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2.5rem;
}

form .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #555;
}

.required {
  color: rgb(22, 3, 104);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea,
input[type="file"] {
  font-size: 1rem;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1.8px solid #ccc;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus,
input[type="file"]:focus {
  outline: none;
  border-color: #000085;
  box-shadow: 0 0 6px #0e0c9166;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button[type="submit"] {
  width: 100%;
  background-color: #000085;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #040449;
}

/* Responsive */
@media (max-width: 480px) {
  .career-container {
    padding: 30px 20px;
  }
  h1 {
    font-size: 2rem;
  }
}
/* Thank You Box Styling */
.thank-you-box {
  max-width: 500px;
  margin: 80px auto;
  padding: 30px;
  background: #e6ffe6;           /* Light green background */
  border: 2px solid #4CAF50;    /* Green border */
  border-radius: 8px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.thank-you-box h2 {
  color: #4CAF50;               /* Green text for the header */
  font-size: 28px;
}

.thank-you-box p {
  margin: 15px 0;
  font-size: 16px;
}

.thank-you-box a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #4CAF50;    /* Green button */
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.thank-you-box a:hover {
  background-color: #45a049;    /* Darker green on hover */
}
