* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

.navbar-nav .nav-link {
  position: relative;
  color: white;
  padding: 8px 15px;
  transition: color 0.3s ease;
}

/* Underline effect */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #00ffcc;
  /* underline color */
  transition: width 0.3s ease;
}

/* On hover -> expand underline */
.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* On hover -> change text color */
.navbar-nav .nav-link:hover {
  color: #00ffcc;
}

.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay content */
.content {
  position: relative;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 1;

}

.content h1 {
  font-family: 'Caprasimo';
  font-size: 50px;
}

.content p {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 25px;
}

/* Optional: dark overlay for readability */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.mid {
  height: auto;
  width: 100%;
  padding-bottom: 50px;
}

.midrap {
  position: relative;
  width: 90%;
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  margin-top: 10px;
}

.card {
  border-radius: 15px;
  background: radial-gradient(rgba(7, 24, 45, 0.782), rgb(49, 48, 48));
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(201, 184, 184, 0.2);
}

.card-title {
  font-weight: 600;
  color: #2c3e50;
}

.card-text {
  color: #555;
}

.mid1 {
  height: auto;
  width: 100%;
  padding-bottom: 50px;
}

.midrap1 {
  position: relative;
  width: 90%;
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  margin-top: 8px;
}

.content1 {
  position: relative;
  height: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  z-index: 1;
}

.content1 h1 {
  font-family: 'Caprasimo';
  font-size: 50px;
}

.card {
  border-radius: 15px;
  background: radial-gradient(rgba(15, 44, 84, 0.782), rgb(0, 0, 0));

}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(201, 184, 184, 0.2);
}

.card-title {
  font-weight: 600;
  color: #2c3e50;
}

.card-text {
  color: #555;
}

.midrap4 {
  position: relative;
  width: 100%;
  background: radial-gradient(rgba(1, 37, 81, 0.782), rgb(0, 0, 0));
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 20px;
  border-radius: 20px;
}

.midrap4 h1 {
  text-align: center;
  font-size: 30px;
  color: rgb(95, 210, 255);
  position: relative;
  font-family: 'Quantico';
}


.midrap4 p {
  text-align: justify;
  font-size: 18px;
  color: white;
  position: relative;
  padding-top: 20px;
  font-family: 'Tomorrow';
}

.midrap4 ul li{
  text-align: justify;
  font-size: 17px;
  padding: 5px;
  color: white;
  font-family: 'Tomorrow';
}
.midrap5{
  position: relative;
  width: 100%;
  background: radial-gradient(rgba(1, 37, 81, 0.782), rgb(0, 0, 0));
  padding-top: 20px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 20px;
  border-radius: 20px;
}
.footer-content {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  gap: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
}

.footer-column h4 {
  color: greenyellow;
  margin-bottom: 10px;
  font-size: 1rem;
}

.footer-column a {
  color: white;
  text-decoration: none;
  margin-bottom: 5px;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: yellowgreen;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(189, 107, 107, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}