 *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    :root{
      --sky-blue:#D4E4FC;
      --lavender-pink:#F3E0F7;
      --cool-teal:#C6DCE4;
      --soft-peach:#FAE1DD;
      --mist-blue:#D0E8F2;
      --light-purple:#D7D0F5;
      --cream:#F4F1EA;
      --black:#000000;
    }

    body{
      background:var(--cream);
      font-family:'Poppins', sans-serif;
      color:var(--black);
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    /* NAVBAR */
    .navbar{
      width:100%;
      background:white;
      padding:22px 8%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      position:sticky;
      top:0;
      z-index:100;
    }

    .logo{
      font-family:'Playfair Display', serif;
      font-size:28px;
      font-weight:700;
    }

    .nav-links{
      display:flex;
      gap:40px;
    }

    .nav-links a{
      font-size:15px;
      letter-spacing:1px;
      transition:0.3s;
    }

    .nav-links a:hover,
    .nav-links .active{
      color:#d89ce5;
    }

    /* HERO */
    .hero{
      background:var(--sky-blue);
      padding:60px 8%;
      display:grid;
      grid-template-columns:1.1fr 0.9fr;
      gap:40px;
      align-items:center;
    }

    .hero-left h1{
      font-family:'Playfair Display', serif;
      font-size:72px;
      line-height:1.05;
      margin-bottom:25px;
    }

    .hero-left span{
      color:#e4a9ef;
    }

    .hero-left p{
      font-family:'Inter', sans-serif;
      font-size:22px;
      line-height:1.6;
      color:#5c5c5c;
      max-width:580px;
      margin-bottom:35px;
    }

    .hero-buttons{
      display:flex;
      gap:20px;
      flex-wrap:wrap;
    }

    .btn{
      padding:16px 36px;
      border-radius:40px;
      border:none;
      font-family:'Poppins', sans-serif;
      font-weight:500;
      cursor:pointer;
      transition:0.3s ease;
      font-size:15px;
    }

    .btn-primary{
      background:var(--lavender-pink);
    }

    .btn-secondary{
      background:#d9e1ea;
    }

    .btn:hover{
      transform:translateY(-3px);
    }

    /* CARD */
    .arrival-card{
      background:var(--lavender-pink);
      padding:35px;
      border-radius:35px;
      box-shadow:0 10px 25px rgba(0,0,0,0.08);
    }

    .arrival-card small{
      font-size:13px;
      letter-spacing:1px;
      color:#666;
    }

    .arrival-card h2{
      margin-top:15px;
      font-size:42px;
      font-weight:500;
      line-height:1.25;
    }

    .icon-box{
      width:120px;
      height:120px;
      border:3px solid #444;
      border-radius:18px;
      margin:35px auto;
      position:relative;
    }

    .icon-box::before{
      content:"";
      position:absolute;
      width:70px;
      height:35px;
      border:3px solid #444;
      border-bottom:none;
      top:-25px;
      left:50%;
      transform:translateX(-50%);
      border-radius:10px 10px 0 0;
    }

    .icon-smile{
      width:35px;
      height:18px;
      border-bottom:3px solid #444;
      border-radius:0 0 40px 40px;
      position:absolute;
      top:48px;
      left:50%;
      transform:translateX(-50%);
    }

    .card-btn{
      width:100%;
      margin-top:15px;
      background:#ffd5df;
    }

    /* CATEGORIES */
    .categories{
      padding:60px 8%;
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
      gap:25px;
    }

    .category-card{
      background:var(--mist-blue);
      border-radius:28px;
      padding:30px 20px;
      text-align:center;
      transition:0.3s ease;
    }

    .category-card:hover{
      transform:translateY(-8px);
      background:var(--light-purple);
    }

    .category-image{
      width:100%;
      height:140px;
      border-radius:22px;
      background:#bdd3e4;
      margin-bottom:22px;
    }

    .category-card h3{
      margin-bottom:10px;
      font-size:18px;
    }

    .category-card p{
      font-size:14px;
      color:#555;
    }

    /* FOOTER */
    footer{
      background:linear-gradient(
        to right,
        var(--soft-peach),
        var(--lavender-pink)
      );
      padding:30px;
      text-align:center;
      font-size:14px;
      color:#444;
      margin-top:40px;
    }

    /* RESPONSIVE */
    @media(max-width:950px){

      .hero{
        grid-template-columns:1fr;
      }

      .hero-left h1{
        font-size:54px;
      }

      .arrival-card h2{
        font-size:32px;
      }

      .nav-links{
        gap:18px;
      }
    }

    @media(max-width:600px){

      .navbar{
        flex-direction:column;
        gap:20px;
      }

      .hero-left h1{
        font-size:42px;
      }

      .hero-left p{
        font-size:18px;
      }

      .btn{
        width:100%;
      }

      .hero-buttons{
        flex-direction:column;
      }
    }
	/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:10px;

  font-size:1.3rem;
  font-weight:600;
  font-family:'Poppins', sans-serif;
  color:#111;
}

