  /* mobile styles — handles everything from wide tablets down to tiny phones */

  /* just making sure box-sizing is consistent everywhere */
  * {
    box-sizing: border-box;
  }

  html {
    font-size: 16px;
  }

  /* hide the floating company name overlays on desktop — only needed on small screens */
  .hero-company-name-top,
  .hero-company-name-bottom {
    display: none;
  }

  /* this handles hiding the book icon when the nav menu opens */
  .book-icon-link {
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .book-icon-link.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    z-index: -1 !important;
  }

  /* hamburger button with glitter effect so people know to tap it */
  .mobile-menu-toggle {
    display: none;
    background: rgba(99, 30, 15, 0.55);
    border: 1.5px solid rgba(225, 171, 121, 0.55);
    border-radius: 10px;
    cursor: pointer;
    padding: 10px 12px;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
    position: relative;
    overflow: hidden;

    /* the border that pulses gold */
    animation: hamburgerGlow 2.2s ease-in-out infinite;
  }

  /* the shimmer that sweeps across the button */
  .mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
      120deg,
      transparent 0%,
      rgba(225, 171, 121, 0.55) 50%,
      transparent 100%
    );
    transform: skewX(-15deg);
    animation: hamburgerShimmer 2.2s ease-in-out infinite;
    pointer-events: none;
  }

  /* tiny gold star that pulses in the corner */
  .mobile-menu-toggle::after {
    content: '✦';
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 8px;
    color: rgba(225, 171, 121, 0.9);
    animation: sparkle 2.2s ease-in-out infinite;
    pointer-events: none;
    line-height: 1;
  }

  @keyframes hamburgerGlow {
    0%, 100% {
      border-color: rgba(225, 171, 121, 0.45);
      box-shadow: none;
    }
    50% {
      border-color: rgba(225, 171, 121, 1);
      box-shadow:
        0 0 8px  rgba(225, 171, 121, 0.70),
        0 0 18px rgba(225, 171, 121, 0.35),
        inset 0 0 8px rgba(225, 171, 121, 0.10);
    }
  }

  @keyframes hamburgerShimmer {
    0%   { left: -75%; opacity: 0; }
    20%  { opacity: 1; }
    60%  { left: 130%; opacity: 1; }
    61%, 100% { opacity: 0; }
  }

  @keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.6) rotate(0deg); }
    40%       { opacity: 1; transform: scale(1.3) rotate(20deg); }
    60%       { opacity: 0.6; transform: scale(1) rotate(-10deg); }
  }

  .hamburger-line {
    width: 28px;
    height: 3px;
    background: #E1AB79;
    transition: all 0.3s ease;
    border-radius: 2px;
    position: relative;
    z-index: 1;
  }

  /* fullscreen nav that slides in when hamburger is tapped */
  .mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(23, 69, 72, 0.98);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }

  .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-nav-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* custom scrollbar so it matches the gold theme */
  .mobile-nav-container::-webkit-scrollbar {
    width: 6px;
  }
  .mobile-nav-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
  }
  .mobile-nav-container::-webkit-scrollbar-thumb {
    background: rgba(225, 171, 121, 0.3);
    border-radius: 3px;
  }
  .mobile-nav-container::-webkit-scrollbar-thumb:hover {
    background: rgba(225, 171, 121, 0.5);
  }

  /* top part of the nav — NAVIGATION title + close button */
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(225, 171, 121, 0.2);
    position: relative;
  }

  /* gold shimmer that travels across the bottom border */
  .mobile-nav-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: -60%;
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg,
      transparent,
      rgba(225, 171, 121, 0.9) 40%,
      rgba(255, 240, 200, 1) 60%,
      transparent
    );
    animation: navHeaderShimmer 3s ease-in-out infinite;
  }

  @keyframes navHeaderShimmer {
    0%   { left: -60%; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { left: 100%; opacity: 0; }
  }

  .mobile-nav-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    background: linear-gradient(
      90deg,
      #E1AB79 0%,
      #fff8dc 40%,
      #E1AB79 60%,
      #c8923f 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: navTitleGlitter 3.5s linear infinite;
  }

  @keyframes navTitleGlitter {
    0%   { background-position: -250% center; }
    100% { background-position:  250% center; }
  }

  .mobile-nav-close {
    background: none;
    border: 1px solid rgba(225, 171, 121, 0.35);
    border-radius: 50%;
    color: #E1AB79;
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
    animation: closeGlow 3s ease-in-out infinite;
  }

  @keyframes closeGlow {
    0%, 100% { border-color: rgba(225, 171, 121, 0.35); box-shadow: none; }
    50%       { border-color: rgba(225, 171, 121, 0.9);
                box-shadow: 0 0 10px rgba(225, 171, 121, 0.5),
                            0 0 20px rgba(225, 171, 121, 0.2); }
  }

  .mobile-nav-close:hover {
    transform: rotate(90deg);
    border-color: #E1AB79;
    box-shadow: 0 0 14px rgba(225, 171, 121, 0.7);
  }

  /* the main list of nav links */
  .mobile-nav-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
  }

  /* each nav item gets a gold sweep line along its bottom edge */
  .mobile-nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
      transparent,
      rgba(225, 171, 121, 0.7) 50%,
      transparent
    );
    animation: navItemLine 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
  }

  /* delay each item a bit so they cascade down one by one */
  .mobile-nav-item:nth-child(1)::before { animation-delay: 0s; }
  .mobile-nav-item:nth-child(2)::before { animation-delay: 0.6s; }
  .mobile-nav-item:nth-child(3)::before { animation-delay: 1.2s; }
  .mobile-nav-item:nth-child(4)::before { animation-delay: 1.8s; }
  .mobile-nav-item:nth-child(5)::before { animation-delay: 2.4s; }
  .mobile-nav-item:nth-child(6)::before { animation-delay: 3s; }
  .mobile-nav-item:nth-child(7)::before { animation-delay: 3.6s; }

  @keyframes navItemLine {
    0%        { left: -100%; opacity: 0; }
    10%       { opacity: 1; }
    50%       { left: 100%; opacity: 1; }
    51%, 100% { opacity: 0; }
  }

  .mobile-nav-link {
    display: block;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 300;
    text-decoration: none;
    padding: 20px 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }

  .mobile-nav-link:hover {
    color: #E1AB79;
    padding-left: 20px;
    text-shadow:
      0 0 12px rgba(225, 171, 121, 0.6),
      0 0 24px rgba(225, 171, 121, 0.25);
  }

  /* expandable sub-items under About Us and Principal's Profile */
  .mobile-nav-item.has-submenu > .mobile-nav-link::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #E1AB79;
  }

  .mobile-nav-item.submenu-open > .mobile-nav-link::after {
    transform: rotate(45deg);
  }

  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 30px;
  }

  .mobile-nav-item.submenu-open .mobile-submenu {
    max-height: 500px;
    padding-bottom: 10px;
  }

  .mobile-submenu-link {
    display: block;
    color: #C9C9C9;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    padding: 15px 0;
    transition: all 0.3s ease;
  }

  .mobile-submenu-link:hover {
    color: #E1AB79;
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(225, 171, 121, 0.5);
  }

  /* the tagline at the bottom of the nav overlay */
  .mobile-nav-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(225, 171, 121, 0.15);
    position: relative;
  }

  /* gold sweep on the top border of the footer */
  .mobile-nav-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -80%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg,
      transparent,
      rgba(225, 171, 121, 0.95) 50%,
      rgba(255, 245, 210, 1) 60%,
      transparent
    );
    animation: footerBorderGlitter 4s ease-in-out infinite 1.5s;
  }

  @keyframes footerBorderGlitter {
    0%        { left: -80%; opacity: 0; }
    15%       { opacity: 1; }
    85%       { left: 110%; opacity: 1; }
    86%, 100% { opacity: 0; }
  }

  /* the tagline text shimmers in gold */
  .mobile-nav-footer p {
    font-size: 14px;
    font-style: italic;
    text-align: center;
    margin: 0;
    background: linear-gradient(
      90deg,
      #c8923f 0%,
      #E1AB79 25%,
      #fff8dc 50%,
      #E1AB79 75%,
      #c8923f 100%
    );
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: footerTaglineGlitter 4s linear infinite;
  }

  @keyframes footerTaglineGlitter {
    0%   { background-position: -300% center; }
    100% { background-position:  300% center; }
  }


  /* 1600px — large desktops, just nudge the services container */
  @media (max-width: 1600px) {
    .services-charter-container {
      max-width: 96%;
    }
  }


  /* 1400px — wide desktops */
  @media (max-width: 1400px) {
    .services-charter-container {
      max-width: 98%;
      grid-template-columns: 42% 58%;
      gap: 18px;
    }

    .services-charter-left {
      padding: 35px 25px;
    }

    .charter-title {
      font-size: 26px;
    }

    .charter-description {
      font-size: 13px;
    }

    .services-grid {
      gap: 10px;
    }

    .service-card img {
      height: 85px;
    }

    .service-card-title {
      font-size: 10px;
      min-height: 48px;
      padding: 9px 7px;
    }

    .service-number {
      width: 30px;
      height: 30px;
      font-size: 14px;
    }
  }


  /* 1200px — standard desktop / small laptop */
  @media (max-width: 1200px) {

    /* Header */
    .header-inner {
      padding: 0 20px;
    }

    .logo-wrap {
      width: 140px;
      height: 100px;
      margin-left: -30px;
    }

    .right-logo img {
      max-width: 140px;
    }

    .desktop-nav a {
      font-size: 0.85rem;
      margin-left: 15px;
    }

    /* Hero */
    .swinging-emblem {
      width: 180px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 220px;
    }

    /* Logo animated */
    .logo-wrap.right-logo {
      width: 180px;
      height: 120px;
    }

    .logo-animated-icon {
      width: 68px;
      height: 68px;
    }

    .logo-animated-icon img {
      width: 58px;
      height: 58px;
    }

    .logo-animated-item:nth-child(1) .logo-animated-icon img {
      margin-left: -140px;
    }

    .logo-animated-item:nth-child(2) .logo-animated-icon img {
      margin-left: -35px;
    }

    .logo-animated-item:nth-child(3) .logo-animated-icon img {
      margin-right: -48px;
    }

    /* Services charter */
    .services-charter-container {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .services-charter-left {
      padding: 35px 25px;
    }

    .charter-title {
      font-size: 26px;
    }

    .charter-description {
      font-size: 13px;
    }

    .services-grid {
      gap: 10px;
    }

    .service-card img {
      height: 85px;
    }

    .service-card-title {
      font-size: 10px;
      min-height: 48px;
    }

    /* Contact */
    .contact-container {
      grid-template-columns: 1fr 1.1fr;
      gap: 60px;
    }

    .contact-left {
      padding-right: 20px;
    }

    .contact-right {
      padding: 40px;
    }

    /* Photo wall grid */
    .photo-wall,
    .grid {
      column-count: 3 !important;
    }
  }


  /* 992px — tablet landscape */
  @media (max-width: 992px) {

    /* world map on tablet landscape — zoom in a bit */
    .hero {
      height: 70vh;
      min-height: 480px;
    }

    .hero-map {
      background-size: 160% !important;
      background-position: 50% 100% !important;
      background-attachment: scroll !important;
    }
    .hero-center-row {
      top: 30%
    }

    /* Services charter — stack vertically */
    .services-charter-container {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .services-charter-left {
      padding: 40px 30px;
    }

    .services-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
    }

    .charter-title {
      font-size: 28px;
    }

    .charter-description {
      font-size: 14px;
    }

    .service-card img {
      height: 95px;
    }

    .service-card-title {
      font-size: 11px;
      min-height: 52px;
    }

    .service-number {
      width: 34px;
      height: 34px;
      font-size: 15px;
    }

    /* Contact */
    .contact-container {
      grid-template-columns: 1fr;
      gap: 50px;
    }

    .contact-left {
      padding-right: 0;
    }

    .contact-main-title {
      font-size: 2.5rem;
    }

    .contact-right {
      padding: 40px 35px;
    }

    /* Engagement model */
    .em-section {
      flex-direction: column;
      padding: 60px 8%;
    }

    .em-text,
    .em-image {
      width: 100%;
    }

    .engagementmodel-header h3 {
      padding-left: 20px;
    }
    .engagementmodel-header small {
      padding-left: 10px;
    }

    /* Scroll to top */
    .scroll-to-top {
      bottom: 14px;
      right: 17px;
      width: 55px;
      height: 55px;
    }

    .scroll-to-top svg {
      width: 26px;
      height: 26px;
    }
  }


  /* 900px — small tablets and big landscape phones */
  @media (max-width: 900px) {

    /* world map on small tablet — shift toward MENA */
    .hero-map {
      background-size: 190% !important;
      background-position: 50% 100% !important;
      background-attachment: scroll !important;
    }

    /* Horizon sections */
    .horizon-section,
    .horizon-section2 {
      flex-direction: column;
      padding: 60px 8%;
    }

    .horizon-text,
    .horizon-image,
    .horizon-image2 {
      width: 100%;
    }

    .horizon-image,
    .horizon-image2 {
      height: 400px;
      margin-top: 40px;
    }

    .horizon-image.reveal {
      transition-delay: 0.15s;
    }

    /* SC sections */
    .sc-section,
    .sc-section2.reverse {
      flex-direction: column;
      padding: 60px 8%;
    }

    .sc-text,
    .sc-image,
    .sc-text2,
    .sc-image2 {
      width: 100%;
    }

    .sc-image {
      height: 400px;
      margin-top: 40px;
    }

    .sc-image.reveal {
      transition-delay: 0.15s;
    }

    /* Modenmodus */
    .modenmodus-grid {
      grid-template-columns: 1fr;
    }

    .modenmodus-text {
      padding-left: 0;
    }

    /* Foldable / very wide phones */
    .logo-wrap {
      width: 130px;
      height: 90px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 180px;
    }

    .swinging-emblem {
      width: 140px;
    }
  }


  /* 860px — tablet portrait, drop photo grid to 2 cols */
  @media (max-width: 860px) {
    .photo-wall,
    .grid {
      column-count: 2 !important;
    }
  }


  /* 768px — mobile. hamburger menu takes over from here */
  @media (max-width: 768px) {

    /* header */
    .site-header {
      position: relative;
      z-index: 1000;
    }

    .header-inner {
      padding: 10px 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    .logo-wrap {
      width: 120px;
      height: 80px;
      margin-left: 0;
    }

    /* swap desktop nav for mobile hamburger */
    .logo-wrap.right-logo,
    .desktop-nav {
      display: none;
    }

    .mobile-menu-toggle,
    .mobile-nav-overlay {
      display: flex;
    }

    /* shift e-book button left so it has breathing room from the hamburger */
    .book-icon-link {
      right: 85px;
      will-change: opacity, visibility, z-index;
    }

    /* same for the ebook-btn on the profile page */
    .ebook-btn {
      right: 80px;
      margin-right: 8px;
    }

    /* animated logos */
    .logo-wrap.right-logo {
      margin-right: -50px;
      margin-top: -20px;
      width: 160px;
      height: 110px;
    }

    .logo-animated-icon {
      width: 58px;
      height: 58px;
    }

    .logo-animated-icon img {
      width: 50px;
      height: 50px;
    }

    .logo-animated-item:nth-child(1) .logo-animated-icon img {
      margin-left: -120px;
    }

    .logo-animated-item:nth-child(2) .logo-animated-icon img {
      margin-left: -30px;
    }

    .logo-animated-item:nth-child(3) .logo-animated-icon img {
      margin-right: -40px;
    }

    /* world map on mobile — wide enough to see the land masses */
    .hero {
      height: 65vh;
      min-height: 480px;
      position: relative;
      overflow: hidden;
    }

    .hero-map {
      position: absolute !important;
      inset: 0 !important;
      width: 100% !important;
      height: 100% !important;
      background-size: 220% !important;
      background-position: 50% 75% !important;
      background-repeat: no-repeat !important;
      background-attachment: scroll !important;
    }

    /* hero section */
    .hero-company-name-top {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      z-index: 10;
    }

    .hero-company-name-top span {
      color: #E1AB79;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 2px;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .hero-company-name-bottom {
      display: flex;
      flex-direction: column;
      position: absolute;
      bottom: 200px;
      left: 50%;
      transform: translateX(-50%);
      text-align: center;
      z-index: 10;
    }

    .hero-company-name-bottom .arabic-large {
      color: #E1AB79;
      font-size: 36px;
      font-weight: 700;
      letter-spacing: 4px;
      margin-bottom: 5px;
    }

    .hero-company-name-bottom .arabic-small {
      color: #E1AB79;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 2px;
    }

    .hero-center-row {
      flex-direction: row;
      gap: 5px;
      top: 35%;
      transform: translate(-50%, -50%);
      width: 70%;
      position: absolute;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .hero-text.left {
      margin: 0;
      justify-content: center;
      flex: 0 0 auto;
      margin-right: -70px;
      padding-top: 60px;
    }

    .hero-text.right {
      margin: 0;
      justify-content: center;
      flex: 0 0 auto;
      margin-left: -70px;
      padding-top: 40px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 150px;
      margin: 0;
      padding: 0;
    }

    .emblem-container {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .swinging-emblem {
      width: 130px;
    }

    /* footer */
    .site-footer {
      flex-direction: column;
      padding: 20px 15px;
      text-align: center;
    }

    .footer-left,
    .footer-right {
      max-width: 100%;
      text-align: center;
    }

    .footer-right {
      font-size: 12px;
    }

    /* general layout */
    .container {
      padding: 0 15px;
    }

    section {
      padding: calc(40px + 2vw) 0;
    }

    .grid {
      grid-template-columns: 1fr;
    }

    /* horizon sections */
    .horizon-text {
      padding: 0;
    }

    .horizon-text h2 {
      font-size: 28px;
    }

    /* services charter */
    .services-charter {
      padding: 50px 15px;
    }

    .services-charter-left {
      padding: 30px 20px;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .charter-title {
      font-size: 24px;
      margin-bottom: 20px;
    }

    .charter-description {
      font-size: 13px;
    }

    .service-card img {
      height: 100px;
    }

    .service-card-title {
      font-size: 10.5px;
      min-height: 52px;
    }

    .services-charter-container {
      padding: 30px 20px;
    }

    .services-container {
      padding: 0 20px;
    }

    .services-header small {
      font-size: 24px;
      margin-left: 0;
    }

    .services-header h3 {
      font-size: 16px;
      margin-left: 0;
    }

    /* service detail rows */
    .sc-section,
    .sc-section2.reverse {
      flex-direction: column;
      padding: 60px 8%;
    }

    .sc-text,
    .sc-image,
    .sc-text2,
    .sc-image2 {
      width: 100%;
    }

    /* engagement model */
    .em-section,
    .em-section2.reverse {
      flex-direction: column;
      padding: 60px 8%;
    }

    .em-text,
    .em-image,
    .em-text2,
    .em-image2 {
      width: 100%;
    }

    /* who we are page */
    .modenmodus {
      padding: 40px 0;
    }

    .modenmodus-container {
      padding: 30px 20px;
    }

    .modenmodus-header h1 {
      font-size: 1.5rem;
    }

    /* video strip */
    .video-strip {
      height: 100px;
    }

    /* contact page */
    .contact-main-section {
      padding: 60px 15px;
    }

    .contact-main-title {
      font-size: 2rem;
    }

    .contact-right {
      padding: 30px 25px;
    }

    .form-title {
      font-size: 1.75rem;
    }

    .office-icon {
      width: 45px;
      height: 45px;
    }

    .office-icon svg {
      width: 22px;
      height: 22px;
    }

    .contact-section {
      padding: 40px 15px;
    }

    .contact-header h1 {
      font-size: 2.5rem;
    }

    .contact-cards {
      flex-direction: column;
      align-items: center;
    }

    .contact-card {
      max-width: 100%;
    }

    .card-title {
      padding-left: 0px;
    }

    /* profile page */
    .profile-section {
      padding: 40px 5%;
    }

    .profile-content {
      flex-direction: column;
    }

    .profile-text h1 {
      font-size: 32px;
    }

    .profile-image img {
      width: 100%;
      max-width: 420px;
    }

    .profile-intro-section {
      padding: 40px 20px;
    }

    .profile-container {
      grid-template-columns: 1fr;
    }

    .profile-title {
      font-size: 42px;
    }

    /* case study slider */
    .cs-section {
      padding: 20px 0 40px 0;
      min-height: auto;
      position: relative;
    }

    .cs-slider,
    .cs-viewport {
      position: relative;
      bottom: auto;
      min-height: 350px;
    }

    .cs-section-title {
      font-size: 22px;
      line-height: 1.3;
      padding: 0 15px;
    }

    .cs-section-title h2 {
      font-size: 26px;
    }

    .cs-slide {
      padding: 40px 30px;
    }

    .cs-slide__title {
      font-size: 16px;
    }

    .cs-slide__text {
      font-size: 12px;
    }

    .cs-slide__num {
      display: none;
    }

    .cs-dot {
      width: 8px;
      height: 8px;
      margin: 0;
      border-radius: 50%;
    }

    .cs-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 8px;
      margin-top: 0;
      top: 530px;
    }

    .cs-progress {
      bottom: 5px;
      position: absolute;
    }

    .cs-arrow {
      width: 32px;
      height: 32px;
    }

    /* sponsors scroll strip */
    .sponsor-title {
      font-size: 1.5rem;
    }

    .sponsor-logo-item {
      width: 140px;
      height: 100px;
    }

    .sponsor-track {
      gap: 40px;
      animation-duration: 120s;
    }

    /* e-book viewer */
    #book {
      width: 100%;
      height: auto;
      aspect-ratio: 2048 / 1240;
      object-fit: contain;
    }

    .stf__block {
      top: 20px;
    }

    /* scroll to top button */
    .scroll-to-top {
      bottom: 14px;
      right: 17px;
      width: 55px;
      height: 55px;
    }

    .scroll-to-top svg {
      width: 24px;
      height: 24px;
    }

    /* floating action buttons (call + enquiry) */
    .fab-container {
      bottom: 20px;
      right: 20px;
    }

    .fab-toggle {
      width: 56px;
      height: 56px;
    }

    .fab-icon-wrapper {
      width: 46px;
      height: 46px;
    }

    .fab-text {
      font-size: 13px;
      padding: 8px 14px;
    }

    /* mobile nav link sizes */
    .mobile-nav-link {
      font-size: 20px;
    }

    /* make sure images dont overflow */
    .profile-image img,
    .horizon-image,
    .horizon-image2,
    .sc-image,
    .sc-image2,
    .em-image,
    .em-image2 {
      width: 100%;
      height: auto;
    }

    /* min tap size for accessibility */
    a,
    input,
    select,
    textarea {
      min-height: 44px;
      min-width: 44px;
    }

    .mobile-menu-toggle {
      min-height: 48px;
      min-width: 48px;
    }

    .mobile-nav-close {
      min-height: 48px;
      min-width: 48px;
    }

    /* fluid text sizes */
    h1 {
      font-size: clamp(1.5rem, 5vw, 2.5rem);
      line-height: 1.2;
    }

    h2 {
      font-size: clamp(1.3rem, 4.5vw, 2.2rem);
      line-height: 1.3;
    }

    h3 {
      font-size: clamp(1.1rem, 4vw, 1.8rem);
      line-height: 1.4;
    }

    p {
      font-size: clamp(0.95rem, 2.5vw, 1rem);
      line-height: 1.6;
    }

    .mobile-nav-link {
      font-size: clamp(1.2rem, 4vw, 2rem);
    }

    .mobile-submenu-link {
      font-size: clamp(1rem, 3vw, 1.2rem);
    }
  }


  /* 600px — medium phones */
  @media (min-width: 441px) and (max-width: 600px) {
    html {
      font-size: 15px;
    }

    /* world map on medium phones — tighter zoom */
    .hero {
      height: 60vh;
      min-height: 420px;
    }

    .hero-map {
      background-size: 280% !important;
      background-position: 50% 250% !important;
      background-attachment: scroll !important;
    }

    .logo-wrap {
      width: 105px;
      height: 75px;
    }

    .hero-center-row {
      width: 72%;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 135px;
    }

    .swinging-emblem {
      width: 110px;
    }

    .profile-title {
      font-size: 38px;
    }

    .contact-header h1 {
      font-size: 2.2rem;
    }

    .mobile-nav-link {
      font-size: 22px;
    }

    .cs-slide {
      padding: 35px 25px;
    }

    .cs-slide__title {
      font-size: 20px;
    }

    section {
      padding: 50px 0;
    }

    .container {
      padding: 0 12px;
    }
  }


  /* 480px — small phones (iPhone SE, Galaxy A etc) */
  @media (max-width: 480px) {

    /* world map on small phones — zoom in close to MENA */
    .hero {
      height: 55vh;
      min-height: 400px;
    }

    .hero-map {
      background-size: 340% !important;
      background-position: 50% 70% !important;
      background-attachment: scroll !important;
    }

    /* scale down the hero text and emblem */
    .hero-center-row {
      width: 80%;
      gap: 4px;
      padding: 10px;
    }

    .hero-text.left {
      margin-right: -50px;
      padding-top: 45px;
    }

    .hero-text.right {
      margin-left: -50px;
      padding-top: 30px;
    }

    /* Header */
    .logo-wrap {
      width: 100px;
      height: 70px;
    }

    /* Hero */
    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 140px;
    }

    .swinging-emblem {
      width: 100px;
    }

    /* Footer */
    .footer-left,
    .footer-right {
      font-size: 11px;
    }

    /* Services charter */
    .services-charter {
      padding: 40px 12px;
    }

    .services-charter-left {
      padding: 25px 18px;
    }

    .services-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .charter-title {
      font-size: 22px;
    }

    .charter-description {
      font-size: 13px;
    }

    .service-card img {
      height: 140px;
    }

    .service-card-title {
      font-size: 12px;
      min-height: 60px;
    }

    .service-number {
      width: 36px;
      height: 36px;
      font-size: 16px;
    }

    /* Contact */
    .contact-main-title {
      font-size: 1.75rem;
    }

    .contact-right {
      padding: 25px 20px;
    }

    .form-input,
    .form-textarea {
      padding: 12px 16px;
      font-size: 14px;
    }

    .form-submit-btn {
      padding: 14px 28px;
      font-size: 15px;
    }

    .contact-header h1 {
      font-size: 2rem;
    }

    /* Profile */
    .profile-title {
      font-size: 36px;
    }

    /* CS Slider */
    .cs-slide__title {
      font-size: 18px;
    }

    .cs-slide__text {
      font-size: 12px;
    }

    /* Scroll to top */
    .scroll-to-top {
      bottom: 14px;
      right: 17px;
      width: 50px;
      height: 50px;
    }

    .scroll-to-top svg {
      width: 22px;
      height: 22px;
    }
  }



  @media (min-width: 375px) and (max-width: 440px) {
    html {
      font-size: 14.5px;
    }

    /* world map on iPhones — 55vh so the globe stays clear of the footer */
    .hero {
      height: 55vh;
      min-height: 360px;
    }

    .hero-map {
      background-size: 330% !important;
      background-position: 50% 100% !important;
      background-attachment: scroll !important;
    }

    .hero-center-row {
      width: 78%;
      gap: 3px;
    }

    .hero-text.left {
      margin-right: -55px;
      padding-top: 50px;
    }

    .hero-text.right {
      margin-left: -55px;
      padding-top: 35px;
    }

    .logo-wrap {
      width: 95px;
      height: 70px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 120px;
    }

    .swinging-emblem {
      width: 95px;
    }

    .hero-company-name-top span {
      font-size: 13px;
    }

    .hero-company-name-bottom .arabic-large {
      font-size: 32px;
    }

    .hero-company-name-bottom .arabic-small {
      font-size: 14px;
    }

    .contact-header h1 {
      font-size: 2rem;
    }

    .profile-title {
      font-size: 32px;
    }

    .mobile-nav-link {
      font-size: 20px;
    }

    .cs-slide {
      padding: 30px 20px;
    }

    .cs-slide__title {
      font-size: 18px;
    }
  }



  @media (max-width: 374px) {
    html {
      font-size: 14px;
    }

    /* world map on 360px phones like Galaxy S8+ — scale with vh so it looks right on both short and tall screens */
    .hero {
      height: 60vh;
      min-height: 420px;
    }

    .hero-map {
      background-size: 320% !important;
      background-position: 50% 100% !important;
      background-attachment: scroll !important;
    }

    .hero-center-row {
      width: 82%;
      gap: 2px;
      padding: 8px;
    }

    .hero-text.left {
      margin-right: -45px;
      padding-top: 40px;
    }

    .hero-text.right {
      margin-left: -45px;
      padding-top: 28px;
    }

    .logo-wrap {
      width: 80px;
      height: 60px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 100px;
    }

    .swinging-emblem {
      width: 80px;
    }

    .hero-company-name-top span {
      font-size: 12px;
      letter-spacing: 1px;
    }

    .hero-company-name-bottom .arabic-large {
      font-size: 28px;
      letter-spacing: 2px;
    }

    .hero-company-name-bottom .arabic-small {
      font-size: 12px;
    }

    .contact-header h1 {
      font-size: 1.8rem;
    }

    .profile-title {
      font-size: 28px;
    }

    .mobile-nav-link {
      font-size: 18px;
      padding: 15px 0;
    }

    .mobile-submenu-link {
      font-size: 14px;
    }

    .mobile-nav-container {
      padding: 15px;
    }

    .mobile-nav-title {
      font-size: 12px;
    }

    .cs-slide {
      padding: 25px 15px;
    }

    .cs-slide__title {
      font-size: 16px;
    }

    .container {
      padding: 0 10px;
    }

    section {
      padding: 40px 0;
    }

    .header-inner {
      padding: 8px 10px;
    }

    body {
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
    }
  }



  @media (max-width: 344px) {

    .hero {
      height: 62vh;
      min-height: 430px;
    }

    .hero-map {
      background-size: 300% !important;
      background-position: 50% 100% !important;
      background-attachment: scroll !important;
    }

    .hero-center-row {
      width: 85%;
      top: 45%;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 88px;
    }

    .swinging-emblem {
      width: 72px;
    }

    .hero-text.left  { margin-right: -38px; }
    .hero-text.right { margin-left:  -38px; }
  }


  /* tablet portrait, 601–768px */
  @media (min-width: 601px) and (max-width: 768px) {
    html {
      font-size: 15.5px;
    }

    /* world map tablet portrait */
    .hero {
      height: 60vh;
      min-height: 450px;
    }

    .hero-map {
      background-size: 230% !important;
      background-position: 50% 100% !important;
      background-attachment: scroll !important;
    }

    .logo-wrap {
      width: 115px;
      height: 80px;
    }

    .hero-center-row {
      width: 70%;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 150px;
    }

    .swinging-emblem {
      width: 125px;
    }

    .profile-title {
      font-size: 40px;
    }

    .contact-header h1 {
      font-size: 2.3rem;
    }

    .mobile-nav-link {
      font-size: 24px;
    }

    .cs-slide {
      padding: 38px 28px;
    }

    section {
      padding: 60px 0;
    }
  }


  /* masonry grid collapses to 1 column on tiny screens */
  @media (max-width: 520px) {
    .photo-wall,
    .grid {
      column-count: 1 !important;
    }
  }



  @media (max-width: 768px) and (orientation: landscape) {

    .hero {
      height: 100vh;
    }

    /* world map in landscape — wider so you see more of it */
    .hero-map {
      background-size: 170% !important;
      background-position: 50% 72% !important;
      background-attachment: scroll !important;
    }

    .logo-wrap {
      height: 60px;
    }

    .mobile-nav-link {
      font-size: 22px;
      padding: 15px 0;
    }

    .mobile-nav-header {
      margin-bottom: 30px;
    }
  }

  @media (max-height: 500px) and (orientation: landscape) {

    .hero {
      height: 90vh;
    }

    /* very short landscape — really cramped, pull back even more */
    .hero-map {
      background-size: 150% !important;
      background-position: 50% 70% !important;
    }

    section {
      padding: 30px 0;
    }

    .hero-company-name-top {
      top: 50px;
    }

    .hero-company-name-bottom {
      bottom: 150px;
    }

    .mobile-nav-link {
      padding: 12px 0;
      font-size: 18px;
    }
  }


  /* profile page mobile tweaks */

  /* profile page on tablets */
  @media (max-width: 1024px) {
    .profile-hero {
      padding: 120px 40px 60px;
    }

    .profile-hero-inner {
      gap: 50px;
    }

    .profile-photo-frame {
      width: 340px;
    }

    .profile-big-name {
      font-size: clamp(28px, 3.5vw, 46px);
    }

    .profile-tagline {
      font-size: 17px;
    }

    .profile-nav-btn {
      font-size: 11px;
      padding: 16px 24px;
    }
  }

  /* profile page on small tablets */
  @media (max-width: 900px) {
    .profile-hero {
      padding: 100px 30px 60px;
      min-height: auto;
    }

    .profile-hero-inner {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .profile-photo-frame {
      width: 100%;
      max-width: 300px;
    }

    .profile-big-name {
      font-size: 32px;
    }

    .profile-tagline {
      font-size: 15px;
      margin-bottom: 30px;
    }
  }

  /* profile page on phones — stack the photo and text vertically */
  @media (max-width: 768px) {
    .profile-hero {
      padding: 100px 24px 50px;
      min-height: auto;
      align-items: flex-start;
    }

    .profile-hero-inner {
      grid-template-columns: 1fr;
      gap: 32px;
      align-items: center;
    }

    .profile-photo-side {
      justify-content: center;
    }

    .profile-photo-frame {
      width: 220px;
      max-width: 100%;
      border-radius: 14px;
      margin: 0 auto;
    }

    .profile-photo-frame::before {
      inset: -10px;
      border-radius: 20px;
    }

    .profile-photo-frame::after {
      inset: -20px;
      border-radius: 26px;
    }

    .profile-content-side {
      align-items: center;
      text-align: center;
    }

    .profile-eyebrow {
      font-size: 10px;
      letter-spacing: 2.5px;
      margin-bottom: 10px;
    }

    .profile-big-name {
      font-size: clamp(26px, 7vw, 38px);
      margin-bottom: 10px;
      text-align: center;
    }

    .profile-tagline {
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 28px;
      text-align: justify;
      max-width: 100%;
    }

    .profile-nav-links {
      max-width: 100%;
      width: 100%;
      gap: 10px;
    }

    .profile-nav-btn {
      font-size: 10px;
      padding: 15px 20px;
      letter-spacing: 2px;
    }

    .ebook-btn {
      bottom: auto;
      top: 15px;
      right: 80px;
      margin-top: 15px;
      padding: 6px 12px;
      font-size: 10px;
    }
  }

  /* profile page on small phones */
  @media (max-width: 480px) {
    .profile-hero {
      padding: 90px 18px 40px;
    }

    .profile-photo-frame {
      width: 180px;
    }

    .profile-big-name {
      font-size: clamp(22px, 6vw, 30px);
    }

    .profile-tagline {
      font-size: 13px;
      line-height: 1.65;
    }

    .profile-nav-btn {
      font-size: 9.5px;
      padding: 13px 16px;
      letter-spacing: 1.5px;
    }

    .blob-tl {
      width: 300px;
      height: 300px;
      top: -80px;
      left: -60px;
    }

    .blob-bl {
      width: 220px;
      height: 220px;
    }

    .blob-tc {
      width: 250px;
      height: 180px;
    }
  }

  /* profile page on the tiniest screens */
  @media (max-width: 374px) {
    .profile-hero {
      padding: 85px 14px 35px;
    }

    .profile-photo-frame {
      width: 160px;
    }

    .profile-big-name {
      font-size: 22px;
    }

    .profile-eyebrow {
      font-size: 9px;
      letter-spacing: 2px;
    }

    .profile-tagline {
      font-size: 12.5px;
    }

    .profile-nav-btn {
      font-size: 9px;
      padding: 12px 14px;
    }
  }


  /* retina / high-dpi screens */
  @media (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi) {
    .hamburger-line {
      height: 2px;
    }

    .mobile-nav-overlay {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
  }


  /* services page on mobile */

  /* services charter on mobile */
  @media (max-width: 768px) {

    .services-charter {
      padding: 30px 15px;
    }

    .services-charter-container {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 0;
    }

    .services-charter-left {
      padding: 24px 16px;
      border-radius: 0;
    }

    .charter-title {
      font-size: 20px;
      margin-bottom: 12px;
    }

    .charter-description {
      font-size: 13px;
      line-height: 1.65;
    }

    .services-charter-right {
      padding: 16px;
    }

    .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .service-card {
      border-radius: 8px;
      overflow: hidden;
    }

    .service-card img {
      width: 100%;
      height: 80px;
      object-fit: cover;
    }

    .service-card-title {
      font-size: 10px;
      padding: 8px 6px;
      min-height: 44px;
      line-height: 1.35;
    }

    .service-number {
      width: 26px;
      height: 26px;
      font-size: 12px;
      top: 6px;
      left: 6px;
    }
  }

  /* service detail rows on mobile */
  @media (max-width: 768px) {

    .sc-section,
    .sc-section2,
    .sc-section2.reverse {
      flex-direction: column !important;
      padding: 36px 16px;
      gap: 24px;
    }

    .sc-text,
    .sc-text2 {
      width: 100% !important;
      padding: 0 !important;
    }

    .sc-text h3,
    .sc-text2 h3 {
      font-size: 15px;
      line-height: 1.4;
      margin-bottom: 12px;
      letter-spacing: 0.5px;
    }

    .sc-text p,
    .sc-text2 p {
      font-size: 13px;
      line-height: 1.65;
      margin-bottom: 14px;
    }

    .sc-text ul,
    .sc-text2 ul {
      margin-left: 18px !important;
      padding-left: 0;
    }

    .sc-text ul li,
    .sc-text2 ul li {
      font-size: 12.5px;
      line-height: 1.6;
      margin-bottom: 6px;
    }

    .sc-image,
    .sc-image2 {
      width: 100% !important;
      height: 220px !important;
      margin-top: 0 !important;
      border-radius: 8px;
      overflow: hidden;
    }

    .sc-image img,
    .sc-image2 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
    }
  }

  /* the bullet point slider inside service 4 */
  @media (max-width: 768px) {

    .bullet-slider {
      margin-top: 16px;
      position: relative;
    }

    .slider-container {
      overflow: hidden;
      border-radius: 8px;
    }

    .slider-track {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      transition: transform 0.35s ease;
    }

    .slide {
      min-width: 100%;
      box-sizing: border-box;
      padding: 16px;
      list-style: none;
    }

    .slide ul {
      margin-left: 16px !important;
      padding: 0;
    }

    .slide ul h2 {
      font-size: 14px !important;
      margin-bottom: 10px;
    }

    .slide ul li {
      font-size: 12.5px;
      line-height: 1.6;
      margin-bottom: 6px;
    }

    .slider-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(99, 30, 15, 0.75);
      border: none;
      color: #fff;
      font-size: 22px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 5;
      line-height: 1;
      -webkit-tap-highlight-color: transparent;
    }

    .left-arrow  { left: -12px; }
    .right-arrow { right: -12px; }

    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 12px;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .dot.active {
      background: #E1AB79;
    }
  }

  /* services grid on small phones */
  @media (max-width: 480px) {

    .services-grid {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .service-card img {
      height: 70px;
    }

    .service-card-title {
      font-size: 9.5px;
      padding: 6px 5px;
      min-height: 40px;
    }

    .sc-section,
    .sc-section2,
    .sc-section2.reverse {
      padding: 28px 14px;
    }

    .sc-text h3,
    .sc-text2 h3 {
      font-size: 14px;
    }

    .sc-text p,
    .sc-text2 p {
      font-size: 12.5px;
    }

    .sc-text ul li,
    .sc-text2 ul li {
      font-size: 12px;
    }

    .sc-image,
    .sc-image2 {
      height: 180px !important;
    }
  }

  /* services on the tiniest phones */
  @media (max-width: 374px) {

    .charter-title {
      font-size: 18px;
    }

    .services-grid {
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .service-card img {
      height: 60px;
    }

    .service-card-title {
      font-size: 9px;
      padding: 5px 4px;
    }

    .sc-section,
    .sc-section2,
    .sc-section2.reverse {
      padding: 22px 12px;
    }

    .sc-text h3,
    .sc-text2 h3 {
      font-size: 13px;
    }

    .sc-image,
    .sc-image2 {
      height: 160px !important;
    }
  }

  /* ============================================================
    FINAL FIX: Replace your entire previous 
    @media (min-width: 769px) and (max-width: 1100px) block
    in mobile.css with this one.
    ============================================================ */

  @media (min-width: 769px) and (max-width: 1100px) {

    /* ── Header: NEVER clip overflow — dropdowns must escape ── */
    .site-header,
    .header-inner,
    .nav.desktop-nav,
    .nav-dropdown {
      overflow: visible !important;
    }

    /* ── Header inner layout ── */
    .header-inner {
      padding: 0 12px;
      gap: 4px;
      flex-wrap: nowrap;
      align-items: center;
      position: relative;
    }

    /* ── Left logo ── */
    .logo-wrap {
      width: 110px;
      height: 80px;
      margin-left: 0;
      flex-shrink: 0;
    }

    /* ── Nav pills ── */
    .nav.desktop-nav {
      margin-left: 4px;
      margin-top: -30px;
      gap: 4px;
      flex-shrink: 1;
      flex-grow: 0;
      min-width: 0;
    }

    .nav-dropdown > a {
      font-size: 0.68rem;
      padding: 7px 9px;
      letter-spacing: 0;
      white-space: nowrap;
      border-radius: 20px;
    }

    /* ══════════════════════════════════════════════════════════
      DROPDOWN MENUS — hover triggered, high z-index, visible
      ══════════════════════════════════════════════════════════ */

    .nav-dropdown {
      position: relative;
    }

    /* Base state: hidden */
    .nav-dropdown > .dropdown-menu {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      min-width: 180px;
      background: #ffffff;
      border-radius: 14px;
      border: 1px solid rgba(225, 171, 121, 0.25);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
      z-index: 99999;
      pointer-events: none;
    }

    /* Hover state: show */
    .nav-dropdown:hover > .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    /* Dropdown links */
    .dropdown-menu a {
      display: block;
      padding: 9px 14px;
      font-size: 0.82rem;
      color: #6b4a3a;
      white-space: nowrap;
      border-radius: 8px;
      margin: 2px 6px;
      transition: background 0.18s ease, color 0.18s ease;
      text-decoration: none;
    }

    .dropdown-menu a:hover {
      background: #f4f1ee;
      color: #5c1822;
    }

    /* ── Nested dropdown (RELIANCE → VISION / MISSION) ── */
    .dropdown-menu .nav-dropdown {
      display: block;
      position: relative;
    }

    .dropdown-menu .nav-dropdown > .dropdown-toggle {
      width: 86%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 9px 14px;
      line-height: normal;
    }

    .dropdown-menu .nav-dropdown > .dropdown-toggle::after {
      content: '›';
      margin-left: auto;
      padding-left: 10px;
      font-size: 1.1rem;
      transition: transform 0.2s ease;
    }

    .dropdown-menu .nav-dropdown:hover > .dropdown-toggle::after {
      transform: translateX(3px);
    }

    /* Nested menu: opens to the right */
    .dropdown-menu .dropdown-menu {
      top: 0;
      left: 100%;
      transform: translateX(4px) translateY(0);
      min-width: 160px;
    }

    .dropdown-menu .nav-dropdown:hover > .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(0) translateY(0);
      pointer-events: auto;
    }

    /* ── RIGHT animated logo block ── */
    .logo-wrap.right-logo {
      width: 120px;
      height: 85px;
      margin-right: 0;
      margin-top: -10px;
      flex-shrink: 0;
      overflow: visible;
      position: relative;
    }

    .logo-animated-icon {
      width: 42px;
      height: 42px;
      margin-bottom: 6px;
    }

    .logo-animated-icon img {
      width: 34px;
      height: 34px;
    }

    .logo-animated-item:nth-child(1) .logo-animated-icon img {
      margin-left: -65px;
    }

    .logo-animated-item:nth-child(2) .logo-animated-icon img {
      margin-left: 8px;
    }

    .logo-animated-item:nth-child(3) .logo-animated-icon img {
      margin-left: 22px;
    }

    /* "Precision | Purpose | Poise" text */
    .right-text {
      font-size: 10px;
      margin-right: 0;
      margin-left: -4px;
      white-space: nowrap;
      letter-spacing: 0;
    }

    /* ── E-Book button ── */
    .ebook-btn {
      position: absolute;
      bottom: 6px;
      right: 14px;
      font-size: 10px;
      padding: 5px 12px;
      z-index: 1100;
    }
  }

  /* ============================================================
    FIX: Large & Wide Monitor Responsive (1280px and above)
    Paste this at the END of your style.css file.
    ============================================================ */

  /* ── 1280px – 1440px: Standard large laptops/monitors ── */
  @media (min-width: 1280px) and (max-width: 1440px) {

    /* Header */
    .header-inner {
      padding: 0 30px;
      gap: 10px;
    }

    .logo-wrap {
      width: 160px;
      height: 110px;
      margin-left: -50px;
    }

    .logo-wrap.right-logo {
      width: 180px;
      height: 130px;
      margin-right: -100px;
      margin-top: -25px;
    }

    .nav.desktop-nav {
      gap: 10px;
      margin-top: -40px;
    }

    .nav-dropdown > a {
      font-size: 0.82rem;
      padding: 9px 16px;
    }

    .right-text {
      font-size: 13px;
      margin-right: 40px;
    }

    .ebook-btn {
      right: 30px;
      bottom: 7px;
    }

    /* Hero */
    .hero {
      height: 80vh;
    }

    .hero-center-row {
      top: 8%;
      gap: 70px;
    }

    .swinging-emblem {
      width: 220px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 280px;
    }

    .hero-text.left {
      margin-bottom: -120px;
      margin-right: -50px;
    }

    .hero-text.right {
      margin-bottom: -70px;
      margin-left: -50px;
    }
  }

  /* ── 1440px – 1600px: Common wide monitors ── */
  @media (min-width: 1440px) and (max-width: 1600px) {

    /* Header */
    .header-inner {
      padding: 0 35px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .logo-wrap {
      width: 170px;
      height: 115px;
      margin-left: -60px;
    }

    .logo-wrap.right-logo {
      width: 190px;
      height: 135px;
      margin-right: -115px;
      margin-top: -28px;
    }

    .nav.desktop-nav {
      gap: 12px;
      margin-top: -42px;
    }

    .nav-dropdown > a {
      font-size: 0.88rem;
      padding: 10px 18px;
    }

    .right-text {
      font-size: 13.5px;
      margin-right: 50px;
    }

    .ebook-btn {
      right: 36px;
      bottom: 8px;
    }

    /* Hero */
    .hero {
      height: 78vh;
    }

    .hero-center-row {
      top: 7%;
      gap: 75px;
    }

    .swinging-emblem {
      width: 230px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 290px;
    }

    .hero-text.left {
      margin-bottom: -115px;
      margin-right: -55px;
    }

    .hero-text.right {
      margin-bottom: -70px;
      margin-left: -55px;
    }
  }

  /* ── 1600px – 1920px: Full HD monitors ── */
  @media (min-width: 1600px) and (max-width: 1920px) {

    /* Header */
    .header-inner {
      padding: 0 40px;
      max-width: 1500px;
      margin: 0 auto;
    }

    .logo-wrap {
      width: 180px;
      height: 120px;
      margin-left: -65px;
    }

    .logo-wrap.right-logo {
      width: 200px;
      height: 140px;
      margin-right: -125px;
      margin-top: -30px;
    }

    .logo-animated-icon img {
      width: 55px;
      height: 55px;
    }

    .logo-animated-item:nth-child(1) .logo-animated-icon img {
      margin-left: -60px;
    }

    .logo-animated-item:nth-child(2) .logo-animated-icon img {
      margin-left: 60px;
    }

    .logo-animated-item:nth-child(3) .logo-animated-icon img {
      margin-left: 100px;
    }

    .nav.desktop-nav {
      gap: 14px;
      margin-top: -44px;
    }

    .nav-dropdown > a {
      font-size: 0.92rem;
      padding: 10px 20px;
    }

    .right-text {
      font-size: 14px;
      left : 50px;
      margin-top: 50px;
      margin-left: 0px;
      margin-right: 0px;

    }

    .ebook-btn {
      right: 40px;
      bottom: 8px;
      margin-right: 70px;
    }

    /* Hero — original proportions maintained */
    .hero {
      height: 77vh;
    }

    .hero-center-row {
      top: 5%;
      gap: 80px;
    }

    .swinging-emblem {
      width: 240px;
    }

    .text-en-img {
      width: 300px;
    }

    .text-ar-img {
      width: 300px;
    }

    .hero-text.left {
      margin-bottom: -120px;
      margin-right: -60px;
    }

    .hero-text.right {
      margin-bottom: -70px;
      margin-left: -60px;
    }
  }

  /* ── 1920px – 2560px: 2K / QHD monitors ── */
  @media (min-width: 1920px) and (max-width: 2560px) {

    /* Header */
    .header-inner {
      max-width: 1800px;
      margin: 0 auto;
      padding: 0 60px;
    }

    .logo-wrap {
      width: 210px;
      height: 140px;
      margin-left: -70px;
    }

    .logo-wrap.right-logo {
      width: 240px;
      height: 160px;
      margin-right: -140px;
      margin-top: -35px;
    }

    .logo-animated-icon {
      width: 90px;
      height: 90px;
    }

    .logo-animated-icon img {
      width: 70px;
      height: 70px;
    }

    .logo-animated-item:nth-child(1) .logo-animated-icon img {
      margin-left: -200px;
    }

    .logo-animated-item:nth-child(2) .logo-animated-icon img {
      margin-left: -52px;
    }

    .logo-animated-item:nth-child(3) .logo-animated-icon img {
      margin-right: -80px;
    }

    .nav.desktop-nav {
      gap: 20px;
      margin-top: -52px;
    }

    .nav-dropdown > a {
      font-size: 1.05rem;
      padding: 12px 26px;
    }

    .right-text {
      font-size: 17px;
      margin-right: 70px;
    }

    .ebook-btn {
      right: 55px;
      bottom: 10px;
      font-size: 13px;
      padding: 9px 20px;
    }

    /* Hero */
    .hero {
      height: 75vh;
    }

    .hero-center-row {
      top: 6%;
      gap: 110px;
    }

    .swinging-emblem {
      width: 320px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 400px;
    }

    .hero-text.left {
      margin-bottom: -160px;
      margin-right: -80px;
    }

    .hero-text.right {
      margin-bottom: -100px;
      margin-left: -80px;
    }
  }

  /* ── 2560px and above: 4K / Ultra-wide monitors ── */
  @media (min-width: 2560px) {

    /* Header */
    .header-inner {
      max-width: 2400px;
      margin: 0 auto;
      padding: 0 80px;
    }

    .logo-wrap {
      width: 260px;
      height: 170px;
      margin-left: -80px;
    }

    .logo-wrap.right-logo {
      width: 300px;
      height: 200px;
      margin-right: -180px;
      margin-top: -45px;
    }

    .logo-animated-icon {
      width: 110px;
      height: 110px;
    }

    .logo-animated-icon img {
      width: 90px;
      height: 90px;
    }

    .logo-animated-item:nth-child(1) .logo-animated-icon img {
      margin-left: -260px;
    }

    .logo-animated-item:nth-child(2) .logo-animated-icon img {
      margin-left: -65px;
    }

    .logo-animated-item:nth-child(3) .logo-animated-icon img {
      margin-right: -100px;
    }

    .nav.desktop-nav {
      gap: 28px;
      margin-top: -65px;
    }

    .nav-dropdown > a {
      font-size: 1.2rem;
      padding: 14px 32px;
    }

    .right-text {
      font-size: 20px;
      margin-right: 90px;
    }

    .ebook-btn {
      right: 70px;
      bottom: 12px;
      font-size: 15px;
      padding: 10px 24px;
    }

    .ebook-btn svg {
      width: 16px;
      height: 16px;
    }

    /* Hero */
    .hero {
      height: 72vh;
    }

    .hero-center-row {
      top: 6%;
      gap: 140px;
    }

    .swinging-emblem {
      width: 420px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 520px;
    }

    .hero-text.left {
      margin-bottom: -200px;
      margin-right: -100px;
    }

    .hero-text.right {
      margin-bottom: -130px;
      margin-left: -100px;
    }
  }


  /* ── Fold OUTER screen / narrow portrait: 344px – 430px ─────
    The Fold 7 outer screen is ~374px wide.
    Your existing rules cover most of it, but let's make sure
    the hero text doesn't get cramped.
    ──────────────────────────────────────────────────────────── */
  @media (min-width: 344px) and (max-width: 430px) {

    .hero {
      height: 56vh;
      min-height: 380px;
    }

    .hero-map {
      background-size: 320% !important;
      background-position: 50% 75% !important;
    }

    .hero-center-row {
      width: 80%;
      gap: 4px;
      top: 40%;
    }

    .hero-text.left {
      margin-right: -52px;
      padding-top: 46px;
    }

    .hero-text.right {
      margin-left: -52px;
      padding-top: 32px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 118px;
    }

    .swinging-emblem {
      width: 96px;
    }

    .logo-wrap {
      width: 100px;
      height: 70px;
    }
  }


  /* ============================================================
    FIX: Samsung Galaxy Z Fold 7 — UNFOLDED screen
    The Fold 7 unfolded is ~904px wide × ~1080px tall (portrait)
    or ~1080px wide × ~904px tall (landscape).
    This targets both orientations specifically.
    
    PASTE THIS AT THE VERY END of your mobile.css file.
    REMOVE any previous fix-fold7.css content you added.
    ============================================================ */


  /* ── Fold 7 Unfolded PORTRAIT: ~880px–1080px wide, tall ─────── */
  @media (min-width: 880px) and (max-width: 1100px) {

    /* Header */
    .site-header,
    .header-inner,
    .nav.desktop-nav,
    .nav-dropdown {
      overflow: visible !important;
    }

    .header-inner {
      padding: 0 10px;
      gap: 4px;
      flex-wrap: nowrap;
      align-items: center;
    }

    .logo-wrap {
      width: 100px;
      height: 70px;
      margin-left: 0;
      flex-shrink: 0;
    }

    .nav.desktop-nav {
      margin-left: 2px;
      margin-top: -25px;
      gap: 3px;
      flex-shrink: 1;
    }

    .nav-dropdown > a {
      font-size: 0.62rem;
      padding: 6px 8px;
      letter-spacing: 0;
      white-space: nowrap;
      border-radius: 18px;
    }

    /* Dropdowns still work */
    .nav-dropdown > .dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      min-width: 170px;
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid rgba(225, 171, 121, 0.25);
      box-shadow: 0 8px 24px rgba(0,0,0,0.14);
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
      z-index: 99999;
      pointer-events: none;
    }

    .nav-dropdown:hover > .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    .dropdown-menu a {
      display: block;
      padding: 8px 12px;
      font-size: 0.78rem;
      color: #6b4a3a;
      white-space: nowrap;
      border-radius: 8px;
      margin: 2px 5px;
    }

    .dropdown-menu a:hover {
      background: #f4f1ee;
      color: #5c1822;
    }

    /* Nested dropdown */
    .dropdown-menu .dropdown-menu {
      top: 0;
      left: 100%;
      transform: translateX(0);
    }

    /* Right logo */
    .logo-wrap.right-logo {
      width: 105px;
      height: 75px;
      margin-right: 0;
      margin-top: -8px;
      flex-shrink: 0;
      overflow: visible;
    }

    .logo-animated-icon {
      width: 38px;
      height: 38px;
    }

    .logo-animated-icon img {
      width: 30px;
      height: 30px;
    }

    .logo-animated-item:nth-child(1) .logo-animated-icon img {
      margin-left: -58px;
    }

    .logo-animated-item:nth-child(2) .logo-animated-icon img {
      margin-left: 6px;
    }

    .logo-animated-item:nth-child(3) .logo-animated-icon img {
      margin-left: 20px;
    }

    .right-text {
      font-size: 9px;
      margin-right: 0;
      margin-left: -4px;
      white-space: nowrap;
      letter-spacing: 0;
    }

    .ebook-btn {
      position: absolute;
      bottom: 5px;
      right: 12px;
      font-size: 9px;
      padding: 5px 10px;
      z-index: 1100;
    }

    /* ── HERO: the main fix ── */
    .hero {
      height: 55vh;          /* was way too tall — cap it */
      min-height: 420px;
      max-height: 560px;     /* hard cap so it doesn't stretch on tall screens */
      position: relative;
      overflow: hidden;
    }

    .hero-map {
      position: absolute !important;
      inset: 0 !important;
      background-size: 130% !important;
      background-position: 50% 95% !important;
      background-attachment: scroll !important;
    }

    /* Center the content properly */
    .hero-center-row {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 40px;
      width: 80%;
      padding: 0;
      z-index: 10;
    }

    .hero-text.left {
      margin: 0;
      justify-content: flex-end;
      margin-right: -40px;
      padding-top: 70px;
    }

    .hero-text.right {
      margin: 0;
      justify-content: flex-start;
      margin-left: -40px;
      padding-top: 45px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 200px;
    }

    .swinging-emblem {
      width: 160px;
    }
  }



  /* ── Fold 7 LANDSCAPE unfolded: ~900px wide × ~712px tall ──── */
  @media (min-width: 800px) and (max-width: 960px) and (max-height: 800px) {

    .hero {
      height: 100vh;
      min-height: 500px;
    }

    .hero-map {
      background-size: 140% !important;
      background-position: 50% 90% !important;
    }

    .hero-center-row {
      top: 45%;
      gap: 25px;
      width: 88%;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 200px;
    }

    .swinging-emblem {
      width: 170px;
    }

    .hero-text.left {
      margin-right: -45px;
      padding-top: 70px;
    }

    .hero-text.right {
      margin-left: -45px;
      padding-top: 46px;
    }
  }


  /* ============================================================
    FOLD 7 FINAL FIX — v5
    
    IMPORTANT: Remove ALL previous fold7 blocks from mobile.css
    (everything from "FIX: Samsung Galaxy Z Fold" onwards)
    Then paste ONLY this at the very end of mobile.css
    ============================================================ */

  @media (min-width: 600px) and (max-width: 800px) {

    /* ── Reset ── */
    html, body {
      overflow-x: hidden;
      padding-top: 0 !important;
      margin-top: 0 !important;
    }

    body {
      padding-top: 0 !important;
    }

    /* ── Header overflow must stay visible ── */
    .site-header,
    .header-inner {
      overflow: visible !important;
      position: relative;
      z-index: 1000;
    }

    .header-inner {
      padding: 6px 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: nowrap;
    }

    /* ── Left logo ── */
    .logo-wrap {
      width: 115px;
      height: 80px;
      margin-left: 0;
      flex-shrink: 0;
    }

    /* ── Hide desktop nav ── */
    .desktop-nav {
      display: none !important;
    }


    /* The three icon wrappers — lay them out horizontally */
    .logo-animated-row {
      display: flex !important;
      flex-direction: row !important;
      gap: 2px !important;
      justify-content: center !important;
    }

    .logo-animated-icon {
      width: 18px !important;
      height: 18px !important;
    }

    .logo-animated-icon img {
      width: 16px !important;
      height: 16px !important;
      margin: 0 !important;           /* reset all negative margins */
    }

    /* Override each icon's individual negative margin offsets */
    .logo-animated-item:nth-child(1) .logo-animated-icon img {
      margin-left: 0 !important;
    }

    .logo-animated-item:nth-child(2) .logo-animated-icon img {
      margin-left: 0 !important;
    }

    .logo-animated-item:nth-child(3) .logo-animated-icon img {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    /* "Precision | Purpose | Poise" text — show small below icons */
    .right-text {
      font-size: 5.5px !important;
      white-space: nowrap !important;
      text-align: center !important;
      margin: 1px 0 0 0 !important;
      letter-spacing: 0 !important;
      display: block !important;
    }

    /* ── E-Book button — sits below the icons ── */
    .ebook-btn {
      position: absolute !important;
      top: 26px !important;           /* just below the icons */
      right: 60px !important;
      bottom: auto !important;
      transform: none !important;
      font-size: 8px !important;
      padding: 3px 8px !important;
      z-index: 1100 !important;
      white-space: nowrap !important;
      margin-top: 10px;
    }

    /* ── Hamburger button — far right ── */
    .mobile-menu-toggle {
      display: flex !important;
      position: absolute !important;
      right: 10px !important;
      top: 50% !important;
      transform: translateY(-50%) !important;
    }

    .mobile-nav-overlay {
      display: flex;
    }

    /* ── HERO ── */
    .hero {
      height: 100vh !important;
      min-height: 480px !important;
      max-height: 620px !important;
      position: relative !important;
      overflow: hidden !important;
      padding: 0 !important;
      margin: 0 !important;
    }

    /* World map */
    .hero-map {
      position: absolute !important;
      inset: 0 !important;
      background-size: 250% !important;
      background-position: 50% 120% !important;
      background-repeat: no-repeat !important;
      background-attachment: scroll !important;
    }

    /* Center row */
    .hero-center-row {
      position: absolute !important;
      top: 44% !important;
      left: 50% !important;
      transform: translate(-50%, -50%) !important;
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 20px !important;
      width: 92% !important;
      padding: 0 !important;
      z-index: 10 !important;
    }

    .hero-text.left {
      margin: 0 !important;
      flex: 0 0 auto;
      margin-right: -50px !important;
      padding-top: 80px !important;
    }

    .hero-text.right {
      margin: 0 !important;
      flex: 0 0 auto;
      margin-left: -50px !important;
      padding-top: 52px !important;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 200px !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    .swinging-emblem {
      width: 170px !important;
    }

    /* ── Sections: no gap after hero ── */
    section {
      margin-top: 0 !important;
    }

    /* ── Footer ── */
    .site-footer {
      flex-direction: row !important;
      justify-content: space-between !important;
      padding: 8px 16px !important;
      margin: 0 !important;
    }

    .footer-left {
      font-size: 11px;
      text-align: left;
      max-width: 50%;
    }

    .footer-right {
      font-size: 13px;
      text-align: right;
      max-width: 50%;
    }

    /* ── FAB buttons ── */
    .fab-container {
      position: fixed !important;
      bottom: 20px !important;
      right: 20px !important;
      z-index: 9999 !important;
    }
  }


  /* ── Fold 7 outer/cover screen: narrow phones 344–430px ── */
  @media (min-width: 344px) and (max-width: 430px) {

    .hero {
      height: 100vh;
      min-height: 380px;
    }

    .hero-map {
      background-size: 320% !important;
      background-position: 50% 100% !important;
    }

    .hero-center-row {
      width: 80%;
      gap: 4px;
      top: 40%;
    }

    .hero-text.left {
      margin-right: -52px;
      padding-top: 46px;
    }

    .hero-text.right {
      margin-left: -52px;
      padding-top: 32px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 118px;
    }
  .text-en-img {
    margin-left: 120px !important;
  }
    .text-ar-img {
      margin-right: 120px !important;
    }

    .swinging-emblem {
      width: 96px;
    }

    .logo-wrap {
      width: 100px;
      height: 70px;
    }
  }


  /* ── Fold 7 unfolded 880–1100px (tablet-like width) ── */
  @media (min-width: 880px) and (max-width: 1100px) {

    .site-header,
    .header-inner,
    .nav.desktop-nav,
    .nav-dropdown {
      overflow: visible !important;
    }

    .header-inner {
      padding: 0 10px;
      gap: 4px;
      flex-wrap: nowrap;
      align-items: center;
    }

    .logo-wrap {
      width: 100px;
      height: 70px;
      margin-left: 0;
      flex-shrink: 0;
    }

    .nav.desktop-nav {
      margin-left: 2px;
      margin-top: -25px;
      gap: 3px;
      flex-shrink: 1;
    }

    .nav-dropdown > a {
      font-size: 0.62rem;
      padding: 6px 8px;
      letter-spacing: 0;
      white-space: nowrap;
      border-radius: 18px;
    }

    .nav-dropdown > .dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 50%;
      transform: translateX(-50%) translateY(4px);
      min-width: 170px;
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid rgba(225, 171, 121, 0.25);
      box-shadow: 0 8px 24px rgba(0,0,0,0.14);
      padding: 8px 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
      z-index: 99999;
      pointer-events: none;
    }

    .nav-dropdown:hover > .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    .dropdown-menu a {
      display: block;
      padding: 8px 12px;
      font-size: 0.78rem;
      color: #6b4a3a;
      white-space: nowrap;
      border-radius: 8px;
      margin: 2px 5px;
    }

    .dropdown-menu a:hover {
      background: #f4f1ee;
      color: #5c1822;
    }

    .dropdown-menu .dropdown-menu {
      top: 0;
      left: 100%;
      transform: translateX(0);
    }

    /* Right logo — keep normal desktop position */
    .logo-wrap.right-logo {
      width: 105px;
      height: 75px;
      margin-right: 0;
      margin-top: -8px;
      flex-shrink: 0;
      overflow: visible;
    }

    .logo-animated-icon {
      width: 38px;
      height: 38px;
    }

    .logo-animated-icon img {
      width: 30px;
      height: 30px;
    }

    .logo-animated-item:nth-child(1) .logo-animated-icon img {
      margin-left: -58px;
    }

    .logo-animated-item:nth-child(2) .logo-animated-icon img {
      margin-left: 6px;
    }

    .logo-animated-item:nth-child(3) .logo-animated-icon img {
      margin-left: 20px;
    }

    .right-text {
      font-size: 9px;
      margin-right: 0;
      margin-left: -4px;
      white-space: nowrap;
      letter-spacing: 0;
    }

    .ebook-btn {
      position: absolute;
      bottom: 5px;
      right: 12px;
      font-size: 9px;
      padding: 5px 10px;
      z-index: 1100;
    }

    /* Hero */
    .hero {
      height: 100vh;
      min-height: 420px;
      max-height: 710px;
      position: relative;
      overflow: hidden;
    }

    .hero-map {
      position: absolute !important;
      inset: 0 !important;
      background-size: 130% !important;
      background-position: 50% 125% !important;
      background-attachment: scroll !important;
    }

    .hero-center-row {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 40px;
      width: 80%;
      padding: 0;
      z-index: 10;
    }

    .hero-text.left {
      margin: 0;
      margin-right: -40px;
      padding-top: 70px;
    }

    .hero-text.right {
      margin: 0;
      margin-left: -40px;
      padding-top: 45px;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 200px;
    }

    .swinging-emblem {
      width: 160px;
    }
  }
  /* ============================================================
    FOLD 7 UNFOLDED — FINAL CORRECT FIX
    
    The Fold 7 unfolded screen is 1856px physical but shown at
    25% zoom in DevTools = 464px CSS pixels.
    It hits the ≤480px breakpoint, NOT the 600-800px range.
    
    REMOVE all previous fold7 blocks and paste ONLY this
    at the very end of your mobile.css
    ============================================================ */


  /* ── Fold 7 Unfolded: 430px – 520px CSS width ── */
  @media (min-width: 430px) and (max-width: 520px) {

    /* ── Header ── */
    .site-header {
      position: relative;
      z-index: 1000;
      overflow: visible;
    }

    .header-inner {
      padding: 8px 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

    /* Left logo — push it closer to center/right of its space */
    .logo-wrap {
      width: 115px;
      height: 80px;
      margin-left: 0;
      flex-shrink: 0;
    }

    /* Hide desktop nav, show hamburger */
    .desktop-nav,
    .logo-wrap.right-logo {
      display: none !important;
    }

    .mobile-menu-toggle {
      display: flex !important;
    }

    .mobile-nav-overlay {
      display: flex;
    }

    /* E-Book button */
    .ebook-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 72px;
      bottom: auto;
      font-size: 9px;
      padding: 4px 10px;
      z-index: 1100;
      margin-top: 0px !important;
    }

    /* ── HERO: fill viewport properly ── */
    .hero {
      height: 85vh !important;
      min-height: 520px !important;
      max-height: 800px !important;
      position: relative !important;
      overflow: hidden !important;
      padding: 0 !important;
      margin: 0 !important;
    }

    /* World map — push it up so it shows nicely */
    .hero-map {
      position: absolute !important;
      inset: 0 !important;
      background-size: 200% !important;
      background-position: 50% 100% !important;
      background-repeat: no-repeat !important;
      background-attachment: scroll !important;
    }

    /* Center row — properly centered vertically */
    .hero-center-row {
      position: absolute !important;
      top: 40% !important;
      left: 50% !important;
      transform: translate(-50%, -50%) !important;
      display: flex !important;
      flex-direction: row !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 6px !important;
      width: 88% !important;
      padding: 0 !important;
      z-index: 10 !important;
    }

    .hero-text.left {
      margin: 0 !important;
      flex: 0 0 auto !important;
      margin-right: -55px !important;
      padding-top: 65px !important;
      justify-content: center !important;
    }

    .hero-text.right {
      margin: 0 !important;
      flex: 0 0 auto !important;
      margin-left: -55px !important;
      padding-top: 42px !important;
      justify-content: center !important;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 165px !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    .emblem-container {
      flex: 0 0 auto !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
    }

    .swinging-emblem {
      width: 145px !important;
    }

    /* Company name overlays — show them */
    .hero-company-name-top {
      display: flex !important;
      top: 110px;
    }

    .hero-company-name-top span {
      font-size: 14px;
    }

    .hero-company-name-bottom {
      display: flex !important;
      bottom: 180px;
    }

    .hero-company-name-bottom .arabic-large {
      font-size: 30px;
    }

    .hero-company-name-bottom .arabic-small {
      font-size: 14px;
    }

    /* ── No gap below hero ── */
    section {
      margin-top: 0 !important;
    }

    /* ── Footer ── */
    .site-footer {
      flex-direction: column;
      padding: 15px 12px;
      text-align: center;
    }

    .footer-left,
    .footer-right {
      max-width: 100%;
      text-align: center;
      font-size: 11px;
    }
  }




  /* ── Fold 7 Unfolded LANDSCAPE (~520-700px, short height) ── */
  @media (min-width: 430px) and (max-width: 700px) and (orientation: landscape) {

    .hero {
      height: 100vh !important;
      min-height: 400px !important;
      max-height: none !important;
    }

    .hero-map {
      background-size: 180% !important;
      background-position: 50% 80% !important;
    }

    .hero-center-row {
      top: 38% !important;
      width: 85% !important;
      gap: 8px !important;
    }

    .text-en-img,
    .text-ar-img,
    .text-3d {
      width: 145px !important;
    }

    .swinging-emblem {
      width: 120px !important;
    }

    .hero-text.left {
      margin-right: -45px !important;
      padding-top: 50px !important;
    }

    .hero-text.right {
      margin-left: -45px !important;
      padding-top: 32px !important;
    }
  }