/* Reset and Base Styles */
:root {
  --colorMain4Rgba1: rgba(0, 102, 204, 0.9); /* Replace with your actual color if needed */
  --colorMain2Rgba1: rgba(0, 180, 255, 0.9); /* Replace with your actual color if needed */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to right, var(--colorMain4Rgba1) 0%, var(--colorMain2Rgba1) 100%);
  padding: 15px 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}

.navbar img {
    height: 50px; /* adjust as needed */
    width: auto;
  }

.navbar img.bigger-logo {
  height: 70px; /* or whatever size you want */
}

.navbar img.bigger-logo {
    transform: scale(2.5); /* 40% bigger */
    transform-origin: center;
  }

/*==========================*/

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 3px;
}

/* Mobile Menu (social-icons) */
.social-icons {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.social-icons a {
  color: white;
  margin-left: 15px;
  font-size: 18px;
}

/* Responsive Nav */
/*@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .social-icons {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(0, 0, 0, 0.85);
    flex-direction: column;
    padding: 10px 15px;
    border-radius: 6px;
  }

  .social-icons.show {
    display: flex;
  }

  .social-icons a {
    margin: 10px 0;
  }
}*/


/*===========================*/

.social-icons i {
  color: #fff;
  font-size: 18px;
  margin-left: 15px;
  transition: transform 0.2s ease;
}

.social-icons i:hover {
  transform: scale(1.1);
}


.social-icons a {
  margin-left: 15px;
}

.social-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* White icons */
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}



/* Background Video */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Centered Form */
.form-container {
  width: 90%;
  max-width: 700px;
  margin: 5% auto;
  padding: 30px;
  /*background-color: rgba(255, 255, 255, 0.95);*/
  background-color: rgba(255, 255, 255, 0.8); /* Slight transparency */
  backdrop-filter: blur(4px);
  /*...................................*/
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  text-align: center;
}

.form-container h2 {
  margin-bottom: 20px;
  color: #333;
}
label{
  margin-bottom: -10px!important;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

form button {
  background-color: #0066cc;
  color: white;
  padding: 12px;
  border: none;
  width: 100%;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background-color: #004999;
}

/* Counter Section */
.counter-section {
  background-color: #f7f7f7;
  background: #fff url(../assets/images/footer-bg.jpg) center no-repeat;
  text-align: center;
  padding: 40px 20px;
  margin-top: 50px;
  display: none;
 /* left: 0;
  right: 0;*/
  /*position: fixed;*/
}

.counter-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  /*color: #222;*/
  color: #FFF;
}

.counter {
  font-size: 48px;
  font-weight: bold;
  /*color: #0066cc;*/
  color: #FFF;
}

/* Responsive Design */
@media (max-width: 600px) {
  .form-container {
    margin-top: 20%;
    padding: 20px;
  }

  .counter-section h3 {
    font-size: 20px;
  }

  .counter {
    font-size: 36px;
  }
}

/* Form steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.button-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.button-group button {
  flex: 1;
}

.confirm-container {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  max-width: 700px;
  /*height: 200px;*/
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#loadshow{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff url(../images/loading.svg) center no-repeat;
  z-index:10000;
  cursor: wait;
  padding: 100px 50px;
  border-radius: 10px;
  /*opacity: 0.9;*/
  
}


.instruction-section {
  background: linear-gradient(90deg, #002868 0%, #ffffff 50%, #bf0a30 100%); /* USA colors */
  padding: 40px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin-top: -20px;
}

.instruction-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
}

.instruction-container h2 {
  color: #002868;
  margin: 0 0 15px 0; /* remove top gap, keep bottom space */
  font-size: 1.8rem;
}

.instruction-container p {
  color: #333;
  font-size: 1.6rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .instruction-container p{
    font-size: 1.2rem;
  }
}




