
header {
    background-color: transparent; 
    padding: 20px 150px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 2;  /* Header z-index */
    transition: padding 0.3s;
    border-bottom: 1px solid rgb(102, 102, 102);
}
  

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}


.logo img {
    width: 150px;
    transition: width 0.3s ease;
}
  

.nav-links {
    display: flex;
    gap: 20px;
}
  
.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.nav-links a:hover {
    color: #FFB22C;
}
  

.cta-button button {
    background-color: #FFB22C;
    color: black;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}
  
.cta-button button:hover {
    background-color: #ffa200;
}
  
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 20px;
    z-index: 3; 
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
}

.close-btn {
    margin-top: 50px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}
  

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 4; 
    justify-content: center;
    align-items: center;
    text-align: center;
}
  

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    text-align: center;
}
  
.mobile-menu a {
    text-decoration: none;
    color: #fff; 
    font-size: 18px;
}
  
@media (max-width: 1024px) {
    header {
      padding: 20px 80px; 
    }

    .nav-links a {
        font-size: 12px;
    }

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

    .logo img {
        width: 120px;
    }

    .cta-button button {
        color: black;
        padding: 10px 10px;
        border: none;
        border-radius: 50px;
        font-size: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s;
    }
}


@media (max-width: 768px) {
    header {
      padding: 20px 50px; 
    }
  
    .nav-links {
      display: none;
    }
  
    .cta-button {
      display: none; 
    }
  
    .hamburger {
      display: flex;
    }
  
    .overlay.active {
      display: flex;
    }
}

@media (max-width: 425px) {
    header {
      padding: 20px 20px; 
    }
}
  