    /* Global Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        direction: rtl;
        scroll-behavior: smooth;
      }

      body {
        font-family: 'Roboto', sans-serif;
        line-height: 1.8;
        color: #333;
        background: #f9f9f9;
        overflow-x: hidden;
      }

      a {
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
      }

      ul {
        list-style: none;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
      }

      .section-title h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2.8rem;
        color: #002060;
        margin-bottom: 15px;
      }

      .section-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #C9A646, #002060);
        margin: 15px auto;
        border-radius: 2px;
      }

      .btn {
        display: inline-block;
        padding: 15px 35px;
        border-radius: 30px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.4s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        border: none;
        cursor: pointer;
      }

      .btn-primary {
        background: linear-gradient(to right, #C9A646, #b8933d);
        color: white;
      }

      .btn-primary:hover {
        background: linear-gradient(to right, #b8933d, #a27f34);
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      }

      .section-padding {
        padding: 100px 0;
      }

      /* Header Styles */
      header {
        background: rgba(0, 32, 96, 0.9);
        color: white;
        padding: 15px 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.4s ease;
      }

      #header.scrolled {
        background: rgba(0, 32, 96, 0.98);
        padding: 10px 0;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
      }

      nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo-container {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .logo-image {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 2px solid #C9A646;
        box-shadow: 0 0 15px rgba(201, 166, 70, 0.5);
      }

      .logo-text {
        font-family: 'Playfair Display', serif;
        font-size: 1.8rem;
        font-weight: bold;
        letter-spacing: 1px;
        color: #fff;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 30px;
      }

      .nav-links li a {
        color: white;
        font-weight: 500;
        font-size: 1.1rem;
        position: relative;
        padding: 5px 0;
      }

      .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 0;
        height: 2px;
        background: #C9A646;
        transition: width 0.3s ease;
      }

      .nav-links li a:hover::after {
        width: 100%;
        left: 0;
      }

      .nav-links li a:hover {
        color: #C9A646;
      }

      .lang-switch {
        margin-right: 20px;
      }

      .lang-switch button {
        background: transparent;
        color: white;
        border: 2px solid #C9A646;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .lang-switch button:hover {
        background: #C9A646;
        color: #002060;
      }

      .menu-toggle {
        display: none;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: white;
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
        height: 100vh;
        background: linear-gradient(rgba(0, 32, 96, 0.7), rgba(0, 0, 0, 0.7)), url('img/Dr.Bader\ AlMahroqi\ office\ Profile_page-0009.jpg') no-repeat center center/cover;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
        padding: 20px;
      }

      .hero-content {
        max-width: 900px;
        position: relative;
        z-index: 2;
      }

      .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: 3.5rem;
        line-height: 1.3;
        margin-bottom: 30px;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
      }

      .hero-description {
        font-size: 1.3rem;
        margin-bottom: 40px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
      }

      .hero-btn {
        padding: 18px 45px;
        background: linear-gradient(to right, #C9A646, #b8933d);
        color: white;
        font-size: 1.1rem;
        font-weight: bold;
        border: none;
        border-radius: 30px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        transition: all 0.4s ease;
        cursor: pointer;
      }

      .hero-btn:hover {
        background: linear-gradient(to right, #b8933d, #a27f34);
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
      }

      /* About Section */
      .about {
        background: linear-gradient(to bottom, #ffffff, #f5f5f5);
        position: relative;
        overflow: hidden;
      }

      .about::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
        background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3') no-repeat center center/cover;
        opacity: 0.1;
      }

      .about-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        align-items: center;
      }

      .about-text p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #444;
        margin-bottom: 25px;
        background: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        border-left: 4px solid #C9A646;
      }

      .about-text p:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
      }

      .about-image {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        position: relative;
        height: 500px;
      }

      .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .about-image:hover img {
        transform: scale(1.05);
      }

      /* Services Section */
      .services {
        background: linear-gradient(to bottom, #f5f5f5, #eaeaea);
        position: relative;
      }

      .services::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('pattern.png') repeat;
        opacity: 0.05;
        z-index: 0;
      }

      .services-content {
        position: relative;
        z-index: 1;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
      }

      .service-card {
        background: white;
        border-radius: 15px;
        padding: 35px 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border-top: 4px solid #C9A646;
      }

      .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 32, 96, 0.05), rgba(201, 166, 70, 0.05));
        z-index: -1;
      }

      .service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      }

      .service-icon {
        font-size: 3.5rem;
        color: #C9A646;
        margin-bottom: 20px;
      }

      .service-card h3 {
        font-size: 1.6rem;
        color: #002060;
        margin-bottom: 15px;
      }

      .service-card p {
        font-size: 1.05rem;
        color: #555;
        line-height: 1.8;
      }

      /* Team Section */
      .team {
        background: linear-gradient(to bottom, #ffffff, #f5f5f5);
        position: relative;
      }

      .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
      }

      .team-member {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        position: relative;
      }

      .team-member:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      }

      .member-image {
        height: 350px;
        overflow: hidden;
      }

      .member-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .team-member:hover .member-image img {
        transform: scale(1.1);
      }

      .member-info {
        padding: 25px;
        text-align: center;
        background: white;
      }

      .member-info h3 {
        font-size: 1.5rem;
        color: #002060;
        margin-bottom: 10px;
      }

      .member-info p {
        color: #777;
        font-size: 1.05rem;
        line-height: 1.7;
        max-height: 200px;
        overflow: hidden;
        transition: max-height 0.5s ease;
      }

      .team-member:hover .member-info p {
        max-height: 1200px;
      }

      .member-social {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
      }

      .member-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #002060;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
      }

      .member-social a:hover {
        background: #C9A646;
        transform: translateY(-5px);
      }

      /* JSRS Section */
      .jsrs {
        background: linear-gradient(to right, #002060, #001a4d);
        color: white;
        border-radius: 20px;
        overflow: hidden;
        margin: 50px 0;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      }

      .jsrs-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        align-items: center;
        padding: 50px;
      }

      .jsrs-text h2 {
        font-size: 2.5rem;
        margin-bottom: 25px;
        color: #C9A646;
      }

      .jsrs-text p {
        font-size: 1.1rem;
        line-height: 1.9;
        margin-bottom: 25px;
      }

      .jsrs-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 1.05rem;
      }

      .feature-item i {
        color: #C9A646;
        font-size: 1.2rem;
      }

      .jsrs-image {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        height: 400px;
      }

      .jsrs-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .jsrs-image:hover img {
        transform: scale(1.05);
      }

      /* Contact Section */
      .contact {
        background: linear-gradient(to bottom, #f5f5f5, #eaeaea);
        position: relative;
      }

      .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
      }

      .contact-info {
        background: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      }

      .contact-info h3 {
        font-size: 1.8rem;
        color: #002060;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #C9A646;
      }

      .contact-details {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .detail-item {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .detail-item i {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #002060;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
      }

      .detail-text h4 {
        font-size: 1.2rem;
        color: #002060;
        margin-bottom: 5px;
      }

      .detail-text p,
      .detail-text a {
        font-size: 1.05rem;
        color: #555;
      }

      .contact-form {
        background: white;
        border-radius: 15px;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      }

      .contact-form h3 {
        font-size: 1.8rem;
        color: #002060;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 2px solid #C9A646;
      }

      .form-group {
        margin-bottom: 20px;
      }

      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #002060;
      }

      .form-control {
        width: 100%;
        padding: 15px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
      }

      .form-control:focus {
        border-color: #C9A646;
        outline: none;
        box-shadow: 0 0 10px rgba(201, 166, 70, 0.2);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      /* Map Section */
      .map-section {
        padding: 60px 0;
        background: white;
      }

      .map-container {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        height: 500px;
      }

      .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
      }

      /* Footer */
      footer {
        background: linear-gradient(to right, #001a4d, #002060);
        color: white;
        padding: 60px 0 30px;
      }

      .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-col h4 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
      }

      .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 3px;
        background: #C9A646;
      }

      .footer-col p {
        line-height: 1.9;
        margin-bottom: 20px;
      }

      .footer-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
      }

      .footer-links a {
        color: #ddd;
        transition: all 0.3s ease;
      }

      .footer-links a:hover {
        color: #C9A646;
        transform: translateX(-10px);
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }

      .social-links a {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: all 0.3s ease;
      }

      .social-links a:hover {
        background: #C9A646;
        transform: translateY(-5px);
      }

      .copyright {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.05rem;
        color: #ccc;
      }

      /* Back to top button */
      #myBtn {
        display: none;
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 99;
        border: none;
        outline: none;
        background: linear-gradient(to right, #C9A646, #b8933d);
        color: white;
        cursor: pointer;
        padding: 15px;
        border-radius: 50%;
        font-size: 1.2rem;
        width: 60px;
        height: 60px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.4s ease;
      }

      #myBtn:hover {
        background: linear-gradient(to right, #b8933d, #a27f34);
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .hero-title {
          font-size: 3rem;
        }

        .section-title h2 {
          font-size: 2.5rem;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          display: none;
          flex-direction: column;
          background: rgba(0, 32, 96, 0.95);
          position: fixed;
          top: 80px;
          right: 0;
          width: 100%;
          height: calc(100vh - 80px);
          padding: 40px 0;
          text-align: center;
          z-index: 999;
        }

        .nav-links.active {
          display: flex;
        }

        .menu-toggle {
          display: block;
        }

        .lang-switch {
          margin-right: 0;
        }

        .hero-title {
          font-size: 2.5rem;
        }

        .hero-description {
          font-size: 1.1rem;
        }

        .section-padding {
          padding: 80px 0;
        }
      }

      @media (max-width: 576px) {
        .logo-text {
          font-size: 1.5rem;
        }

        .hero-title {
          font-size: 2rem;
        }

        .hero-description {
          font-size: 1rem;
        }

        .section-title h2 {
          font-size: 2rem;
        }

        .btn {
          padding: 12px 25px;
        }

        .jsrs-content {
          padding: 30px;
        }
      }
        .services-container {
      max-width: 1400px;
      margin: 40px auto;
      padding: 20px;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 50px;
      padding: 20px;
    }
    
    .section-header h2 {
      font-size: 3.2rem;
      color: #002060;
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
      font-weight: 800;
    }
    
    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      right: 0;
      width: 120px;
      height: 5px;
      background: linear-gradient(to right, #C9A646, #002060);
      border-radius: 5px;
    }
    
    .section-description {
      font-size: 1.4rem;
      color: #555;
      max-width: 800px;
      margin: 20px auto 0;
      line-height: 1.8;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    
    .service-card {
      background: linear-gradient(145deg, #ffffff, #f8f9fa);
      border-radius: 20px;
      padding: 35px 30px;
      box-shadow: 0 15px 35px rgba(0, 32, 96, 0.12);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(0, 32, 96, 0.08);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(to right, #C9A646, #002060);
      z-index: 1;
    }
    
    .service-card:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: 0 20px 45px rgba(0, 32, 96, 0.2);
    }
    
    .service-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #002060 0%, #001a4d 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
      box-shadow: 0 10px 20px rgba(0, 32, 96, 0.2);
    }
    
    .service-icon i {
      font-size: 2.5rem;
      color: #C9A646;
    }
    
    .service-card h3 {
      font-size: 1.6rem;
      color: #002060;
      margin-bottom: 20px;
      font-weight: 700;
      position: relative;
      padding-bottom: 15px;
    }
    
    .service-card h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      width: 60px;
      height: 3px;
      background: #C9A646;
      border-radius: 3px;
    }
    
    .service-card p {
      font-size: 1.1rem;
      color: #444;
      line-height: 1.8;
      flex-grow: 1;
    }
    
    .service-card .learn-more {
      display: inline-block;
      margin-top: 25px;
      color: #002060;
      font-weight: 600;
      text-decoration: none;
      position: relative;
      padding-right: 25px;
      transition: all 0.3s ease;
    }
    
    .service-card .learn-more i {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      transition: transform 0.3s ease;
    }
    
    .service-card .learn-more:hover {
      color: #C9A646;
    }
    
    .service-card .learn-more:hover i {
      transform: translate(5px, -50%);
    }
    
    .decoration {
      position: absolute;
      opacity: 0.05;
      z-index: -1;
    }
    
    .decoration-1 {
      top: -50px;
      left: -50px;
      font-size: 300px;
      color: #002060;
    }
    
    .decoration-2 {
      bottom: -30px;
      right: -30px;
      font-size: 200px;
      color: #C9A646;
    }
    
    .category-filter {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin: 40px 0;
    }
    
    .filter-btn {
      padding: 12px 25px;
      background: rgba(0, 32, 96, 0.08);
      border: 2px solid transparent;
      border-radius: 50px;
      color: #002060;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .filter-btn.active, .filter-btn:hover {
      background: linear-gradient(to right, #C9A646, #b8933d);
      color: white;
      border-color: #C9A646;
      box-shadow: 0 5px 15px rgba(201, 166, 70, 0.3);
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
      .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      }
      
      .section-header h2 {
        font-size: 2.8rem;
      }
      
      .section-description {
        font-size: 1.2rem;
      }
    }
    
    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
      
      .section-header h2 {
        font-size: 2.4rem;
      }
      
      .service-card {
        padding: 30px;
      }
    }
    
    @media (max-width: 480px) {
      .section-header h2 {
        font-size: 2rem;
      }
      
      .section-description {
        font-size: 1.1rem;
      }
      
      .service-card h3 {
        font-size: 1.4rem;
      }
      
      .service-card p {
        font-size: 1rem;
      }
    }
    
    .floating {
      animation: floating 8s ease-in-out infinite;
    }
    
    @keyframes floating {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
      100% { transform: translateY(0px); }
    }