* {
            padding: 0px;
            margin: 0px;
            box-sizing: border-box;
            font-family: "Abel", sans-serif;
            font-weight: 400;
            font-style: normal;
        }

        body, html {
            margin: 0px;
            padding: 0px;
            font-family: "Abel", sans-serif;
            background: black;
            width: 100%;
            min-height: 100vh;
            color: white;
        }

        .container {
            background: black;
            min-height: 100vh;
            min-width: 100%;
            padding: 3rem 0;
            
        }

        #emailForm {
            background: black;
        }

        #emailForm h2 {
            color: white;
            margin-bottom: 2rem;
            font-size: 2rem;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            max-width: 600px;
            margin: 0 auto;
        }

        label {
            font-weight: bold;
            color: #333;
            text-align: left;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            padding: 10px;
            border-radius: 6px;
            border: 1px solid #ccc;
            font-size: 14px;
            background-color: #fff;
            width: 100%;
            box-sizing: border-box;
        }

        input:focus,
        textarea:focus {
            outline: none;
            border-color: #4476b0;
            box-shadow: 0 0 5px rgba(68, 118, 176, 0.5);
        }

        .submit-btn {
            background-color: #4476b0;
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            transition: background-color 0.3s;
            margin-top: 10px;
        }

        .submit-btn:hover {
            background-color: #365a8a;
        }

        .form-message {
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 15px;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
            position: relative;
        }

        .form-message.show {
            opacity: 1;
        }

        .form-message.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .form-message.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        .close-message {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            font-size: 18px;
            cursor: pointer;
            color: inherit;
        }

        .g-recaptcha {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 15px 0;
        }

        /* Mobile responsive */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }
            
            form {
                padding: 20px;
                margin: 0;
            }

            #emailForm h2 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }
        }
.custom-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35%;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.98) 0%,
    rgba(20, 20, 20, 0.85) 25%,
    rgba(20, 20, 20, 0.6) 50%,
    rgba(20, 20, 20, 0.3) 75%,
    rgba(20, 20, 20, 0) 100%
  );
  color: white;
  padding: 1rem 2rem;
  z-index: 1;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: riseFade 1s ease-out forwards;
}

@keyframes riseFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-content img {
  object-fit: cover;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.header-content img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
  border: 3px solid #00bfff;
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
  cursor: pointer;
}

.logo {
  max-width: 100%;
  height: auto;
}


.nav-links {
  display: flex;
  gap: 7rem;
  pointer: cursor;
  z-index: 999999;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s ease;
  font-family: "Abel", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
}

.nav-links a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #87ceeb; /* or use your brand color */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: #87ceeb; /* matches underline or any color you like */
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.auth-buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transform: translateY(30px);
  animation: riseFade 1s ease-out forwards;
}

@keyframes riseFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-buttons .signup {
  background-color: #87ceeb;
  color: white;
}

.content {
  text-align: center;
}

.auth-buttons2 {
  display: inline-block;
  margin-top: 1rem;
}

.auth-buttons2 button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transform: translateY(30px);
  animation: riseFade 1s ease-out forwards;
}

@keyframes riseFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
  background: rgb(103, 161, 184);
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;

  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.body-button {
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s;
  padding: 10px 20px;
  border-radius: 100px;
  background: #87ceeb;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  font-size: 15px;
}

.body-button:hover {
  background: rgb(55, 179, 251);
}

.body-button > svg {
  width: 34px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.body-button:hover svg {
  transform: translateX(5px);
}

.body-button:active {
  transform: scale(0.95);
}


.about-section {
  position: relative;
  background-image: url("../public/pic3.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh;
  z-index: 0;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Adjust opacity here */
  z-index: 2;
}

.about-content {
  position: relative;
  z-index: 3;
}

.contact-section {
  background-color: #000; /* Section wrapper */
  padding: 2rem 0;
}


.mobileMenu {
  display: none;

}

.compact-footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 20px 0;
  font-size: 20px;
  line-height: 1.4;
}

.footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 15px;
}

.footer-section h6 {
  color: #3498db;
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section p {
  margin: 0;
  color: #bdc3c7;
}

.social-links {
  margin-top: 8px;
}

.social-links a {
  color: #bdc3c7;
  margin-right: 10px;
  font-size: 16px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  color: #3498db;
}

.copyright {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid #34495e;
  color: #95a5a6;
  font-size: 15px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .compact-footer {
    padding: 15px 0;
    font-size: 11px;
  }

  .footer-section h6 {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


@media (max-width: 768px) {
  .feature {
    flex: 1 1 100%;
  }

  .logo {
    max-width: 100%;
  }


@media (max-width: 650px) {

  .hamburger {
    position: fixed;
    top: 25px;
    right: 30px;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1100; /* above menu */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger div {
    background-color: white;
    height: 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* Transform hamburger into X when active */
  .hamburger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  /* Mobile menu */
  .mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%); /* hidden off screen right */
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow: hidden;
  }

  /* Show menu when active */
  .mobileMenu.active {
    transform: translateX(0);
  }

  .mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-links a {
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    text-align: center;
    padding: 10px 20px;
    user-select: none;
  }

  .mobile-links a:hover {
    background-color: #555;
    border-radius: 5px;
  }
  .hero {
    width: 90%;
  }

  .content {
    margin-top: 3rem;
    width: 90%;
  }

  .lead-text {
    font-size: 1.6rem;
  }

  .nav-links {
    display: none;
  }

  .auth-buttons {
    display: none;
  }

  .row {
    flex-direction: column-reverse !important;
    gap: 2rem;
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .icons1 img {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  h1.display-5 {
    font-size: 1.8rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-align: center;
  }

  .lead.fs-4 {
    font-size: 1rem;
    text-align: justify;
  }

  .d-grid.d-sm-flex {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .body-button {
    font-size: 14px;
    padding: 10px 16px;
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }

  .body-button svg {
    width: 24px;
    height: 24px;
  }

  .auth-buttons2 .button {
    font-size: 14px;
    padding: 10px 16px;
    width: 100%; /* Optional: makes button full width on mobile */
    text-align: center;
  }

  .auth-buttons2 .icon {
    width: 20px;
    height: 20px;
  }

  .hero2 {
    padding: 2rem 1rem;
  }

  .mobilehero2 {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  .auth-buttons2 .button {
    font-size: 14px;
    padding: 10px 16px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .auth-buttons2 .icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
  }

  .d-sm-flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  

  h1.display-5 {
    font-size: 1.8rem;
    padding: 2rem 1rem;
  }

  .card-text {
    font-size: 0.95rem;
    text-align: center;
  }

  .card-img-top {
    height: auto;
    object-fit: cover;
  }

  footer {
    padding: 2rem 1rem;
    text-align: center;
    font-size: 0.9rem;
  }

  footer .row > div {
    margin-bottom: 1.5rem;
  }

  footer h5 {
    font-size: 1.1rem;
  }

  footer p {
    font-size: 0.9rem;
    margin: 0;
  }
}
