* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: anta;
  background-color: #2e1a47;
  color: #fff;
}

.container {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}


nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

nav ul li a {
  color: #fff; 
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  background-color: #5e3f78; 
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: #8e7baf; 
}

header {
  background-image: url('images/header4.jpg'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  text-align: center;
  color: #fff; 
}

header h1 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}

header h1:hover {
  transform: scale(1.1); 
}

header p {
  color: #ddd; 
  font-size: 1.2rem;
  margin-top: 10px;
}

h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

header h2:hover {
  transform: scale(1.1); 
}

.intro {
  padding: 50px 0;
  text-align: center;
}

.intro h2 {
  font-size: 2rem;
  color: #5e3f78; 
}

.intro p {
  font-size: 1.1rem;
  color: #fff; 
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
}

button {
  background-color: #5e3f78; 
  color: #fff; 
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 20px;
 
}

button:hover {
  background-color: #8e7baf; 
}

footer {
  background-color: #3e2a5b; 
  padding: 20px 0;
  text-align: center;
}

footer p {
  color: #ddd; 
  font-size: 0.9rem;
}

.project-section h2, 
.project-2-section h2, 
.project-3-section h2,
.update-section h2,
.first-section h2 {
  font-size: 1.1rem;
  color: #fff; 
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
}

.project-section, 
.project-2-section, 
.project-3-section
{
  text-align: center; 
  margin: 20px auto; 
  padding: 20px;               
  background-color: #3e2a5b;    
}

.project-section h2, 
.project-2-section h2, 
.project-3-section h2,
.update-section h2,
.first-section h2
 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 20px;
}

.project-list {
  list-style-type: none;        
  padding: 0;                   
}

.project-list li {
  margin: 10px 0;               
  font-size: 1.2rem;            
}

.project-list a {
  color: #5e3f78;              
  text-decoration: none;         
  font-weight: bold;            
}

.project-list a:hover {
  color: #ccc;                  
}

.photo {
  text-align: center; 
  margin-bottom: 20px; 
}

.photo img {
  display: block;
  margin: 0 auto;
  max-width: 50%;  
  height: auto;    
  border: 5px solid #5e3f78;
  border-radius: 5px;
}

.photo p {
  margin-top: 10px;
  font-size: 1rem;
  color: #ccc; 
}

.text-container, 
.text-container2 {
  background-color: #5e3f78; 
  color: #fff; 
  padding: 20px; 
  border-radius: 8px; 
  margin: 20px auto; 
  max-width: 800px; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); 
  line-height: 1.6; 
}

.text-container p, 
.text-container2 p,
.text-container3 {
  margin-bottom: 15px; 
}

.gallery-controls {
  text-align: center;
  margin-top: 20px;
}

.gallery-controls button {
  background-color: #5e3f78; 
  color: #fff; 
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  margin: 0 10px; 
}

.gallery-controls button:hover {
  background-color: #8e7baf; 
}

@media (max-width: 768px) {
  .project-section img,
  .project-2-section img,
  .project-3-section img,
  .first-section img,
  .update-section img {
    max-width: 90%;  
  }
  
  @media (max-width: 768px) {
  header {
    background-image: none;
  }
}


  .project-section h2,
  .project-2-section h2,
  .project-3-section h2,
  .update-section h2,
  .first-section h2 {
    font-size: 1.5rem;  
  }
  
  .project-list li {
    font-size: 1rem;    
  }
}

  iframe {
            width: 100%;
            height: 600px; 
            border: none; 
            border-radius: 10px; 
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
        }

.photo {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.photo.active {
  display: block;
  opacity: 1;
}

