* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(to right, #fce4ec, #e0f7fa);
      color: #521d1d;
    }

    /* ===== HEADER ===== */
    header {
      text-align: center;
      padding: 60px 20px 30px;
     background: linear-gradient(to right, #ff9a9e, #fad0c4, #fad0c4, #fbc2eb, #a6c1ee);
      color: white;
       
      
    }
 header h1 {
      font-size: 38px;
      margin-bottom: 10px;
    }
  
    header p {
      font-size: 18px;
    }

    /* ===== NAV ===== */
    nav {
      background: white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    nav ul {
      display: flex;
      justify-content: center;
      list-style: none;
      padding: 12px;
      gap: 20px;
    }

    nav ul li a {
      text-decoration: none;
      font-weight: bold;
      color: rgb(231, 78, 104);
      padding: 8px 16px;
      border-radius: 6px;
      transition: 0.3s;
    }

    nav ul li a:hover {
      background: rgb(242, 194, 201);
      color: rgb(119, 35, 35);
    }

    /* ===== MAIN ===== */
    main {
      padding: 30px 20px;
      text-align: center;
      max-width: 900px;
      margin: auto;
    }

    main h2 {
      margin-bottom: 20px;
      font-size: 26px;
      color: rgb(231, 78, 104);
    }

    main p {
      margin-bottom: 14px;
      line-height: 1.6;
    }

    /* ===== SLIDER ===== */
    .slider {
      overflow: hidden;
      margin: 40px auto;
      max-width: 1000px;
       position: relative;
    }

    .slider-track {
      display: flex;
      animation: scroll 25s linear infinite;
      gap: 20px;
    }

    .slider img {
      width: 350px;
      height: 250px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    @keyframes scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ===== FOOTER ===== */
    footer {
      text-align: center;
      padding: 15px;
      background: pink;
      color: black;
      margin-top: 40px;
    }
    footer .social {
  margin-top: 8px;
  font-size: 16px;
}

footer .social a {
  color: black;
  text-decoration: none;
  margin: 0 5px;
  transition: color 0.3s;
}

footer .social a:hover {
  color: darkred;
}


    /* ===== MOBILE ===== */
    @media (max-width: 768px) {
      header h1 { font-size: 28px; }
      nav ul { flex-direction: column; gap: 10px; }
      .slider img { width: 80%; height: auto; }
    }
  

   