/* Container Flexbox */
.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0; /* Reduced padding */
}

/* Remove blue outline and focus effects */
button, a, input, textarea {
    outline: none;
    box-shadow: none; /* Remove any default focus shadow effect */
    -webkit-tap-highlight-color: transparent; /* Prevent blue highlight on mobile */
}

button:focus, a:focus, input:focus, textarea:focus {
    outline: none;
    box-shadow: none; /* Remove any focus shadow effect */
}

button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: none;
    box-shadow: none; /* Ensures the border is removed on click in all browsers */
}

button:active, a:active, input:active, textarea:active {
    outline: none;
    box-shadow: none; /* Removes blue border on active state */
}




/* Header Styling */
.header {
    background-color: #1F1F1F;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: #fff;
    margin: 0;
    margin-left: 10px;
    
}

.logo .highlight {
    color: #ff6600;
}

.logo img {
    width: 70px; /* Reduced logo size */
    height: auto;
    margin-right: 10px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-nav ul li {
    margin-left: 8px; /* Further reduced margin */
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 4px 6px; /* Further reduced padding */
     
    display: block;
}

.main-nav ul li a:hover {
    color: #ff6600;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    margin-left: 10px; /* Reduced margin */
}

.search-bar input {
    padding: 4px;
    border: none;
    border-radius: 3px;
    margin-right: 5px;
}

.search-bar button {
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 5px 8px; /* Reduced padding */
    cursor: pointer;
}

/* Navigation Separator */
.nav-separator {
    border: none;
    border-top: 2px solid #000; /* Changed to black */
    margin: 0;
}

/* Secondary Navigation */
.secondary-nav {
    background-color: #1F1F1F;
    padding: 10px 0;
}

.secondary-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-nav ul li {
    margin: 5px 10px;
}

.secondary-nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.secondary-nav ul li a.highlight-red {
    background-color: red;
    border-radius: 5px;
}

/* Add margin between secondary nav and main content */
.secondary-nav + .categories-container {
    margin-top: 20px; /* Adjust this value as needed */
}

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.vimages {
    margin-top: 50px;
    width: 400px;
    height: auto;
}

.content-container {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    margin-top: 20px;
}

.content-list {
    margin: 0;
    padding: 0;
    margin-left: 20px;
}

.content-list p {
    font-size: 28px;
    color: #333;
    margin: 0;
    font-weight: bolder;
    margin-left: 10px;
    margin-top: 20px;
}

/* Ensure proper alignment and spacing for the features section */
.features-container {
   margin-top: -230px; /* Space between the VVDI MB and the features section */
    margin-left: 410px; /* Center the features container */
    margin-right: auto; /* Center the features container */
    max-width: 800px; /* Optional: Limit the width of the features section */
    padding: 0 20px; /* Add horizontal padding if needed */
}

.features-container h1 {
    font-size: 24px; /* Adjust as needed */
    color: #333; /* Ensure the color matches the theme */
    margin-bottom: 10px; /* Space below the heading */
}

.devices {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern font */
    font-size: 18px; /* Font size for list items */
    font-weight: 500; /* Medium weight for readability */
    line-height: 1.6; /* Improve readability */
    color: #444; /* Dark gray color for text */
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
}

.devices li {
    margin-bottom: 10px; /* Space between list items */
}


.download-container {
    margin-top: 30px;
    text-align: center;
}

.downloads {
    list-style: none;
    padding: 0;
}

.downloads li {
    font-size: 18px;
    margin-bottom: 10px;
}

.download-btn1, .download-btn2 {
    background-color: #ff6600;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
    display: block;
    margin: 10px auto;
}

.download-btn1:hover, .download-btn2:hover {
    background-color: #e65500;
    transform: translateY(-3px);
}


span {
    color: #ff6c00;
}

.menubtn{
    display: none;
}

   
.mobile-menu{
    display: none;
}

.search-barmobile{
    display: none;
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide main nav on mobile */
    }
    
.menubtn{
    display: block;
}


    .mobile-menu-toggle {
        display: block; /* Show menu toggle button on mobile */
    }

    .mobile-menu {
        display: block; /* Ensure the mobile menu shows when active */
    }
    .menubtn{
        display: block;
    }

    .container {
        position: relative;
    }
    .desktop-nav,
    .secondary-nav {
        display: none; /* Hide desktop nav and secondary nav on mobile */
    }
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        background: none;
        border: none;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
        
    }
    .menubtn{
        display: block;
    }
}

