@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  font-family: "Poppins", sans-serif;
}

/* Global Tags */

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: rgb(35, 35, 85);
}

span {
  font-size: 0.9rem;
  color: #757373;
}

h6 {
  font-size: 1.1rem;
  color: rgb(24, 24, 49);
}

/* Navigation */
nav{
  position: fixed;
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 8vw;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

nav img{
  width: 120px;
  cursor: pointer;
}

nav .navigation ul{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

nav .navigation ul li{
  list-style: none;
  margin-left: 30px;
}

nav .navigation ul li a{
  text-decoration: none;
  color: rgb(21,21,100);
  font-size: 16px;
  font-weight: 500;
}
nav .navigation ul li a.active,
nav .navigation ul li a:hover{
  color: #a92a28;
}

/* Home */

#home{
  background-image: linear-gradient(rgba(9,5,54,0.3),rgba(5,4,46,0.7)),url("images/background\ home.JPG");
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 40px;
}

#home h2{
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-size: 2.5rem;
  letter-spacing: 1px;
}

#home p{
  width: 100%;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
  line-height: 25px;
}

#home .btn{
  margin-top: 30px;
}

#home a{
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  background-color: #fff;
  font-weight: 600;
  border-radius: 5px;
}

#home a.blue {
  color:#fff;
  background: rgb(21, 53, 100);
  transition: 0.3s ease;
}

#home a.blue:hover {
  color:rgb(21,21,100);
  background: #fff;
}

#home a.yellow {
  color:#fff;
  background: #a92a28;
  transition: 0.3s ease;
}

#home a.yellow:hover {
  color:rgb(21,21,100);
  background: #fff;
}

/* features */

#features{
  padding: 170px;
  text-align: center;
}

#features .fea-base{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 1rem;
  margin-top: 50px;
  padding-top: 50px;
}

#features .fea-box {
  background: #F9F9FF;
  text-align: start;
}

#features .fea-box i {
  font-size: 2.3rem;
  color: rgb(44, 44, 80);
}

#features .fea-box h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(46, 46, 59);
  padding: 13px 0 7px 0;
}

#features .fea-box p {
  font-size: 1rem;
  font-weight: 400;
  color: rgb(70, 70, 87);
}

/* duty */

#duty {
  padding: 100px;
  text-align: center;
}

#duty .dutys {
  text-align: center;
  background: #F9F9FF;
  height: auto;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#duty .dutys img {
  width: 75%;
  height: 600px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.duty-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f9f9f9;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.dutys {
  width: 100%;
  max-width: 1100px;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dutys img {
  width: 100%;
  max-height: 480px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
/* registration */

#registration{
  padding: 6vw 8vw;
  background-image: linear-gradient(rgba(99,112,168,0.5),rgba(81,91,233,0.5)),url(images/signup.jpg);
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#registration .form{
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 40px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135, 0.37);
  width: 100%;
  max-width: 400px;
}

#registration .form input, 
#registration .form select {
  margin: 20px 0;
  padding: 15px;
  border: 1px solid rgb(84,80,241);
  outline: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #413c3c;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  width: 100%;
}

#registration .form input:focus, 
#registration .form select:focus {
  border-color: rgb(21,21,100);
  box-shadow: 0 0 8px rgba(21,21,100,0.5);
}

#registration .form input::placeholder{
  color: #413c3c;
  font-weight: 500;
  font-size: 0.9rem;
}

#registration .form .btn{
  margin-top: 20px;
  text-align: center;
}

#registration .form a.yellow {
  text-decoration: none;
  font-size: 0.9rem;
  padding: 13px 35px;
  font-weight: 600;
  border-radius: 5px;
  color: #fff;
  background: #a92a28;
  transition: 0.3s ease;
  display: inline-block;
  text-align: center;
  width: 100%;
}

#registration .form a.yellow:hover {
  color: rgb(21,21,100);
  background: #fff;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

footer {
  text-align: center;
  padding: 5px;
  background-color: #1b263b;
  color: #F9F9FF;
}

/* responsive */

@media (max-width: 769px) {
}

@media (max-width: 475px) {
}
