/* Base Reset & Fonts */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #0e1a2b;
  color: white;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navigation */
nav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(14, 26, 43, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideInDown 0.6s ease-out forwards;
}

@keyframes slideInDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.logo {
  width: 80px;
  height: auto;
  border-radius: 19%;
}

.logo-text {
  color: #40E0D0	;
  padding-left: 20px;
  padding-top: 25px;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo-container {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-top: -15px;
}


nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li {
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}

nav ul li:hover {
  color: #00d9ff;
}

nav ul li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #00d9ff;
  transition: width 0.3s ease-in-out;
}

nav ul li:hover::after {
  width: 100%;
}

/* Dropdown Menu */
nav ul li.dropdown {
  position: relative;
}

nav ul li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: rgba(14, 26, 43, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 6px 12px rgba(0, 206, 209, 0.15);
  z-index: 1000;
}

nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}

nav ul li.dropdown .dropdown-menu li {
  padding: 10px 16px;
  white-space: nowrap;
  transition: background 0.3s;
}

nav ul li.dropdown .dropdown-menu li:hover {
  background-color: rgba(0, 217, 255, 0.1);
}

nav ul li.dropdown .dropdown-menu li a {
  display: block;
  color: white;
}

/* Section header */
section h1 {
  text-align: center;
  padding: 30px 10px 10px;
  font-size: 2.2rem;
  color: #00CED1;
  animation: fadeInUp 1s ease forwards;
  margin-top: 7%;
}

section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  animation: fadeIn 1.2s ease forwards;
}

section a {
  color: #00d9ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

section a:hover,
section a:focus {
  text-decoration: underline;
  outline: none;
}

/* Contact container */
.contact-container {
  max-width: 1100px;
  margin: 0 auto 60px;
  display: flex;
  gap: 40px;
  padding: 0 20px;
  flex-wrap: wrap;
  justify-content: center;
  color: #E8EEF3;
  animation: fadeInUp 1.3s ease forwards;
}

/* Contact form styling */
.contact-form {
  flex: 1 1 400px;
  background-color: #002b5b;
  padding: 30px 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 206, 209, 0.3);
  animation: fadeIn 1.4s ease forwards;
}

.contact-form h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #00CED1;
  font-weight: 600;
  font-size: 1.8rem;
  text-align: center;
  animation: fadeInUp 1.5s ease forwards;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Form inputs and textarea */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
  font-family: 'Segoe UI', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease, outline 0.3s ease;
  animation: fadeIn 1.6s ease forwards;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: 2px solid #00CED1;
  background-color: #e0f7fa;
  color: #002B5B;
}

/* Button */
.contact-form button {
  background-color: #00CED1;
  border: none;
  color: #002B5B;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  animation: fadeIn 1.8s ease forwards;
}

.contact-form button:hover,
.contact-form button:focus {
  background-color: #00b8ba;
  transform: scale(1.05);
  outline: none;
}

/* Thank you message */
#thankYouMsg {
  display: none;
  color: #7ef97e;
  text-align: center;
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  animation: fadeIn 2s ease forwards;
}

/* Map styling */
.map {
  flex: 1 1 450px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 206, 209, 0.3);
  animation: fadeIn 1.7s ease forwards;
}

.map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 8px;
}

/* Footer styles */
footer {
  background-color: #002147;
  color: #E8EEF3;
  padding: 30px 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}

/* Address on the left */
.footer-left {
  flex: 1;
  min-width: 200px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Center text */
.footer-center {
  flex: 1;
  min-width: 250px;
  text-align: center;
  font-style: italic;
  font-weight: 500;
  color: #00CED1;
  font-size: 1rem;
}

.footer-center a {
  color: #E8EEF3;
  text-decoration: underline;
  margin: 0 5px;
}

.footer-center p {
  margin: 10px 0;
}

/* Right section with contact + icons */
.footer-right {
  flex: 1;
  min-width: 200px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: #E8EEF3;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.social-icon {
  width: 26px;
  height: 26px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15);
}

/* Filters for icon colors */
.linkedin {
  filter: invert(18%) sepia(98%) saturate(7490%) hue-rotate(199deg) brightness(90%) contrast(100%);
}
.instagram {
  filter: invert(23%) sepia(93%) saturate(4112%) hue-rotate(330deg) brightness(92%) contrast(100%);
}
.facebook {
  filter: invert(28%) sepia(78%) saturate(1715%) hue-rotate(203deg) brightness(98%) contrast(102%);
}
.whatsapp {
  filter: invert(41%) sepia(86%) saturate(622%) hue-rotate(90deg) brightness(94%) contrast(96%);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left,
  .footer-center,
  .footer-right {
    align-items: center;
    text-align: center;
  }
  .footer-right {
    align-items: center;
  }
}


/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.25rem); /* ~20px */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-1rem); /* ~15px */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive animation timing */
@media (max-width: 900px) {
  body {
    animation-duration: 1.3s;
  }

  section h1,
  .contact-container,
  .contact-form h2,
  footer {
    animation-duration: 1.3s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  nav {
    animation-duration: 0.8s;
  }

  .contact-form button {
    animation-duration: 1.5s;
  }
}

/* Responsive Layout */
/* @media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    padding: 0 15px;
  }

  nav ul {
    gap: 15px;
  }

  footer .footer-container {
    flex-direction: column;
    align-items: center;
  }

  footer .footer-right {
    margin-left: 0;
    margin-top: 20px;
  }

  footer .footer-middle {
    margin-left: 0;
    margin-top: 20px;
  }
} */
