@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* General styles */



body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

a {
    text-decoration: none;
    color: #fff;
}

h1, h2 {
    margin: 0;
}

/* Navbar styles */
.navbar {
    display: flex;                 /* Ensures flexbox layout for alignment */
    justify-content: space-between; /* Aligns content with space between items */
    align-items: center;           /* Vertically centers items within the navbar */
    padding: 1rem;                 /* Equal padding on all sides */
    height: 60px;                  /* Slightly larger for better usability and mobile responsiveness */
    top: 0;                        /* Ensures the navbar starts at the top */
    width: 100%;                   /* Ensures the navbar spans the full width */
    z-index: 1000;   
    position: fixed;  
    margin-top: 20px;            /* Places the navbar above other elements */
    
}



.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;                   /* Keeps the text color white */
    padding: 0.5rem;              /* Adds some space around the text */
    border-radius: 4px;           /* Optional: Rounds the corners slightly */
}
.navbar .logo img {
    max-height: 40px;              /* Restricts the logo height to fit the navbar */
    max-width: 80%;               /* Ensures the logo doesn't overflow its container */
    object-fit: contain;           /* Maintains the aspect ratio of the image */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0.8rem;
    
}.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    height: 40px;
}
.nav-links li {
    background-color: rgba(255, 255, 255, 0.1);  /* Semi-transparent white background */
    padding: 10px 15px;  /* Optional: add padding for better spacing */
    border-radius: 4px;  /* Optional: add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  /* Optional shadow for better visibility */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
    font-size: 12px;
}

.nav-links li:hover {
    background-color: rgba(255, 255, 255, 0.2);  /* Make the background more opaque on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);  /* Make the shadow more prominent on hover */
}

.nav-links li a {
    color: #000000;
    padding: 1.8rem;
}
.nav-links li:hover a {
    color: #f00505;  /* Change text color on hover */
}
/* Dropdown menu styling */
.dropdown {
    position: relative;
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional shadow for better visibility */
    

}

.dropdown-btn {
    cursor: pointer;
    position: relative;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
}

/* Transparent dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(51, 51, 51, 0.2);  /* Transparent dark background */
    list-style-type: none;
    margin: 0;
    padding: 0;
    min-width: 150px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;  /* Start with transparency */
    transition: opacity 0.3s ease-in-out; /* Smooth fade-in transition */
    margin-top: 5px;
}

.dropdown-menu li a {
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    display: block;
    background-color: rgba(51, 51, 51, 0.8); /* Slightly transparent item background */
    transition: background-color 0.3s ease;
}

/* Hover effect on menu items */
.dropdown-menu li a:hover {
    background-color: rgb(253, 248, 248); /* Fully opaque on hover */
}

/* Show the dropdown menu when hovering over the parent list item */
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1; /* Make the dropdown fully opaque */
}

/* Hero section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: blur(8px); /* Adds the blur effect to the video */
    outline: 5px solid rgba(0, 0, 0, 0.8); /* Add a white semi-transparent outline */
    outline-offset: 0px; /* Adjust the spacing of the outline */
}


.image-container {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px; /* Space between images */
    z-index: 2; /* Above video */
    
}

.hero-image {
    width: 120px; /* Adjust image size as needed */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.1);
}


#slider-container {
    position: absolute;
    height: 100px;
    width: 100%;
    max-width: 1000px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    overflow: hidden;
    margin-top: 460px;
    
    
  }

  #slider-scroller {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(260px * 6);
    transition: all 1s ease;
  }

  .slider-item {
    width: 220px;
    height: 110px;
    display: inline-block;
    margin: 20px;
    position: relative;
  }

  .slider-item img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100px;
    max-height:60px;
  }



  #popup {
    display: none;
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 200px;
    border-radius: 8px;
    z-index: 1000;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.0); /* Semi-transparent white background */

    text-align: center;

  }

  #popup img {
    max-width: 90%;
    max-height: 100%;
    display: block; /* Ensures the image is treated as a block-level element */
    margin: 0 auto; /* Centers the image horizontally */
    object-fit: contain; /* Ensures the image retains its aspect ratio */
    margin-left: 20px;
}


  #popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  /* Tooltip (description) styling */
.popup-description {
    position: absolute;
    bottom: 120px;
    right: 15px;
    font-size: 16px;
    color: #fdf7f7;
    text-align: left;
    margin: 0;
    gap: 25px;
    margin-left: 70px;
    white-space: pre-wrap; /* Ensures line breaks and white space are preserved */
    max-width: 200px;

}

/* Add a hover effect to show the description */
.slider-item img:hover::after {
    content: attr(data-description); /* Shows the text from data-description */
    position: absolute;
    bottom: 10px;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: pre-wrap; /* Allow text wrapping */
    z-index: 10;
    max-width: 200px; /* Optional: limit the width */

}


.hero-section .btn {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}


/* Toggle Button */
.navigation-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.toggle-btn {
    color: #050101;
    padding: 10px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s, transform 0.3s;
    width: 45px;
}

.toggle-btn:hover {
    transform: scale(1.1);
}

.centered-image-container {
    text-align: center; /* Center align the images */
    padding: 20px;
    position: absolute; /* Ensure proper positioning for fade effect */
    margin-top: -100px;
    margin-right: 10px;
    
    
    
}

.centered-image {
    width: auto; /* Set a default width for the images */
    height: 370px;
    position: absolute; /* Stack all images on top of each other */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0; /* Initially hide all images */
    transition: opacity 1s ease-in-out; /* Smooth fade transition */
    
    
}

.centered-image.active {
    opacity: 1; /* Show the active image with a fade effect */
}


.about-section {
    padding: 50px 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.4); /* Semi-transparent white background */

    
}

