/* General Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.firstsection {
  position: relative;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
}

.navbar .logo {
  font-size: 24px;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
}

.nav-links li {
  margin-left: 15px;
}

.nav-links a {
  text-decoration: none;
  color: white;
}

.slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
}

.banner {
  position: relative;
  width: 100%;
  height: 400px; /* You can adjust the height as needed */
  background-image: url('images/banner5.jpg');
  background-size: cover;
  background-position: center;
}

.banner-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-family: 'Architects Daughter', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-section {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
}

.aboutus {
  width: 60%;
  margin: 0 30px 0 10px;
  text-align: justify;
  color: #666; /* Light gray color for softer text */
  font-weight: 300; /* Optional: Make the text thinner */
  line-height: 1.6; 
}

.dropdown-tabs {
  width: 40%;
  margin: 0 30px 0 10px;
  text-align: justify;
  color: #666; /* Light gray color for softer text */
  font-weight: 300; /* Optional: Make the text thinner */
  line-height: 1.6; 
}


.collapsible-container {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.label {
  padding: 10px;
  background-color: #e0e0e0;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out; /* Smooth hover effect */
}

.label:hover {
  background-color: #ccc; /* Change to your desired hover color */
}

.content {
  max-height: 0; /* Initially collapsed */
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out; /* Smooth expand/collapse */
  padding: 0 10px; /* Set initial padding for smoother transition */
}

.content.open {
  max-height: 200px; /* Adjust to a height that fits your content */
  padding: 10px; /* Restores padding when expanded */
}

.content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer {
  background-color: #333;
  color: #fff;
  padding: 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
}

.footer-column h3 {
  margin-top: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-weight: 100; /* Optional: Make the text thinner */
  line-height: .6; 
  font-size: smaller;
}

