/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* Cover Section */
  .cover-section {
    position: relative;
    height: 100vh; 
    display: flex;
    justify-content: center; 
    align-items: flex-end; 
    overflow: hidden;
  }
  
  
  .glass-tab {
    position: absolute;
    bottom: 20px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 90%; 
    max-width: 500px; 
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff; 
    z-index: 2;
  }
  
  /* Tab Heading */
  .glass-tab h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .glass-tab .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #93c73f; 
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .glass-tab .btn:hover {
    background-color: #6ea82c;
    transform: scale(1.05); 
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    
  
    .glass-tab {
      width: 95%;
      padding: 15px;
    }
  
    
    .glass-tab h2 {
      font-size: 1.2rem;
    }
  
    .glass-tab .btn {
      font-size: 0.9rem;
      padding: 8px 15px;
    }
  }
  
  @media (max-width: 480px) {
   
    .glass-tab {
      width: 100%;
      padding: 10px;
      border-radius: 0; 
    }
  
   
    .glass-tab h2 {
      font-size: 1rem;
    }
  
    
    .glass-tab .btn {
      font-size: 0.8rem;
      padding: 6px 12px;
    }
  }
  .image-title {
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0;
    color: #333;
}
.image-container {
    width: 100%;
    overflow: hidden;
}
.image-container img {
    width: 100%;
    height: auto;
    display: block;
}



/* Centered Title */
.centered-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 1;
  }
  
  .centered-title h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  
  /* WhatsApp Tab */
  .whatsapp-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }
  
  .whatsapp-tab img {
    width: 24px;
    height: 24px;
  }
  
  .whatsapp-tab .number {
    font-size: 1rem;
    font-weight: bold;
  }
  
  .whatsapp-button {
    padding: 8px 16px;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .whatsapp-button:hover {
    background-color: #128c7e;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .centered-title h1 {
      font-size: 2rem;
    }
  
    .whatsapp-tab {
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
  
    .whatsapp-tab img {
      width: 20px;
      height: 20px;
    }
  
    .whatsapp-tab .number {
      font-size: 0.9rem;
    }
  
    .whatsapp-button {
      padding: 6px 12px;
      font-size: 0.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .centered-title h1 {
      font-size: 1.5rem;
    }
  
    .whatsapp-tab {
      gap: 6px;
    }
  
    .whatsapp-tab img {
      width: 18px;
      height: 18px;
    }
  
    .whatsapp-tab .number {
      font-size: 0.8rem;
    }
  
    .whatsapp-button {
      padding: 5px 10px;
      font-size: 0.75rem;
    }
  }/* Centered Title */
.centered-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 1;
    width: 90%; 
  }
  
  .centered-title h1 {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    margin: 0; 
  }
  
  /* Responsive Design for Mobile */
  @media (max-width: 768px) {
    .centered-title h1 {
      font-size: 2.5rem; 
      line-height: 1.2; 
    }
  }
  
  @media (max-width: 480px) {
    .centered-title h1 {
      font-size: 2rem; 
    }
  }
  
  @media (max-width: 360px) {
    .centered-title h1 {
      font-size: 1.8rem;
    }
  }