* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    color: #2c3e50;
    background-image: linear-gradient(135deg, rgba(30, 60, 114, 0.98) 0%, rgba(7, 46, 113, 0.94) 25%, rgba(35, 85, 177, 0.9) 50%, rgba(30, 60, 114, 0.97) 75%, rgba(42, 82, 152, 0.99) 100%), url('images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
  }


  /* Language Switcher - Modern Dropdown Style */
  .language-switcher-wrapper {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 1000;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    animation: fadeInSlideDown 0.6s ease-out;
  }


  @keyframes fadeInSlideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .language-trigger {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 120px;
  }

  .language-trigger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }

  .language-trigger:hover::before {
    left: 100%;
  }

  .language-trigger:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.25));
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
  }

  .language-trigger:active {
    transform: translateY(0);
  }

  .current-language {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
  }

  .current-flag {
    width: 28px;
    height: 21px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .language-trigger:hover .current-flag {
    transform: scale(1.1) rotate(5deg);
  }

  .current-lang-code {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  #chevronIcon {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
  }

  .language-switcher-wrapper.active #chevronIcon {
    transform: rotate(180deg);
  }

  .language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 200px;
    background: linear-gradient(135deg, rgba(74, 129, 255, 0.896), rgb(26, 102, 195));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }


  .language-switcher-wrapper.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: all;
  }

  .lang-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    position: relative;
    overflow: hidden;
  }


  .lang-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 0 4px 4px 0;
  }

  .lang-option:hover::before {
    transform: scaleY(1);
  }

  .lang-option:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-3px);
    padding-left: 1.2rem;
  }


  .lang-option::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transition: transform 0.3s ease;
  }


  .lang-option:hover::after {
    transform: translateY(-50%) scale(1);
  }

  .lang-flag {
    width: 32px;
    height: 24px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .lang-option:hover .lang-flag {
    transform: scale(1.15) rotate(3deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .lang-label {
    flex: 1;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .lang-option:hover .lang-label {
    transform: translateX(5px);
  }


  .lang-check {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  .lang-option.selected .lang-check {
    opacity: 1;
    transform: scale(1);
    color: rgba(255, 255, 255, 1);
  }

  .lang-option.selected {
    background: rgba(255, 255, 255, 0.25);
    font-weight: 700;
  }

  .lang-option.selected::before {
    transform: scaleY(1);
  }

  @keyframes flagSwap {
    0% {
      transform: scale(1) rotate(0deg);
      opacity: 1;
    }
    50% {
      transform: scale(0.8) rotate(180deg);
      opacity: 0.5;
    }
    100% {
      transform: scale(1) rotate(360deg);
      opacity: 1;
    }
  }
  
  .background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
  }
  
  .circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 20s infinite ease-in-out;
  }
  
  .circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }
  
  .circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 7s;
  }
  
  .circle-3 {
    width: 400px;
    height: 400px;
    bottom: -10%;
    left: 50%;
    animation-delay: 14s;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(30px, -30px) scale(1.1);
    }
    66% {
      transform: translate(-20px, 20px) scale(0.9);
    }
  }
  
  .hero {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    padding-top: 4rem;
    position: relative;
    z-index: 1;
  }
  
  .hero-content {
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
  }
  
  .logo-container {
    height: 250px;
    background-color: white;
    position: relative;
    width: 100vw;
    padding: 1.5rem 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoContainerAppear 1.2s ease-out;
  }
  
  @keyframes logoContainerAppear {
    from {
      left: -100;
      transform: scale(0.9);
    }
    to {
      left: 0;
      transform: scale(1);
    }
  }
  
  .logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
  }
  
  
  
  .company-name {
    font-size: 5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-shadow: 3px 3px 20px rgba(0, 0, 0, 0.4);
    animation: slideIn 1s ease-out 0.3s both;
  }
  
  .tagline {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    animation: slideIn 1s ease-out 0.5s both;
  }
  
  .divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    margin: 0 auto 2rem;
    animation: slideIn 1s ease-out 0.7s both;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: slideIn 1s ease-out 0.8s both;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-items-row {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
  }
  
  .contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
  }
  
  .contact-item i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .contact-item.whatsapp i {
    color: #25d366;
  }
  
  .contact-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    animation: slideIn 1s ease-out 0.9s both;
  }
  
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: #1e3c72;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
  }
  
  .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    transform: scale(0);
    transition: transform 0.4s ease;
    border-radius: 50%;
    z-index: -1;
  }
  
  .social-links a:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    color: white;
  }
  
  .social-links a:hover::before {
    transform: scale(1);
  }
  
  .social-links a:active {
    transform: translateY(-5px) scale(1.05);
  }
  
  .location-section {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 1.1s both;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .location-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  }
  
  .location-title i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .address-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
  }
  
  .address-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }
  
  .address-card i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
    display: block;
  }
  
  .address-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0.4rem 0;
  }
  
  .map-container {
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  .map-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  }
  
  .embedded-map {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
  }
  
  .map-open-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .map-open-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
  }
  
  .map-open-link:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
  }
  
  .map-open-link:active {
    transform: translateY(-1px);
  }
  
  .map-open-link i {
    font-size: 1rem;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @media (max-width: 768px) {
    .language-switcher-wrapper {
      top: 15px;
      right: 15px;
    }


    .language-trigger {
      padding: 0.65rem 1rem;
      min-width: 100px;
      border-radius: 14px;
    }

    .current-flag {
      width: 24px;
      height: 18px;
    }

    .current-lang-code {
      font-size: 0.85rem;
    }

    #chevronIcon {
      font-size: 0.65rem;
    }

    .language-menu {
      width: 180px;
      top: calc(100% + 8px);
    }

    .lang-option {
      padding: 0.7rem 0.85rem;
      font-size: 0.85rem;
    }

    .lang-flag {
      width: 28px;
      height: 21px;
    }

    .company-name {
      font-size: 3rem;
      letter-spacing: 2px;
    }
  
    .tagline {
      font-size: 0.95rem;
      letter-spacing: 0.3px;
      line-height: 1.6;
      padding: 0 1rem;
    }
  
    .logo-container {
      padding: 0;
    }
    
    .logo {
      width: 360px;
      height: 360px;
    }
  
    .contact-info {
      gap: 0.6rem;
      margin-bottom: 1.2rem;
    }
  
    .contact-items-row {
      display: grid;
      gap: 0.6rem;
    }
  
    .contact-item {
      font-size: 0.9rem;
      padding: 0.5rem 1rem;
    }
  
    .contact-item i {
      font-size: 0.95rem;
    }
  
    .social-links {
      gap: 1.2rem;
    }
  
    .social-links a {
      width: 48px;
      height: 48px;
      font-size: 1.2rem;
    }
  
    .location-title {
      font-size: 1.6rem;
    }
  
    .location-title i {
      font-size: 1.4rem;
    }
  
    .address-card {
      padding: 1.2rem 1.5rem;
    }
  
    .address-text {
      font-size: 1rem;
    }
  
    .embedded-map {
      height: 300px;
    }
  
    .map-open-link {
      font-size: 0.95rem;
      padding: 0.75rem 1.5rem;
    }
  
    .circle-1, .circle-2, .circle-3 {
      width: 200px;
      height: 200px;
    }
  }
  
  @media (max-width: 480px) {
    .language-switcher-wrapper {
      top: 10px;
      right: 10px;
    }


    .language-trigger {
      padding: 0.6rem 0.85rem;
      min-width: 90px;
      border-radius: 12px;
    }

    .current-flag {
      width: 22px;
      height: 16px;
    }

    .current-lang-code {
      font-size: 0.8rem;
    }

    #chevronIcon {
      font-size: 0.6rem;
    }

    .language-menu {
      width: 160px;

      top: calc(100% + 6px);
    }

    .lang-option {
      padding: 0.6rem 0.75rem;
      font-size: 0.8rem;
      gap: 0.6rem;
    }

    .lang-flag {
      width: 26px;
      height: 19px;
    }

    .company-name {
      font-size: 2.2rem;
      letter-spacing: 1px;
    }
  
    .tagline {
      font-size: 0.85rem;
      letter-spacing: 0.2px;
      line-height: 1.5;
      padding: 0 0.5rem;
    }
  
    .logo-container {
      padding: 1rem 0;
    }
    
    .logo {
      width: 280px;
      height: 280px;
    }
  
    .contact-info {
      gap: 0.6rem;
      margin-bottom: 1.2rem;
    }
  
    .contact-items-row {
      gap: 0.5rem;
    }
  
    .contact-item {
      font-size: 0.85rem;
      padding: 0.45rem 0.9rem;
      gap: 0.5rem;
    }
  
    .contact-item i {
      font-size: 0.9rem;
    }
  
    .social-links {
      gap: 1rem;
      flex-wrap: wrap;
    }
  
    .social-links a {
      width: 46px;
      height: 46px;
      font-size: 1.1rem;
    }
  
    .location-section {
      margin-top: 2.5rem;
      padding: 0 0.5rem;
    }
  
    .location-title {
      font-size: 1.4rem;
    }
  
    .location-title i {
      font-size: 1.2rem;
    }
  
    .address-card {
      padding: 1rem 1.2rem;
    }
  
    .address-card i {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }
  
    .address-text {
      font-size: 0.95rem;
    }
  
    .embedded-map {
      height: 280px;
    }
  
    .map-open-link {
      font-size: 0.9rem;
      padding: 0.7rem 1.3rem;
    }
  
    .divider {
      width: 60px;
      margin-bottom: 1.5rem;
    }
  }
  