<style>
/* ============================================================
   TOP MENU (BLACK BAR)
============================================================ */
.top-menu {
  background: #000;
  height: 56px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 30px;
  box-sizing: border-box;
}

.top-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.top-menu a:hover {
  color: #ffcc00;
}

/* ============================================================
   SITE HEADER & NAV CONTAINER
============================================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 80px;
}

/* ============================================================
   LOGO
============================================================ */
.logo img {
  height: 50px;
  display: block;
  padding-left: 150px;
  padding-right: 120px;
}

/* ============================================================
   MAIN NAV
============================================================ */
.main-nav {
  flex-grow: 1;
  margin-left: 40px;
  z-index: 9999;
}

.nav-level-1 {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0 20px;
  align-items: center;
  white-space: nowrap;
  z-index: 9999;
}

.nav-level-1 > li {
  position: relative;
}

.nav-level-1 > li > a {
  display: block;
  padding: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #222;
}

/* ============================================================
   MEGA PANEL
============================================================ */
.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 50vw;
  background: #f8f8f8;
  padding: 40px;
  display: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.has-mega:hover .mega-panel {
  display: block;
}

.mega-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.mega-grid .actions a.cta {
  color: #c3007b;
  font-weight: bold;
  text-transform: uppercase;
}

/* ============================================================
   GRID UTILITY SYSTEM
============================================================ */
.grid {
  display: grid;
  gap: 40px;
  width: 100%;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.grid .col h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.grid .col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.grid .col ul li {
  margin-bottom: 8px;
}

.grid .col ul li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.grid .col ul li a:hover {
  color: #0066cc;
}

/* ============================================================
   APPLY NOW CTA
============================================================ */
.nav-cta .apply-now {
  display: flex;
  align-items: left;
  background: #c3007b;
  color: #fff;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-cta .apply-now .icon {
  margin-right: 8px;
  font-size: 1.2rem;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.6rem;
  border: 3px solid #7cc7ff;
  border-radius: 9999px;
  background: #ffffff;
  color: #000;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.apply-btn:hover {
  background: #e9f6ff;
  border-color: #4bb2ff;
}

.arrow {
  color: #f47c20;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  transition: transform 0.25s ease;
}

.apply-btn:hover .arrow {
  transform: translateX(4px);
}

/* ============================================================
   SOCIAL ICONS
============================================================ */
.social-icons {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 10px !important;
}
.social-icons li {
  display: inline-flex !important;
  list-style: none !important;
}

.social-icons li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background-color: #3d5166 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 18px !important;
  transition: background-color 0.3s ease, transform 0.2s ease !important;
}

.social-icons li a:hover {
  background-color: #2c3d50 !important;
  transform: scale(1.1);
}

/* ============================================================
   FOOTER
============================================================ */
.footer-top-line {
  height: 6px;
  background-color: #f47c20;
}

.site-footer {
  background: white !important;
  color: black !important;
  padding: 40px 30px;
  font-size: 14px !important;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-left: 15%;
  margin-top: 20px;
}

.footer-left {
  border-right: 1px solid #ccc;
  padding-right: 50px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

.contact-info h4 {
  margin: 10px 0 5px;
  font-size: 1rem;
  color: #f47c20 !important;
}

.contact-info p {
  margin: 0 0 15px;
  line-height: 1.5;
}

.footer-right {
  margin-left: 100px;
}

.footer-right h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #f47c20;
}
.footer-right .social-icons {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  gap: 12px !important;
}
.footer-right .social-icons li {
  display: inline-flex !important;
  list-style: none !important;
}
.footer-right .social-icons li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background-color: #3d5166 !important;
  text-decoration: none !important;
}
.footer-right .social-icons li a svg {
  fill: #ffffff !important;
  width: 22px !important;
  height: 22px !important;
}
.footer-right .social-icons li a:hover {
  background-color: #2c3d50 !important;
}

/* ============================================================
   FOOTER BOTTOM BAR
============================================================ */
.footerbl {
  background-color: #1e1e1e;
  padding: 24px 0;
  text-align: center;
}

.footerbl-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #ccc;
}

.footerbl-inner .copyright {
  color: #ccc;
}

.footerbl-inner nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footerbl-inner nav a {
  color: #fff;
  text-decoration: underline;
  font-weight: bold;
}

.footerbl-inner nav a:hover {
  color: #aaa;
}

.footerbl-inner nav a:nth-child(3) {
  border-right: 1px solid #fff;
  padding-right: 16px;
}

</style>