
/* HEADER */
.header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    padding:20px 0;
    transition:.3s;
    background:transparent;
    display: flex;
    justify-content: center;
}

.header.scrolled{
    background:#053e7d;
    padding:12px 0;
}

/* NAV */
.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

}

/* LOGO */
.logo{
    font-size:22px;
    color:#fff;
    font-weight:600;
}

.logo span{
    font-weight:400;
}

/* MENU */
.menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}


/* --- MEGA MENU LOGIC --- */
.menu-item.has-mega {
    position: relative;
    /*padding: 10px 0;*/
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1150px;
    background: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-radius: 4px;
    padding: 15px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1001;
}

.menu-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

/* The Arrow */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.mega-container {
    display: flex;
    gap: 0; /* Flush image to content */
}

.mega-image {
    flex: 0 0 350px;
    height: 350px;
}

.mega-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding: 30px;
}

.mega-column h4 {
    color: #053e7d;
    font-size: 13px;
    margin-bottom: 20px;
    font-weight: 700;
}

.mega-column ul {
    list-style: none;
    padding: 0;
}

.mega-column ul li {
    margin-bottom: 12px;
}

.mega-column ul li a {
    color: #444 !important;
    text-transform: none; /* Keep text natural */
    font-weight: 400;
    font-size: 14px;
}

.mega-column ul li a:hover {
    color: #1abc9c !important;
}

/* ACTIONS */
.actions{
    display:flex;
    align-items:center;
    gap:15px;
}

.search-btn{
    background:#1abc9c;
    color:#fff;
    border:none;
    padding:10px 16px;
    border-radius:6px;
    cursor:pointer;
}

.user{
    color:#fff;
    font-size:18px;
}

/* HERO */
.hero {
    height:500px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

/* OVERLAY */
.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.5);
}

/* HERO CONTENT */
.hero-content{
    position:relative;
    z-index:2;
}

.hero h1{
    font-size:42px;
    margin-bottom:10px;
    font-weight: 700;
}

.hero p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

/* RESPONSIVE */
@media (max-width:768px){

    .menu{
        display:none;
    }

    .hero h1{
        font-size:28px;
    }
}

  /* LOGO STRIP INSIDE HERO */
  .partner-logos {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    overflow: hidden;
  }

  .logo-track {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* remove if you want scroll instead */
  }

  .logo-track img {
    height: 26px;
    width: auto;
    object-fit: contain;
    background: transparent;
    opacity: 0.9;
    transition: opacity 0.3s;
  }

  .logo-track img:hover {
    opacity: 1;
  }

  /* optional: mobile tweak */
  @media (max-width: 768px) {
    .hero {
      height: 400px;
    }

    .logo-track {
      gap: 20px;
    }

    .logo-track img {
      height: 22px;
    }
  }