 /* Reset default margins and paddings */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Body styling */
        body {
            font-family: Arial, sans-serif;
            /*overflow: hidden; /* Hide scrollbar during the loading phase */
            height: 200vh; /* Just to create scrolling */
        }

hr {
    width:320px;
    border: 1px solid #bfbfbf;
    margin:20px;
}


.wrapper {
    width:100%;
        max-width:1200px;
    margin:0 auto;
}

.info {
    width:100%;
    max-width:1200px;
    margin:0 auto;
    text-align: center;
    overflow: auto;
    padding-top:20px;
    padding-bottom:20px;
}

.info img {
    float:left;
    margin:20px;
    width: 100%;
    max-width: 400px;
}

.info h1 {
    color:#000;
    font-size: 2.5em;
}

.info h1 span{
    color:#ec403c;
    margin-bottom:5px;
}

.info p {
    color:#646464;
    font-size: 1.2em;
    margin-bottom:10px;
    margin-top:20px;
    padding: 0 20px;
}

.info a {
    text-decoration: none;
    background-color: #ec403c;
    color:#fff;
    font-size: 1.5em;
    padding:10px 20px;
    border-radius: 30px;
}

.info a:hover {
    background-color: #c23431;
}


.play img {
    margin-left:180px;
}




/* Media query for smaller screen sizes */
        @media screen and (max-width: 1000px) {
          .info img {
    float:none;
}  
.mobtext {
    display:block;
    margin:0 auto;
    width:90%;
}
            
            .play img {
    margin-left:0px;
}
}



/* Media query for smaller screen sizes */
        @media screen and (max-width: 500px) {
          .info img {
    width:60%;
}  

.mobtext {
    display:block;
    margin:0 auto;
    width:90%;
}
}



.grey {
        width:100%;
    margin:0 auto;
    background-color: #f4f4f4;
}

.slide-background {
    margin:0 auto;
    background-image: url('../img/slider-background.png');
  background-size: cover; /* Ensures the image covers the entire div */
  background-position: center center; /* Keeps the image centered */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  width: 100%; /* Ensures the div takes up full width */
    max-width:1400px;
 /* height: 100vh; /* Ensures the div takes up the full viewport height */
    text-align: left;
}

.logomid img {
    margin-top:60px;
    margin-bottom:10px;
    width: 300px;
}

.slide-background h1 {
    color:#000;
    font-size: 2.5em;
    margin-top:20px;
}

.slide-background h1 span{
    color:#ec403c;
    margin-bottom:5px;
}

.slide-background p {
    color:#646464;
    font-size: 1.2em;
    margin-bottom:10px;
    margin-top:20px;
    padding: 0 0;
}

.twelve {
    width: 80%;
    max-width: 1200px;
    margin:0 auto;
    padding-top:10px;
}









        /* Navbar styling */
        .navbar {
            width: 100%;
            background-color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin-bottom:20px;
        }

        /* Logo styling */
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #333;
        }

        /* Navbar links container */
        .navbar-links {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            flex-grow: 1;
            justify-content: flex-end; /* Align links to the right */
        }

        .navbar-links li {
            margin-left: 20px;
        }

        .navbar-links a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            padding: 8px;
        }

        /* Dropdown menu */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 160px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 6;
            right: 0; /* Default dropdown position */
            width: 100%;
        }

        .dropdown.show .dropdown-content {
            display: block;
        }

        .dropdown-content a {
            padding: 10px;
            color: #333;
            text-decoration: none;
            display: block;
        }

        /* Burger Menu (hamburger icon) */
        .burger-menu {
            display: none;
            flex-direction: column;
            gap: 5px;
        }

        .burger-menu div {
            width: 30px;
            height: 3px;
            background-color: #333;
        }


        /* Media query for smaller screen sizes */
        @media screen and (max-width: 768px) {
            
            .navbar {
                margin-bottom:0;
            }
            .navbar-links {
                display: none;
                width: 100%;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                background-color: white;
                box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
                padding: 20px;
                margin: 0; /* Remove margin for better control */
                z-index: 4;
            }

            .navbar-links li {
                margin-left: 0;
                margin-bottom: 10px;
                text-align: center;
            }

            .burger-menu {
                display: flex;
            }

            .navbar-links.active {
                display: flex;
            }

            /* Ensure dropdown is visible under "More" on smaller screens */
            .dropdown-content {
                left: 50%;
                transform: translateX(-50%); /* Center the dropdown */
                width: 100%;
            }

            .dropdown-content a {
                padding: 10px;
                font-size: 16px;
            }
        }










