* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Tajawal", sans-serif;
  background: #f5f5f5;
}

/* HEADER */
.main-header {
  width: 100%;
  height: 90px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center; /* بدل space-between */
  padding: 0 70px;
  position: relative;
}

.logo {
  position: absolute;
  right: 70px;
  height: 110px;
  width: auto;
  margin-top: 30px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-menu a {
  text-decoration: none;
  color: #0f4361;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #a5803b;
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 100%;
  height: 2px;
  background: #a5803b;
  border-radius: 20px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.lang {
  color: #0f4361;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.contact-btn {
  background: #0f4361;
  color: white;
  border: none;
  padding: 13px 32px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 6px 18px rgba(15, 67, 97, 0.25);
}

.contact-btn:hover {
  background: #a5803b;
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 100%);
}

.hero-bg-shape {
  position: absolute;
  left: -120px;
  bottom: 0;
  width: 90%;
  height: 78%;
  background: #0f4361;
  clip-path: polygon(0 0, 100% 45%, 100% 100%, 0 100%);
  z-index: 1;
}

.gold-shape {
  position: absolute;
  right: 260px;
  top: 155px;
  width: 520px;
  height: 42px;
  background: #9b7a36;
  transform: rotate(18deg);
  z-index: 2;
}

.hero-content {
  position: absolute;
  right: 70px;
  top: 210px;
  width: 420px;
  z-index: 5;
  color: white;
  text-align: right;
}

.hero-content h1 {
  font-size: 28px;
  margin-bottom: 18px;
  font-weight: 800;
}

.hero-content p {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.hero-content button {
  background: white;
  color: #0f4361;
  border: none;
  border-radius: 40px;
  padding: 17px 32px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  cursor: pointer;
}

.people-img {
  position: absolute;
  right: 520px;
  bottom: 0;
  height: 445px;
  z-index: 6;
}

.hero-tags {
  position: absolute;
  right: 585px;
  top: 320px;
  z-index: 7;
  display: flex;
  gap: 180px;
}

.hero-tags span {
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  padding: 8px 24px;
  border-radius: 30px;
  background: rgba(15,67,97,0.55);
}

.hat {
  position: absolute;
  width: 150px;
  opacity: 0.9;
  z-index: 4;
}

.hat-left {
  left: 0;
  bottom: 0;
  transform: rotate(-15deg);
}

.hat-right {
  right: -30px;
  top: 230px;
  transform: rotate(-10deg);
}

/* PROGRAMS */
.programs {
  background: white;
  padding: 65px 40px 75px;
  text-align: center;
}

.programs h2 {
  color: #0f4361;
  font-size: 24px;
  margin-bottom: 60px;
}

.program-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  width: 100%;
  direction: ltr;
}
.program-card {
  width: 230px;
  min-width: 230px;

  height: 165px; /* زودنا الارتفاع */

  background: white;
  border: 1px solid #d8d8d8;
  border-radius: 22px;

  box-shadow: 0 7px 0 #9b7a36;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 20px;
}
.icon {
  width: 82px;
  height: 82px;

  background: #0f4361;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;
}
.icon img {
  width: 46px;
  height: 46px;

  object-fit: contain;
  display: block;
}
.program-card:hover {
  transform: translateY(-8px);
  transition: .3s;
}
.icon {
  box-shadow: 0 8px 20px rgba(15,67,97,.25);
}
.program-card p {
  font-size: 13px;
  color: #0f4361;
  line-height: 1.4;
  direction: rtl;
}



/* RESPONSIVE */
@media (max-width: 991px) {
  .main-header {
    padding: 20px;
    height: auto;
    flex-direction: column;
    gap: 22px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    padding: 80px 30px 0;
  }

  .hero-content,
  .people-img,
  .hero-tags {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
  }

  .people-img {
    height: 320px;
    margin-top: 30px;
  }

  .program-slider {
    flex-wrap: wrap;
  }
  
}

.hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-content {
   position: absolute;
  top: 35%;
  left: 6%;
  right: auto;
  width: 420px;
  color: white;
  text-align: right;
}

.banner-content h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.banner-btn {
  display: inline-block;
  background: #ffffff;
  color: #0f4361;
  padding: 16px 35px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.banner-tags {
  position: absolute;
  top: 58%;
  right: 47%;
  display: flex;
  gap: 260px;
}

.banner-tags span {
  color: white;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 8px 28px;
  border-radius: 30px;
  background: rgba(15,67,97,0.35);
}

@media (max-width: 900px) {
  .banner-content {
    top: 25%;
    right: 5%;
    width: 45%;
  }

  .banner-content h1 {
    font-size: 18px;
  }

  .banner-content p {
    font-size: 10px;
  }

  .banner-btn {
    padding: 10px 18px;
    font-size: 11px;
  }

  .banner-tags {
    display: none;
  }
}
.programs {
  position: relative;
  margin-top: -80px;

  background-image: url("assets/BK.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 140px 40px 75px;
  z-index: 5;
}

.features-section {
  width: 100%;
  background: #0d4467;
  padding: 90px 80px 120px;
  position: relative;
  overflow: hidden;
}

.section-title {
  color: white;
  font-size: 34px;
  font-weight: 800;
  text-align: right;
  margin-bottom: 90px;
}

.features-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  flex-wrap: wrap;
}

.feature-card {
  width: 280px;
  text-align: center;
}
.feature-icon {
  position: relative;

  width: 85px;
  height: 85px;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 5;
}

.feature-icon img {
  width: 60px;
  height: 60px;

  object-fit: contain;
}

.feature-card h3 {
  color: white;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}

.feature-card p {
  color: white;
  font-size: 15px;
  line-height: 1.9;
  opacity: .95;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .features-section {
    padding: 70px 30px;
  }

  .section-title {
    text-align: center;
    font-size: 26px;
  }

  .features-container {
    gap: 60px;
  }

  .feature-card h3 {
    font-size: 30px;
  }

}
.why-section {
  width: 100%;
  background: #0d4467;
  padding: 40px 70px 100px;
}


.why-card {
 background: #f4f4f4;
  border-radius: 60px;

  position: relative;

  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-start;

  padding: 35px 70px;
  min-height: 260px;

  overflow: visible;
}
.why-image {
  position: absolute;

  left: 40px;
  bottom: 0;

  width: 280px;

  z-index: 5;
}

.why-image img {
   width: 100%;
     transform: scale(1.21);
 
}


.why-content {
   width: 100%;
  padding-right: 40px;

  padding-left: 260px; /* مساحة لصورة الراجل */

  text-align: right;
}

.why-content h3 {
  color: #9b7a36;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 25px;
}

.why-content p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .why-card {
    flex-direction: column;
    text-align: center;
    padding: 10px 45px;
    border-radius: 40px;
  }

  .why-content {
    text-align: center;
    margin-top: 30px;
  }

  .why-content h2 {
    font-size: 30px;
  }

  .why-content p {
    font-size: 15px;
  }

  .why-image {
    width: 220px;
  }

}.icon-wrapper {
  position: relative;

  width: 110px;
  height: 110px;

  margin: 0 auto 25px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.ellipse {
  position: absolute;

  width: 100px;
  height: 100px;

  object-fit: contain;

  z-index: 1;
}
.main-icon {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 58px;
  height: 58px;

  object-fit: contain;

  z-index: 2;
}
.contact-section {
  width: 100%;
  min-height: 620px;
  padding: 70px 160px;
  background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 90px;
  direction: rtl;
}

.contact-form {
  width: 560px;
  text-align: center;
}

.contact-form h2 {
  color: #0f4361;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 28px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d5d5d5;
  background: #fff;
  border-radius: 30px;
  padding: 15px 28px;
  margin-bottom: 24px;
  font-size: 17px;
  color: #0f4361;
  text-align: right;
  outline: none;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
}

.contact-form textarea {
  height: 155px;
  border-radius: 35px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9b9b9b;
}

.contact-form button {
  align-self: flex-start;
  background: #0f4361;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 13px 36px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15,67,97,0.35);
}

.map-box {
  width: 360px;
  height: 470px;
  border-radius: 35px;
  overflow: hidden;
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media(max-width: 900px) {
  .contact-section {
    padding: 50px 25px;
    flex-direction: column;
    gap: 40px;
  }

  .contact-form {
    width: 100%;
  }

  .map-box {
    width: 100%;
    max-width: 360px;
  }
}
.footer {
  width: 100%;
  background: #0f4361;
  padding: 70px 90px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 70px;
  direction: rtl;
}

/* TITLES */

.footer h2 {
  color: white;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 28px;
}

/* PROGRAMS */

.footer-programs {
  width: 420px;
}

.footer-programs a {
  display: block;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 17px;
  line-height: 2.1;
  margin-bottom: 12px;
  transition: .3s;
}

.footer-programs a:hover {
  color: #d2ab57;
}

/* CONTACT */

.footer-contact {
  width: 340px;
}

.footer-contact p {
  color: white;
  font-size: 18px;
  line-height: 1.9;

  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;
}

.footer-contact p img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* SOCIAL */

.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.social-icons a {
  width: 42px;
  height: 42px;

  border: 2px solid rgba(255,255,255,.9);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: .3s;
}

.social-icons a:hover {
  background: #d2ab57;
  border-color: #d2ab57;
  transform: translateY(-4px);
}

.social-icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* LINKS */

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 18px;
  transition: .3s;
}

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

/* PAPER IMAGE */

.footer-paper {
  position: absolute;
  right: -30px;
  bottom: 0;

  width: 170px;
  opacity: .95;
}

/* RESPONSIVE */

@media(max-width: 991px) {

  .footer {
    padding: 60px 25px;
  }

  .footer-container {
    flex-direction: column;
    gap: 50px;
  }

  .footer-programs,
  .footer-contact {
    width: 100%;
  }

}
.clients-map-section {
  padding: 0 0;
 
  color: white;
}

.clients-map-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
}

#clientsMap {
  width: 95%;
  max-width: 1600px;
  height: 550px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}


