/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f9f9f9;
  padding-top: 110px;
  color: #333;
  text-align: justify;
}

/* Header styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #161948;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding-right: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

/* Logo styling */
.logo img {
  width: 150px;
}

/* About Section */
.about {
  padding: 60px 20px;
  display: flex;
  justify-content: space-between;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  max-width: 1000px; /* Restricting the width */
  margin: 0 auto; /* Centering the content */
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px; /* Reduce the gap between text and image */
    max-width: 1000px; /* Maximize the width of the container */
    width: 100%; /* Ensure the content takes up full width */
  }

.about-text {
  max-width: 60%;
}

.about-text h2 {
  color: #161948;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px; /* Add space before the CTA button */
}

.cta-btn {
  padding: 10px 20px;
  background-color: #161948;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #444a8b;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 500px; /* Adjust the size here for a larger image */
  width: 100%; /* Keep this to ensure it adjusts well to the container */
  object-fit: cover;
  height: auto;
  margin-left: 10px; /* Space between text and image */
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column; /* Stack the text and image on smaller screens */
    text-align: center;
  }

  .about-content img {
    max-width: 350px; /* Adjust image width */
    margin-left: 0;
  }

  .cta-btn {
    margin-top: 20px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .about {
      flex-direction: column;
      text-align: center;
  }

  .about-image img {
      max-width: 100%;
  }
}

/* Full Content Styling for Expanded State */
.full-content h4 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.full-content img {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}
/* Social Icons below the about image */
.social-icons {
  display: flex;
  justify-content: center; /* Align the icons in the center */
  gap: 15px; /* Space between icons */
  margin-top: 20px; /* Space between image and icons */
  margin-bottom: 20px;
}

.social-icons img {
  width: 80px; /* Adjust size as needed */
  height: 80px;
  cursor: pointer;
  transition: transform 0.3s ease;
  border-radius: 10px; /* Optional: Rounded corners */
  /* Remove box-shadow by making sure it's not defined */
  box-shadow: none; /* Ensure there is no shadow */
}

.social-icons img:hover {
  transform: scale(1.2); /* Slight zoom on hover */
}

/* About image modifications to keep icons aligned */
.about-image {
  text-align: center; /* Center the image and icons */
}
/* Footer */
footer {
  text-align: center;
  padding: 20px 0;
  background-color: #dedede;
  font-size: 14px;
  color: #333;
}

.footer-bottom {
  font-size: 12px;
  opacity: 0.8;
}