@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Plus Jakarta Sans',sans-serif;
  padding-top:90px;
  overflow-x:hidden;
  background:#ffffff;
  color:#081226;
}

a{
  text-decoration:none;
}

ul{
  list-style:none;
}

.container{
  width:100%;
  max-width:1350px;
  margin:auto;
  padding:0 10px;
}

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

.header{
  position:fixed;
  top:0;
  left:0;

  width:100%;
  height:90px;

  z-index:9999;

  background:rgba(255,255,255,0.92);

  backdrop-filter:blur(18px);

  border-bottom:1px solid rgba(10,132,255,0.08);

  transition:0.35s ease;
}

/* SOFT TOP LIGHT */

.header::before{
  content:"";

  position:absolute;
  left:0;
  top:0;

  width:100%;
  height:1px;

  background:linear-gradient(
    to right,
    transparent,
    rgba(72,184,233,0.55),
    transparent
  );
}

.header-wrapper{
  height:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* ================= LOGO ================= */

.logo{
  display:flex;
  align-items:center;
}

.logo img{
  width:240px;
  transition:0.35s ease;
}

.logo:hover img{
  transform:translateY(-2px) scale(1.02);
}

/* ================= NAVBAR ================= */

.navbar{
  display:flex;
  align-items:center;
}

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

.nav-links li{
  position:relative;
}

/* NAV LINKS */

.nav-links li a{
  position:relative;

  font-size:15px;
  font-weight:600;
  color:#0c1730;

  display:flex;
  align-items:center;
  gap:4px;

  transition:0.3s ease;

  padding:8px 0;
}

/* UNDERLINE EFFECT */

.nav-links li a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-2px;

  width:0;
  height:2px;

  border-radius:20px;

  background:linear-gradient(
    90deg,
    #48b8e9,
    #3478ff
  );

  transition:0.35s ease;
}

.nav-links li a:hover::after{
  width:100%;
}

.nav-links li a:hover{
  color:#48b8e9;
}

.nav-links li a i{
  font-size:16px;
  transition:0.3s ease;
}

.nav-links li:hover > a i{
  transform:rotate(180deg);
}

/* ================= DROPDOWN ================= */

.dropdown-menu{
  position:absolute;

  top:52px;
  left:0;

  width:240px;

  padding:12px;

  background:rgba(255,255,255,0.96);

  backdrop-filter:blur(18px);

  border:1px solid rgba(72,184,233,0.12);

  border-radius:18px;

  opacity:0;
  visibility:hidden;

  transform:translateY(14px);

  transition:0.35s ease;

  box-shadow:
  0 25px 60px rgba(8,27,51,0.08);
}

/* GLOW */

