@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* COMMON CONTAINER */
.top {
  width: 95%;
  margin: 0 auto;
  max-width: 1600px;
}

/* HEADER */
.header {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  transition: all 0.3s ease;
}

/* SCROLL EFFECT */
.header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* TOP BAR */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

/* LOGO */
.logo img {
  width: 500px;
  transition: 0.3s;
}

/* LOGO SHRINK ON SCROLL */
.header.scrolled .logo img {
  width: 350px;
}

/* SOCIAL ICONS */
.social-icons img {
  margin-left: 15px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.social-icons img:hover {
  transform: translateY(-5px) scale(1.15);
  filter: brightness(1.2);
}

/* BURGER */
.burger {
  font-family: "Poppins", sans-serif;
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* NAVBAR */
/* NAVBAR */
.navbar {
	background-color: #00afef;
}

/* UL RESET */
.navbar .top {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

/* LI */
.navbar .top li {
  margin: 0;
}

/* LINKS */
.navbar a {
  font-family: "Poppins", sans-serif;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 12px 15px;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER */
.navbar a:hover {
	background-color: #ee7800;
	background-position: 255;
}

/* ACTIVE LINK */
.navbar a.active {
  background: #ee7800;
  color: #fff;
  border-radius: 0px;
}

/* MOBILE */
@media(max-width: 900px) {

  /* ACTIVE STYLE (MOBILE) */
  .navbar a.active {
    background: #fff;
    color: #1f9acb;
    font-weight: 600;
    border-left: 4px solid #3c2b5b; /* highlight bar */
  }

  .social-icons {
    display: none;
  }

  .burger {
    display: block;
  }

  .navbar .top {
    flex-direction: column;
    display: none;
    width: 100%;
  }

  .navbar.active .top {
    display: flex;
  }

  .navbar a {
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin: 0;
  }

  .logo img {
  width: 250px;
  transition: all 0.35s ease;
}

/* ON SCROLL */
.header.scrolled .logo img {
  width: 300px;
}
}


@media only screen and (max-width:576px) {

    .logo img {
        width: 350px;
        transition: 0.3s ease;
    }

    .header.sticky .logo img {
        width: 300px;
    }
}



@media only screen and (max-width:400px) {

    .logo img {
        width: 300px;
        transition: 0.3s ease;
    }

    .header.sticky .logo img {
        width: 250px;
    }
}
