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

body {
  font-family: 'Oswald';
  background-color: #000;
  color: #fff;
}

/* General header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 20px;
}

header .logo {
  color: #fff;
  padding-left: 20px;
}
header nav img{
  margin: 10px;
}
/* Desktop Navigation */
header nav ul {
  display: flex;
  list-style: none;
  align-items: center;
}

header nav ul li {
  margin-left: 80px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

header nav ul li a:hover {
  color: #e6c200;
}

/* Burger icon (hidden on desktop) */
.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Mobile View */
@media (max-width: 1200px) {
  /* Hide desktop menu */
  nav ul {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 80px;
      left: -100%;
      background-color: #333;
      transition: transform 0.5s ease-in-out;
      z-index: 99;
  }

  /* Burger icon display */
  .burger {
      display: block;
  }

  /* When the menu is active */
  nav.active ul {
      display: flex;
      left: 0;
      transform: translateX(0);
  }

  nav ul li {
      margin: 20px 60px;
      text-align: center;
  }

  nav ul li a {
      font-size: 1.5rem;
  }

  /* Burger menu animation */
  .toggle .line1 {
      transform: rotate(-45deg) translate(-5px, 6px);
  }

  .toggle .line2 {
      opacity: 0;
  }

  .toggle .line3 {
      transform: rotate(45deg) translate(-5px, -6px);
  }
}

/* About Section */
.about-section {
  background-color: #000;
  color: #fff;
  padding: 0;
}

.about-banner {
  position: relative;
  text-align: center;
}

.about-banner img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  opacity: 0.8;
}

.about-banner h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3em;
  color: #fff;
  font-weight: bold;
  margin: 0;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 30px;
  background-color: #111;
}

.profile-image {
  flex: 1;
  max-width: 45%;
  padding: 10px;
}

.profile-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.mission-text {
  flex: 1;
  max-width: 45%;
  padding: 10px;
}

.mission-text h3 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #ffd700;
}

.mission-text p {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 15px;
}


/* Responsive Media Query for Mobile Devices */
@media (max-width: 600px) {
  .about-content {
    flex-direction: column; /* Stack elements vertically */
    padding: 20px; /* Reduce padding for smaller screens */
  }

  .profile-image, .mission-text {
    max-width: 100%; /* Full width on mobile */
    padding: 5px; /* Adjust padding for smaller screens */
  }

  .mission-text h3 {
    font-size: 1.5em; /* Reduce heading size on mobile */
  }

  .mission-text p {
    font-size: 1rem; /* Reduce paragraph size on mobile */
  }
}

/* Responsive Media Query for Tablets (600px - 1024px) */
@media (min-width: 600px) and (max-width: 1024px) {
  .about-content {
    padding: 20px; /* Adjust padding for tablet view */
  }

  .profile-image, .mission-text {
    max-width: 48%; /* Make the elements slightly wider on tablets */
    padding: 10px; /* Maintain some padding for spacing */
  }

  .mission-text h3 {
    font-size: 1.6em; /* Slightly reduce heading size on tablets */
  }

  .mission-text p {
    font-size: 1.05em; /* Adjust paragraph size for readability */
  }
}




/* Carousel Styling */
.carousel-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}


.carousel {
  display: flex;
  width: 200%;
  animation: bannermove 20s linear infinite;
}

.carousel img {
  border-radius: 5%;
  padding: 10px;
}
.carousel.paused {
  animation-play-state: paused;
}

.carousel div {
  width: 100%;
}

.carousel ul {
  display: flex;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.carousel li {
  width: 100%;
}

.carousel img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes bannermove {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}


 /* Contact Section */
 .contact-section {
  padding: 50px;
  background-color: #333; /* Dark background */
  color: #fff;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* Ensures responsive layout */
  margin: 0 100px;
}

.contact-info {
  flex: 1;
  max-width: 50%;
  padding-right: 20px;
}

.contact-info h2 {
  font-size: 4em;
  margin-bottom: 20px;
}

.contact-info h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.contact-info p {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info h4 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.phone-number {
  font-size: 2em;
  color: #ffd700; /* Yellow color */
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 2em;
  text-decoration: none;
}

.contact-form {
  flex: 1;
  max-width: 45%;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f0f0f0;
  color: #333;
}

.form-group input::placeholder {
  color: #999;
}

.btn-yellow {
  background-color: #ffd700; /* Yellow background */
  color: #000;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-yellow:hover {
  background-color: #e6c200;
}


/* Form Layout */
.contact-form form {
  display: flex;
  flex-direction: column;
}

/* Form Group Styles */
.form-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

/* Input Styles */
.form-group input {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f0f0f0;
  color: #333;
}

/* Placeholder Text */
.form-group input::placeholder {
  color: #999;
}

/* Button Styles */
.btn-yellow {
  background-color: #ffd700; /* Yellow background */
  color: #000;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn-yellow:hover {
  background-color: #e6c200;
}

/* Responsive Media Queries */

/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
  .contact-container {
      flex-direction: column; /* Stack items vertically on mobile */
      margin: 0 20px; /* Reduce margin for mobile view */
  }

  .contact-info {
      max-width: 100%; /* Full width on mobile */
      padding-right: 0; /* Remove right padding */
      padding-left: 0; /* Remove left padding */
  }

  .contact-form {
    padding: 50px;
    max-width: 100%;
  }
  .contact-info h2 {
      text-align: center; /* Center text */
      font-size: 2.5em; /* Adjust title size for mobile */
  }

  .contact-info h3 {
    text-align: center; /* Center text */
      font-size: 1.5em; /* Adjust heading size for mobile */
  }

  .contact-info h4 {
    text-align: center; /* Center text */
      font-size: 1.3em; /* Adjust heading size for mobile */
  }

  .phone-number {
    text-align: center; /* Center text */
      font-size: 1.5em; /* Adjust phone number size for mobile */
  }

  .contact-form {
      padding: 20px; /* Reduce padding for mobile */
  }

  .btn-yellow {
      font-size: 1em; /* Adjust button size */
      padding: 10px 20px; /* Adjust button padding */
  }
}

/* Tablets (600px to 768px) */
@media (min-width: 600px) and (max-width: 768px) {
  .contact-container {
      flex-direction: column; /* Stack items on tablets */
      margin: 0 40px; /* Slightly larger margin for tablets */
  }

  .contact-info,
  .contact-form {
      max-width: 100%; /* Full width on tablets */
  }

  .contact-info h2 {
      font-size: 3em; /* Adjust title size for tablets */
  }
}
