* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Style */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* General Navbar Styles */
.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #00aaff;
    padding: 10px;
    position: relative;
    z-index: 1;
}
.privacy{
    background-color: white;
    border-radius: 10px;

}
.contacta{
    font-size: 50px;
    border-radius: 5px;
    background-color: black;
    text-align: center;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.logo img {
    height: 100px;
    padding-left: 30%;
    padding-top: 5%;
}

.social-icons {
    display: flex;
    gap: 15px;
    padding-right: 20%;
}

.social-icons a {
    color: red;
    font-size: 20px;
    text-decoration: none;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
}

.hamburger .line {
    width: 30px;
    height: 3px;
    background-color: black;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Active hamburger transformation */
.navbar.active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar.active .line:nth-child(2) {
    opacity: 0;
}

.navbar.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-size: 23px;
    font-weight: bold;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    transition: color 0.3s ease;
    margin-right: 50px;
    padding-bottom: 40px;
    
}

/* Hover effect for nav items */
.nav-links li a:hover {
    color: red;
}

/* Dropdown menu */
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #00aaff;
    list-style: none;
    padding: 10px;
    border-radius: 10px;
    
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    color: #333;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #00aaff;
    color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-header {
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        width: 250px;
        
        background-color: #00aaff;
    
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 5;
        
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        margin: 20px 0;

    }

    
    
    

    /* Social icons at the bottom of the menu in mobile mode */
    .mobile-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    /* Hide desktop social icons */
    .social-icons.desktop-icons {
        display: none;
    }
    .social-icons{
        padding-left: 23%;
    }
    .logo img {
        height: 80px;
        padding-left: 6%;
        padding-top: 8%;
    }
    .dropdown-menu{
        border-radius: 10px;
        
    }
}

@media (min-width: 769px) {
    /* Hide mobile social icons in desktop view */
    .mobile-icons {
        display: none;
    }
}


/* Mobile Styles */
@media (max-width: 768px) {
    .nav-header {
        justify-content: space-between;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 48%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 100vh;
        width: 100vw;
        background-color: rgba(0, 170, 255, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
        z-index: 5;
        opacity: 0; /* Initially hidden */
        visibility: hidden; /* Initially hidden */
        gap: 1px;
    }

    .nav-links.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 20px 0;
    }

    /* Social icons at the bottom of the menu in mobile mode */
    .mobile-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
    }

    /* Hide desktop social icons */
    .social-icons.desktop-icons {
        display: none;
    }

    /* Fade in effect for smoother transition */
    .nav-links.active {
        transition: opacity 0.5s ease, visibility 0s;
    }
    
}

@media (min-width: 769px) {
    /* Hide mobile social icons in desktop view */
    .mobile-icons {
        display: none;
    }
}

.team-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f5f5f5;
}

.team-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #555;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    max-width: 200px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.team-member p {
    font-size: 14px;
    color: #777;
}

/* supplier */
.supply-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f5f5f5;
}

.supply-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #555;
}

.supply-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}



.supply-member img {
    width: 250px;
    height: 100px;
    border-radius: 8%;
    margin-bottom: 15px;
}

.supply-member h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.supply-member p {
    font-size: 14px;
    color: #777;
}
/* Associates*/
.associate-section {
    text-align: center;
    padding: 50px 0;
    background-color: #f5f5f5;
}

.associate-section h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #555;
}

.associate-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}



.associate-member img {
    width: 250px;
    height: 150px;
    border-radius: 5%;
    margin-bottom: 15px;
}

.associate-member h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.associate-member p {
    font-size: 14px;
    color: #777;
}

/* Add box-sizing globally to ensure proper width calculations */
* {
    box-sizing: border-box;
  }
  
  body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
  }
  
  .swiper-container {
    width: 100vw; /* Ensure the container spans the full viewport width */
    max-width: 1200px;
    margin: 20px auto;
  }
  
  .swiper-wrapper {
    display: flex;
    width: 100%;
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
    padding: 20px;
    width: auto; /* Set slide width automatically to avoid overflowing */
  }
  
  /* Image styling */
  .swiper-slide img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  /* Carousel content */
  .carousel-content {
    text-align: center;
    margin-top: 15px;
  }
  
  .carousel-content h2 {
    font-size: 1.5em;
    margin: 10px 0;
  }
  
  .carousel-content p {
    margin: 10px 0;
    font-size: 1em;
  }
  
  /* Adjust swiper controls */
  .swiper-button-next, .swiper-button-prev {
    color: #fff;
  }
  
  .swiper-pagination-bullet {
    background-color: #fff;
  }
  
  /* Mobile adjustments */
  @media (max-width: 768px) {
    .swiper-slide img {
      width: 130px; /* Make images responsive */
      height: 130px;
    }
  
    .swiper-container {
      width: 550px; /* Ensure no horizontal overflow */
        
    }
    
    .swiper-wrapper {
      width: 100%; /* Adjust width of wrapper */
    }
  
    .swiper-slide {
      width: 100%; /* Ensure each slide fills the viewport in mobile mode */
     
      box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
      
      padding: 8px;
    }

    .carousel-content h2 {
        font-size: 13px;
        margin: 0px 0;
        text-align: center;
      }
      
      .carousel-content p {
        margin: 10px 0;
        font-size: 10px;
        text-align: center;
      }
      
  }
  


  
  /* Gallery */

  .gallery-section {
    padding: 20px;
    text-align: center;
}

h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 15px;
    margin: 0 auto;
    max-width: 90%;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 300px;
    height: 300px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive design */
@media (max-width: 768px) {
    h2 {
        font-size: 1.5em;
    }
    
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}
  


.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    padding: 20px;
}

.image-section {

    display: flex;
    padding-left: 5%;
    
}

.image-section img {
    width: 350px;
    height: 345px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-section {
    
    max-width: 900px;
    width: 100%;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.form-group input, .form-group select {
    width: 48%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

button {
    padding: 10px 20px;
    background-color: #d4a71c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #c39c16;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .image-section, .form-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .form-group {
        flex-direction: column;
    }

    .form-group input, .form-group select {
        width: 100%;
        margin-bottom: 10px;
    }
}