/*Video header section*/
/* The loading screen */
        #loadingScreen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background-color: rgba(0, 0, 0, 0.8);*/
            background-color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        /* Spinning loader image */
        #loadingImage {
            width: 200px;
            animation: spin 1s linear infinite;
        }

        /* Keyframe for spinning animation */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }





        header {
            position: relative;
            width: 100%;
            height: auto;
            overflow: hidden;
            opacity: 0; /* Hide everything initially */
            transition: opacity 2s ease-in-out; /* Fade-in effect */
        }


/* Container for video */
.video-container {
    width: 100%;  /* Make the container 100% of the screen width */
    height: auto; /* Height adjusts automatically based on the aspect ratio of the video */
    overflow: hidden;
}

/* The video should fill the width and adjust height according to its aspect ratio */
video {
    width: 100%;   /* Video takes up 100% of the container's width */
    height: auto;  /* Height adjusts automatically to maintain the aspect ratio */
}

        /* Responsive video container to maintain aspect ratio 
        .video-background {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            background-color: black;
            overflow: hidden;
        }

        .video-background iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            pointer-events: none; 
        }*/

        /* Semi-transparent overlay on top of the video */
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1); /* Transparent overlay */
            z-index: 1;
        }

        header .content {
    position: absolute;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 50px 20px;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    top: 50%;
    left: 50%; /* Move the element's left edge to the center of the parent */
    transform: translate(-50%, -50%); /* Shift it back by 50% of its width and height */
    width: 80%;
}


header .content a {
    text-decoration: none;
    background-color: #ec403c;
    color:#fff;
    font-size: 1em;
    padding:10px 20px;
    border-radius: 30px;
    text-shadow: none;
}

header .content a:hover {
    background-color: #c23431;
}


        /* Prevent showing popup information when hovering */
        .video-background iframe:hover {
            pointer-events: none; /* Disable interaction with the video when hovered */
        }


/* Media query for smaller screen sizes */
        @media screen and (max-width: 768px) {
           header .content {
    position: absolute;
    padding: 50px 20px;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    top: 50%;
    left: 50%; /* Move the element's left edge to the center of the parent */
    transform: translate(-50%, -50%); /* Shift it back by 50% of its width and height */
    width: 80%;
} 
}


/* Media query for smaller phone sizes */
        @media screen and (max-width: 500px) {
           header .content {
    position: absolute;
    padding: 30px 10px;
    font-size: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    top: 50%;
    left: 50%; /* Move the element's left edge to the center of the parent */
    transform: translate(-50%, -50%); /* Shift it back by 50% of its width and height */
    width: 85%;
} 
}













/*rolling seed across page*/
/* Simple circle to visualize movement */
    .rolling-circle {
      position: absolute;
      top: 70px;
      left: -100px; /* Initially off-screen */
      width: 100px;
      height: 100px;
        z-index: 5;
      /*background-color: red; /* Simple red circle */
      animation: rollAndBounce 3s ease-in-out forwards; /* Animation for roll and bounce */
        animation-delay: 3s; /*delay  for loading */
    }

    /* Rolling circle animation */
    @keyframes rollAndBounce {
      0% {
        transform: translateX(-100%) rotate(0deg); /* Start off-screen to the left */
      }
      70% {
        transform: translateX(100vw) rotate(720deg); /* Move across the screen with 2 full rotations */
      }
      100% {
        transform: translateX(calc(100vw - 100px)) rotate(550deg); /* Stop 100px from the right */
      }
    }

/* Media query for smaller screen sizes */
        @media screen and (max-width: 768px) {
        .rolling-circle {
            left: -60px; /* Initially off-screen */
            width: 60px;
            height:60px;
            }
            
          
}













/*2 side by side boxes*/


.twocontainer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap; /* Allow boxes to wrap when screen is too small */
    margin-top:20px;
}


.twocontainer h1 {
    color:#000;
    font-size: 2.5em;
}

.twocontainer h1 span{
    color:#ec403c;
    margin-bottom:5px;
}

.twocontainer p {
    color:#646464;
    font-size: 1.2em;
    margin-bottom:10px;
    margin-top:20px;
    padding: 0 20px;
}

