/* 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; /* 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;
}

/* Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}


.header1 {
    background: linear-gradient(to right, #b91d2d, #ff6600);
    padding: 30px;
    color: white;
    text-align: center;
}

.header1 h1 {
    margin: 0;
    font-size: 3.5rem;
}

/* Product Section */
.product-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    background-color: #f9f9f9;
}

.product-gallery img {
    width: 500px;
    height: 500px;
    object-fit: contain;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-info {
    max-width: 600px;
    margin-left: 40px;
}

.product-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.enquire-btn {
    background-color: #ff6600;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Added transition for smooth hover effect */
}

.enquire-btn:hover {
    background-color: #b91d2d;
    transform: scale(1.05); /* Slight scaling effect on hover */
}


/* Modal Styling */
.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
}

.search-barmobile{
    display: none;
}

.menubtn{
    display: none;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto; 
    padding: 50px;
    border: 1px solid #888;
    width: 40%; 
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form styling inside modal */
.modal-content form input, 
.modal-content form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-left: -10px;
}

.submit-button {
    background-color: #ff6600;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
}

.submit-button:hover {
    background-color: #b91d2d;
}

.image-section img{
    width: 500px;
}

.mobile-menu{
    display: none;
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide main nav on mobile */
    }
    .vimages img{
        width: fit-content;
    }
    .product-container img{
        width: fit-content;
    }
    #miniprog img{
        width: 350px;
        height: auto;
        margin-left: -25px;
        
    }

    .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;
        
    }
}

@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: 400px;
            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: 352px;
        margin-left: -25px;
        height: fit-content;
        
    }

   }
   @media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        padding: 20px;
    
    }

    .product-info {
        margin-left: 0;
        margin-top: 40px;
        max-width: 100%;
        padding: 20px;
        justify-content: space-between;
    }

    .product-info h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .product-info p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .enquire-btn {
        width: 50%;
        padding: 12px;
        font-size: 1rem;
    }

} 
   /* Base styles */
body {
    font-family: 'Poppins', sans-serif;
}
/* Base styles for all devices */
.image-section img {
    width: 100%;  /* Ensure the image takes full width of its container */
    height: auto; /* Maintain the aspect ratio */
 /* Set a maximum width so it doesn't stretch too much on larger screens */
    display: block; /* Prevent inline block spacing issues */
    margin: 0 auto; /* Center the image horizontally */
}

/* Small Mobile Devices */
@media (max-width: 360px) {
    .image-section img {
        max-width: 300px; /* Slightly smaller on small devices */
    }
}

/* Mobile Devices (360px to 400px) */
@media (min-width: 360px) and (max-width: 400px) {
    .image-section img {
        max-width: 350px;
    }
}

/* Medium Mobile Devices */
@media (min-width: 400px) and (max-width: 768px) {
    .image-section img {
        max-width: 550px;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .image-section img {
        
        max-width: 450px;
    }
   
}
@media (min-width: 821px) {
    .image-section img {
        max-width: 500px; /* Default size for larger screens */
    }
    
}

/* Laptops and Desktops */
@media (min-width: 1025px) {
    .image-section img {
        max-width: 500px; /* Default size for larger screens */
    }
}

/* Tablet Landscape */
@media (min-width: 1025px) and (max-width: 1121px) {
    body {
      
        .image-section img {
            max-width: 500px; /* Default size for larger screens */
        }
    }
}
/* Tablet Landscape */
@media (min-width: 1122px) and (max-width: 1280px) {
    body {
      
        .image-section img {
            max-width: 500px; /* Default size for larger screens */
        }
    }
}

/* Small Laptop/Desktops */
@media (min-width: 1281px) and (max-width: 1440px) {
    body {
        background-color: lightgreen; /* Example style */
    }
}

/* Large Desktops */
@media (min-width: 1441px) {
    body {
      
        .image-section img {
            max-width: 500px; /* Default size for larger screens */
        }
    }
    
}
/* Small Laptop/Desktops */
@media (min-width: 1442px) and (max-width: 1540px) {
    body {
      
        .image-section img {
            max-width: 500px; /* Default size for larger screens */
        }
    }
}

/* Small Laptop/Desktops */
@media (min-width: 1541px) and (max-width: 1560px) {
    body {
      
        .image-section img {
            max-width: 500px; /* Default size for larger screens */
        }
    }
}


/* Small Laptop/Desktops */
@media (min-width: 1561px) and (max-width: 1576px) {
    body {
 
        .image-section img {
            max-width: 500px; /* Default size for larger screens */
        }
    }
}
span{
    color: #ff6600;
}
/* 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;
    }
 }