* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5; /* Light background for mission section */
}

/* Hero Section with Background Image */
.hero-section {
  height: 100vh; /* Full viewport height */
  background: url('atlantacity.jpg') no-repeat center center;
  background-size: cover;
  position: relative; /* To contain the advisors box */
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 100px;
  background: #602f6b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: 0;
  color: aliceblue;
}

.logo-image {
  width: 60px;
  height: auto;
  margin-right: 8px;
}

.navbar a {
  font-size: 18px;
  color: aliceblue;
  font-weight: 500;
  text-decoration: none;
  margin-left: 40px;
  position: relative;
}

.navbar a::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background: aliceblue;
  transition: 0.3s;
}

.navbar a:hover::before {
  width: 100%;
}

.advisors-box {
  position: absolute; /* Absolute positioning within the hero section */
  top: 55%; /* Center vertically */
  left: 10%; /* Align it to the left */
  transform: translateY(-50%); /* Adjust to center */
  background: rgba(49, 1, 48, 0.7); /* Semi-transparent background */
  padding: 60px;
  border-radius: 10px;
  color: white;
  text-align: center;
  opacity: 0;
  animation: fadeIn 5s forwards;
  width: 400px;
  height: 400px;
  z-index: 99; /* Ensure it stays above other content */
}

.advisors-box h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.advisors-box p {
  font-size: 24px;
  font-style: italic;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Mission Section */
.mission-section {
  display: flex; /* This will align items side by side */
  align-items: center; /* Center the content vertically */
  justify-content: center; /* Center the content horizontally */
  padding: 10px 20px;
  text-align: left;
  background-color: #f2e6f4;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  gap: 40px; /* Add space between the image and text */
}

.mission-section img {
  max-width: 30%; /* Adjust the image size */
  height: auto;
  border-radius: 10px; /* Optional: Add some rounding to the image */
}

.mission-content {
  max-width: 50%; /* Prevent text content from stretching too wide */
}

.mission-content h2 {
  font-size: 36px;
  color: #602f6b;
  margin-bottom: 20px;
}

.mission-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.vision-section {
  display: flex; /* This will align items side by side */
  align-items: center; /* Center the content vertically */
  justify-content: center; /* Center the content horizontally */
  padding: 10px 20px;
  text-align: left;
  background-color: #602f6b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  gap: 40px; /* Add space between the image and text */
}

.vision-section img {
  max-width: 30%; /* Adjust the image size */
  height: auto;
  border-radius: 10px; /* Optional: Add some rounding to the image */
}

.vision-content {
  max-width: 50%; /* Prevent text content from stretching too wide */
}

.vision-content h2 {
  font-size: 36px;
  color: #f2e6f4;
  margin-bottom: 20px;
}

.vision-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #f2e6f4;
}

.objective-section {
  display: flex; /* This will align items side by side */
  align-items: center; /* Center the content vertically */
  justify-content: center; /* Center the content horizontally */
  padding: 10px 20px;
  text-align: left;
  background-color: #deb3e7;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  gap: 40px; /* Add space between the image and text */
}

.objective-section img {
  max-width: 30%; /* Adjust the image size */
  height: auto;
  border-radius: 10px; /* Optional: Add some rounding to the image */
}

.objective-content {
  max-width: 50%; /* Prevent text content from stretching too wide */
}

.objective-content h2 {
  font-size: 36px;
  color: #602f6b;
  margin-bottom: 20px;
}

.objective-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.services-section {
  display: flex; /* Align items side by side */
  align-items: center; /* Vertically center content */
  justify-content: none; /* Space between text and image */
  padding: 20px;
  background-color: #deb3e7; /* Light background for the section */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.services-content {
  max-width: 50%; /* Limit the width of the text content */
  text-align: none;
  position: relative;
  left: 10%;
}

.services-content h2 {
  font-size: 36px;
  color: #4d2157;
  margin-bottom: 10px;
}

.services-button {
  margin: 10px 0; /* Adds space between the header and button */
  padding: 12px 24px;
  background-color: #602f6b; /* Button background color */
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s;
  display: inline-block; /* Ensures button is displayed as a block element */
}

.services-button:hover {
  background-color: #4d2157; /* Darken on hover */
}


.services-img {
  max-width: 25%; /* Set the image width */
  height: auto;
  border-radius: 10px; /* Optional: Rounded corners for the image */
  position: relative;
  left: 20%;
}


.coservices-section {
  display: flex; /* Align items side by side */
  align-items: center; /* Vertically center content */
  justify-content: none; /* Space between text and image */
  padding: 20px;
  background-color: #f2e6f4; /* Light background for the section */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.coservices-content {
  max-width: 50%; /* Limit the width of the text content */
  text-align: none;
  position: relative;
  left: 18%;
}

.coservices-content h2 {
  font-size: 36px;
  color: #602f6b;
  margin-bottom: 10px;
}

.coservices-button {
  margin: 10px 0; /* Adds space between the header and button */
  padding: 12px 24px;
  background-color:#602f6b; /* Button background color */
  color: #f2e6f4;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s;
  display: inline-block; /* Ensures button is displayed as a block element */
}

.coservices-button:hover {
  background-color: #b5a2b8 /* Darken on hover */
}


.coservices-img {
  max-width: 30%; /* Set the image width */
  height: auto;
  border-radius: 10px; /* Optional: Rounded corners for the image */
  position: relative;
  left: 5%;
}
.adservices-section {
  display: flex; /* Align items side by side */
  align-items: center; /* Vertically center content */
  justify-content: none; /* Space between text and image */
  padding: 20px;
  background-color: #602f6b; /* Light background for the section */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.adservices-content {
  max-width: 50%; /* Limit the width of the text content */
  text-align: none;
  position: relative;
  left: 10%;
}