.twocontainer [type=number] {
    font-size: 1.2em;
    padding:2px;
    margin-top:10px;
    width: 50px;
    border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.twocontainer [type=submit] {
    background-color: #ec403c;
    color:#fff;
    font-size: 1em;
    padding:10px 20px;
    border: none;
    border-radius: 30px;
    text-shadow: none;
}

.twocontainer [type=submit]:hover {
    background-color: #c23431;
}

#require p {
    font-size: 0.8em;
    margin:5px;
}

.box {
    width: 50%; /* Each box takes up 50% width of the container */
   /* background-color: #4CAF50;*/
    display: flex;
    flex-direction: column; /* Stack content vertically inside the box */
    justify-content: flex-start; /* Align content to the top */
    align-items: center; /* Center content horizontally */
    text-align: center; /* Center text inside the box */
    padding: 0; /* Space inside the box */
}

.box-left {
    /*background-color: #fff;*/
    padding:30px;
    position: relative; /*added to position cats in box*/
}
/*
.box-right {
    background-color: #FFF;
}*/

/* Style the images inside the boxes 
.box img {
   /* width: 10%; /* Limit image width */
  /*  object-fit: contain; /* Maintain the aspect ratio of the image */
   /* margin-top: 10px; /* Add space between the image and the top of the box */
/*}*/



/* Match quantity and promo input styles */
label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
#quantity, 
#promo {
    width: 100%;
    max-width: 200px;
    padding: 8px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
}





/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .box {
        width: 100%; /* Full width for each box on small screens */
    }
}







.fade-up-element {
  opacity: 0; /* Start invisible */
  transform: translateY(100px); /* Start below */
  transition: opacity 1s ease, transform 1s ease; /* Add transition */
}

.fade-up-element.visible {
  opacity: 1; /* Become visible */
  transform: translateY(0); /* Move to original position */
}


/* Responsive styles for smaller screens */
@media (max-width: 768px) {
    .box {
        width: 100%; /* Full width for each box on small screens */
    }
}





   
/* Rotate and Grow effect with a spring-like animation */
.rotate-grow-element {
position: absolute;
    bottom:50px;
  width: 142px;
  height: 163px;
  /*background-color: #3498db;*/
    rotate: 180deg;
  opacity: 0; /* Start invisible */
  transform: translateY(100px) scale(0.5) rotate(45deg); /* Start below, small, and rotated */
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.2, 1.3, 0.3, 1); /* Faster spring effect with a custom easing */
  margin: 20px auto;
}

.rotate-grow-element.visible {
  opacity: 1; /* Become visible */
  transform: translateY(0) scale(1) rotate(180deg); /* Rotate past 180deg then back to 0deg */
}
    










/* Basic styling for the slider */
        .slider-container {
            position: relative;
            width: 80%;
            max-width: 1200px;
            margin: auto;
            overflow: hidden;
        }
        
        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            min-width: 100%;
            box-sizing: border-box;
        }
        
        .slide img {
            width: 100%;
            display: block;
        }
        
        /* Thumbnails below the slider */
        .thumbnails {
            display: flex;
            justify-content: center;
            margin-top: 10px;
            padding-bottom:30px;
        }
        
        .thumbnail {
            width: 50px;
            height: 30px;
            margin: 0 5px;
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .thumbnail:hover {
            opacity: 1;
        }

        .active-thumbnail {
            border: 2px solid #333;
            opacity: 1;
        }
        
        /* Navigation arrows */
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            font-size: 30px;
            padding: 10px;
            cursor: pointer;
            z-index: 1;
        }

        .arrow-left {
            left: 10px;
        }

        .arrow-right {
            right: 10px;
        }
        



        /* Responsive styles for smaller screens */
@media (max-width: 500px) {
    /* Thumbnails below the slider */
        .thumbnails {
            display: none;
        }
}
        
       

.rolling-logo img {
    width: 250px;
}



footer {
    background-color: #f4f4f4;
    padding:20px;
    text-align: center;
}

footer img {
    margin:5px;
}

footer p {
color:#646464;
    font-size: 1em;
    margin-bottom:5px;
    margin-top:10px;
    padding: 0 20px;
    }

footer a {
    text-decoration: none;
    color:#646464;
}

footer a:hover {
    color:#c23431;
}
 