* {
  margin: 0%;
  padding: 0%;
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0%;
  overflow-x: hidden;
}

body .container {
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
}

h2 {
  font-weight: 800 !important;
}

section {
  overflow-x: hidden;
}

/* Navbar tweaks */
.navbar {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 10px 0px;
}

.navbar-brand img {
  width: 100%;
  max-width: 250px;
}

.navbar .nav-link {
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: #ff0202 !important; /* highlight red from design */
}
.navbar .nav-link.active {
  color: #ff0202 !important; /* highlight red from design */
  font-weight: bold;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
  position: absolute;
  right: 0;
  left: auto;
}

.dropdown-item {
  color: black !important;
  font-size: 12px;
}

.dropdown-item:active {
  background-color: #ff0202 !important;
  color: white !important;
}

/* register */

.register h1 {
  font-size: 40px;
  font-weight: 900;
  text-align: center;
}

.register .seets span {
  font-size: 30px;
  font-weight: 900;
  color: #ff0202;
  background-color: #eaeaea;
  padding: 10px;
  margin: 5px;
  border-radius: 10px;
}

/* srction1 */
.section1 {
  background: url(./assets/images/banner-image.jpg) no-repeat center/cover;
  padding: 40px 0px;
}

.section1 h5 {
  font-size: 30px;
  font-weight: 800;
  color: white;
}

.section1 .div1 p {
  color: white;
  font-size: 16px;
}

.section1 .div1 ul {
  color: white;
  font-size: 16px;
  padding-left: 15px;
}

/* contact section starts */

/* div2 */

.section1 form {
  color: white;
  margin-bottom: 30px;
  padding: 15px;
  padding-top: 10px;
  width: 100%;
  /* max-width: 900px; */
  margin: auto;
}

.section1 .form-row {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.section1 form label {
  color: rgb(255, 255, 255);
  margin-bottom: 5px !important;
}

.section1 form select {
  width: 100%;
  border-radius: 0.25rem;
  color: #848484;
  font-size: 14px;
  padding: 8px 3px;
}

.section1 form select option {
  padding: 16px 3px;
}

.section1 .form-control {
  border: 1px solid #efefef;
  margin: auto;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #dfdfdf !important;
  background-clip: padding-box;
  border: 1px solid #efefef;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.section1 .submit-btn {
  color: white;
  font-size: 14px;
  background-color: rgb(255, 2, 2) !important;
  padding: 10px 15px;
  width: 100%;
  border: none;
  margin-top: 10px;
  border-radius: 5px;
}

.section1 a {
  text-decoration: none;
}

.section1 #agree {
  font-size: 12px;
}

/* footer */

footer {
  padding: 80px 0px 40px;
  background-color: #000000;
  position: relative;
}

footer .border-object {
  width: 180px;
  height: 180px;
  position: absolute;
  right: -5%;
  top: 20%;
  z-index: 10;
  overflow-x: clip;
}

.border-object span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: transparent;
}

/* Base borders (1px) */
.border-object .blue {
  border: 1px solid #0fc0ea;
  left: 0;
  top: 0;
}

.border-object .green {
  border: 1px solid #50d650;
  left: 20px;
  top: 20px;
}

.border-object .yellow {
  border: 1px solid #e5ce00;
  left: 40px;
  top: 40px;
}

.border-object .pink {
  border: 1px solid #f50ca0;
  left: 60px;
  top: 60px;
}

/* Highlight Animation Effect */
.border-object span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 2px solid currentColor; /* thicker animated border */
  box-sizing: border-box;
  clip-path: inset(0 100% 0 0); /* start hidden */
  animation: borderMove 10s linear infinite;
}

.border-object .blue::before {
  color: #0fc0ea;
}

.border-object .green::before {
  color: #50d650;
  animation-delay: 0.5s;
}

.border-object .yellow::before {
  color: #e5ce00;
  animation-delay: 1s;
}