.logo img{
  width:45px;
  height:45px;
  object-fit:cover;
  border-radius:50%;
}

/*about us*/
    /* NAVBAR */
   header{
  width:100%;
  background:var(--cream);
}

.navbar{
  width:100%;
  padding:18px 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
}


    .logo{
      display:flex;
      align-items:center;
      gap:12px;
    }

    .logo-circle{
      width:58px;
      height:58px;
      border-radius:50%;
      border:2px solid var(--light-purple);
      background: white;
      display:flex;
      align-items:center;
      justify-content:center;
      font-family:'Playfair Display', serif;
      color:#9a80c6;
      font-size:24px;
      font-weight:bold;
    }

    .logo h1{
      font-size:28px;
      color:#c9b3f1;
      font-family:'Playfair Display', serif;
      letter-spacing:1px;
    }

    nav ul{
      display:flex;
      gap:40px;
      align-items:center;
    }

    nav a{
      color:var(--black);
      font-weight:500;
      position:relative;
      transition:.3s;
    }

    nav a:hover,
    nav a.active{
      color:#d8b5f0;
    }

    nav a::after{
      content:"";
      position:absolute;
      left:0;
      bottom:-6px;
      width:0%;
      height:2px;
      background:#d8b5f0;
      transition:.3s;
    }

    nav a:hover::after{
      width:100%;
    }

    .search-box{
      width:220px;
      background:var(--lavender-pink);
      border-radius:30px;
      padding:10px 18px;
      border:none;
      outline:none;
      font-family:'Inter', sans-serif;
    }

    /* ABOUT SECTION */
    .about-section{
      padding:70px 20px;
    }

    .about-container{
      width:90%;
      max-width:1250px;
      margin:auto;
      background:var(--mist-blue);
      border-radius:35px;
      padding:35px;
      display:grid;
      grid-template-columns:1.5fr 1fr;
      gap:30px;
      border:8px solid var(--lavender-pink);
      box-shadow:0 8px 20px rgba(0,0,0,0.08);
    }

    .about-text{
      background:rgba(255,255,255,0.35);
      padding:35px;
      border-radius:25px;
      border:2px solid rgba(255,255,255,0.5);
      backdrop-filter:blur(5px);
    }

    .about-text h2{
      font-size:45px;
      margin-bottom:25px;
      font-family:'Playfair Display', serif;
      color:#1d1d1d;
    }

    .about-text h2 span{
      color:#d5a7f0;
    }

    .about-text p{
      line-height:1.9;
      margin-bottom:18px;
      font-size:15px;
      font-family:'Inter', sans-serif;
    }

    .about-text ul{
      margin:20px 0;
      padding-left:20px;
    }

    .about-text ul li{
      margin-bottom:12px;
      position:relative;
      padding-left:18px;
      font-size:15px;
    }

    .about-text ul li::before{
      content:"•";
      color:#be8fe4;
      position:absolute;
      left:0;
      top:0;
      font-size:20px;
    }

    .certificate-card{
      background:white;
      border-radius:25px;
      padding:25px;
      border:10px solid var(--lavender-pink);
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      overflow:hidden;
      min-height:600px;
      box-shadow:0 6px 18px rgba(0,0,0,0.08);
    }

    .certificate-card::before{
      content:"";
      position:absolute;
      width:180px;
      height:180px;
      background:var(--sky-blue);
      border-radius:50%;
      top:-70px;
      right:-50px;
      opacity:.4;
    }

    .certificate-card::after{
      content:"";
      position:absolute;
      width:120px;
      height:120px;
      background:var(--light-purple);
      border-radius:50%;
      bottom:-40px;
      left:-20px;
      opacity:.4;
    }

    .certificate-placeholder{
      width:100%;
      height:100%;
      border:2px dashed #c8b0ef;
      border-radius:15px;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:30px;
      background:#fcfbff;
      z-index:1;
    }

    .certificate-placeholder p{
      font-family:'Inter', sans-serif;
      color:#666;
      line-height:1.8;
    }

    /* FOOTER */
    footer{
      margin-top:60px;
      background:var(--lavender-pink);
      padding:30px 20px;
      text-align:center;
    }

    footer h3{
      font-family:'Playfair Display', serif;
      margin-bottom:10px;
      color:#8f6cb9;
    }

    footer p{
      font-family:'Inter', sans-serif;
      font-size:14px;
    }

    /* RESPONSIVE */
    @media(max-width:980px){

      .navbar{
        flex-direction:column;
        gap:20px;
      }

      nav ul{
        gap:20px;
        flex-wrap:wrap;
        justify-content:center;
      }

      .about-container{
        grid-template-columns:1fr;
      }

      .about-text h2{
        font-size:35px;
      }

      .certificate-card{
        min-height:450px;
      }
    }

    @media(max-width:600px){

      .logo h1{
        font-size:20px;
        text-align:center;
      }

      .about-text{
        padding:25px;
      }

      .about-text h2{
        font-size:30px;
      }

      .about-text p,
      .about-text li{
        font-size:14px;
      }
    }