@media (max-width: 768px) {

    @media (max-width: 768px) {
        .mobile-menu {
            display: block;
            position: fixed;
            top: 0;
            right: 0;
            width: 250px;
            height: 100%;
            background-color: #1c1c1c;
            padding: 20px;
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            transform: translateX(100%);
            transition: transform 0.3s ease;
            margin-left: 10px;
        }
        .mobile-menu-toggle{
            margin-right: -10px;
            
        }        

        .search-barmobile {
            display: flex;
            align-items: center;
            max-width: 800px;
            margin: 20px 20px 15px 15px;
            background-color: #f8f8f8;
            border: 1px solid #e0e0e0;
            border-radius: 25px; /* Rounded corners for the entire bar */
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .search-barmobile input {
            flex-grow: 1;
            padding: 12px 20px; /* Increased left padding for better text alignment */
            border: none;
            background-color: transparent;
            font-size: 16px;
            color: #333;
            outline: none;
        }
        
        .search-barmobile input::placeholder {
            color: #999;
            
        }
        
        .search-barmobile button {
            background-color: #ff6600;
            color: white;
            border: none;
            padding: 12px 12px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 25px 25px 25px 25px; /* Rounded corners on the right side of the button */
            
        }

        
        
        .search-barmobile button:hover {
            background-color: #e55c00;
        }
        
        .search-barmobile button svg {
            width: 20px;
            height: 20px;
        }
        .mobile-menu.active {
            
            transform: translateX(0); /* Slide in */
        }

        .mobile-menu ul {
            list-style: none; /* Remove default bullet points */
            padding: 20px 0; /* Add vertical padding */
            margin: 0; /* Remove default margin */
        }
        .mobile-menu ul li {
            margin: 15px 0; /* Add margin between items */
        }

        .mobile-menu.active ul li a{
            color: #ff6600; /* Link color */
    text-decoration: none; /* Remove underline */
    font-size: 18px; /* Font size */
    padding: 10px 15px; /* Add padding */
    border-radius: 5px; /* Rounded corners */
    display: block; /* Make the link fill the list item */
    transition: background-color 0.3s ease;
        }

        .mobile-menu ul li a:hover {
            background-color: rgba(255, 102, 0, 0.1); /* Light background on hover */
            color: #ffffff; /* Change text color on hover */
        }
        
        /* Active link state */
        .mobile-menu ul li a.active {
            font-weight: bold; /* Make active link bold */
            background-color: rgba(255, 102, 0, 0.3); /* Slightly darker background */
        }
    }
    
    .main-nav {
        display: none; /* Hide menu by default */
        position: fixed;
        right: -100%; /* Off-screen to the right */
        top: 0;
        height: 100%;
        width: 250px;
        background-color: #333;
        flex-direction: column;
        justify-content: center;
        transition: right 0.3s ease-in-out;
        z-index: 999; /* Ensure it's above other content */
    }

    .main-nav.active {
        display: flex; /* Change from display: none to display: flex */
        right: 0; /* Slide into view when active */
    }


    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 20px 0 0 0;
    }

    .mobile-menu ul li {
        margin: 10px 0;
    }

    .mobile-menu ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        display: block;
        padding: 10px 15px;
    }

    .menu-button {
        display: block; /* Show menu button on mobile */
    }

    .secondary-nav {
        display: none; /* Hide secondary nav on mobile */
    }
    #vlogo img{
        margin-left: -30px;
        margin-bottom: -30px;
    }
    .logo h1{

        font-size: 28px;
        margin-left: -10px;
    }
    .close-button {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        color: white;
        font-size: 28px;
        cursor: pointer;
    }
    .footer{
        margin-left: -370px;
    }

    .header1 h1{
        font-size: 40px;
    }

    .image-section img{
        width: 350px;
        margin-left: -25px;
        height: fit-content;
    }

}

/* Default styling */
.mobile-container {
    display: flex;
    flex-direction: column;
}

.image-section, .content-list, .devices-section, .additional-content {
    margin: 20px;
}
/* Existing styles remain unchanged */

