


/* --------------------------------------------------------  header style ends here --------------------------------------------------- */

/* Global styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
}


/* About Us page styling */
.about-container {
  width: 100%; /* Full width */
  max-width: 1200px; /* Optional: max width for larger screens */
  margin: 0 auto; /* Center container */
  padding: 35px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Title and Subtitle Styling */
.about-title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #2C3E50;
  margin-bottom: 10px;
}

.about-subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  color: #7F8C8D;
  margin-bottom: 30px;
}

/* Image Styling */
.about-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Content paragraph */
.about-content {
    font-family: 'open sans', sans-serif;
    font-size: 16px; /* Larger font size */
    font-weight: 200;
  line-height: 1.6;
  padding: 25px;
  justify-content: center;
  color: #555;
  margin-top: 30px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .about-title {
    font-size: 28px;
  }

  .about-subtitle {
    font-size: 16px;
  }

  .about-content {
    font-size: 14px;
  }
}

/* Footer styling (optional) */
/* General Footer Styling */
.footer {
    background-color: white; /* White background */
    color: #606060; /* Text color */
    padding: 20px 10px; /* Padding for spacing */
    text-align: center; /* Center text */
    border-top: 1px solid #e0e0e0; /* Optional top border */
}

/* Footer Container */
.footer-container {
    display: flex; /* Flexbox for layout */
    justify-content: space-between; /* Space between elements */
    align-items: center; /* Vertical alignment */
    max-width: 1200px; /* Max width of the footer */
    margin: 0 auto; /* Center the footer container */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

/* Footer Logo on the left */
.footer-logo {
    flex: 1 1 100px; /* Allow the logo to grow, but ensure minimum space */
    display: flex;
    justify-content: flex-start; /* Align logo to the left */
}

.footer-logo img {
    width: 100px; /* Adjust logo size */
}

/* Social Icons on the right */
.footer-social-icons {
    flex: 1 1 auto; /* Allow icons to grow without shrinking */
    display: flex;
    justify-content: flex-end; /* Align social icons to the right */
    gap: 15px; /* Space between social icons */
}

.footer-social-icons a img {
    width: 25px;
    height: 25px; /* Adjust icon size */
}

/* Copyright Text in the Center */
.footer-content {
    flex: 2 1 auto; /* Allow the text to grow without shrinking */
    text-align: center;
    font-size: 14px;
    color: #606060; /* Optional color adjustment */
}

/* Media query for smaller devices */
@media only screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Stack footer elements vertically */
        align-items: center; /* Center align all content */
        text-align: center;
    }

    .footer-logo,
    .footer-content,
    .footer-social-icons {
        justify-content: center; /* Center everything on mobile */
        margin: 10px 0; /* Add margin for spacing */
    }

    .footer-logo img {
        width: 80px; /* Smaller logo for mobile */
    }

    .footer-social-icons a img {
        width: 20px; /* Smaller icons for mobile */
        height: 20px;
    }
}

/* Media query for very small devices */
@media only screen and (max-width: 480px) {
    .footer-container {
        padding: 10px; /* Smaller padding for very small screens */
    }

    .footer-logo img {
        width: 70px; /* Further reduce logo size */
    }

    .footer-content {
        font-size: 12px; /* Reduce font size for copyright text */
    }

    .footer-social-icons a img {
        width: 18px; /* Further reduce icon size */
        height: 18px;
    }
}
/* Initially hide the nav menu on mobile */
.nav-links {
  display: none;
}

/* Show the menu when the 'active' class is added */
.nav-links.active {
  display: block;
}

/* For desktop, show the nav menu by default */
@media (min-width: 768px) {
  .nav-links {
      display: flex;
  }
}
