/* TOP BAR */

.top-bar {
  background: #4a0057;
  color: #fff;
  font-size: 14px;
  padding: 2px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact span {
  margin-right: 25px;

  color: #ffc107;

  font-weight: 500;
}

.email {
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* Hide phone number on small screens */
@media (max-width: 768px) {
  .contact .phone {
    display: none;
  }
}

.contact i {
  margin-right: 6px;
  /* text-decoration: underline; */
}

.contact i1 {
  margin-right: 6px;
}

/* SOCIAL */

.linkedin-top a {
  width: 30px;
  height: 30px;

  background: #ffc107;
  /* yellow circle */

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #4a0057;
  /* purple text */

  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

/* NAVBAR */

.navbar {
  background: #ffff;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Mobile Menu Icon */
.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #4a0057;
  position: relative;
  z-index: 1001;
  /* Higher than nav */
}

/* LOGO */

.logo {
  position: relative;
  width: 260px;
}

.logo img {
  height: 75px;
  margin-bottom: 10px;
  position: relative;
  top: 10px;
}

/* MENU */

nav ul {
  list-style: none;

  display: flex;

  gap: 35px;
}

nav a {
  text-decoration: none;

  color: #000000;

  font-weight: 400;

  font-size: 14px;

  transition: 0.3s;

  font-family: Poppins;

  font-style: Regular;

  line-height: 100%;
  letter-spacing: 0%;
}

nav a:hover {
  color: #4a0057;
  font-weight: bold;
}

nav a.active {
  color: #4a0057;
  font-weight: 600;
}
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  list-style: none;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 180px;
  z-index: 1;
}

/* DROPDOWN LINKS */

.dropdown-menu li {
  padding: 8px 18px;
}

.dropdown-menu li a {
  color: #334155;
  text-decoration: none;
  font-size: 14px;
  display: block;
}

.dropdown-menu li:hover {
  background: #f1f5f9;
}

/* SHOW DROPDOWN */

.dropdown:hover .dropdown-menu {
  display: block;
}

/* FOOTER */

.footer {
  background: #efefef;
  padding-top: 70px;
}

/* CONTAINER */

.footer-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}

/* LOGO */

.footer-about img {
  height: 75px;
  margin-bottom: 10px;
  position: relative;
  top: -30px;
}

/* TEXT */

.footer-about p {
  font-size: 16px;
  line-height: 1.7;
  color: #3b0a46;
  max-width: 280px;
  position: relative;
  top: -40px;
  left: 10px;
}

/* COLUMNS */

.footer-col h4 {
  color: #3b0a46;
  font-size: 18px;
  margin-bottom: 18px;

  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 9px;
  font-size: 16px;
  color: #333;
}

/* BOTTOM BAR */

.footer-bottom {
  margin-top: 60px;
  background: #e3a200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 5%;
}

/* COPYRIGHT */

.footer-bottom p {
  color: #000;
  font-size: 14px;
}

/* CONTACT COLUMN FIX */

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  list-style: none;
}

.contact-item i {
  color: #3b0a46;
  font-size: 16px;
  margin-top: 4px; /* aligns icon with first line */
  min-width: 18px;
}

.contact-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* LINKEDIN */

.linkedin-footer a {
  width: 46px;
  height: 46px;

  background: #3b0a46;
  /* purple circle */

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #f4b000;
  /* yellow text */

  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}
/* MODAL STYLES - FIXED FOR OVERLAY */
.quote-modal {
  display: none !important; /* Hidden by default */
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(15, 44, 110, 0.6) !important; /* Transparent backdrop */
  backdrop-filter: blur(4px) !important;
  z-index: 99999 !important; /* Extremely high z-index */
  justify-content: center !important;
  align-items: center !important;
  box-sizing: border-box !important;
}

.quote-modal.active {
  display: flex !important;
}

.modal-content {
  background: white !important;
  width: 90% !important;
  max-width: 450px !important;
  padding: 35px !important;
  border-radius: 16px !important;
  position: relative !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-20px);
  transition: transform 0.3s ease-out;
  box-sizing: border-box !important;
}

.quote-modal.active .modal-content {
  transform: translateY(0) !important;
}

.modal-close {
  position: absolute !important;
  top: 15px !important;
  right: 20px !important;
  font-size: 24px !important;
  color: #94a3b8 !important;
  cursor: pointer !important;
  font-weight: bold !important;
  z-index: 10 !important;
}

.modal-content h3 {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  color: #0f2c6e !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  text-align: center !important;
}

.modal-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 15px !important;
  width: 100% !important;
}

.modal-form input,
.modal-form textarea {
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  background: #f8fafc !important;
  color: #1e293b !important;
  box-sizing: border-box !important;
}

.modal-form textarea {
  height: 100px !important;
  resize: none !important;
}

.modal-form button {
  background: #f4b000 !important; /* Yellow */
  color: white !important;
  border: none !important;
  padding: 14px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  font-size: 15px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.modal-form button:hover {
  background: #e0af32 !important;
}

/* RESPONSIVE DESIGN */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  nav ul {
    gap: 20px;
  }

  nav a {
    font-size: 13px;
  }

  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-about {
    grid-column: span 3;
    text-align: center;
  }

  .footer-about img {
    margin: 0 auto 15px auto;
    display: block;
    top: 0;
  }

  .footer-about p {
    margin: 0 auto;
    top: 0;
    max-width: 600px;
    left: 0;
  }
}

/* Mobile (767px) */
@media (max-width: 767px) {
  .top-bar .container {
    flex-direction: flex;
    gap: 10px;
    text-align: center;
    font-size: small;
  }

  .contact span {
    display: block;
    margin: 5px 0;
  }

  .menu-icon {
    display: block;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    z-index: 1000;
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 25px;
  }

  nav a {
    font-size: 16px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 15px;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .footer {
    padding-top: 50px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .footer-about {
    grid-column: span 1;
  }

  .footer-col h4 {
    margin-bottom: 15px;
  }

  .footer-bottom {
    flex-direction: flex;
    gap: 20px;
    margin-top: 40px;
    padding: 5px;
  }
  .contact-item {
    justify-content: center;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .logo img {
    height: 55px;
    top: 5px;
  }

  .navbar {
    height: 65px;
  }

  .nav-wrapper {
    height: 65px;
  }

  .footer-about img {
    height: 60px;
  }

  .footer-about p {
    font-size: 15px;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}