.border-object .pink::before {
  color: #f50ca0;
  animation-delay: 1.5s;
}

/* Animation to "travel" the border */
@keyframes borderMove {
  0% {
    clip-path: inset(0 100% 0 0);
  } /* hidden */
  25% {
    clip-path: inset(0 0 100% 0);
  } /* top side */
  50% {
    clip-path: inset(0 0 0 100%);
  } /* right side */
  75% {
    clip-path: inset(100% 0 0 0);
  } /* bottom side */
  100% {
    clip-path: inset(0 100% 0 0);
  } /* back to start */
}

footer .container {
  z-index: 100;
}

footer .container .col-lg-4 img {
  max-width: 300px;
}

footer .container .col-lg-8 div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  row-gap: 25px;
}

footer .container .logo {
  max-width: 330px;
}

footer .container .reach-out {
  max-width: 350px;
  margin: auto;
  display: flex;
}

footer .container form {
  display: flex;
  row-gap: 10px;
}

footer .container form input {
  background-color: transparent;
  border: 1px solid #c3c3c3;
  border-radius: 5px;
  width: 100%;
  padding: 5px 10px;
}

footer .container p {
  color: #c3c3c3;
}

footer .container hr {
  height: 2px;
  background-color: white;
  width: 90%;
  margin: auto;
}

footer .container form button {
  background-color: #ff0202 !important;
  color: white;
  border-radius: 0px;
  font-size: 15px;
  padding: 10px 15px;
}

/* border object */

footer .border-object {
  width: 180px;
  height: 180px;
  position: absolute;
  right: -5%;
  top: 20%;
  z-index: 10;
  overflow-x: clip;
}

footer .border-object span {
  overflow: clip;
}

/* Base borders (1px) */
.border-object .blue {
  border: 1px solid #0fc0ea;
  left: 0;
  top: 0;
}

.border-object .green {
  border: 1px solid #50d650;
  left: 20px;
  top: 20px;
}

.border-object .yellow {
  border: 1px solid #e5ce00;
  left: 40px;
  top: 40px;
}

.border-object .pink {
  border: 1px solid #f50ca0;
  left: 60px;
  top: 60px;
}

.border-object span {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: transparent;
}

/* Highlight Animation Effect */
.border-object span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 2px solid currentColor; /* thicker animated border */
  box-sizing: border-box;
  clip-path: inset(0 100% 0 0); /* start hidden */
  /* animation: borderMove 10s linear infinite; */
}

@media (min-width: 320px) and (max-width: 700px) {
  .navbar-brand img {
    height: 20px !important;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu{
    right: auto;
  }

  .navbar > .container {
    padding: 0px 20px;
  }

  /* section 1 */
  .register {
    padding: unset !important;
  }

  .register h1 {
    font-size: 23px;
    font-weight: 900;
    text-align: center;
  }

  .register .seets span {
    font-size: 25px;
  }

  .section1 h5 {
    font-size: 20px;
  }

  .section1 .div1 p {
    font-size: 14px;
  }

  .section1 .div1 ul {
    font-size: 14px;
  }

  /* form */
  .section1 form {
    padding: 0px !important;
  }

  .form-row > .col,
  .form-row > [class*="col-"] {
    padding: 0px;
  }

  .form-row > .col,
  .form-row .flex-column {
    padding-left: 0px !important;
  }

  /* footer section */
  footer .border-object {
    width: 150px;
    height: 150px;
    position: absolute;
    right: -1%;
    bottom: 0%;
    z-index: 1;
    opacity: 0.3;
  }
}

@media (min-width: 700px) and (max-width: 1025px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu{
    right: auto;
  }
  
  /* form */
  .section1 form label {
    font-size: 12px;
  }

  .section1 form label span {
    font-size: 10px !important;
  }

  /* footer section */
  footer .border-object {
    width: 150px;
    height: 150px;
    position: absolute;
    right: -1%;
    bottom: 0%;
    z-index: 1;
    opacity: 0.3;
  }
}
