/* Reset & Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(73, 73, 73, 0.75));
  color: white;
}

/* Header */
header {
  background-color: #000000;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
li{
  list-style-type: none;
  font-weight: bolder;
  color: rgb(250, 177, 177);
}

/* Section */
.section {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
  gap: 20px;
}

.text-box {
  flex: 1 1 50%;
  min-width: 300px;
}

.image-box {
  flex: 1 1 40%;
  min-width: 250px;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Headings */
h2 {
  color: #d9eb3f;
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}
/* About Section Responsive Styles */
.about-section {
  padding: 60px 20px;
  background: linear-gradient(to right, #f9f9f9, #e0e0e0);
  text-align: center;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-section p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333;
}

/* Image block styles */
.about-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.about-images img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.about-images img:hover {
  transform: scale(1.05);
}
.about-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #fff;
  color: #222;
}

.about-section.dark {
  background: #2f3c46;
  color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
}

.about-container h1, .about-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-container p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.about-images img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.submit-btn {
  font-size: 0.95rem;
}
.site-footer {
  background: linear-gradient(to right, #333, #222);
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #555;
}

.site-footer h3, .site-footer h4 {
  color: #f2b544;
  margin-bottom: 10px;
}

.site-footer p,
.site-footer a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  background: #f2b544;
  color: #000;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #fff;
  color: #000;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #999;
}




/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section h2 {
    font-size: 1.8rem;
  }

  .about-section p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .about-images {
    flex-direction: column;
    align-items: center;
  }

  .about-images img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .about-section h2 {
    font-size: 1.5rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    text-align: center;
  }

  .text-box, .image-box {
    flex: 1 1 100%;
  }
}
