/* Header styles */
header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px;
   background-color: transparent;
   height: 70px;
 }
 
 .logo-left img {
  width: 150px;
  height: auto;
 }
 
 nav {
   list-style: initial;
   margin: auto;
   padding: 0;
   display: flex;
   justify-content: space-between;
 }
 
 nav li {
   margin-right: 20px;
 }
 
 nav a {
   text-decoration: none;
   color: black;
   font-weight: bold;
   font-size: 25px;
}
nav ul {
  list-style-type: initial;
  display: contents;
  margin: 0;
  padding: 0;
  overflow: hidden;
 
}

/* Slider */
.slider {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease;
}

/* Slide image */
.slide img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Slide text */
.slide {
  position: relative; /* Ensure that the slide acts as a reference for absolutely positioned elements */
  width: 100%; /* Set the width of each slide to 100% */
  height: 100%; /* Set the height of each slide to 100% */
}

h1 {
  font-size: 55px; /* Adjust the font size as needed */
  color: #333; /* Set the text color */
  text-align: center; /* Center the text horizontally */
  margin-top: 20px; /* Add space above the heading */
  /* Add any additional styles you want */
}
 @keyframes slide {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-100%);
  }
  40% {
    transform: translateX(-200%);
  }
  60% {
    transform: translateX(-100%);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

 
 /* Content styles */
.content {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.content h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #333;
}

.content p {
  font-size: 1.2em;
  line-height: 1.5;
  color: #333;
}

.image img {
  max-width: 150px; /* Adjust the width as per your requirement */
  max-height: 150px; /* Adjust the height as per your requirement */
} */
.footer {
  text-align: center;
  font-weight: bold;
}
.footer_text {
  color: rgba(0, 0, 0, 0.8);
  font-family: serif;
  font-size: 12pt;
  text-align: center;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px; /* Add horizontal padding */
  background-color: lightcoral;
  height: auto; /* Use auto to allow footer to expand */
}

nav ul {
  display: flex; /* Align the menu items horizontally */
  list-style: none; /* Remove bullet points */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

nav ul li {
  margin: 0 15px; /* Space between menu items */
}

nav a {
  text-decoration: none; /* Remove underline from links */
  color: white; /* Change link color for contrast */
  font-weight: bold; /* Make link text bold */
}

@media (max-width: 768px) { /* Adjust for smaller screens */
  header {
      flex-direction: column; /* Stack items vertically on small screens */
      height: auto; /* Allow height to adjust automatically */
  }

  nav ul {
      flex-direction: column; /* Stack menu items vertically */
      align-items: center; /* Center menu items */
  }

  nav ul li {
      margin: 10px 0; /* Space between stacked menu items */
  }
}

nav {
  list-style: none;
  margin: auto;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

nav li {
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 25px;
  padding: 10px;
}
nav ul {
  list-style-type: none;
  display: contents;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

nav a:active {
  background-color: grey; /* Change to desired color */
  color: grey; /* Change to desired color */
  border-radius: 5px;
}

/* Team Section Styles */
.responsive-container-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  padding: 20px;
}

.outer-container {
  width: 100%;
}

.inner-container {
  width: 100%;
  text-align: center;
}

.section-head-text {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-subhead-text {
  font-size: 18px;
  margin-bottom: 20px;
}

.team-card-container {
  width: 22%;
  margin: 10px;
  box-sizing: border-box;
}

.team-card {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.img-wrapper {
  margin-bottom: 15px;
}

.team-img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.text-blk {
  margin: 5px 0;
}

.name {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.position {
  font-size: 18px;
  color: #777;
}

.institution {
  font-size: 16px;
  color: #999;
}

.social-media-links a {
  margin: 0 5px;
}

.social-media-links img {
  width: 24px;
  height: 24px;
}

/* Footer Styles */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: auto; /* Change to auto */
  min-height: 100px; /* Optional: maintain minimum height */
  background-color: #333;
  color: #fff;
  padding: 20px 50px; /* Adjust padding as needed */
  position: relative; /* Ensure it's positioned */
  z-index: 10; /* Set z-index */
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-left a {
  margin-right: 20px;
}

.footer-left a img {
  height: 30px;
  width: auto;
}

.footer-right {
  text-align: right;
}

.footer {
  text-align: center;
  font-weight: bold;
  font-size: large;
}
.footer_text {
  color: rgba(0, 0, 0, 0.8);
  font-family: serif;
  font-size: 12pt;
  text-align: center;
}
/* Header styles */
header {
  display: flex; /* Align header elements horizontally */
  justify-content: space-between; /* Space between logo and navigation */
  align-items: center; /* Align elements vertically */
  padding: 10px 20px; /* Add horizontal padding */
  background-color: lightcoral; /* Set background color */
  height: auto; /* Allow header height to adjust */
}



/* Navigation styles */
nav ul {
  display: flex; /* Align navigation items horizontally */
  list-style: none; /* Remove bullet points */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

nav ul li {
  margin: 0 15px; /* Add space between menu items */
}

nav a {
  text-decoration: none; /* Remove underline from links */
  color: white; /* Set link color */
  font-weight: bold; /* Make links bold */
  font-size: 25px; /* Adjust font size */
}

nav ul {
  list-style-type: none; /* Remove bullet points */
  display: contents; /* Ensure contents of list behave normally */
  margin: 0;
  padding: 0;
  overflow: hidden;
}

nav a:active {
  background-color: grey; /* Background color on active state */
  color: grey; /* Text color when active */
  border-radius: 5px; /* Rounded corners for active links */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  header {
    flex-direction: column; /* Stack header elements vertically */
    height: auto; /* Adjust height dynamically */
  }

  nav ul {
    flex-direction: column; /* Stack menu items vertically */
    align-items: center; /* Center menu items */
  }

  nav ul li {
    margin: 10px 0; /* Space between stacked menu items */
  }
}

/* Slider */
.slider {
  width: 100%;
  height: 100%;
  display: flex; /* Display slides in a row */
  transition: transform 0.5s ease; /* Smooth transition between slides */
}

/* Individual slide */
.slide {
  position: relative;
  width: 100%; /* Each slide takes up 100% of the slider's width */
  height: 100%; /* Full height for slides */
}

/* Image inside the slide */
.slide img {
  width: 100%;
  height: 100%; /* Ensure images fit the slide */
  display: block; /* Make sure images are block-level */
}

/* Heading inside slider */
h1 {
  font-size: 55px; /* Large font size */
  color: #333; /* Dark text color */
  text-align: center; /* Center align the text */
  margin-top: 20px; /* Space above the heading */
}

/* Keyframes for the sliding animation */
@keyframes slide {
  0% {
    transform: translateX(0); /* Starting position */
  }
  20% {
    transform: translateX(-100%); /* Move 1st slide */
  }
  40% {
    transform: translateX(-200%); /* Move 2nd slide */
  }
  60% {
    transform: translateX(-100%); /* Move back to 1st */
  }
  80% {
    transform: translateX(0); /* Return to start */
  }
  100% {
    transform: translateX(-100%); /* Complete the loop */
  }
}

/* Content styles */
.content {
  width: 100%;
  padding: 20px;
  box-sizing: border-box; /* Ensure padding is included in width */
  text-align: center;
}

.content h1 {
  font-size: 2.5em; /* Large heading size */
  margin-bottom: 20px; /* Space below heading */
  color: #333; /* Dark text color */
}

.content p {
  font-size: 1.2em; /* Standard paragraph font size */
  line-height: 1.5; /* Line height for better readability */
  color: #333;
}


/* Footer styles */
footer {
  display: flex;
  justify-content: space-between; /* Space between footer elements */
  align-items: center
}/* Header styles */
header {
  display: flex; /* Align header elements horizontally */
  justify-content: space-between; /* Space between logo and navigation */
  align-items: center; /* Align elements vertically */
  padding: 10px 20px; /* Add horizontal padding */
  background-color: lightcoral; /* Set background color */
  height: auto; /* Allow header height to adjust */
}

/* Navigation styles */
nav ul {
  display: flex; /* Align navigation items horizontally */
  list-style: none; /* Remove bullet points */
  padding: 0; /* Remove default padding */
  margin: 0; /* Remove default margin */
}

nav ul li {
  margin: 0 15px; /* Add space between menu items */
}

nav a {
  text-decoration: none; /* Remove underline from links */
  color: black; /* Set link color */
  font-weight: bold; /* Make links bold */
  font-size: 25px; /* Adjust font size */
}

nav ul {
  list-style-type: none; /* Remove bullet points */
  display: contents; /* Ensure contents of list behave normally */
  margin: 0;
  padding: 0;
  overflow: hidden;
}

nav a:active {
  background-color: grey; /* Background color on active state */
  color: grey; /* Text color when active */
  border-radius: 5px; /* Rounded corners for active links */
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  header {
    flex-direction: column; /* Stack header elements vertically */
    height: auto; /* Adjust height dynamically */
  }

  nav ul {
    flex-direction: column; /* Stack menu items vertically */
    align-items: center; /* Center menu items */
  }

  nav ul li {
    margin: 10px 0; /* Space between stacked menu items */
  }
}

/* Logo styles */
.logo-left {
  float: left;
  margin-left: -25px;
}

.logo-left img {
  width: 121px;
  height: 128px;
}

.logo-right {
  float: right;
  margin-right: 20px;
}

.logo-right img {
  width: 90px;
  height: 90px; /* Fixed dimensions for the right logo */
}

/* Slider container */
.slider-container {
  width: 100%;
  height: 400px; /* Fixed height for the slider */
  overflow: hidden; /* Hide any overflow */
}

/* Slider */
.slider {
  width: 100%;
  height: 100%;
  display: flex; /* Display slides in a row */
  transition: transform 0.5s ease; /* Smooth transition between slides */
}

/* Individual slide */
.slide {
  position: relative;
  width: 100%; /* Each slide takes up 100% of the slider's width */
  height: 100%; /* Full height for slides */
}

/* Image inside the slide */
.slide img {
  width: 100%;
  height: 100%; /* Ensure images fit the slide */
  display: block; /* Make sure images are block-level */
}

/* Heading inside slider */
h1 {
  font-size: 55px; /* Large font size */
  color: #333; /* Dark text color */
  text-align: center; /* Center align the text */
  margin-top: 20px; /* Space above the heading */
}

/* Keyframes for the sliding animation */
@keyframes slide {
  0% {
    transform: translateX(0); /* Starting position */
  }
  20% {
    transform: translateX(-100%); /* Move 1st slide */
  }
  40% {
    transform: translateX(-200%); /* Move 2nd slide */
  }
  60% {
    transform: translateX(-100%); /* Move back to 1st */
  }
  80% {
    transform: translateX(0); /* Return to start */
  }
  100% {
    transform: translateX(-100%); /* Complete the loop */
  }
}

/* Content styles */
.content {
  width: 100%;
  padding: 20px;
  box-sizing: border-box; /* Ensure padding is included in width */
  text-align: center;
}

.content h1 {
  font-size: 2.5em; /* Large heading size */
  margin-bottom: 20px; /* Space below heading */
  color: #333; /* Dark text color */
}

.content p {
  font-size: 1.2em; /* Standard paragraph font size */
  line-height: 1.5; /* Line height for better readability */
  color: #333;
}

/* Image styles */
.image {
  display: flex;
  justify-content: center;
  align-items: center; /* Center image vertically */
}

.image img {
  max-width: 150px; /* Restrict image width */
  max-height: 150px; /* Restrict image height */
}
.logo{
  display: flex;
  justify-content: center;
  align-items:center;
}

/* Footer styles */
footer {
  display: flex;
  justify-content: space-between; /* Space between footer elements */
  align-items: center;
  height: auto; /* Auto-adjust footer height */
  background-color: #d0e3d4; /* Dark footer background */
  background-image: url('WEB SITE MATERIAL/background.png');
  color: #fff; /* White text color */
  padding: 20px 50px; /* Padding inside footer */
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-left a {
  margin-right: 20px; /* Space between footer links */
}

.footer-left a img {
  height: 30px; /* Restrict icon height */
  width: auto; /* Maintain aspect ratio */
}

.footer-right {
  text-align: right; /* Align footer text to the right */
}

/* Team Section Styles */
.responsive-container-block {
  display: flex;
  flex-wrap: wrap; /* Wrap team cards */
  justify-content: center; /* Center the team section */
  margin: 0 auto;
  padding: 20px;
}

.team-card-container {
  width: 22%; /* Each card takes 22% of container width */
  margin: 10px; /* Space between cards */
  box-sizing: border-box; /* Include padding and border in width */
}

.team-card {
  background: #fff; /* White card background */
  border-radius: 8px; /* Rounded corners */
  padding: 15px; /* Padding inside cards */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Light shadow for depth */
  text-align: center;
}

.img-wrapper {
  margin-bottom: 15px; /* Space below images */
}

.team-img {
  width: 100%;
  height: auto;
  border-radius: 50%; /* Make the team images circular */
}

.name {
  font-size: 22px; /* Name font size */
  font-weight: bold;
  color: #333;
}

.position {
  font-size: 18px;
  color: #777;
}

.institution {
  font-size: 16px;
  color: #999;
}

/* Social media links */
.social-media-links a {
  margin: 0 5px; /* Space between social media icons */
}

.social-media-links img {
  width: 24px;
  height: 24px; /* Standard size for social icons */
}

/* Duplicate footer class removed */
.footer_text {
  color: rgba(0, 0, 0, 0.8);
  font-family: serif;
  font-size: 12pt;
  text-align: center;
}
      