* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  }
  
  body {
    background-color: #971414;
  }
  
  header {
    background-color: #002f34;
    color: rgb(131, 29, 114);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  p{
    text-align: center;
  }


  .button-group {
  text-align: center;
  margin-top: 10px;
}

.button-group .btn {
  display: inline-block;
  margin: 5px;
}


  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  input[type="text"] {
    padding: 0.5rem;
    width: 50%;
    border: none;
    border-radius: 4px;
  }
  button {
    padding: 0.6rem 1rem;
    margin-left: 10px;
    background-color: #23e5db;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem;
  }
  
  .product-card {
    background: rgb(101, 18, 47);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .product-card img {
    max-width: 100%;
    border-radius: 6px;
  }
  
  .product-card h3 {
    margin: 0.5rem 0;
  }
  
  product-card p {
     color:#00a49f
    } 


    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }
    
    .top-bar {
      background: #002f34;
      color: white;
      padding: 15px;
      display: flex;
      align-items: center;
    }
    
    .menu-icon {
      font-size: 24px;
      cursor: pointer;
      margin-right: 20px;
    }
    
    .logo {
      font-size: 20px;
      font-weight: bold;
    }
    .sidebar {
      position: fixed;
      top: 0;
      left: -250px;
      height: 100%;
      width: 250px;
      background: #fff;
      box-shadow: 2px 0 5px rgba(0,0,0,0.3);
      transition: left 0.3s ease;
      z-index: 1000;
      padding-top: 60px;
    }
    
    .sidebar a {
      display: block;
      padding: 15px 20px;
      color: #002f34;
      text-decoration: none;
      font-weight: bold;
      border-bottom: 1px solid #ddd;
    }
    
    .sidebar a:hover {
      background: #f0f0f0;
    }
    
    .content {
      padding: 20px;
    }
        
    
    body {
        font-family: sans-serif;
        background-color: #2d0f71;
        margin: 0;
        padding: 0;
      }
      
      .ad-gallery {
        padding: 2rem;
        text-align: center;
      }
      
      h2 {
        margin-bottom: 1.5rem;
      }
      
      .gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
      }
      .slider-container {
        width: 100%;
        overflow: hidden;
      }
      
      .slider {
        display: flex;
        transition: transform 0.5s ease-in-out;
      }
      
      .slider img {
        width: 100%;
        height: 400px;
        object-fit: cover;
      }
      
      @keyframes slide {
        0% {
          transform: translateX(0);
        }
        25% {
          transform: translateX(-100%);
        }
        50% {
          transform: translateX(-200%);
        }
        75% {
          transform: translateX(-300%);
        }
        100% {
          transform: translateX(0);
        }
      }

      .slider {
        animation: slide 10s infinite;
      }
      
      
            
            
      prev, .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0,0,0,0.5);
        color: rgb(117, 27, 27);
        border: none;
        padding: 10px;
        cursor: pointer;
        z-index: 10;
        font-size: 18px;
        border-radius: 50%;
      }
      
      .prev { left: 10px; }
      .next { right: 10px; }
      
      
            
      
      .ad-card {
        background: rgb(160, 61, 61);
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        overflow: hidden;
        width: 300px;
      }
      
      .ad-card img {
        width: 100%;
        cursor: pointer;
        transition: transform 0.3s ease;
      }
      
      .ad-card img:hover {
        transform: scale(1.05);
      }
      
      .ad-card p {
        padding: 1rem;
        font-weight: bold;
      }
      
      /* Modal */
      .modal {
        display: none;
        position: fixed;
        z-index: 100;
        left: 0; top: 0;
        width: 100%; height: 100%;
        background-color: rgba(0,0,0,0.7);
        justify-content: center;
        align-items: center;
      }
      
      .modal-content {
        max-width: 90%;
        max-height: 80%;
        border-radius: 10px;
      }
      .close {
        position: absolute;
        top: 20px; right: 40px;
        font-size: 30px;
        color: rgb(190, 85, 85);
        cursor: pointer;
      }

      footer {
        background-color: #002f34;
        color: rgb(140, 45, 45);
        padding: 40px 20px;
        font-family: Arial, sans-serif;
      }
      
      .footer-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
      }
      
      .footer-section {
        flex: 1;
        min-width: 200px;
        margin: 10px;
      }
      
      .footer-section h3 {
        border-bottom: 2px solid #00a49f;
        padding-bottom: 10px;
        margin-bottom: 15px;
      }
      
      .footer-section ul {
        list-style: none;
        padding: 0;
      }
      
      .footer-section li {
        margin-bottom: 10px;
        cursor: pointer;
      }
      .footer-section li:hover {
        color: #00a49f;
      }
      
      .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid #00a49f;
        margin-top: 30px;
        position: relative;
      }
      
      .scroll-top-btn {
        background-color: #00a49f;
        color: rgb(145, 22, 22);
        border: none;
        padding: 8px 15px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: -10px;
        border-radius: 5px;
      }
      
      .scroll-top-btn:hover {
        background-color: #007d77;
      }



      body {
        background-color: #b6242465;
        font-family: Arial, sans-serif;
      }
      
      .login-container {
        width: 300px;
        margin: 100px auto;
        padding: 25px;
        background-color: rgb(26, 214, 51);
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        text-align: center;
      }
      
      .login-container h2 {
        margin-bottom: 20px;
      }
      
      .login-container input {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ccc;
        border-radius: 5px;
      }
      
      .login-container button {
        width: 100%;
        padding: 10px;
        background-color: #002f34;
        color: rgb(146, 39, 39);
        border: none;
        border-radius: 5px;
        cursor: pointer;
      }
      login-container button:hover {
        background-color: #00565e;
      }
      
      .login-container p {
        margin-top: 15px;
      }
      

      /* ✅ Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #c4df26;
  color: #333;
  padding: 10px;
}

/* ✅ Header */
header {
  background-color: #16dd16;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
  color: #007b5e;
  font-size: 26px;
}

header p {
  color: #666;
  font-size: 16px;
}


/* ✅ Product Cards */
.product-section {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.product-card {
  background: #f3b310;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  text-align: center;
}

.product-card img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 10px;
}

.product-card h3 {
  margin: 10px 0;
  font-size: 20px;
  color: #007b5e;
}

.product-card p {
  color: #555;
  font-size: 15px;
}
.product-card .btn {
  margin-top: 10px;
  display: inline-block;
  background: #007b5e;
  color: rgb(64, 17, 175);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

/* ✅ Footer */
footer {
  text-align: center;
  padding: 15px;
  background-color: #007b5e;
  color: rgb(0, 68, 86);
  margin-top: 30px;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 20px;
  }

  header p {
    font-size: 14px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-card p {
    font-size: 14px;
  }

  .product-card .btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}



            
      
      
            
      
      
    