/* General Reset */
body, h1, h2, h3, p, form, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    padding: 0 20px;
  }
  
  /* Dynamic Slider */
  .slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .slide-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  @keyframes slide-animation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
  }
  
  /* Card Section */
  
 



.card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.card p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.card ul {
    list-style: none;
    margin-left: 20px;
}

.card li {
    font-size: 1em;
    color: #444;
    margin-bottom: 8px;
}

.card li strong {
    color: #007BFF;
}

  
  /* Contact Form Section */
  .contact-section {
    margin: 20px 0;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  .contact-section h2 {
    margin-bottom: 20px;
    color: #007BFF;
  }
  
  form label {
    display: block;
    margin: 10px 0 5px;
  }
  
  form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  form button {
    background: #007BFF;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  form button:hover {
    background: #0056b3;
  }
  
  /* Footer Section */
  .footer {
    text-align: center;
    padding: 10px 0;
    background: #007BFF;
    color: white;
  }
  



  /* General Reset */
body, h1, h2, h3, p, form, input, textarea, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
    padding: 0 20px;
  }
  
  