
    /* Full CSS Code */
    body {
      font-family: 'Tajawal', sans-serif;
      background-color: #265e72;
      color: #333;
      text-align: right;
      margin: 0;
      padding: 0;
    }

    /* Hero Section */
    .hero-section {
      background-color: #265e72;
      background-size: cover;
      background-position: center;
      height: 70vh;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
      opacity: 0;
      animation: fadeIn 1.5s ease-in-out forwards;
    }

    @keyframes fadeIn {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }

    .hero-section .logo {
      opacity: 0;
      transform: translateY(-50px);
      animation: slideInDown 1s ease-in-out 0.5s forwards;
    }

    @keyframes slideInDown {
      0% {
        transform: translateY(-50px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .hero-section .hero-title {
      opacity: 0;
      transform: translateY(-50px);
      animation: slideInDown 1s ease-in-out 1s forwards;
    }

    .hero-section .hero-text {
      opacity: 0;
      transform: translateY(50px);
      animation: slideInUp 1s ease-in-out 1.5s forwards;
    }

    @keyframes slideInUp {
      0% {
        transform: translateY(50px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .hero-section .btn-primary {
      opacity: 0;
      transform: scale(0.8);
      animation: zoomIn 0.5s ease-in-out 2s forwards, bounce 2s infinite 2.5s;
    }

    @keyframes zoomIn {
      0% {
        transform: scale(0.8);
        opacity: 0;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-10px);
      }
      60% {
        transform: translateY(-5px);
      }
    }

    /* Services Section */
    .services-section {
      background-color: #fff;
      padding: 60px 0;
    }

    .services-section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 40px;
      animation: fadeIn 1s ease-in-out;
      color: #265e72;
    }

    .service-card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      padding: 20px;
      margin: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
      opacity: 0;
      transform: translateY(50px);
      animation: slideInUp 0.5s ease-in-out forwards;
      border-left: 5px solid #265e72;
    }

    .service-card:nth-child(1) {
      animation-delay: 0.2s;
    }

    .service-card:nth-child(2) {
      animation-delay: 0.4s;
    }

    .service-card:nth-child(3) {
      animation-delay: 0.6s;
    }

    .service-card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }

    .service-card i {
      font-size: 3rem;
      color: #265e72;
      margin-bottom: 15px;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
      100% {
        transform: scale(1);
      }
    }

    .service-card h3 {
      font-size: 1.5rem;
      font-weight: bold;
      color: #265e72;
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 1rem;
      color: #265e72;
    }

   .footer {
  background-color: #265e72;
  color: #fff;
  padding: 40px 0;
  text-align: center;
}

    
    

    .footer p {
      margin: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
      }

      .hero-text {
        font-size: 1.2rem;
      }

      .btn-primary {
        padding: 8px 20px;
        font-size: 1rem;
      }

      .services-section h2 {
        font-size: 2rem;
      }

      .service-card h3 {
        font-size: 1.3rem;
      }

      .service-card p {
        font-size: 0.9rem;
      }
    }
  