@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f4f8fe;
  color: #1c1c1c;
  text-align: center;
  line-height: 1.6;
}

/* ========== Navbar ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 66, 128, 0.08);
  z-index: 1000;
  border-bottom: 3px solid #0044cc; /* Deep Blue Border */
}

.logo img {
  height: 50px;
}

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

.nav-links a {
  color: #0044cc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #002b80;
}

.btn-login {
  background: linear-gradient(to right, #00b4ff, #0044cc); /* Bright Blue Gradient */
  padding: 8px 16px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 180, 255, 0.3);
}

.btn-login:hover {
  background: #002b80;
}

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

@media (max-width: 768px) {
  .menu-icon {
    display: block;
    z-index: 1100;
  }

  .nav-links {
    position: absolute;
    top: 75px;
    right: 0;
    background: #ffffff;
    width: 100%;
    flex-direction: column;
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 66, 128, 0.1);
  }

  .nav-links.active {
    height: auto;
    padding: 10px 0;
  }

  .nav-links li {
    padding: 10px;
    border-bottom: 1px solid #e4eaf5;
  }
}

#userEmail {
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  padding: 0 10px;
  color: #0044cc;
}

/* ========== Hero Section ========== */
.hero-section {
  background: linear-gradient(135deg, #e5f5ff, #cbe6ff);
  color: #003366;
  padding: 80px 20px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 123, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('https://img.icons8.com/clouds/100/cloud.png');
  background-repeat: no-repeat;
  background-position: 90% 10%;
  background-size: 120px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.hero-section h1 {
  font-size: 46px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  animation: fadeInDown 1.2s ease-in;
}

.hero-section p {
  font-size: 20px;
  margin-top: 12px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1.4s ease-in;
}

@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ========== Contact Form ========== */
.contact-form {
  max-width: 620px;
  background: #ffffff;
  padding: 36px;
  margin: 60px auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.1);
  text-align: center;
  transition: transform 0.4s ease;
}

.contact-form:hover {
  transform: translateY(-4px);
}

.contact-form h2 {
  font-size: 30px;
  color: #003366;
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.contact-form h2::after {
  content: "📬";
  position: absolute;
  right: -30px;
  font-size: 26px;
  top: 0;
  animation: bounceIcon 2s infinite;
}

@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  margin: 10px 0;
  border: 2px solid #0099ff;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #00bfff;
  box-shadow: 0 0 12px rgba(0, 153, 255, 0.3);
  outline: none;
}

.contact-form button {
  background: linear-gradient(to right, #00bfff, #007acc);
  color: white;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 153, 255, 0.25);
}

.contact-form button:hover {
  background: #0066cc;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
}

/* ========== Contact Cards ========== */
.contact-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 16px;
  color: #444;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 15px;
  }

  .hero-section h1 {
    font-size: 34px;
  }

  .hero-section p {
    font-size: 17px;
  }

  .contact-form {
    padding: 24px;
    margin: 40px 20px;
  }

  .contact-form h2::after {
    right: -20px;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}

/* ========== Contact Section ========== */
#reach {
  background: linear-gradient(135deg, #e5f5ff, #cbe6ff);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  box-shadow: inset 0 4px 12px rgba(0, 123, 255, 0.05);
  position: relative;
  overflow: hidden;
}

#reach::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://img.icons8.com/ios-filled/100/phone-office.png');
  background-repeat: no-repeat;
  background-position: 95% 20%;
  background-size: 100px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

#reach h2 {
  font-size: 34px;
  color: #003366;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  animation: fadeSlideDown 1s ease;
}

@keyframes fadeSlideDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ========== Contact Box ========== */
.contact-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  width: 260px;
  box-shadow: 0 6px 20px rgba(0, 153, 255, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.15);
}

.contact-box img {
  width: 48px;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.contact-box:hover img {
  transform: rotate(10deg) scale(1.05);
}

.contact-box h3 {
  font-size: 18px;
  margin: 10px 0 5px;
  color: #007acc;
}

.contact-box p {
  color: #444;
  font-size: 15px;
  margin: 0;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  #reach h2 {
    font-size: 28px;
  }

  .contact-box {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
  }
}
/* Footer */
footer {
    position: relative;
    background: linear-gradient(135deg, #041e42, #0f72e4); /* Updated Gradient */
    color: #fff;
    padding: 60px 10%;
    overflow: hidden;
}

.footer-intro {
    max-width: 800px;
    text-align: left;
    margin-bottom: 20px;
}

.footer-intro h2 {
    font-size: 28px;
    color: #00b8ff; /* Accent Heading */
    margin-bottom: 10px;
}

.underline {
    width: 460px;
    height: 2px;
    background: #30eaff; /* Neon Accent Line */
    margin-bottom: 15px;
}

.footer-intro p {
    font-size: 18px;
    color: #d0eaff; /* Softer text tone */
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/circles-light.png');
    opacity: 0.04;
    animation: bgAnimation 8s infinite alternate;
    z-index: 0;
}

@keyframes bgAnimation {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 1;
    margin-top: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    color: #00b8ff; /* Bright Cyan Headings */
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    color: #cce6ff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover,
.footer-section p a:hover {
    color: #30eaff;
}

.footer-section p a {
    color: #cce6ff;
    text-decoration: none;
    transition: color 0.3s;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(48, 234, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: rgba(48, 234, 255, 0.3);
}

.social-icons img {
    width: 24px;
    filter: brightness(0) invert(1); /* Invert for dark bg */
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 30px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 14px;
    color: #d0eaff;
}

.footer-bottom p {
    margin: 4px 0;
}

.policy-link {
    color: #30eaff !important;
    text-decoration: underline !important;
    font-weight: 500;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 9999 !important;
    display: inline-block !important;
}