    /* Reset and Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #e3f2fd, #bbdefb);
        color: #333;
        line-height: 1.6;
        direction: rtl;
        font-size: 16px;
        overflow-x: hidden;
      }
      img {
        max-width: 100%;
        height: auto;
        display: block;
      }
      /* Animations */
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .fade-in-up {
        animation: fadeInUp 0.8s ease-out;
      }
      .delay-1 { animation-delay: 0.2s; }
      .delay-2 { animation-delay: 0.4s; }
      .delay-3 { animation-delay: 0.6s; }
      .delay-4 { animation-delay: 0.8s; }
      /* Container */
      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }
      /* Header */
      header {
        display: flex;
        justify-content: space-between;
        background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        color: #fff;
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        position: relative;
        border-bottom-right-radius: 10%;
        border-bottom-left-radius: 10%;
      }
      header .logo-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 10px;
      }
      header img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #fff;
      }
      header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(90deg, #fff, #bbf7d0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      /* Hamburger Menu */
      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
      }
      .hamburger div {
        width: 25px;
        height: 3px;
        background-color: #fff;
        margin: 3px 0;
        transition: 0.3s ease;
      }
      .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }
      .hamburger.active div:nth-child(2) {
        opacity: 0;
      }
      .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }
      /* Navigation */
      nav {
        background: rgba(59, 130, 246, 0.9);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 100;
      }
      .nav-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 0;
      }
      nav a {
        color: #fff;
        font-weight: 600;
        padding: 10px 20px;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        transition: all 0.3s ease;
        display: inline-block;
        backdrop-filter: blur(10px);
      }
      nav a:hover,
      nav a:focus {
        background: #1d4ed8;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        outline: 2px solid #fff;
        outline-offset: 2px;
      }
      /* Mobile Navigation */
      @media (max-width: 768px) {
        .hamburger {
          display: flex;
        }
        .nav-container {
          flex-direction: column;
          position: absolute;
          top: 100%;
          left: 0;
          width: 100%;
          background: #3b82f6;
          transform: translateY(-100%);
          opacity: 0;
          visibility: hidden;
          transition: all 0.3s ease;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .nav-container.active {
          transform: translateY(0);
          opacity: 1;
          visibility: visible;
        }
        nav a {
          padding: 15px 20px;
          margin: 5px 0;
          border-radius: 0;
          background: transparent;
          text-align: center;
        }
      }
      /* Sections */
      section {
        padding: 80px 0;
        min-height: auto;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
      }
      section.show {
        opacity: 1;
        transform: translateY(0);
      }
      section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 30px;
        color: #1e3a8a;
        font-weight: 700;
        background: linear-gradient(90deg, #1e3a8a, #3b82f6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      section p {
        font-size: 1.1rem;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
      }
      /* Home */
      #home {
        background: url(images/bk.png);
        color: #fff;
        text-align: center;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
      }
      /* About */
      #about {
        background: url('images/abut.jpg') no-repeat center center/cover;
        color: #fff;
        text-align: center;
      }
      #about p {
        background: rgba(0, 0, 0, 0.5);
        padding: 20px;
        border-radius: 10px;
        display: inline-block;
      }
      /* Packages */
      #packages {
        background: #ffffff;
      }
      .packages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }
      .package-card {
        background: linear-gradient(135deg, #ffffff, #f3f4f6);
        border: none; /* Removed border for cleaner look */
        border-radius: 15px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
      }
      .package-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #3b82f6, #1d4ed8);
      }
      .package-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      }
      .package-card:hover::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        animation: pulse 1s infinite;
      }
      @keyframes pulse {
        0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
        50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
        100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
      }
      .package-card h3 {
        font-size: 1.8rem;
        color: #1e3a8a;
        margin-bottom: 20px;
        position: relative;
      }
      .package-card .icon {
        font-size: 3rem;
        color: #3b82f6;
        margin-bottom: 15px;
      }
      .package-card p {
        margin: 10px 0;
        font-weight: 500;
      }
      .package-card .price {
        font-size: 1.5rem;
        font-weight: 700;
        color: #dc2626;
        margin-top: 10px;
      }
      /* Offers */
      #offers {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: #fff;
        text-align: center;
        border-bottom-left-radius: 30%;
        border-bottom-right-radius: 30%;
      }
      .offers-content {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        max-width: 600px;
        margin: 0 auto;
        backdrop-filter: blur(10px);
        text-align: right;
      }
      /* Features */
      #features {
        background: rgba(243, 244, 246, 0.8);
      }
      .features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 50px;
      }
      .feature-item {
        background: linear-gradient(135deg, #ffffff, #e5e7eb);
        padding: 40px 30px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        text-align: center;
        font-size: 1.2rem;
        font-weight: 600;
        color: #1e3a8a;
        transition: all 0.3s ease;
        position: relative;
      }
      .feature-item::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: linear-gradient(45deg, #3b82f6, #1d4ed8);
        border-radius: 15px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
      }
      .feature-item:hover::before {
        opacity: 1;
      }
      .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
      }
      .feature-item .icon {
        font-size: 3rem;
        color: #3b82f6;
        margin-bottom: 20px;
      }
      /* Points of Sale */
      #points {
        background: #ffffff;
      }
      #points-list {
        background: rgba(243, 244, 246, 0.8);
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        font-size: 1.1rem;
        color: #374151;
      }
      .points-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
      }
      .point-item {
        background: #f9fafb;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease;
      }
      .point-item:hover {
        transform: scale(1.05);
      }
      .point-item .icon {
        font-size: 2.5rem;
        color: #3b82f6;
        margin-bottom: 10px;
      }
      /* Contact */
      #contact {
        background: url('https://storage.googleapis.com/workspace-0f70711f-8b4e-4d94-86f1-2a93ccde5887/image/430fffe6-ad80-4649-bc93-818f1add3821.png') no-repeat center center/cover;
        color: #fff;
      }
      .contact-info {
        max-width: 800px;
        margin: 0 auto;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
      }
      .social-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
        flex-wrap: wrap;
      }
      .social-links a {
        display: flex;
        align-items: center;
        text-decoration: none;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #3b82f6;
        color: #fff;
        font-size: 28px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }
      .social-links a::after {
        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.5s ease;
      }
      .social-links a:hover::after {
        left: 100%;
      }
      .social-links a:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      }
      /* Map */
      #map {
        background: #ffffff;
      }
      .map-container {
        height: 450px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        background: #f3f4f6;
      }
      iframe {
        width: 100%;
        height: 100%;
        border: none;
      }
      /* Footer */
      footer {
        background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        color: #a9c0db;
        text-align: center;
        padding: 30px 0;
        font-size: 0.9rem;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
      }
      footer .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }
      /* Responsive */
      @media (max-width: 600px) {
        .container {
          padding: 0 15px;
        }
        header h1 {
          font-size: 1.8rem;
        }
        header p {
          font-size: 0.9rem;
        }
        section h2 {
          font-size: 1.8rem;
        }
        .package-card,
        .feature-item,
        .contact-info {
          padding: 25px;
        }
        .social-links a {
          width: 50px;
          height: 50px;
          font-size: 20px;
        }
      }