/* General styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
  text-decoration: none;
  color: var(--text-color);
}

:root {
  --text-color: #f5f5f5;
  --hover-color: #102466;
  --bg-color: #080825;
  --big-font: 2.5rem;
  --norma-font: 2rem;
  --neon-box-shadow: 0 0 0.5rem #21773e;
  --h2-font: 3rem;
  --font-neon-text-shadow: 0 0 10px rgba(36, 126, 66, 0.3),
    0 0 20px rgba(36, 126, 66, 0.3),
     0 0 30px rgba(36, 126, 66, 0.3),
    0 0 40px rgba(36, 126, 66, 0.3), 
    0 0 70px rgba(36, 126, 66, 0.3),
    0 0 80px rgba(21, 90, 38, 0.3),
     0 0 100px rgba(23, 187, 78, 0.3),
    0 0 150px rgba(34, 122, 45, 0.3);
}

body {
  font-family: Arial, sans-serif ;
  background-color: #f8f9fa;
}

/* Navbar styling */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background-color:var(--bg-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 60px;
  filter: brightness(0) invert(1);
  font-weight: 700;
  font-size:x-large;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  
}

.nav-links li a:hover {
  color: #00adb5;
 
}
  

.auth-buttons {
  display: flex;
  gap: 15px;
}

.sign-in {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
}

.sign-up-btn {
  background-color: #00adb5;
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.sign-up-btn:hover {
  background-color: #007b7f;
}

.mobile-menu-icon {
  display: none;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
}

/* Parent div styling */
#parent-div {
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(250, 251, 252);
  height: 90vh;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
}

#left-box {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

#left-box h1 {
  color: rgb(6, 6, 80);
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#left-box p {
  font-size: 1.2rem;
  line-height: 1.5;
  font-family: arial;
  margin-right: 4vw;
  margin-left: 4vw;
  color: #080825;
}

#right-box {
  width: 55%;
}

.video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

button {
  padding: 12px 24px;
  margin-left: 4%;
  margin-top: 4vh;
  background-color: #11034e;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #12055a;
}







footer {
  background: linear-gradient(135deg, #020246, #07011a ,#030333); /* Smooth gradient effect */
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
  margin-top: 10%;
}
.designer{
  font-size:1vw ;
  font-weight:700 ;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}

.footer-logo-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo-img {
  height: 90px; 
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.footer-logo p {
  font-size: 1rem;
  color: #f8fcf9;
  margin-top: 10px;
  line-height: 1.5;
}

.footer-social a {
  margin: 5px 0;
  color: #00adb5;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ffffff;
}

.footer-contact p {
  font-size: 1rem;
  color: #f8fcf9;
}

.footer-bottom {
  padding: 15px;
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-top: 20px;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 768px) {
  .footer-content {
    padding: 20px;
  }
}




@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
      align-items: center;
  }
  .footer-logo, .footer-links, .footer-social, .footer-contact {
      margin-bottom: 15px;
  }
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-links, .auth-buttons {
      display: none;
  }

  .mobile-menu-icon {
      display: block;
  }

  #parent-div {
      flex-direction: column;
      height: auto;
  }

  #left-box, #right-box {
      width: 100%;
      text-align: center;
  }

  #left-box h1 {
      font-size: 1.8rem;
  }

  #left-box p {
      font-size: 1rem;
  }

  button {
      margin-top: 20px;
  }
}
