body {
  background-color: #000;
  overflow: hidden;
  transition: background-color 0.5s ease-in-out;
}


.contact-body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #000f1a, #001d3d);
  color: white;
  margin: 0;
  padding: 0;
}

.shine-text {
  font-size: 1.2rem;
  color: #e6ecf2; /* 💡 Keep text readable over dark background */
  position: relative;
  overflow: hidden;
}

.shine-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: lightSweep 3s linear infinite;
}

@keyframes lightSweep {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.contact-hero .shine-text {
  color: #aee4ff !important;
  position: relative;
  overflow: hidden;
  font-size: 1.2rem;
}




.contact-hero {
  background: 
    linear-gradient(135deg, #dbe9f4 0%, #0a1a2f 60%, #000e1a 100%),
    url("https://www.transparenttextures.com/patterns/metal.png");
  background-repeat: repeat;
  background-size: cover;
  padding: 100px 20px 60px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 46px;
  color: #e6ecf2;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin: 0;
}


.contact-hero p {
  font-size: 1.2rem;
  color: #eee;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 60px 30px;
  gap: 40px;

  background: linear-gradient(
    to bottom,
    #a0b8d3 0%,       /* Light steel blue top (transitions into header) */
    #6c85a2 35%,       /* Middle smooth tone */
    #1b2b3d 85%,       /* Dark navy approaching footer */
    #000e1a 100%       /* Match footer/base color */
  );

  border-top: 1px solid #bbb;
  color: #00111f;
}



.contact-box h2 {
  font-size: 2rem; /* Previously 1.5rem or smaller */
  margin-bottom: 20px;
  color: #111; /* Darker for visibility against light background */
}

.contact-box p,
.contact-box a {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #e8f0fa; /* Light blue tone */
  font-weight: 500;
  text-decoration: none; /* ❌ Remove underline */
  transition: color 0.3s ease; /* Smooth color change */
}

.contact-box a:hover {
  color: #87cefa;
 /* Cyan Light */
/* Deep Sky Blue */
/* ✅ Match brand gold on hover */
}
.contact-box p:hover span {
  color: #87cefa; /* Matches your link hover color */
}


.contact-box i {
  font-size: 1.4rem; /* Slightly larger icons */
  margin-right: 12px;
  color: #f4c10f;
}



.map-box {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  height: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  overflow: hidden;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.contact-form-section {
  background: linear-gradient(135deg, #1f2a38, #2f3e4d);

  padding: 60px 20px;
  text-align: center;
}



.contact-form-section h2 {
  color: #f4c10f;
  font-size: 2rem;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  background-color: #f5f5f5;
  font-size: 1rem;
  color: #000;
}

.contact-form button {
  padding: 15px;
  background-color: #f4c10f;
  border: none;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #fff700;
}

.footer-links-row a:hover {
  color: #f4c10f;
}

/* Active link: yellow + underline */
.footer-links-row a.active {
  color: #f4c10f;
  font-weight: 600;
}

.footer-links-row a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f4c10f;
}

/* Optional: Prevent underline on hover for non-active links */
.footer-links-row a:not(.active)::after {
  content: none;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  line-height: 1.6;
  flex-wrap: nowrap;            /* 🔄 Prevent the icon and link from breaking into 2 lines */
  max-width: 100%;
}

.contact-item i {
  color: #f4c10f;
  font-size: 1.3rem;
  min-width: 24px;
  margin-top: 4px;
  flex-shrink: 0;               /* 🛡️ Prevent icon from shrinking on narrow screens */
}

.contact-item a {
  color: #e8f0fa;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  word-break: break-word;
  display: inline-block;
  max-width: calc(100% - 30px); /* 📱 Prevents overflow beside icon */
}


/* Logo Intro Screen (Unified) */
.logo-intro {
  
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOut 1s ease 1.5s forwards;
}

.intro-logo {
  width: 340px;
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