.dropdown-menu::before{
  content:"";

  position:absolute;

  top:0;
  left:18px;

  width:70px;
  height:1px;

  background:linear-gradient(
    to right,
    rgba(72,184,233,0),
    rgba(72,184,233,0.8),
    rgba(72,184,233,0)
  );
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu li{
  width:100%;
}

.dropdown-menu li a{
  width:100%;

  padding:13px 15px;

  border-radius:12px;

  font-size:14px;
  font-weight:500;

  color:#10213d;

  transition:0.3s ease;
}

.dropdown-menu li a::after{
  display:none;
}

.dropdown-menu li a:hover{
  background:linear-gradient(
    135deg,
    #48b8e9,
    #2f80ff
  );

  color:#fff;

  transform:translateX(4px);
}

/* ================= RIGHT ACTIONS ================= */

.header-actions{
  display:flex;
  align-items:center;
  gap:14px;
}

/* LOGIN BUTTON */

.login-btn{
  height:48px;

  padding:0 20px;

  border-radius:14px;

  font-size:15px;
  font-weight:700;

  color:#0c1730;

  display:flex;
  align-items:center;
  justify-content:center;

  transition:0.3s ease;
}

.login-btn:hover{
  background:#f2f8ff;
  color:#48b8e9;
}

/* PRIMARY BUTTON */

.primary-btn{
  position:relative;

  height:50px;

  padding:0 26px;

  border-radius:14px;

  background:linear-gradient(
    135deg,
    #48b8e9,
    #3478ff
  );

  color:#fff;

  font-size:15px;
  font-weight:700;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  overflow:hidden;

  box-shadow:
  0 12px 28px rgba(72,184,233,0.24);

  transition:0.35s ease;
}

/* BUTTON SHINE */

.primary-btn::before{
  content:"";

  position:absolute;

  top:0;
  left:-120px;

  width:80px;
  height:100%;

  background:rgba(255,255,255,0.25);

  transform:skewX(-22deg);

  transition:0.55s ease;
}

.primary-btn:hover::before{
  left:130%;
}

.primary-btn:hover{
  transform:translateY(-3px);

  box-shadow:
  0 18px 40px rgba(72,184,233,0.32);
}

.primary-btn i{
  font-size:19px;
  transition:0.3s ease;
}

.primary-btn:hover i{
  transform:translateX(5px);
}

/* ================= MOBILE MENU BUTTON ================= */

.menu-toggle{
  width:50px;
  height:50px;

  border:none;

  border-radius:14px;

  background:linear-gradient(
    135deg,
    #48b8e9,
    #3478ff
  );

  color:#fff;

  display:none;
  align-items:center;
  justify-content:center;

  cursor:pointer;

  box-shadow:
  0 10px 25px rgba(72,184,233,0.24);

  transition:0.3s ease;
}

.menu-toggle:hover{
  transform:translateY(-2px);
}

.menu-toggle i{
  font-size:24px;
}

/* ================= MOBILE MENU ================= */

.mobile-menu{
  position:fixed;
  top:0;
  left:-100%;

  width:100%;
  height:100vh;

  background:rgba(255,255,255,0.98);

  backdrop-filter:blur(22px);

  z-index:99999;

  transition:0.45s ease;

  overflow-y:auto;

  padding:18px 18px 34px;
}

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

/* ================= TOP ================= */

.mobile-top{
  display:flex;
  align-items:center;
  justify-content:space-between;

  margin-bottom:38px;
}

.mobile-logo img{
  width:78px;
}

/* CLOSE */

.close-menu{
  border:none;
  background:transparent;

  cursor:pointer;

  display:flex;
  align-items:center;
  justify-content:center;
}

.close-menu i{
  font-size:42px;
  color:#6c7687;
  transition:0.3s ease;
}

.close-menu:hover i{
  transform:rotate(90deg);
  color:#48b8e9;
}

/* ================= MOBILE LINKS ================= */

.mobile-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* NORMAL LINK */

.mobile-links li > a{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:16px 18px;

  border-radius:18px;

  background:#f8fbff;

  border:1px solid rgba(72,184,233,0.06);

  color:#081226;

  font-size:16px;
  font-weight:600;

  transition:0.3s ease;
}

.mobile-links li > a:hover{
  background:#eef7ff;
  transform:translateX(4px);
}

/* ================= DROPDOWN ================= */

.mobile-dropdown{
  border-radius:18px;
  overflow:hidden;
}

/* TOP */

.mobile-dropdown-top{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:16px 18px;

  background:#f8fbff;

  border:1px solid rgba(72,184,233,0.06);

  border-radius:18px;

  cursor:pointer;

  transition:0.3s ease;
}

.mobile-dropdown-top:hover{
  background:#eef7ff;
}

.mobile-dropdown-top span{
  font-size:16px;
  font-weight:600;
  color:#081226;
}

.mobile-dropdown-top i{
  font-size:18px;
  color:#081226;

  transition:0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-top{
  border-radius:18px 18px 10px 10px;
}

.mobile-dropdown.active .mobile-dropdown-top i{
  transform:rotate(180deg);
}

/* SUBMENU */

.mobile-submenu{
  max-height:0;

  overflow:hidden;

  background:#ffffff;

  transition:0.4s ease;

  margin-top:6px;

  border-radius:12px;

  box-shadow:
  0 12px 28px rgba(0,0,0,0.06);
}

.mobile-dropdown.active .mobile-submenu{
  max-height:320px;
}

/* SUBMENU LINKS */

.mobile-submenu li{
  border-bottom:1px solid #f2f4f7;
}

.mobile-submenu li:last-child{
  border-bottom:none;
}

.mobile-submenu li a{
  width:100%;

  display:flex;
  align-items:center;

  padding:15px 18px;

  font-size:14px;
  font-weight:500;

  color:#10213d;

  transition:0.3s ease;
}

.mobile-submenu li a:hover{
  background:linear-gradient(
    135deg,
    #48b8e9,
    #3478ff
  );

  color:#fff;

  padding-left:24px;
}

/* ================= MOBILE BUTTONS ================= */

.mobile-buttons{
  margin-top:42px;

  display:flex;
  flex-direction:column;
  gap:16px;
}

/* LOGIN */

.mobile-login{
  width:100%;
  height:54px;

  border-radius:16px;

  background:#f5f9ff;

  border:1px solid rgba(72,184,233,0.08);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:15px;
  font-weight:700;

  color:#081226;

  transition:0.3s ease;
}

.mobile-login:hover{
  background:#eef7ff;
}

/* ACCOUNT */

.mobile-account{
  width:100%;
  height:58px;

  border-radius:16px;

  background:linear-gradient(
    135deg,
    #48b8e9,
    #3478ff
  );

  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  font-size:16px;
  font-weight:700;

  box-shadow:
  0 14px 32px rgba(72,184,233,0.24);

  transition:0.35s ease;
}

.mobile-account:hover{
  transform:translateY(-2px);
}

.mobile-account i{
  font-size:20px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

  .navbar,
  .header-actions{
    display:none;
  }

  .menu-toggle{
    display:flex;
  }

}

@media(max-width:768px){

  body{
    padding-top:80px;
  }

  .container{
    padding:0 20px;
  }

  .header{
    height:80px;
  }

  .logo img{
    width:62px;
  }

  .mobile-logo img{
    width:70px;
  }

  .mobile-links li > a,
  .mobile-dropdown-top{
    font-size:15px;
    padding:15px 16px;
  }

  .mobile-submenu li a{
    font-size:14px;
  }

}