/* RESET & GLOBAL STYLES */


*, body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: ' Montserrat', Roboto;
  }

  h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 0.5em;
}

button{
   font-family: 'Poppins', sans-serif;
}

/* NAVIGATION BAR */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background-color: #06080a;
  color: white;
  position: relative;
  
}
.logo img{
  width: 150px;
  height: 70px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
  padding: 10px;
}

.nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.nav-list p {
  margin: 0;
  cursor: pointer;
  color: aliceblue;
}

.nav-list button {
  padding: 20px 40px;
  background-color: white;
  color: black;
  font-weight: bolder;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.nav-list button:hover{
    background-color: #e17173;
}

/* BANNER SECTION */
.banner {
  height: 96vh;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  gap: 40px;
  flex-wrap: wrap;
  overflow: hidden;
  z-index: 1;
  color: black;
 
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('./Screenshot 2025-07-14 084504.png') no-repeat center center;
  background-size: cover;
  filter: blur(10px) brightness(0.6);
  opacity: 0.5;
  z-index: -2;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0065fd, #c9e7fc);
  opacity: 0.9;
  z-index: -1;
}

.info {
  flex: 1;
  max-width: 50%;
  animation: slideInUp 1s ease-out forwards;
  animation-delay: 0.2s;
}

.info-one h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.info-two p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.verify-button {
  margin-top: 20px;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  background-color: #ff3b3f;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.banner-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s ease-in-out forwards;
  opacity: 0;
}

.banner-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  animation: slideInRight 1s ease-out forwards;
  opacity: 0;
}

/* ABOUT US SECTION */
.about-us {
  height: 95vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 60px 100px;
  gap: 50px;
  animation: slideInUp 1s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.about-us-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  animation: slideInUp 1s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.about-us-info {
  max-width: 500px;
  color: #000;
}

.about-us-info-one h1 {
  font-size: 22px;
  font-weight: 600;
  color: #111;
  margin-bottom: 20px;
}

.about-us-info-two p {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 25px;
}

.about-us-info-three {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.know-about-us {
  padding: 12px 24px;
  background-color: #f72585;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.know-about-us:hover {
  background-color: #d61d6a;
}

/* FORM SECTION */
.containerr {
  height: 95vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px;
  gap: 30px;
  background: linear-gradient(to right, #ccd3e8, #272c30);
   animation: slideInUp 1s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.form-box {
  background-color: #2d2f33;
  padding: 45px;
  border-radius: 10px;
  color: white;
  width: 400px;
}

.form-box h2 {
  margin-bottom: 20px;
}

.form-box select,
.form-box input {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
}

.form-group {
  display: flex;
  gap: 10px;
}

.form-group select,
.form-group input {
  flex: 1;
}

.continue-btn {
  background-color: #ff2c5f;
  border: none;
  color: white;
  padding: 12px;
  width: 100%;
  margin-top: 15px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.note {
  font-size: 12px;
  color: #ccc;
  margin-top: 10px;
  font-style: italic;
  text-align: center;
}

.image-box img {
  width: 300px;
  border-radius: 10px;
}

/* CARD VALIDATION SECTION */
.card-validation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  gap: 50px;
  background-color: #f5f5f5;
  flex-wrap: wrap;
    animation: slideInUp 1s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.card-image img {
  width: 400px;
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-text {
  max-width: 500px;
}

.card-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-shadow: 1px 1px #ccc;
  margin-bottom: 16px;
}

.card-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}
.card-text button{
    margin-top: 20px;
  padding: 12px 24px;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  background-color: #0e0c0c;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
/* TESTIMONIALS */
.testimonials {
  background-color: #3e4958;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.testimonial {
  max-width: 800px;
  margin: 60px auto;
  font-size: 18px;
  line-height: 1.6;
    animation: slideInUp 1s ease-in forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.user {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
 
}

.user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

.name {
  color: #27b9ff;
  font-weight: bold;
}

.role {
  font-size: 14px;
  color: #ccc;
}

/* VERIFICATION SECTION */
.verification-section {
  background-color: #2e383b;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
}

.verification-section h2 {
  font-size: 22px;
  color: #45c3f1;
  margin-bottom: 10px;
}

.verification-section p {
  font-size: 16px;
  color: #a0cde7;
  margin-bottom: 20px;
}

.verification-section .verify-button {
  background-color: #63d471;
}

.verification-section .verify-button:hover {
  background-color: #4dc75e;
}

/* FOOTER */
.site-footer {
  background-color: #181818;
  color: #ffffff;
  text-align: center;
  padding: 20px 15px;
  font-size: 14px;
  border-top: 1px solid #ccc;
}

.site-footer p {
  margin: 5px 0;
}
.hamburger, .close-icon {
  font-size: 26px;
  cursor: pointer;
  display: none;
  z-index: 100;
  position: absolute;
  right: 20px;
  top: 20px;
  color: white;
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media screen and (max-width: 768px) {
  
    .menu-toggle {
    display: block;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    /* padding: 10px 20px; */
  }
  .menu-toggle, .close-icon {
  font-size: 26px;
  cursor: pointer;
  /* display: none; */
  position: absolute;
  right: 20px;
  top: 20px;
  color: white;
  z-index: 100;
}

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: #111;
    width: 100%;
    padding: 10px 0;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 999;
  }

  .nav-list.show {
    display: flex;
  }

  .nav-list p,
  .nav-list button {
    margin: 10px 20px;
  }

  .banner, .about-us, .containerr, .card-validation {
    flex-direction: column;
    padding: 20px;
    height: auto;
    gap: 30px;
  }

  .info, .banner-image, .form-box, .card-text, .card-image img {
    max-width: 100%;
    width: 100%;
  }

  .testimonial {
    font-size: 16px;
  }

  .about-us-image img,
  .image-box img {
    width: 100%;
  }

  .site-footer {
    font-size: 12px;
    padding: 15px 10px;
  }
}

@media screen and (max-width: 500px) {
  .nav-list button {
    padding: 10px 20px;
  }

  .info-one h1 {
    font-size: 2rem;
  }

  .info-two p,
  .about-us-info-two p {
    font-size: 1rem;
  }

  .verify-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .form-box {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 400px) {
  .nav-list p {
    font-size: 14px;
  }

  .info-one h1 {
    font-size: 1.6rem;
  }

  .verify-button {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .know-about-us {
    padding: 10px 18px;
    font-size: 12px;
  }

  .card-text h2 {
    font-size: 20px;
  }

  .card-text p,
  .testimonial {
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  .hamburger {
    display: block;
  }

  .close-icon {
    display: none;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    background-color: #06080a;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px;
    z-index: 50;
  }

  .nav-list.show {
    display: flex;
  }

  .nav.show .hamburger {
    display: none;
  }

  .nav.show .close-icon {
    display: block;
  }
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Initial state: invisible and shifted */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

/* When in view: animate in */
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Modal styles */
.modal {
  display: none; 
  position: fixed; 
  z-index: 9999; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto; 
  padding: 20px;
  border: 1px solid #888;
  width: 300px;
  text-align: center;
  border-radius: 8px;
}

/* Spinner styles */
.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db; /* Blue color */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 20px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}