@import url('https://fonts.googleapis.com/css2?family=El+Messiri&display=swap');
  /* Reset */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'El Messiri', sans-serif;
    background: #fff8f0;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-behavior: smooth;
  }
  header {
    width: 100%;
    background: linear-gradient(90deg, #ff6a00, #ffb347);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(255,106,0,0.3);
  }
  header .branding {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  header .branding img {
    width: 60px;
    height: 60px;
    border-radius: 50%; 
    object-fit: contain;
  }
  header .branding h1 {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 2px;
  }
  nav a {
    background: transparent;
    border: 2.5px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.6rem 1.6rem;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s ease;
    user-select: none;
  }
  nav a:hover, nav a:focus {
    background: #fff;
    color: #ff6a00;
    outline: none;
    box-shadow: 0 0 8px rgba(255,106,0,0.7);
  }
  /* Hero tagline slider */
  .tagline-slider {
    margin: 2rem auto;
    max-width: 900px;
    height: 50px;
    overflow: hidden;
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6a00;
    text-align: center;
    user-select: none;
    min-width: 320px;
  }
  .tagline-slide {
    position: absolute;
    text-align: center;
    width: 100%;
    line-height: 50px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s ease;
  }
  .tagline-slide.active {
    opacity: 1;
    transform: translateX(50%);
  }
  .tagline-slide.exit-left {
    opacity: 0;
    transform: translateX(-100%);
  }
  main {
    max-width: 1140px;
    width: 100%;
    padding: 0 1rem 3rem;
  }
  section {
    margin-bottom: 3rem;
  }
  section h2 {
    font-size: 2rem;
    color: #ff6a00;
    text-align: right;
    margin-bottom: 1rem;
    border-bottom: 3px solid #ffb347;
    padding-bottom: 0.3rem;
    user-select: none;
  }
  .horizontal-scroll {
    position: relative;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 1.3rem;
  }
  .horizontal-scroll::-webkit-scrollbar {
    display: none;
  }
  .card {
    background: white;
    flex: 0 0 220px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgb(255 106 0 / 0.2);
    cursor: pointer;
    user-select: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 2px solid transparent;
  }
  .card:focus-within,
  .card:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgb(255 106 0 / 0.45);
    border: 2px solid #ff6a00;
    outline: none;
  }
  .card img {
    width: 100%;
    border-radius: 18px 18px 0 0;
    height: 270px;
    object-fit: cover;
  }
  .card-content {
    padding: 1rem 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .card-content h3 {
    font-weight: 900;
    font-size: 1.24rem;
    margin-bottom: 0.3rem;
    color: #ff6a00;
  }
  .card-content p {
    color: #555;
    font-size: 0.93rem;
    line-height: 1.3;
  }
  .why-us {
    background-color: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
    margin-top: 50px;
    border-top: 3px solid #ddd;
  }
  
  .why-us h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .why-us ul {
    list-style: none;
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
    text-align: right;
  }
  
  .why-us li {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
    position: relative;
    padding-right: 30px;
    line-height: 1.6;
  }
  
  .why-us li::before {
    content: "✔";
    position: absolute;
    right: 0;
    color: #27ae60;
    font-weight: bold;
  }
  
  footer {
    width: 100%;
    background: #ffb347;
    color: #7a3e00;
    padding: 1rem 0;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1.1px;
    user-select: none;
    box-shadow: 0 -4px 10px rgb(255 179 71 / 0.3);
  }
  /* Responsive */
  @media (max-width: 992px) {
    .card {
      flex: 0 0 180px;
    }
    .tagline-slider {
      font-size: 1.25rem;
      height: 46px;
      line-height: 46px;
    }
    section h2 {
      font-size: 1.7rem;
    }
  }
  @media (max-width: 600px) {
    header {
      flex-direction: column;
      gap: 1rem;
      padding: 1rem;
    }
    nav button {
      width: 100%;
      font-size: 1.1rem;
    }
    .card {
      flex: 0 0 140px;
    }
    .card img {
      height: 190px;
    }
  }