.map-box
{
	 width: 800px;
}
.phone-icon img {
    width: 50px;
    cursor: pointer;
}


.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    transition:all .3s ease;
    box-shadow:0 8px 20px rgba(37,211,102,.35);
}

.whatsapp-btn i{
    font-size:22px;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
    background:#1ebe5d;
    box-shadow:0 12px 25px rgba(37,211,102,.45);
}

.whatsapp-btn:active{
    transform:translateY(0);
}


/* Smooth page */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* Header professional */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Hero animation */
.banner-content h1,
.banner-content p,
.banner-btn {
  animation: fadeUp 0.9s ease forwards;
}

.banner-content p {
  animation-delay: .2s;
}

.banner-btn {
  animation-delay: .4s;
}

/* Cards hover */
.program-card,
.feature-card,
.why-card,
.contact-form,
.map-box {
  transition: all .35s ease;
}

.program-card:hover,
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

/* Icons animation */
.program-card .icon img,
.main-icon {
  transition: transform .35s ease;
}


/* Button professional */
.banner-btn,
.contact-form button,
.whatsapp-btn {
  transition: all .3s ease;
}

.banner-btn:hover,
.contact-form button:hover,
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: all .8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  animation: pulse 1.8s infinite;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

.program-link {
    text-decoration: none;
    color: inherit;
}