.about-container {
    display: flex;
    flex-direction: row-reverse; /* Adjust text and image positions */
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 10px;
}

.about-container:hover {
}

.about-text {
    flex: 1;
    max-width: 600px;
    margin: 50px;
    text-align:center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

.about-text p {
    font-size: 1.2rem;
    color: #030101;
}

.about-images {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.about-images img {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.about-images img:hover {
    transform: scale(1.1); /* Zoom effect */
}


/* Styles for about-container2 */
.about-container2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 10px;
}

.about-container2 .about-text h2 {
    color: #e65100;
}

.about-container2 .about-text p {
}

.about-container2 .about-images img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.about-container3 {
    display: flex;
    flex-direction: row-reverse; /* Adjust text and image positions */
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 20px;
    border-radius: 10px;
}

.about-container3 .about-text {
    flex: 1; /* Allows text to take up space */
    margin-left: 20px; /* Adds spacing between text and image */
    text-align: left;
}

.about-container3 .about-images {
    flex: 1; /* Ensures image takes up space */
    text-align: left; /* Aligns the image to the left side */
}

.about-container3 .about-images img {
    max-width: 350px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

/* Responsive behavior */
@media (max-width: 768px) {
    .about-container3 {
        flex-direction: column; /* Stack the image and text vertically on smaller screens */
    }

    .about-container3 .about-text {
        margin-left: 0; /* Reset the left margin for smaller screens */
        text-align: center; /* Center text for smaller screens */
    }

    .about-container3 .about-images {
        text-align: center; /* Center image for smaller screens */
    }
}

/* Single Scroll Button */
.scroll-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

.scroll-btn:hover {
    background-color: #555;
}


* {
    box-sizing: border-box;
}

ul {
    display: grid;
    grid-template-rows: auto auto auto auto; /* Create 4 rows, one for each <li> */
    gap: 40px; /* Add spacing between rows */
    padding: 0;
    margin: 0;
    list-style-type: none;
}


.brand {
    text-align: center;
}

.brand span {
    color: #fff;
}

.wrapper {
    box-shadow: 0 0 30px 0 rgba(72, 94, 116, 0.7); /* Added more noticeable box-shadow */
    border-radius: 10px;
}

.wrapper > * {
    padding: 1em;
}

.company-info {
    background: rgba(255, 255, 255, 0.4); /* Light transparent background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Added shadow to company info section */
    border-radius: 8px;
    padding-bottom: 1em; /* Extra padding at the bottom for social icons */
    margin-top: 10px;
    margin-left: 5px;
}

.company-info h3, .company-info ul {
    text-align: center;
    margin: 0 0 1rem 0;
}

.company-info ul {
    padding-left: 0;
}

.company-info .social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.company-info .social-icons li {
    display: inline-block;
}

.company-info .social-icons li a {
    font-size: 1.5em;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.company-info .social-icons li a:hover {
    color: #92bde7;
    transform: scale(1.1);
}

.contact {
    background: transparent;
}

.contact form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    background: rgba(255, 255, 255, 0.4); /* Light transparent background */
    border-radius: 8px;
    padding: 2em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Added shadow to form */
}

.contact form label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    text-align: left;
}

.contact form p {
    margin: 0;
}

.contact form .full {
    grid-column: 1 / 3;
}

.contact form input,
.contact form button,
.contact form textarea {
    width: 100%;
    padding: 1em;
    border: 1px solid rgba(201, 230, 255, 0.8); /* Semi-transparent border */
    background: transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Added shadow to input fields */
}

.contact form input:focus,
.contact form textarea:focus {
    border-color: #92bde7; /* Focused input field border color */
}

.contact form button {
    background: rgba(201, 230, 255, 0.9);
    border: 0;
    text-transform: uppercase;
    color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Added shadow to button */
}

.contact form button:hover,
.contact form button:focus {
    background: #92bde7;
    color: #fff;
    outline: 0;
    transition: background-color 2s ease-out;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Shadow effect on hover */
}

.mail {
    display: flex;
    align-items: center; /* Vertically center the image and text */
    font-size: 16px; /* Adjust the font size */
    color: #161313; /* Set text color */
    margin: 10px 0; /* Add some spacing around the list item */
    margin-top: 300px;
}

.mail-icon {
    margin-right: 8px; /* Space between the image and text */
    width: 50px; /* Adjust the size of the image */
    height: 50px; /* Adjust the height of the image */
}

.mail:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Background color on hover */
    border-radius: 8px; /* Optional: rounded corners */
    cursor: pointer; /* Change cursor to pointer */
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

button {
    width: 190px;
    height: 60px;
    position: absolute;
    border: none;
    outline: none;
    background-color:rgb(252, 242, 242); /* Background color on hover */
    font-size: 16px;
    border-radius: 40px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    margin-top: 12px;
    margin-left: 280px;
}

.check-box {
    width: 60px;
    height: 60px;
    border-radius: 40px;
    box-shadow: 0 0 12px -2px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    right: -40px;
    opacity: 0;
}

.check-box svg {
    width: 40px;
    margin: 10px;
}

svg path {
    stroke-width: 3;
    stroke: #f51515;
    stroke-dasharray: 34;
    stroke-dashoffset: 34;
    stroke-linecap: round;
}

.active {
    transition: 1s;
}

.active .check-box {
    right: 0;
    opacity: 1;
    transition: 1s;
}

.active p {
    margin-right: 125px;
    transition: 1s;
}

.active svg path {
    stroke-dashoffset: 0;
    transition: 1s;
    transition-delay: 1s;
}

@media (min-width: 700px) {
    .wrapper {
        display: grid;
        grid-template-columns: 1fr 2fr;
    }

    .wrapper > * {
        padding: 2em;
    }

    .company-info h3, .company-info ul, .brand {
        text-align: left;
    }
}