.adservices-content h2 {
  font-size: 36px;
  color: #f2e6f4;
  margin-bottom: 10px;
}

.adservices-button {
  margin: 10px 0; /* Adds space between the header and button */
  padding: 12px 24px;
  background-color: #f2e6f4; /* Button background color */
  color: #602f6b;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s;
  display: inline-block; /* Ensures button is displayed as a block element */
}

.adservices-button:hover {
  background-color: #b5a2b8; /* Darken on hover */
}


.adservices-img {
  max-width: 30%; /* Set the image width */
  height: auto;
  border-radius: 10px; /* Optional: Rounded corners for the image */
  position: relative;
  left: 20%;
}
.taservices-section {
  display: flex; /* Align items side by side */
  align-items: center; /* Vertically center content */
  justify-content: none; /* Space between text and image */
  padding: 20px;
  background-color: #deb3e7; /* Light background for the section */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.taservices-content {
  max-width: 50%; /* Limit the width of the text content */
  text-align: none;
  position: relative;
  left: 20%;
}

.taservices-content h2 {
  font-size: 36px;
  color: #602f6b;
  margin-bottom: 10px;
}

.taservices-button {
  margin: 10px 0; /* Adds space between the header and button */
  padding: 12px 24px;
  background-color:#602f6b; /* Button background color */
  color: #f2e6f4;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s;
  display: inline-block; /* Ensures button is displayed as a block element */
}

.taservices-button:hover {
  background-color: #4d2157 /* Darken on hover */
}


.taservices-img {
  max-width: 20%; /* Set the image width */
  height: auto;
  border-radius: 10px; /* Optional: Rounded corners for the image */
  position: relative;
  left: 5%;
}

.team-section {
  display: flex; /* Align items side by side */
  align-items: center; /* Vertically center content */
  justify-content: none; /* Space between text and image */
  padding: 20px;
  background-color: #f2e6f4; /* Light background for the section */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-content {
  max-width: 50%; /* Limit the width of the text content */
  text-align: none;
  position: relative;
  left: 10%;
}

.team-content h2 {
  font-size: 36px;
  color: #602f6b;
  margin-bottom: 10px;
}

.team-button {
  margin: 10px 0; /* Adds space between the header and button */
  padding: 12px 24px;
  background-color: #602f6b; /* Button background color */
  color: #f2e6f4;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s;
  display: inline-block; /* Ensures button is displayed as a block element */
}

.team-button:hover {
  background-color: #4d2157; /* Darken on hover */
}


.team-img {
  max-width: 40%; /* Set the image width */
  height: auto;
  border-radius: 10px; /* Optional: Rounded corners for the image */
  position: relative;
  left: 30%;
}
.about-section {
  display: flex; /* Align items side by side */
  align-items: center; /* Vertically center content */
  justify-content: none; /* Space between text and image */
  padding: 20px;
  background-color: #602f6b; /* Light background for the section */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-content {
  max-width: 50%; /* Limit the width of the text content */
  text-align: none;
  position: relative;
  left: 20%;
}

.about-content h2 {
  font-size: 36px;
  color: #f2e6f4;
  margin-bottom: 10px;
}

.about-button {
  margin: 10px 0; /* Adds space between the header and button */
  padding: 12px 24px;
  background-color:#f2e6f4; /* Button background color */
  color: #602f6b;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s;
  display: inline-block; /* Ensures button is displayed as a block element */
}

.about-button:hover {
  background-color: #b5a2b8 /* Darken on hover */
}


.about-img {
  max-width: 25%; /* Set the image width */
  height: auto;
  border-radius: 10px; /* Optional: Rounded corners for the image */
  position: relative;
  left: 5%;
}
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  background: #f2e6f4;
}

.container {
  background: #f2e6f4; /* Semi-transparent container */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-around; /* Increased space between boxes */
  max-width: 1200px;
  width: 90%;
}

/* Individual Contact Box Styling */
.contact-box {
  text-align: center;
  width: 30%;
  padding: 20px;
  background: #ffffffd3; /* Purple background for the boxes */
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin: 0 20px; /* Added margin to create gap between boxes */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Ensures content is vertically centered */
  align-items: center;
}

/* Aligned text and icons */
.contact-box h3,
.contact-box p {
  color: rgb(83, 0, 108); /* Text color */
  margin: 0;
  padding: 5px 0;
}

.contact-box h3 {
  font-size: 1.4em;
  margin-bottom: 10px; /* Adds consistent spacing below header */
}

.contact-box p {
  font-size: 1.1em;
  margin-top: 10px; /* Added margin to create space between icon and text */
}

.icon {
  width: 100px;
  height: auto;
  margin-bottom: 5px; /* Consistent spacing for icons */
}
.icon1 {
  width: 130px;
  height: auto;
  margin-bottom: -3px; /* Consistent spacing for icons */
}
.icon2 {
  width: 70px;
  height: auto;
  margin-bottom: 5px; /* Consistent spacing for icons */
}
.link-button {
  margin: 10px 0; /* Adds space between the header and button */
  padding: 12px 24px;
  background-color:#f2e6f4; /* Button background color */
  color: #602f6b;
  text-decoration: none;
  font-size: 18px;
  border-radius: 8px;
  transition: background-color 0.3s;
  display: inline-block; /* Ensures button is displayed as a block element */
}

.link-button:hover {
  background-color: #b5a2b8 /* Darken on hover */
}

/* Back to Top Button */
#backToTopBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button 20px from the bottom */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #602f6b; /* Set background color */
  color: white; /* Text color */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#backToTopBtn:hover {
  background-color: #444; /* Darker background on hover */
}