.program-link p {
    text-decoration: none;
    color: inherit;
}
@media (max-width: 768px) {

  .hero-banner img {
    height: 620px;
    object-fit: cover;
    object-position: center top;
  }

  .banner-content {
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88%;
    background: rgba(255,255,255,0.82);
    padding: 22px 18px;
    border-radius: 22px;
    text-align: center;
  }

  .banner-content h1 {
    color: #0f4361;
    font-size: 22px;
    line-height: 1.5;
  }

  .banner-content p {
    color: #0f4361;
    font-size: 14px;
    line-height: 1.9;
  }

  .banner-btn {
    background: #0f4361;
    color: white;
    font-size: 13px;
    padding: 12px 20px;
  }
}

------------------------------------ 

/* =========================
   RESPONSIVE FIX
========================= */

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .main-header {
    padding: 0 30px;
  }

  .logo {
    right: 30px;
    height: 90px;
  }

  .nav-menu {
    gap: 22px;
  }

  .contact-section {
    padding: 60px 40px;
    gap: 40px;
  }

  .map-box {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .main-header {
    height: auto;
    padding: 15px 20px;
    flex-direction: column;
    gap: 15px;
  }

  .logo {
    position: static;
    height: 85px;
    margin-top: 0;
  }

  .nav-menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .nav-menu a {
    font-size: 15px;
  }

  .hero-banner img {
    height: 520px;
    object-fit: cover;
  }

  .banner-content {
    top: 50%;
    left: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: 85%;
    text-align: center;
  }

  .banner-content h1 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .programs {
    margin-top: 0;
    padding: 70px 20px;
  }

  .program-slider {
    flex-wrap: wrap;
  }

  .program-card {
    width: 45%;
    min-width: 220px;
  }

  .features-section {
    padding: 60px 25px;
  }

  .section-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 50px;
  }

  .features-container {
    gap: 45px;
  }

  .why-section {
    padding: 40px 25px 70px;
  }

  .why-card {
    flex-direction: column;
    padding: 35px 25px;
    border-radius: 35px;
  }

  .why-content {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .why-content h3 {
    font-size: 28px;
  }

  .why-content p {
    font-size: 16px;
  }

  .contact-section {
    flex-direction: column;
    padding: 50px 25px;
  }

  .contact-form {
    width: 100%;
  }

  .map-box {
    width: 100%;
    height: auto;
  }

  #clientsMap {
    width: 100%;
    height: 420px;
  }

  .footer-container {
    flex-direction: column;
    gap: 35px;
  }
}

