/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff; /* Dark background for a bold, superhero feel */
  color: #101820; /* White text for high contrast */
  line-height: 1.6;
  padding: 20px;
  overflow-x: hidden;
  padding-top: 100px;
}

header {
  text-align: center;
  margin-bottom: 30px;
  background-color: #ffffff; /* Dark background for a bold, superhero feel */

}

header img {
  width: 200px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5)); /* Soft glow effect */
}

/* Hero Section */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
  background: linear-gradient(145deg, #2196F3, #1976D2);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-content {
  flex: 1;
  min-width: 300px;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Text shadow for a dramatic look */
}

.highlight {
  color: #ffeb3b; /* Bright yellow highlight for impact */
  font-style: italic;
}

.carousel-container {
  flex: 1;
  min-width: 300px;
}

.carousel {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.carousel img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease-in-out;
}

.carousel img:hover {
  transform: scale(1.1); /* Hover effect for images */
}

/* Content Sections */
section {
  margin-bottom: 40px;
  color: #fff;
}

h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffeb3b;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* Buttons */
.button-group {
  margin-top: 20px;
}

.button-group button {
  background-color: #ff5252;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 1.2rem;
  border-radius: 30px;
  margin-right: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-group button:hover {
  background-color: #ff1744;
  transform: scale(1.05); /* Hover effect for buttons */
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  /* background-color: #1c1c1c; */
  color: #460000;
  border-top: 2px solid #ff1744;
}

footer p {
  font-size: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    padding: 3rem 1rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .carousel-container {
    width: 100%;
  }
}

/* Card Design for Sections */
.card {
  background: linear-gradient(145deg, #2196F3, #1976D2);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  margin: 2rem auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.section-content {
  flex: 1;
  min-width: 300px;
  color: #fff;
}

.section-image {
  flex: 1;
  min-width: 300px;
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Alternating Layout */
@media (min-width: 769px) {
  /* Default layout - image on left (odd sections) */
  main.content .card {
    flex-direction: row;
  }

  /* Even sections - image on right */
  .card:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .card {
    flex-direction: column;
    padding: 1.5rem;
    margin: 1.5rem auto;
  }

  .section-content, .section-image {
    width: 100%;
  }

  .section-content {
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

/* Content Styles */
.section-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.section-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.section-content ul {
  list-style-type: none;
  padding: 0;
}

.section-content li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.submit-btn {
  background: #fff;
  color: #ff1744;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background: #ffeb3b;
  transform: translateY(-2px);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.form-status {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
}

.form-status.success {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.form-status.error {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 40px;
  width: auto;
}

.cta-button {
  background: linear-gradient(145deg, #ff5252, #ff1744);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(255, 23, 68, 0.3);
  border: 1px solid transparent;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 23, 68, 0.4);
  background: linear-gradient(145deg, #ff1744, #ff5252);
}

.cta-button:active {
  transform: translateY(0);
}
