* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

p {
  font-size: 16px;
}

a {
  text-decoration: none;
  margin-block: 5px;
}

::-webkit-scrollbar-track {
  border-radius: 20px;
  width: 1rem;
  background: #222;
}

::-webkit-scrollbar-thumb {
  background: #0057b7;
  border-radius: 20px;
}

#top {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./bg1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 700px) {
  #top {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("./bg2.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
}

/* MAIN HEADER */
#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  /* background-color: #0058b747;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px); */
  box-shadow: 0 5px 15px rgba(0, 89, 157, 0.06);
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  /* border-bottom: 2px solid #00bfff; */
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu a {
  text-decoration: none;
  font-size: 18px;
  margin: 0 8px;
  color: #ffffff;
  transition: 0.3s ease-in-out;
  mix-blend-mode: screen;
}

.menu a:hover {
  text-decoration: underline;
  transform: scale(1.05);
}

#header i {
  padding: 10px;
  border: none;
  color: #00bfff;
  background: transparent;
  font-size: 25px;
  font-weight: bold;
  box-shadow: 0 0 10px #00bfff;
  border-radius: 50%;
  margin: 0 0 0 20px;
  transition: 0.3s ease-in-out;
}

#header i:hover {
  color: #fff;
  background: #00bfff;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #63626283;
  
  color: #fff;
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  border-radius: 5px;
  padding: 10px;
}

.dropdown-content a {
  color: #fff;

  padding: 10px 15px;
  display: block;
  text-align: center;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.dropdown-content a:hover {
  text-decoration: underline;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown > a:after {
  content: " ▼";
  font-size: 12px;
}

.active-link {
  font-weight: 999;
  font-size: 20px;
  color: #00bfff;
  border-bottom: 1.8px solid #0057b7;
  padding-bottom: 2px;
}

.service247 {
  padding: 15px 20px;
  border: 1px solid #0057b7;
  box-shadow: 0 0 4px #0057b7;
  color: #0057b7;
  font-weight: bold;
  border-radius: 2px 55px;
}

@media (max-width: 950px) {
  #header {
    display: none;
  }
}

/* RESPONSIVE HEADER SECTION */
#responsive-header {
  display: none;
}

@media (max-width: 950px) {
  #responsive-header {
    display: inherit;
  }
}

.header {
  padding: 10px 7%;
  background: transparent;
  /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); */
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  text-shadow: 1px 1px 1px #000;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


@media only screen and (max-width: 950px) {
  .nav-menu {
    position: fixed;
    top: -100%;
    /* top: 3.5rem; */
    flex-direction: column;
    padding: 60px 0 20px 0;
    background: #8281813b;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    width: 85%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-link {
    color: #1a1a1a;
  }

  .nav-menu.active {
    top: 0;
  }

  .nav-item {
    padding: 10px;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}


/* add styles on elements */
#logo-name {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 3em;
  margin: 10px 10px 0 0;
}

.nav-item {
  list-style: none;
  margin: 0 10px;
  position: relative;
}

.nav-link {
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  color: #00ff2a;
  transition: 0.4s ease;
  font-weight: bold;
}

.nav-link:hover,
.active {
  color: #fff;
  cursor: pointer;
  transform: scale(1.05);
}


@media (max-width: 799px) {
  .nav-item {
    display: flex;
    flex-direction: column;
    align-items: self-end;
    margin: 0 10px;
  }
}

/* HERO SECTION */
#hero {
  min-height: 75vh;
  padding: 20px 17%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.hero-main {
  justify-content: flex-start;
  /* display: flex;
      flex-wrap: wrap; */
  align-items: center;
  /* min-height: 90vh; */
}

#hero h1 {
  font-size: 4.2rem;
  max-width: 600px;
  text-align: left;
  color: #fff;
  margin: 10px 0;
  text-shadow: 2px 2px 2px #00051e;
}

@media (max-width: 910px) {
  #hero {
    padding: 20px 5%;
  }
  #hero h1 {
    font-size: 2.5rem;
    max-width: 900px;
  }
}

#hero h4 {
  text-align: left;
  font-size: 1.3rem;
  color: #00bfff;
  margin: 5px 0;
  text-shadow: 1px 1px 1px #000;
}

.hero-btns {
  gap: 30px;
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-start;
  margin: 20px 0;
}

.hero-btns a {
  font-size: 20px;
  border: none;
  box-shadow: 0px 0px 5px #003e80;
  padding: 10px 15px;
  background: #ffffff56;
  border-radius: 10px;
  color: #003e80;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

.hero-btns a:hover {
  transform: scale(1.08);
  box-shadow: 0px 0px 5px #003e80;
  color: #fff;
  background: #003e80;
}

.heading {
  font-size: 30px;
  /* text-align: center; */
  font-weight: 999;
  margin: 10px 0;
}

.sub-heading {
  font-size: 20px;
  font-weight: 600;
}

.more-link {
  font-weight: bold;
  color: #00051e;
  margin: 10px 0;
}



/* FOOTER */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 30px 5% 10px 5%;
  background-color: #636262;
}

footer p {
  color: #fff;
  margin: 6px 0;
}

footer h4 {
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  padding: 0 0 15px 0;
  border-bottom: 1.5px solid #00bfff;
  max-width: 150px;
}

footer .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  align-items: flex-start;
  vertical-align: top;
  min-width: 300px;
}

footer .col a {
  font-size: 16px;
  color: #ffffff;
  transition: 0.3s;
}

footer li {
  list-style: none;
  margin: 15px 0;
}

footer .follow i {
  font-size: 30px;
}

footer .follow div {
  margin-top: 10px;
}

footer .follow i {
  color: #003e80;
  padding-right: 4px;
  cursor: pointer;
}

footer .follow i:hover,
footer {
  color: #3f010b;
}

footer .copyright {
  width: 100%;
  text-align: center;
}

@media (max-width: 799px) {
  #footer {
    padding: 10px 20px;
  }
}
