/* ====================================
   ✅ GLOBAL RESET & DEFAULTS
==================================== */
html, body {
  margin: 0;
  padding: 0;
  font-family:Arial, sans-serif;
}

/* ====================================
   ✅ HEADER TOP BANNER (BLUE STRIP)
==================================== */

.top-banner {
  background-color: #002f6c;
  color: white;
  height: 50px;
  width: 100%;
  padding: 0 3%;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  flex-direction: row; /* Vertical layout inside this box */

}

.logo-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.social-top-left,
.contact-top-right {
  display: flex;
  gap: 30px;
  flex-direction: row; /* Vertical layout inside this box */

}

.social-top-left a,
.contact-top-right a {
  display: inline-block; /* Ensures transform works */
  transition: transform 0.3s ease;
}

.social-top-left a:hover,
.contact-top-right a:hover {
  transform: scale(1.25);
  color: #FF6B00;
}

.social-top-left {
  font-size: 23px;
}



/* ====================================
   ✅ MAIN NAVIGATION (WHITE STRIP)
==================================== */

.main-nav {
  background-color: white;
  border-top: 1px solid #ccc;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  display: inline-block;
}

/* ====================================
   ✅ DROPDOWN MENU (PLACEHOLDER)
==================================== */

.dropdown a::after {
  content: '';
  /* Placeholder: Add real dropdown styles here if needed */
}


/* ====================================
   ✅ LOWER NAVIGATION BAR (WHITE STRIP)
==================================== */
.lower-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 50px;
  width: 100%;
  background: white;
  height: 35px;
  z-index: 10000;
  padding: 0;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #002f6c;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}

.menu-toggle i {
  margin-right: 6px;
}

.menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.menu-item {
  position: relative;
}

.menu-item a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 5px;
  display: block;
  transition: color 0.3s ease;
}

.menu-item a:hover {
  color: #FF6B00;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  margin: 0;
}

.submenu li {
  border-bottom: 1px solid #ddd;
}

.submenu li:last-child {
  border-bottom: none;
}

.submenu li a {
  padding: 10px 20px;
  display: block;
  font-size: 14px;
  color: black;
}

.submenu li a:hover {
  background: #002f6c;
  color: white;
}

.menu-item:hover .submenu {
  display: block;
}

/* ====================================
   ✅ RESPONSIVE DESIGN (MOBILE FRIENDLY)
==================================== */

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }



.services-subheading {
  background: #eaeaea;        /* Light gray pill background */
  color: #000;                /* Black text */
  font-weight: bold;         /* Bold text */
  padding: 15px 30px;        /* Space inside the pill */
  border-radius: 12px;       /* Rounded corners */
  display: inline-block;     /* Shrink to fit text */
  margin: 40px auto;         /* Center with spacing */
  text-align: center;        /* Text centered inside element */
  font-size: 20px;           /* Adjust size if needed */
  box-shadow: none;          /* Ensure no shadows */
}

@keyframes swing-around-center {
  0%   { transform: translateX(-50%) translateX(0%); }     /* Center */
  25%  { transform: translateX(-20%) translateX(90%); }    /* Right */
  50%  { transform: translateX(-50%) translateX(0%); }     /* Center */
  75%  { transform: translateX(-90%) translateX(-90%); }   /* Left */
  100% { transform: translateX(-50%) translateX(0%); }     /* Center */
}

.bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #FF6B00;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 2px 0;
}

.scrolling-text {
  position: relative;
  width: 100%;
  height: 1.5em;
  overflow: hidden;
}

.scrolling-text a {
  position: absolute;
  left: 50%;
  white-space: nowrap;
  font-weight: bold;
  text-decoration: none;
  color: white;
  font-size: 16px;
  line-height: 1.5;
  display: inline-block;
  animation: swing-around-center 16s infinite;
}