  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');

html {
  
  height: 100%;
  
}
* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;


}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}



/*  "intro" section */
.intro {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(to right, rgba(32, 76, 115, 2.0), rgba(0, 0, 0, 0.1)), url(images/ivan-bandura-N_FDXbXwQmc-unsplash.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

/* New styles for the image and text */
.intro .image-with-text {
  display: flex;
  align-items: center;
  color: white;
  font-size: 2vw;
  width: 80%;
}

.intro .text-container {
  flex: 1;
  padding-left: 20px; /* Change padding-left to create space between text and image */
  opacity: 0; /* Set initial opacity to 0 for fade-in effect */
  transform: translateX(-50px); /* Initial translateX for slide-in effect from the left */
  animation: slideIn 2s forwards;
}

.intro .image-container {
  flex: 1;
  height: 100%;
  overflow: hidden;
}

.intro .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.5s;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .intro .text-container {
    font-size: 1rem; /* Adjust font size for smaller screens */
  }
  .intro .image-with-text {
       width: 100%;
  }
  .intro{
    padding-top: 20%;
    height: 75vh;
  }
}
/* Animation keyframes */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}




 /* Styles for the new "About" section */
.about-section {
  height: 100vh;
  padding: 7% 0;
  background-color: white;
  text-align: center;
}

.about-section .content-container {
  text-align: center;
  padding: 0 15%;
  margin: 0 auto;
  opacity: 0; /* Set initial opacity to 0 for fade-in effect */
  transform: translateY(20px); /* Initial translateY for slide-up effect */
  animation: fadeSlideIn 1s forwards;
}

.about-section .section-header {
  font-weight: bold;
  font-size: 3vw; /* Adjust font size for smaller screens */
  color: #204C73;
}

.about-section .section-paragraph {
  margin-top: 20px; /* Adjust spacing for smaller screens */
  line-height: 1.6;
  font-size: 1.25vw; /* Adjust font size for smaller screens */
}

.about-section .video-container {
  margin-top: 30px;
  text-align: center;
  opacity: 1; /* Set initial opacity to 0 for fade-in effect */
  transform: translateY(20px); /* Initial translateY for slide-up effect */
  animation: fadeSlideIn 1s forwards;


  
}
.about-section video {
  border-radius: 20px;
}

/* Animation keyframes */
@keyframes fadeSlideIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .about-section .section-header {
      font-size: 1.5rem; /* Adjust font size for smaller screens */
  }

  .about-section .section-paragraph {
      font-size: 1rem; /* Adjust font size for smaller screens */
  }
  .about-section .content-container {
  
    padding: 0 5%;
   
  }
  
}
@media (max-width: 1024px) {
  .about-section{
    margin-right: 15%;
    margin-left: 15%;
  }
  .about-section .section-header {
      font-size: 1.5rem; /* Adjust font size for smaller screens */
  }

  .about-section .section-paragraph {
      font-size: 1rem; /* Adjust font size for smaller screens */
  }
}

/* chronicle section */
.chronicle-section {
  padding: 7% 0;
  background-color: white;
}

.chronicle-section .content-container {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.chronicle-item {
  display: flex;
  flex-direction: row; /* Stack items vertically on smaller screens */
  margin-right: 15%; /* Remove right margin for smaller screens */
  margin-left: 15%; /* Remove left margin for smaller screens */
  padding-bottom: 5%;
}

.chronicle-item .image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; 
}

