* {
    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;
  }
  
  .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 {
    margin-bottom: 2.5rem;
    animation: fadeIn 1.5s ease-in;
  }
  
  .logo-wrapper {
    display: inline-block;
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  }
  
  .logo-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #fff, transparent);
    border-radius: 30px;
    opacity: 0.3;
    z-index: -1;
  }
  
  .logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 24px;
    background: white;
    
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: block;
  }
  
  .logo:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
  }
  
  .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: 800px;
    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) {
    .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 {
      width: 180px;
      height: 180px;
    }
  
    .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) {
    .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 {
      width: 165px;
      height: 165px;
      padding: 1rem;
    }
  
    .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;
    }
  }
  