/* General Styling */
.container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0; 
}

/* 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 {
    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;
    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; 
}

.main-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 4px 6px;
    display: block;
}

.main-nav ul li a:hover {
    color: #ff6600;
}

.search-bar {
    display: flex;
    align-items: center;
    margin-left: 10px; 
}

.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;
    cursor: pointer;
}

.nav-separator {
    border: none;
    border-top: 2px solid #000;
    margin: 0;
}

.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 {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.mobile-menu{
    display: none;
}
.search-barmobile{
    display: none;
}
.menubtn{
    display: none;
}

/* Contact Header Section */
.contact-header {
    background: linear-gradient(to right, #ff6600, #ff3300);
    padding: 40px 0;
    text-align: center;
    color: white;
}

.contact-header h1 {
    font-size: 3em;
    margin: 0;
}

/* Contact Info Section */
.contact-info {
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.get-in-touch, .send-message {
    width: 45%;
}

h2 {
    color: #ff3300;
    margin-bottom: 20px;
}


form {
    background-color: #fff8f0; 
    padding: 30px;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    
}
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 1.1em;
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    background-color: #f08200;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;  
}

button:hover {
    background-color: #ff6600;
}
.get-in-touch img {
    width: 25px;  
    height: auto; 
   display: flex;
    margin: 20px 0;  
}

.social-icons {
    display: flex;
    justify-content: left; 
    align-items: left;     
    margin-top: 10px;
}

.social-icons a img {
    width: 45px;
    height: 45px;
    padding: 10px;
}


.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: -25px; 
    margin-top: -20px;
}

.contact-item img {
    width: 25px; 
    margin-right: 10px;  
}


.contact-item a {
    text-decoration: none;
    color: #000;  
    font-weight: 500;
}



@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;
            
        }
        .menubtn{
            display: flex;
        }        

        .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 */
    }

    /* Issue: This line won't work as intended. 
       `display: flex` must be set for `.main-nav.active` to show the menu */
    /* .main-nav.active {
        right: 0; 
    } */

    .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;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none; /* Hide main nav on mobile */
    }

    .mobile-menu-toggle {
        display: block; /* Show menu toggle button on mobile */
        
    }

    .mobile-menu {
        display: block; /* Ensure the mobile menu shows when active */
    }
    .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: 5px;
        transform: translateY(-50%);
        background: none;
        border: none;
        font-size: 24px;
        color: #fff;
        cursor: pointer;
        
        
    }

    
}
/* Media query for mobile devices */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        padding: 20px;
    }
    
    .get-in-touch, .send-message {
        width: 100%; /* Make both sections full width */
        margin-bottom: 20px; /* Add spacing between the sections */
       
    }
    .get-in-touch{
        margin-left: 20px;
    }

    .get-in-touch h2{
        margin-left: 5px;
    }
    .send-message h2{
        margin-left: 55px;
    }

    /* Adjust form elements for better usability on mobile */
    input[type="text"],
    input[type="email"],
    textarea {
        font-size: 1em; /* Increase font size slightly for better readability */
        padding: 15px; /* More padding for easier interaction */
        width: 220px;
    }

    
   

    /* Social icons on mobile */
    .social-icons {
        justify-content: center; /* Center the icons */
        margin-top: 15px;
    }

    .social-icons a img {
        width: 40px; /* Slightly smaller icons for mobile */
        height: 40px;
    }
}

/* 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;
    }
 }
/* From Uiverse.io by NelsonDJCR */ 
.button2 {
    display: inline-block;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: #090909;
    padding: 0.7em 3.3em 0.7em 1.7em;
    font-size: 18px;
    border-radius: 0.5em;
    background: #e8e8e8;
    border: 1px solid #e8e8e8;
    box-shadow: 6px 6px 12px #c5c5c5,
               -6px -6px 12px #ffffff;
    margin-top: 30px;
  }
  
  .button2 > svg {
    height: 30px;
    position: absolute;
    padding: 0px 5px;
    margin-top: -4px;
  }
  
  .button2:active {
    color: #666;
    box-shadow: inset 4px 4px 12px #c5c5c5,
               inset -4px -4px 12px #ffffff;
  }
  
  .button2:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button2:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #009087;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
  }
  
  .button2:hover {
    color: #ffffff;
    border: 1px solid #009087;
  }
  
  .button2:hover:before {
    top: -35%;
    background-color: #009087;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  
  .button2:hover:after {
    top: -45%;
    background-color: #009087;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
  }
  