/* style.css */

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f0f0f0;
    padding: 20px;
  }
  a {
    color: #ff4081;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  a:hover {
    color: #e91e63;
  }
  h1, h2 {
    margin-bottom: 15px;
  }
  p {
    margin-bottom: 15px;
  }
  
  /* Header Styling */
  header {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
  }
  header p {
    font-size: 1.2em;
  }
  
  /* Section Styling */
  section {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-left: 8px solid #ff6a00;
  }
  section:nth-of-type(even) {
    border-left-color: #ee0979;
  }
  section h2 {
    font-size: 1.8em;
    color: #333;
  }
  
  /* Footer Styling */
  footer {
    background: linear-gradient(135deg, #ee0979, #ff6a00);
    color: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  footer a {
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s ease;
  }
  footer a:hover {
    text-decoration: underline;
    color: #f8bbd0;
  }
  
  /* Modal Popup (for Homepage if needed) */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  .modal {
    background: #fff;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    animation: fadeIn 0.5s ease-in-out;
  }
  .modal h2 {
    color: #ee0979;
    margin-bottom: 20px;
  }
  .modal button {
    background: linear-gradient(135deg, #ff6a00, #ee0979);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .modal button:hover {
    background: linear-gradient(135deg, #ee0979, #ff6a00);
  }
  @keyframes fadeIn {
    from {opacity: 0; transform: scale(0.8);}
    to {opacity: 1; transform: scale(1);}
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    body {
      padding: 10px;
    }
    header, footer {
      padding: 20px;
    }
    section {
      padding: 20px;
    }
  }

.b {}
  