html{
      scroll-behavior: smooth;
    }

    body{
      font-family: 'Poppins', sans-serif;
      background-color: #fff8f5;
    }

  

    .navbar{
      background-color: transparent;
      padding: 20px 0;
      position: absolute;
      width: 100%;
      z-index: 10;
    }

    .navbar-brand{
      font-size: 28px;
      font-weight: 700;
      color: white !important;
    }

    .nav-link{
      color: white !important;
      margin-left: 20px;
      font-weight: 500;
      transition: 0.3s;
    }

    .nav-link:hover{
      color: #ffd1e1 !important;
    }

    /* Hero Section */

    .hero{
      min-height: 100vh;
      background: linear-gradient(135deg, #ec407a, #f06292);
      display: flex;
      align-items: center;
      color: white;
      padding-top: 80px;
    }

    .hero h1{
      font-size: 64px;
      font-weight: 700;
      line-height: 1.1;
    }

    .hero p{
      margin-top: 20px;
      font-size: 18px;
      color: #fce4ec;
    }

    .btn-custom{
      background: white;
      color: #ec407a;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      margin-top: 20px;
      border: none;
      transition: 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-custom:hover{
      background: #f8bbd0;
      color: #ec407a;
      transform: translateY(-3px);
    }

    .hero img{
      width: 100%;
      max-width: 500px;
    }

    

    .about{
      padding: 100px 0;
    }

    .section-title{
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #ec407a;
    }

    

    .services{
      padding: 100px 0;
      background: white;
    }

    .service-card{
      border: none;
      border-radius: 20px;
      padding: 30px;
      transition: 0.3s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .service-card:hover{
      transform: translateY(-10px);
    }

    

    .gallery{
      padding: 100px 0;
    }

    .gallery img{
      border-radius: 20px;
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: 0.3s;
    }

    .gallery img:hover{
      transform: scale(1.03);
    }

    

    .contact{
      padding: 100px 0;
      background: #ec407a;
      color: white;
      text-align: center;
    }

    .contact h2{
      font-size: 42px;
      font-weight: 700;
    }

    footer{
      background: #222;
      color: white;
      text-align: center;
      padding: 20px;
    }

    

    @media(max-width:768px){

      .hero{
        text-align: center;
      }

      .hero h1{
        font-size: 42px;
      }

      .hero img{
        margin-top: 40px;
      }

      .navbar-collapse{
        background: rgba(236, 64, 122, 0.95);
        padding: 20px;
        border-radius: 15px;
        margin-top: 10px;
      }

      .nav-link{
        margin-left: 0;
        margin-bottom: 10px;
      }
    }