
/* ================= HEADER ================= */
/* ================= HEADER ================= */

.hdr{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
}

/* MAIN HEADER */
.hdr-inner{
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;

    /* FULL TRANSPARENT */
    background: transparent;

    /* GLASS EFFECT */
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(18px);

    transition: all 0.4s ease;
}

/* SCROLL HEADER */
.hdr.scrolled .hdr-inner{
    background: rgba(0,0,0,0.78);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

/* LOGO */
.hdr-logo img{
    height: 55px;
    width: auto;
    display: block;
   margin-right:300px !important;
}

/* MENU */
.hdr-left ul{
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hdr-left ul li{
    position: relative;
}

.hdr-left ul li a{
    color: #fff !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.hdr-left ul li a:hover{
   /* color: #d4ff00 !important; */
	color:#fff;
}

/* RIGHT */
.hdr-right{
    display: flex;
    align-items: center;
    gap: 18px;
}

.hdr-work{
    color: #fff !important;
    text-decoration: none;
      background: #fff;
    color: #000 !important;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

/* CTA */
.hdr-cta{
    background: #fff;
    color: #000 !important;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hdr-cta:hover{
    transform: translateY(-2px);
}

/* MOBILE */
@media(max-width:992px){

    .hdr-inner{
        height: 72px;
        padding: 0 18px;
    }

    .hdr-logo{
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

}
/* ================= MAIN CONTAINER ================= */
.mega-parent > .sub-menu{
  position:fixed;
  top:90px;
  left:50%;
  transform:translateX(-50%);
 

  width:1200px;
  padding:35px 40px;

  display:flex;
  justify-content:space-between;
  gap:40px;

  background:rgba(25,25,25,0.94);
  backdrop-filter:blur(35px);

  border-radius:22px;
  border:1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 0 40px rgba(255,255,255,0.05);

  opacity:0;
  visibility:hidden;
  transition:0.35s ease;
   align-items:flex-start;
  z-index:9999;
}
	.sub-menu .sub-menu{
		padding:0px;
	}
/* SHOW */
.mega-parent:hover > .sub-menu{
  opacity:1;
  visibility:visible;
}

/* ================= GLOW EFFECT ================= */
.mega-parent > .sub-menu::before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:180px;
  height:100%;
  background:linear-gradient(to right, rgba(120,255,150,0.2), transparent);
  filter:blur(30px);
}

.mega-parent > .sub-menu::after{
  content:'';
  position:absolute;
  right:0;
  top:0;
  width:180px;
  height:100%;
  background:linear-gradient(to left, rgba(255,180,120,0.2), transparent);
  filter:blur(30px);
}

/* ================= COLUMNS ================= */
.mega-parent > .sub-menu > li{
  width:22%;
}

/* TITLE */
.mega-parent > .sub-menu > li > a{
  font-size:20px;
  font-weight:600;
  color:#fff;
  margin-bottom:15px;
  display:block;
}

/* ================= INNER LIST ================= */
.mega-parent .sub-menu .sub-menu{
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* ================= ITEM CARDS ================= */
.mega-parent .sub-menu .sub-menu li a{
  display:flex;
  align-items:center;
  gap:12px;

  padding:5px 10px;
  border-radius:14px;

  background:rgba(255,255,255,0.08);
  color:#fff;
  text-decoration:none;

  box-shadow:
    inset 0 0 10px rgba(255,255,255,0.05),
    0 5px 20px rgba(0,0,0,0.4);

  transition:0.3s ease;
  width:250px;
}

/* HOVER */
.mega-parent .sub-menu .sub-menu li a:hover{
  background:rgba(255,255,255,0.18);
  transform:translateX(6px);
}

/* ================= ICON ================= */
.mega-parent .sub-menu .sub-menu li a img{
  width:40px;
  height:40px;
  border-radius:50%;
  padding:2px;

  background:rgba(255,255,255,0.12);
  object-fit:contain;

  box-shadow:0 4px 12px rgba(0,0,0,0.3);
}

/* ================= MOBILE ================= */
@media(max-width:992px){

  .mega-parent > .sub-menu{
    position:static;
    transform:none;
    width:100%;
    flex-direction:column;
    padding:20px;
    opacity:1;
    visibility:visible;
    background:#111;
  }

  .mega-parent > .sub-menu > li{
    width:100%;
  }

}
/* container */
.top-marquee{
  width:100%;
  overflow:hidden;
  background:#111;
  padding: 0;
}

/* track */
.marquee-track{
  display:flex;
  width:max-content;
  animation:scroll 15s linear infinite;
}

/* group */
.marquee-group{
  display:flex;
  gap:60px;
  padding-right:60px; /* spacing fix */
}

/* text */
.marquee-group span{
  color:#fff;
  font-size:14px;
  white-space:nowrap;
  
}

/* animation */
@keyframes scroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}
/* marquee hide animation */
.top-marquee{
  transition:all 0.35s ease;
}

/* hidden state */
.hdr.scrolled .top-marquee{
  transform:translateY(-100%);
  opacity:0;
  height:0;
  padding:0;
  overflow:hidden;
}

/* ================= MOBILE RESPONSIVE ================= */
@media(max-width:992px){

  /* hide desktop nav */
  .hdr-left{
    display:none;
  }

  .hdr-work{
    display:none;
  }

  /* header adjust */
  .hdr-inner{
    padding:0 15px;
    height:70px;
  }

  /* logo center */
  .hdr-logo{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
   
  }
	

  /* toggle show */
  .hdr-toggle{
    display:flex;
    flex-direction:column;
    cursor:pointer;
  }

  .hdr-toggle span{
    width:24px;
    height:2px;
    background:#fff;
    margin:1px 0;
  }

}

/* ================= MOBILE DRAWER ================= */
.mobile-menu{
  position:fixed;
  top:0;
  right:-100%;
  width:85%;
  height:100vh;
  background:#f2f2f2;
  padding:20px;
  z-index:99999;
  transition:0.4s ease;
  overflow-y:auto;
}

.mobile-menu.active{
  right:0;
}

/* CLOSE */
.mobile-top{
  display:flex;
  justify-content:flex-end;
  font-size:22px;
  cursor:pointer;
  margin-bottom:20px;
}

/* LINKS */
.mobile-links{
  display:flex;
  flex-direction:column;
  gap:15px;
  margin-bottom:20px;
}

.mobile-links a{
  text-decoration:none;
  color:#111;
  font-size:16px;
}

/* BOX */
.mobile-box{
  background:#1a1a1a;
  padding:15px;
  border-radius:14px;
  margin-bottom:15px;
}

.mobile-box h4{
  margin-bottom:10px;
  font-size:18px;
 color:#fff;
}

.mobile-box li{
  font-size:14px;
  margin-bottom:8px;
  color:#fff;
}

/* ================= TABLET ================= */
@media(min-width:768px) and (max-width:1024px){

  .hdr-inner{
    padding:0 20px;
  }

  .mega-parent > .sub-menu{
    width:95%;
    left:50%;
    transform:translateX(-50%);
  }

}
/* ===== CALL ICON ===== */
.hdr-call{
  display:none;
}
	.hdr-toggle{
		display:none;
	}
.hdr-call a{
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.2);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  text-decoration:none;
}

/* ===== GRID ICON ===== */
.menu-grid{
  width:26px;
  height:26px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
}
.menu-grid span{
  width:6px;
  height:6px;
  background:#fff;
  border-radius:50%;
}

/* ===== ACTIVE → CLOSE (X) ===== */
.hdr-toggle.active .menu-grid{
  display:none;
}

.hdr-toggle.active::before,
.hdr-toggle.active::after{
  content:'';
  position:absolute;
  width:24px;
  height:2px;
  background:#fff;
  top:50%;
  left:50%;
}

.hdr-toggle.active::before{
  transform:translate(-50%,-50%) rotate(45deg);
}
.hdr-toggle.active::after{
  transform:translate(-50%,-50%) rotate(-45deg);
}

/* ===== MOBILE ===== */
@media(max-width:992px){

  .hdr-call{
    display:block;
  }
.hdr-toggle{
		display:block;
	}
  .hdr-left,
  .hdr-work,
  .hdr-cta{
    display:none;
  }

  .hdr-inner{
    height:70px;
    padding:0 20px;
  }

  .hdr-logo{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
  }
	.close-menu{
		color:#000;
	}

}
/* WhatsApp icon style */
.hdr-call a{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:45px;
  text-decoration:none;
  transition:0.3s;
}

/* hover */
.hdr-call a:hover{
  background:#25D366; /* WhatsApp green */
  color:#fff;
}
.mobile-box li a{
  color:#fff;
  text-decoration:none;
  display:block;
  transition:0.3s;
}

.mobile-box li a:hover{
  opacity:0.7;
  padding-left:5px;
}