@media (max-width: 600px) {
  .main-header {
    padding: 12px 15px;
  }

  .logo {
    height: 75px;
  }

  .nav-menu {
    gap: 10px 14px;
  }

  .nav-menu a {
    font-size: 14px;
  }

  .hero-banner img {
    height: 560px;
  }

  .banner-content {
    width: 90%;
  }

  .banner-content h1 {
    font-size: 22px;
    line-height: 1.5;
  }

  .banner-content p {
    font-size: 13px;
    line-height: 1.9;
  }

  .banner-btn {
    padding: 12px 22px;
    font-size: 13px;
  }

  .programs h2 {
    font-size: 21px;
    line-height: 1.5;
  }

  .program-card {
    width: 100%;
    min-width: 100%;
  }

  .feature-card {
    width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 15px;
    padding: 14px 20px;
  }

  .contact-form button {
    align-self: center;
    font-size: 18px;
  }

  #clientsMap {
    height: 350px;
  }

  .footer {
    padding: 50px 25px;
  }

  .footer h2 {
    font-size: 21px;
  }

  .footer-contact p {
    font-size: 15px;
    align-items: flex-start;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    font-size: 24px;
    left: 18px;
    bottom: 18px;
  }
}
.banner-content h1,
.banner-content p{
    text-shadow: 0 3px 10px rgba(0,0,0,.6);
}

/* DESKTOP */
.main-header {
  position: relative;
}

.menu-toggle {
  display: none !important;
}

/* MOBILE ONLY */
@media (max-width: 768px) {

  .main-header {
    position: relative;
    z-index: 9999;
  }

  .menu-toggle {
    display: block !important;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 34px;
    cursor: pointer;
    z-index: 10000;
  }

  .main-header .nav-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    background: #0f4361;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 10px 0;
    border-top: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  }

  .main-header .nav-menu.show {
    display: flex !important;
  }

  .main-header .nav-menu a {
    display: block;
    width: 100%;
    padding: 14px 24px;
    text-align: right;
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
}
/* MOBILE DROPDOWN FINAL FIX */
@media (max-width: 768px) {

  .main-header {
    height: 85px !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #ffffff !important;
    position: sticky !important;
    top: 0;
    z-index: 99999;
  }

  .logo {
    position: static !important;
    height: 70px !important;
    margin: 0 !important;
    order: 2;
  }

  .menu-toggle {
    display: block !important;
    order: 1;
    background: transparent !important;
    border: none !important;
    color: #0f4361 !important;
    font-size: 34px !important;
    cursor: pointer;
    z-index: 100000;
  }

  .main-header .nav-menu {
    display: none !important;
    position: absolute !important;
    top: 85px !important;
    right: 0 !important;
    width: 100% !important;
    background: #0f4361 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 10px 0 !important;
    box-shadow: 0 12px 25px rgba(0,0,0,.25);
  }

  .main-header .nav-menu.show {
    display: flex !important;
  }

  .main-header .nav-menu a {
    color: #ffffff !important;
    padding: 15px 25px !important;
    text-align: right !important;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .main-header .nav-menu a.active::after {
    display: none !important;
  }
}