

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.9);

    
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 39px;
    padding: 10px 20px;
    display: flex;
    text-align: left;
    justify-content: space-between;
    align-items: center;
}

/* Basic styling for the logo */
.logo img {
  width: 122%; /* Adjust the width as needed */
  height: 100px; /* Fixed height for consistency */
  display: block; /* Ensures the image is treated as a block-level element */
  margin-left: -14px; /* Margin on the left */
}

/* Make the logo responsive on medium to small screens */
@media (max-width: 768px) {
  .logo img {
      width: 80%; /* Resize logo to fit better on smaller screens */
      
     
      
  }
}

/* Make the logo responsive on small screens like mobile */
@media (max-width: 480px) {
  .logo img {
      width: 30%; /* Further reduce the logo size */
    height: auto;
      
  }

  .hamburger {
    display: block;
    position: absolute; /* Position it absolutely */
    top: 36px; /* Place it 20px from the top */
    right: 11px; /* Place it 20px from the right */
    font-size: 30px; /* Adjust size of the hamburger icon */
}
}

.logo1 img {
  width: 50%; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Optional: Ensures proper alignment */

  
  margin-top: 10px;
  
}

/* Hamburger Icon (hidden by default) */
.hamburger {
    display: none;
    color: black;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.2);
}
 
 .menu {
  list-style: none;
  display: flex;
  gap: 5px;
  margin: 25px;
}

.menu-item1 {
  position: relative;
  transition: transform 0.3s ease;
}

.menu-item1 a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
  font-family: "Cabin", Arial, sans-serif;
}

.menu-item1:hover {
  transform: scale(1.05);
}

.menu-item1 a:hover {
  color: #209dc6;
  transform: scale(1.1);
}

/* Dropdown Menu */
.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%; /* Position directly below the menu item */
  left: 0;
  background: #222;
  padding: 10px 0;
  display: none; /* Initially hidden */
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 100; /* Ensure it appears above other elements */
}

/* Show dropdown when hovering over menu item or dropdown itself */
.menu-item1:hover .dropdown-menu {
  display: block; /* Show the dropdown */
  opacity: 1; /* Make it fully visible */
  visibility: visible; /* Allow screen readers to see it */
}

/* Dropdown Items */
.dropdown-menu li {
  padding: 5px 10px; /* Spacing for dropdown items */
}

.dropdown-menu li a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  display: block; /* Make links block level */
  padding: 8px 12px; /* Padding for clickable area */
  transition: color 0.3s ease, background 0.3s ease;
}

.dropdown-menu li a:hover {
  background: #209dc6; /* Background change on hover */
  color: white; /* Text color on hover */
}

/* Search Bar */
#search-bar {
  display: none;
  margin-left: 15px;
}

#search-input {
  padding: 5px;
  font-size: 16px;
}

#search-bar button {
  padding: 6px 10px;
}

/* Keyframes for Dropdown Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px); /* Slide in from above */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hamburger Menu Animation */
.hamburger.active {
    animation: rotate 0.3s ease; /* Rotate animation on active state */
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(90deg);
    }
}

/* Change styles for the mobile menu when it's active */
#nav-menu.mobile-visible {
    animation: fadeIn 0.3s ease forwards; /* Fade in effect */
}

@keyframes fadeIn {
    from {
        opacity: 0; /* Start transparent */
    }
    to {
        opacity: 1; /* Fully visible */
    }
}

/* Add a background transition for the navbar */
.navbar {
    transition: background 0.3s ease; /* Smooth background transition */
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.9); /* Slightly transparent on hover */
}

  
/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .navbar {
        background: white;
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
    }
    #nav-menu {
        display: none;
        flex-direction: column;
       
        
        position: absolute;
        top: 56px;
        left: -64px;
        width: 100%;
        z-index: 999;
    }

    #nav-menu.mobile-visible {
        display: flex;
       
        
    }

    .menu {
        flex-direction: column;
        gap: 0px;
        width: 436px;
        color:white;
        margin-top: 56px;
        background:black;
    }


    
    

    .menu-item1 a {
        padding: 15px;
        color: white;
    }

    .toggle-dropdown {
        display: inline-block;
    }

    .indicator {
        display: block; /* Always show + on small devices */
    }

    .dropdown-menu {
        position: relative; /* Adjust position for dropdown on mobile */
    }

    .dropdown-menu.hidden {
        display: none; /* Hide dropdown */
    }
    .top-bar {
        padding: 10px 0;
        color: #fff;
        width: 100%;
        font-size: 14px;
        background-color: black;
    }
  }


/* Reset default margins and paddings */
body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.top-bar {
  padding: 10px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 450;
  width: 100vw; /* Use viewport width to cover entire screen */
  margin: 0; /* Ensure no margins */
  background-color: #209dc6; /* Moved background-color here for clarity */
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; /* Full width for flex items */
  padding: 0 15px; /* Inner spacing */
  box-sizing: border-box; /* Include padding in width calculation */
}

.contact-info {
  gap: 15px;
  margin-right: 149px;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-icons {
  gap: 10px;
  margin-right:20px; /* Align to the right */
}

.social-icon {
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: black !important;
  transform: scale(1.2);
}
@media (max-width: 768px) {
.social-icons {
  gap: 10px;
  
  
}
.social-icon:hover {
  color: black;
  transform: scale(1.2);
}
} 



 .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            padding: 12px 18px;
            border-radius: 50px;
            font-size: 16px;
            text-decoration: none;
            font-family: Arial, sans-serif;
            display: flex;
            align-items: center;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease-in-out;
            z-index: 1000; /* Ensure it stays on top */
        }
        .whatsapp-button img {
            width: 24px;
            height: 24px;
            margin-right: 10px;
        }
        .whatsapp-button:hover {
            transform: scale(1.1);
        }
        @media (max-width: 600px) {
            .whatsapp-button {
                padding: 10px 15px;
                font-size: 14px;
            }
            .whatsapp-button img {
                width: 20px;
                height: 20px;
            }
        }