      body {
        font-family: "IBM Plex Sans Arabic", sans-serif;
        background: #f4f8fb;
        color: #0f2c40;
      }

      :root {
        --primary: #0f2c40;
        --secondary: #1f5f8b;
        --accent: #00a8cc;
        --whatsapp: #25d366;
      }
/* LOGO */


/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 75px;
  filter: brightness(1);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.logo img:hover {
  filter: brightness(1.2);
  transform: scale(1.3);
  cursor: pointer;
}






      /* Navbar */
      .navbar {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        z-index: 999;
        backdrop-filter: blur(10px);
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.1); /* لازم يكون فيه شفافية */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px); /* لدعم Safari */
      }

      .navbar ul {
        display: flex;
        gap: 30px; /* المسافة بين كل عنصر */
        list-style: none;
      }

      .navbar ul li a {
        transition: 0.3s;
      }

      .navbar ul li a:hover {
        color: #067d8a; /* لون الهوفر */
      }

      .navbar ul li a {
        position: relative;
        padding: 8px 0;
      }

      .navbar ul li a::after {
        content: "";
        position: absolute;
        bottom: -4px;
        right: 0;
        width: 0;
        height: 2px;
        background: #00bcd4;
        transition: 0.3s;
      }

      .navbar ul li a:hover::after {
        width: 100%;
      }

      /* Hero */
      .hero {
        background: linear-gradient(135deg, #0f2c40, #134a6c, #0aa6c2);
        color: white;
        position: relative;
        display: flex;
        align-items: center;
        padding: 50px 0;
      }
      .hero h1 span {
        color: #00d4ff;
      }
      .hero img {
        animation: float 4s ease-in-out infinite;
        mix-blend-mode: screen;
      }
      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-15px);
        }
      }

      .btn-accent {
        background: var(--accent);
        color: white;
        border: none;
        margin-left: 10px;
        margin-right: 40px;
      }
      .btn-whatsapp {
        background: var(--whatsapp);
        color: white;
        border: none;
        margin-right: 20px;
      }
      .btn-accent:hover {
        background-color: #067d8a;
        opacity: 1;
      }
      .btn-whatsapp:hover {
        background-color: #2d9d2e;
        opacity: 1;
      }

      /* Cards */
      .service-card {
        border-radius: 15px;
        transition: 0.3s;
        border: 1px solid #eee;
      }

      .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      }

      .icon-box {
        width: 70px;
        height: 70px;
        background: #1f77b4;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        color: white;
        font-size: 30px;
      }

      /* Features */
      .features {
        padding: 100px 0;
        background: linear-gradient(135deg, #0f2c40, #134a6c, #0aa6c2);
      }

      .features h2 {
        text-align: center;
        margin-bottom: 50px;
        font-size: 32px;
        color: white;
      }

      .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
      }

      .card {
        background: #ffffff;
        padding: 30px;
        border-radius: 20px;
        transition: 0.3s;
        opacity: 0;
        transform: translateY(40px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      }

      .card.show {
        opacity: 1;
        transform: translateY(0);
      }

      .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
      }

      .photo-section {
        position: relative;
        padding: 100px 0;
        background: #eaf2f8;
        display: flex;
        justify-content: center;
        align-items: center;
      }

      .photo-wrapper {
        width: 420px;
        height: 380px;
        perspective: 1200px;
      }

      .photo-track {
        width: 100%;
        height: 100%;
        position: relative;
        transform-style: preserve-3d;
        transition: 1s;
      }

      .photo-item {
        position: absolute;
        width: 230px;
        height: 340px;
        object-fit: cover;
        border-radius: 15px;
        left: 50%;
        top: 50%;
        transform-origin: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      }

      /* توزيع الصور */

      .photo-item:nth-child(1) {
        transform: rotateY(0deg) translateZ(320px) translate(-50%, -50%);
      }
      .photo-item:nth-child(2) {
        transform: rotateY(60deg) translateZ(320px) translate(-50%, -50%);
      }
      .photo-item:nth-child(3) {
        transform: rotateY(120deg) translateZ(320px) translate(-50%, -50%);
      }
      .photo-item:nth-child(4) {
        transform: rotateY(180deg) translateZ(320px) translate(-50%, -50%);
      }
      .photo-item:nth-child(5) {
        transform: rotateY(240deg) translateZ(320px) translate(-50%, -50%);
      }
      .photo-item:nth-child(6) {
        transform: rotateY(300deg) translateZ(320px) translate(-50%, -50%);
      }

      /* الازرار */

      .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #1e293b;
        color: #fff;
        border: none;
        font-size: 25px;
        padding: 15px 20px;
        border-radius: 10px;
        cursor: pointer;
      }

      .prev {
        left: 50px; /* بعيد عن الصور */
      }

      .next {
        right: 50px; /* بعيد عن الصور */
      }

      .nav-btn:hover {
        background: #0f172a;
      }

      /* الموبايل */

      @media (max-width: 768px) {
        .photo-wrapper {
          width: 100%;
          height: auto;
          perspective: none;
        }

        .photo-track {
          display: flex;
          flex-direction: column;
          align-items: center;
          transform: none !important;
        }

        .photo-item {
          position: static;
          width: 90%;
          height: auto;
          margin-bottom: 20px;
          transform: none !important;
        }

        .nav-btn {
          display: none; /* نخفي الأزرار */
        }
      }

      /* Form */
      .booking-section {
        background: #eaf2f8;
        padding: 70px 0;
      }

      .form-control,
      .form-select {
        border-radius: 10px;
      }
      
      /* ===== Map ===== */
      .map-box iframe {
        width: 100%;
        height: 300px;
        border-radius: 15px;
        border: none;
      }

      /* ===== FOOTER ===== */
      .footer {
        background: linear-gradient(135deg, #0f2c40, #134a6c, #0aa6c2);
        color: #fff;
        padding: 50px 20px 20px;
        margin-top: auto;
      }

      .footer-container {
        max-width: 1300px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
      }

      .footer-box h3,
      .footer-box h4 {
        margin-bottom: 15px;
        color: #ffffff;
      }

      .footer-box p {
        color: #eea629;
        font-size: 14px;
        max-width: 280px;
      }

      .footer-box ul {
        list-style: none;
        padding: 0;
      }

      .footer-box ul li {
        margin-bottom: 8px;
      }

      .footer-box ul li a {
        text-decoration: none;
        color: #ffffff;
        transition: 0.3s;
      }

      .footer-box ul li a:hover {
        color: #d58e20;
      }

      .social-icons {
        display: flex;
        gap: 15px;
      }

      .social-icons a {
        font-size: 22px;
        color: #ffffff;
        transition: 0.3s;
      }

      .social-icons a:hover {
        color: #d58e20;
      }

      .footer-bottom {
        text-align: center;
        margin-top: 30px;
        padding-top: 15px;
        border-top: 1px solid #eea629;
        font-size: 14px;
        color: #cde5d4;
      }

      /* footer-prepared */
      .footer-prepared {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        color: #eea629;
        margin-top: 15px;
      }

      .footer-whatsapp {
        color: #25d366;
        font-size: 18px;
        transition: 0.3s;
      }

      .footer-whatsapp:hover {
        transform: scale(1.2);
        color: #1ebe5d;
      }

      /* Floating */
      .float-btn {
        position: fixed;
        left: 20px;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 22px;
        z-index: 999;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
      }
      .float-call {
        bottom: 90px;
        background: var(--accent);
      }
      .float-whatsapp {
        bottom: 20px;
        background: var(--whatsapp);
        animation: pulse 1.5s infinite;
      }
      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
          box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
      }

      @media (max-width: 768px) {
        .hero {
          text-align: center;
        }
      }
