﻿/* === ØªÙ†Ø³ÙŠÙ‚Ø§Øª Ø§Ù„ØµÙØ­Ø© Ø§Ù„Ø¬Ø¯ÙŠØ¯Ø© === */
    .animation-page {
      background-color: #f9f9f9;
      padding: 0.1rem 0;
    }
      /* === ØªÙ†Ø³ÙŠÙ‚Ø§Øª Ø±Ø£Ø³ Ø§Ù„ØµÙØ­Ø© === */
  .birthday-page-header {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .birthday-main-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
  }
  
  .birthday-subtitle {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #fff;
    max-width: 700px;
    margin: auto;
    opacity: 0.9;
  }
  
  .birthday-theme-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
  }

    /* Ø´Ø¨ÙƒØ© Ø§Ù„Ù…Ù†ØªØ¬Ø§Øª */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(190px, 4fr));
      gap:5px ;
      max-width: 900px;
      margin: 0 auto;
      
    }
    
    @media (max-width: 768px) {
      .products-grid {
        grid-template-columns: repeat(100px, 2fr);
        gap:5px ;
      }
    }

    
    /* Ø¨Ø·Ø§Ù‚Ø© Ø§Ù„Ù…Ù†ØªØ¬ */
    .product-card {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 17px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s, box-shadow 0.3s;
      max-width: 250px;
    }
    
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    
    .product-details {
      padding: 1.5rem;
      
      text-align: center;
    }
    
    .product-title {
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      font-size: 1.2rem;
      color: #333;
      margin-bottom: 0.1rem;
      -webkit-line-clamp: 2; /* Ø¹Ø¯Ø¯ Ø§Ù„Ø£Ø³Ø·Ø± Ø§Ù„Ù…Ø·Ù„ÙˆØ¨Ø© */
      -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.8em; /* ÙŠØªÙ†Ø§Ø³Ø¨ Ù…Ø¹ Ø¹Ø¯Ø¯ Ø§Ù„Ø£Ø³Ø·Ø± */
  line-height: 1.4em;
      

    }
    
    .product-description {
      font-family: "Poppins", sans-serif;
      color: #666;
      font-size: 0.9rem;
      margin-bottom: 1px;
      display: -webkit-box;
  -webkit-line-clamp: 2; /* Ø¹Ø¯Ø¯ Ø§Ù„Ø£Ø³Ø·Ø± Ø§Ù„Ù…Ø·Ù„ÙˆØ¨Ø© */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 2.8em; /* ÙŠØªÙ†Ø§Ø³Ø¨ Ù…Ø¹ Ø¹Ø¯Ø¯ Ø§Ù„Ø£Ø³Ø·Ø± */
  line-height: 1.4em;
      
    }
    
    .product-price {
      font-family: "Poppins", sans-serif;
      font-weight: 700;
      font-size: 1rem;
      color: #222;
      margin-bottom: 1rem;
      margin-top: 9px;
      
    }
    
    .product-btn {
      display: block;
      width: 100%;
      padding: 0.8rem;
      background-color: #000;
      color: #fff;
      border: none;
      border-radius: 5px;
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    .product-btn:hover {
      background-color: #333;
    }
    

    @media (max-width: 390px) {
  .products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Ø¹Ø±Ø¶ Ø¹Ù…ÙˆØ¯ÙŠÙ† Ù…ØªØ³Ø§ÙˆÙŠÙŠÙ† */
    gap: 5px;
    max-width: 100%; /* Ø§Ø³ØªØ®Ø¯Ù… Ø§Ù„Ø¹Ø±Ø¶ Ø§Ù„ÙƒØ§Ù…Ù„ */
  }



  .products-container {
    max-width: 100%;
    display: grid;
  }
}

    /* Ù†Ù…ÙˆØ°Ø¬ Ø§Ù„Ø­Ø¬Ø² */
    .booking-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }
    
    .modal-content {
      background: #fff;
      width: 90%;
      max-width: 500px;
      border-radius: 10px;
      padding: 2rem;
      position: relative;
    }
    
    .close-modal {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 1.5rem;
      cursor: pointer;
      color: #666;
    }
    
    .modal-title {
      font-family: "Poppins", sans-serif;
      font-weight: 600;
      font-size: 1.5rem;
      color: #000;
      margin-bottom: 1.5rem;
      text-align: center;
    }
    
    .booking-form .form-group {
      margin-bottom: 1.2rem;
    }
    
    .booking-form label {
      display: block;
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      color: #333;
      margin-bottom: 0.5rem;
    }
    
    .booking-form input,
    .booking-form select,
    .booking-form textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-family: "Poppins", sans-serif;
    }
    
    .submit-booking {
      width: 100%;
      padding: 0.9rem;
      background-color: #000;
      color: #fff;
      border: none;
      border-radius: 5px;
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      cursor: pointer;
      margin-top: 1rem;
    }
    
    .submit-booking:hover {
      background-color: #333;
    }

    .site-footer{
        background: linear-gradient(135deg, #000000 0%, #333333 100%);
    }
    .slider  {
        background: linear-gradient(185deg, #000000 0%, #333333 100%);
        
    }
    .slider-text {
        color: white;
    }
    .contact-btn{
      background-color: white;
      color: black;
      font-weight: 900;

    }

      /* === ØªÙ†Ø³ÙŠÙ‚ Ù‚Ø³Ù… SEO Ø§Ù„ØºÙ†ÙŠ === */
  .seo-rich-text {
    background-color: #fff;
    border-radius: 17px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 900px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border: 1px solid #eaeaea;
  }
  
  .seo-rich-text h2 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
  }
  
  .seo-rich-text h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #000;
  }
  
  .seo-rich-text p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
  }
  
  .seo-rich-text h3 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: #222;
    margin: 2rem 0 1rem;
    padding-left: 10px;
    border-left: 4px solid #000;
  }
  
  /* Ù†Ù‚Ø§Ø· Ø§Ù„Ù‚ÙˆØ© */
  .strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .strength-item {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #000;
  }
  
  .strength-item h4 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
  }
  
  .strength-item p {
    font-size: 0.95rem;
    margin-bottom: 0;
  }
  
  @media (max-width: 768px) {
    .seo-rich-text {
      padding: 1.5rem;
      margin: 2rem 15px;
    }
    
    .seo-rich-text h2 {
      font-size: 1.5rem;
    }
    
    .strengths-grid {
      grid-template-columns: 1fr;
    }
  }