.chronicle-item .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 5%;
}
.chronicle-item .text {
  flex: 1;
  opacity: 0; /* Set initial opacity to 0 for fade-in effect */
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.chronicle-item .text-left {
  padding-right: 10%; /* Remove right padding for smaller screens */
  padding-left: 0; /* Remove left padding for smaller screens */
  transform: translateY(20px); /* Initial translateY for slide-up effect */
  animation-name: slideUp;
  text-align: center; /* Center-align text on smaller screens */
}

.chronicle-item .text-right {
  padding-left: 10%; /* Remove left padding for smaller screens */
  padding-right: 0; /* Remove right padding for smaller screens */
  transform: translateY(20px); /* Initial translateY for slide-up effect */
  animation-name: slideUp;
  text-align: center; /* Center-align text on smaller screens */
}

.chronicle-item .section-header {
  font-weight: bold;
  font-size: 3vw;
  color: #204C73;
  text-align: center; /* Center-align header text */
}

.chronicle-item .section-paragraph {
  line-height: 1.6;
  margin-top: 10px; /* Adjusted margin for spacing */
  font-size: 1.25vw;
  text-align: center; /* Center-align paragraph text */
  font-size: clamp(0.5rem, 4vw, 1.5rem);
}

/* Animation keyframes */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .chronicle-item {
   
    margin-right: 5%; /* Remove right margin for smaller screens */
  margin-left: 5%; /* Remove left margin for smaller screens */
  }

  .chronicle-item .section-header {
    font-size: 0.8rem; /* Adjust font size for smaller screens */
    text-align: left;
  }

  .chronicle-item .section-paragraph {
    font-size: 0.6rem; /* Adjust font size for smaller screens */
    text-align: left;
    
  }
  .chronicle-item .image-container {
    max-width: 100%;
    height: auto; /* Ensure images don't exceed container width */
    margin: 0 auto; /* Center-align images */
    display: none;
 
    display: flex;
    justify-content: center; /* Horizontally center-align the image */
    align-items: center; /* Vertically center-align the image */
   
    
  }
  .chronicle-item .image-container img {
    display: none;
  }


}
/* Media query for laptops (max-width: 1024px) */
@media (max-width: 1024px) {
  .chronicle-item {
   
    margin-right: 10%; /* Remove right margin for smaller screens */
  margin-left: 10%; /* Remove left margin for smaller screens */
  }

  .chronicle-item .section-header {
    font-size: 1.5rem; /* Adjust font size for smaller screens */
    text-align: left;
  }

  .chronicle-item .section-paragraph {
    font-size: 1rem; /* Adjust font size for smaller screens */
    text-align: justify;
  }
  .chronicle-item .image-container {
    max-width: 0%; /* Ensure images don't exceed container width */
    margin: 0 auto; /* Center-align images */
 
    display: flex;
    justify-content: center; /* Horizontally center-align the image */
    align-items: center; /* Vertically center-align the image */
   
    
  }
  .chronicle-item .text-left {
    padding-right: 0%; /* Remove right padding for smaller screens */

  }
  
  .chronicle-item .text-right {
    padding-left: 0%; /* Remove left padding for smaller screens */

  }

  


}






 /* about-2 */
.about2-section {
  padding: 4% 0;
  background-color: #f5f5f5;
  background-image: linear-gradient(rgba(255, 255, 255, 2.0), rgba(255, 255, 255, 0.7)), url(images/pexels-sravan-chandran-5590703.jpg);
  background-size: cover;
}

.about2-section .content-container {
  text-align: center;
  padding: 0 15%;
  margin: 0 auto;
  opacity: 1; /* Set initial opacity to 0 for fade-in effect */
  transform: translateY(20px); /* Initial translateY for slide-up effect */
  animation: fadeSlideIn 2s forwards;
}

.about2-section .section-header {
  font-weight: bold;
  font-size: 3vw;
  color: #204C73;
}

.about2-section .section-paragraph {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 1.5vw;
}

/* Animation keyframes */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .about2-section .content-container {
    padding: 0 5%; /* Add horizontal padding for smaller screens */
  }

  .about2-section .section-header {
    font-size: 2rem; /* Adjust font size for smaller screens */
  }

  .about2-section .section-paragraph {
    font-size: 1rem; /* Adjust font size for smaller screens */
  }
}

  


hr {

  margin: 0 auto;
  margin-top: 40px;
  width: 50%;
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(32, 76, 115, 1.0), rgba(255, 255, 255, 0.75), rgba(32, 76, 115, 1.0));
}

.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1.5s all ease;
}
.reveal.active{
  transform: translateY(0);
  opacity: 1;
}