@media (max-width: 768px) {
    /* Main content container */
    .content-container {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center the content horizontally */
        padding: 15px;
        margin-top: 20px;
    }

    /* Image styling */
    .vimages {
        width: 100%;
        max-width: 350px;
        height: auto;
        margin-top: -30px;
        margin-left: 0px;
        padding-bottom: 30px;
        width: fit-content;
        
    }

    /* Text content */
    .content-list {
        margin: 20px 0;
        text-align: left;
    }

    .content-list p {
        font-size: 20px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .features-container h1 {
        font-size: 23px;
        margin-bottom: 20px;
        font-weight: bold;
        text-align: center;
        padding-bottom: 20px;
        margin-top: -20px;
    }

    /* Download buttons */
    .download-btn1, .download-btn2 {
        width: 110%; /* Make the buttons take full width */
        max-width: 350px; /* Ensure they don't exceed a maximum width */
        padding: 12px 20px;
        background-color: #ff6600;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
        font-weight: bold;
        margin: 10px auto; /* Center the buttons with auto margins */
        margin-left: -14px;
        text-align: center;
        
    
        
    }
    .btn{
        display: flex;
    
        justify-content: center;
        margin-top: 10px;
        padding-left: 20px;
        text-align: center;
        
    }

    .download-contianer{
        margin: 20px 0;
        margin-left: 0;
        margin-top: 300px;
    }
    

    /* Device list */
    .features-container {
        margin: 20px 0;
        margin-left: 0;
        margin-top: -20px;
        
        
    }

    .features-container li {
        margin-bottom: 10px;
        padding-left: 0;
        text-align: center;
    }
}


/* Footer social icons styling */
.footer .social-icons {
    margin-top: 10px;
}

.footer .social-icon {
    color: #ffffff;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer .social-icon:hover {
    color: #ff6600; /* Accent color on hover */
}
/* Section background shades */
.section-light {
    background-color: #f9f9f9; /* Light gray */
}

.section-dark {
    background-color: #333333; /* Darker section */
    color: #ffffff;
}


/* Fade-in effect */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

/* Apply fade-in only when in viewport */
.fade-in.visible {
    opacity: 1;
}/* Footer Styling */
/* Footer Styling */
.footer {
    background-color: #0a1a2a;
    color: #ffffff;
    padding: 30px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    max-width: 250px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: green;
    font-size: 24px;
 
    border-radius: 50%;
    padding: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ff6600;
    transform: translateY(-2px);
}

.footer-column {
    flex: 0 1 auto;
    min-width: 200px;
    margin: 10px 0;
    margin-right: 60px;
    font-family: 'Poppins', sans-serif;
}

.footer-column h3 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6600;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
}

.footer-column p {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.footer-column i {
    color: #ff6600;
    margin-right: 10px;
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #ff6600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        text-align: center;
        margin-left: 370px;
    }

    .footer-column {
        margin-right: 0;
        text-align: center;
        margin-left: 370px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        margin-left: 370px;
    }
}

.barmobile {
    display: flex;
    align-items: center;
    
}

.search-barmobile {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
}

.search-barmobile input {
    flex: 1;
    padding: 8px;
    font-size: 16px;
    margin-left: 10px;

}
.search-barmobile .search button {
    width: 40px; /* Adjust the size as needed */
    height: 40px; /* Same as width for a round shape */
    padding: 0; /* Remove padding for perfect circle */
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6600; /* Optional: Add background color */
    color: white; /* Optional: Text/icon color */
    border: none; /* Remove border for cleaner look */
}


@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
      display: block;
      opacity: 1;
    }

    .barmobile button {
        margin-right: 5px;
        font-weight: bold;
    }

    .search-barmobile input {
        padding: 6px;
        font-size: 14px;
    }

    .search-barmobile .search button {
        padding: 6px 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-barmobile input {
        padding: 5px;
        font-size: 14px;
    }

    .search-barmobile .search button {
        padding: 5px 8px;
        font-size: 12px;
    }
}


  /* Ensure the arrows are displayed on smaller screens as well */
  @media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
      display: block;
      opacity: 1;
    }

    .barmobile button{
        margin-right: 5px;
        font-weight: bold;
    }
  }
    
@media (min-width: 769px)  {
    .search-barmobile{
     display: none;
    }
 }