

   /* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  
  .logo img {
    width: 100px;
    height: 100px;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .contact-btn {
    background-color: #f15a3c;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
  }
  
  .hero {
    background-image: url('./images/background-image.png');
    background-size: cover;
    background-position: center;
    height: 582px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-content h1 {
    color: #1d3557;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
    padding: 0 20px;
  }
  
  .floating-icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .icon {
    background-color: #25d366;
    color: white;
    padding: 12px;
    border-radius: 5px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
 
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
  
 
  @media screen and (max-width: 768px) {
    .navbar {
      padding: 15px 20px;
      z-index: 50
    }
    
    .logo img {
      width: 80px;
      height: 80px;
    }
    
    .menu-toggle {
      display: block;
    }
    
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: white;
      flex-direction: column;
      align-items: flex-start;
      padding: 80px 20px 20px;
      transition: right 0.3s ease;
      box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
      z-index:50
    }
    
    .nav-links.active {
      right: 0;
    }
    
    .nav-links a {
      width: 100%;
      padding: 15px 10px;
    }
    
    .contact-btn {
      margin-top: 15px;
      width: 100%;
      text-align: center;
    }
    
    .hero-content h1 {
      font-size: 24px;
      padding: 0 15px;
    }
    
    .floating-icons {
      right: 10px;
    }
    
    .icon {
      padding: 10px;
      font-size: 18px;
    }
  }
  
  @media screen and (max-width: 480px) {
    .navbar {
      padding: 10px 15px;
    }
    
    .logo img {
      width: 60px;
      height: 60px;
    }
    
    .hero {
      height: 450px;
    }
    
    .hero-content h1 {
      font-size: 20px;
    }
    
    .floating-icons {
      right: 5px;
    }
    
    .icon {
      padding: 8px;
      font-size: 16px;
    }
  } */

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

.logo img {
    width: 100px;
    height: 100px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-btn {
    background-color: #f15a3c;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.hero {
    background-image: url('./images/background-image.png');
    background-size: cover;
    background-position: center;
    height: 300px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    color: #1d3557;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
    padding: 0 20px;
    padding-top: 80px;
}

.floating-icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.icon {
    /* background-color: #25d366; */
    /* color: white; */
    padding: 12px;
    border-radius: 5px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu toggle button - hidden by default */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.close-menu {
  display: none; /* Hidden by default */
  position: fixed;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px; /* Larger than the menu toggle */
  cursor: pointer;
  color: #000;
  z-index: 100;
}

/* Dropdown styles - ADDED */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: none;
    z-index: 20;
    padding: 10px;
    margin-top: 5px;
}

.dropdown-content a {
    display: block;
    padding: 10px;
    color: #000;
    text-decoration: none;
    transition: background-color 0.2s;
    border-radius: 5px;
    width: 100%;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

.dropdown.active .dropdown-content {
    display: block;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        z-index: 50;
    }
    
    .logo img {
        width: 80px;
        height: 80px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 50;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        padding: 15px 10px;
    }
    
    .contact-btn {
        margin-top: 15px;
        /* width: 100%; */
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 24px;
        padding: 0 15px;
    }
    
    .floating-icons {
        right: 10px;
    }
    
    
    .icon {
        padding: 10px;
        font-size: 18px;
    }
    
    /* Mobile dropdown styles - ADDED */
    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: #f5f5f5;
        margin: 0;
        padding: 0;
        border-radius: 5px;
    }
    
    .dropdown-content a {
        padding-left: 20px;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }
    
    .logo img {
        width: 60px;
        height: 60px;
    }
    
    .hero {
        height: 250px;
    }
    
    .hero-content h1 {
        font-size: 20px;
        padding-top: 50px;

    }
    
    .floating-icons {
        right: 5px;
    }
    
    .icon {
        padding: 8px;
        font-size: 16px;
    }
}

 .whats-float {
            position: fixed;
            transform:translate(128px,0px);
            top:25%;
            right:0;
            width:170px;
            overflow: hidden;
            background-color: #25d366;
            color: #FFF;
            border-radius: 4px 0 0 4px;
            z-index: 10;
            transition: all 0.5s ease-in-out;
            vertical-align: middle;
        }
        .whats-float a span {
            color: white;
            font-size: 15px;
            padding-top: 8px;
            padding-bottom: 10px;
            position: absolute;
            line-height: 16px;
            font-weight: bolder;
        }
        
        .whats-float i {
            font-size: 30px;
            color: white;
            line-height: 30px;
            padding: 10px;
            transform:rotate(0deg);
            transition: all 0.5s ease-in-out;
            text-align:center;
        
        }
        
        .whats-float:hover {
            color: #FFFFFF;
            transform:translate(0px,0px);
        }
        
        .whats-float:hover i  {
            transform:rotate(360deg);
        }
        
        .phone-float {
            position: fixed;
            transform:translate(128px,0px);
            top:35%;
            right:0;
            width:170px;
            overflow: hidden;
            background-color: #25d366;
            color: #FFF;
            border-radius: 4px 0 0 4px;
            z-index: 10;
            transition: all 0.5s ease-in-out;
            vertical-align: middle
        }
        .phone-float a span {
            color: white;
            font-size: 15px;
            padding-top: 8px;
            padding-bottom: 10px;
            position: absolute;
            line-height: 16px;
            font-weight: bolder;
        }
        
        .phone-float i {
            font-size: 30px;
            color: white;
            line-height: 30px;
            padding: 10px;
            transform:rotate(0deg);
            transition: all 0.5s ease-in-out;
            text-align:center;
        
        }
        
        .phone-float:hover {
            color: #FFFFFF;
            transform:translate(0px,0px);
        }
        
        .phone-float:hover i  {
            transform:rotate(360deg);
        }