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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to right, #f7f0e8, #f0f5f9);
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}
section nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 15px 50px;
  background: rgba(44, 62, 80, 0.85);
  top: 0;
  left: 0;
  z-index: 10000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

section nav:hover {
background: rgba(44, 62, 80, 1);
box-shadow: 0 6px 20px rgba(8, 157, 161, 0.7);
}

section nav .logo img {
width: 110px;
transition: transform 0.3s ease;
cursor: pointer;
}

section nav .logo img:hover {
transform: scale(1.1);
}

section nav ul {
list-style: none;
display: flex;
gap: 25px;
}

section nav li {
display: inline-block;
padding: 0 10px;
position: relative;
}

section nav li a {
text-decoration: none;
color: #ffffff;
transition: color 0.3s ease, transform 0.3s ease;
display: inline-block;
padding-bottom: 4px;
}

section nav li a::after {
content: '';
position: absolute;
width: 0%;
height: 2px;
bottom: 0;
left: 0;
background-color: #089da1;
transition: width 0.3s ease;
}

section nav li a:hover {
color: #089da1;
transform: scale(1.1);
text-shadow: 0 0 8px #089da1;
animation: glow 1.5s infinite alternate;
}

section nav li a:hover::after {
width: 100%;
}

section nav .logo img{
width: 100px;
cursor: pointer;
margin: 8px 0;
}
section nav ul{
list-style: none;
}

section nav li{
display: inline-block;
padding: 0 10px;
}

section nav li a{
text-decoration: none;
color:  #ffffff;
transition: color 0.3s ease, transform 0.3s ease;
display: inline-block;
}

section nav li a:hover{
color: #089da1;
transform: scale(1.1);
text-shadow: 0 0 8px #089da1;
animation: glow 1.5s infinite alternate;
}

@keyframes glow {
0% {
    text-shadow: 0 0 5px #089da1, 0 0 10px #089da1;
}
100% {
    text-shadow: 0 0 20px #0ff, 0 0 30px #0ff, 0 0 40px #0ff;
}
}
section nav .social_icon i{
margin: 0 5px;
font-size: 18px;
}

section nav .social_icon i:hover{
color: #089da1;
cursor: pointer;
}


main.about-page {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.intro, .history, .team, .quote {
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.typewriter {
  overflow: hidden;
  border-right: 3px solid #333;
  white-space: nowrap;
  animation: typing 3s steps(30, end), blink 0.75s step-end infinite;
  font-size: 2.2em;
  margin-bottom: 15px;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent }
}

.team-members {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.member {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  width: 220px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(8, 157, 161, 0.7);
  transition: transform 0.3s ease;
}

.member:hover {
  transform: scale(1.05);
}

.member img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

blockquote {
  font-style: italic;
  font-size: 1.2em;
  margin-bottom: 20px;
  background: #ffffffdd;
  padding: 15px 20px;
  border-left: 5px solid rgba(8, 157, 161, 0.7);
  border-radius: 5px;
}

button {
  background-color: rgba(8, 157, 161, 0.7);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: rgba(8, 157, 161, 0.7);
}

footer {
  background-color: rgba(8, 157, 161, 0.7);
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
.librify-footer {
  background: rgba(44, 62, 80, 0.85);
  color: #f1f1f1;
  padding: 16px 0 0 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-top: 40px;
  font-size: 1 rem;
}.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
  flex-wrap: wrap;
  padding-top: 0.5rem;         
  padding-bottom: 4px;         
  height: auto;
}

.footer-left {
  max-width: 520px;
}

.footer-title {
  font-size: 1.15rem;          
  font-weight: bold;
  margin-bottom: 2px;          
  letter-spacing: 1px;
  color: #fff;
}

.footer-desc {
  font-size: 0.95rem;          
  line-height: 1.5;            
  color: #e0e6ed;
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;                    
  margin-top: 4px;             
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;                 
  height: 36px;                
  font-size: 18px;             
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.footer-social a.facebook {
  background: #3b5998;
}

.footer-social a.instagram {
  background: #c13584;
}

.footer-social a.twitter {
  background: #55acee;
}

.footer-social a.linkedin {
  background: #0077b5;
}

.footer-social a:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding: 4px 0 2px 0;        
  font-size: 0.85rem;          
  color: #bfc9d1;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 10px;            
}

@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 8px;           
    padding-top: 0.5rem;
    padding-bottom: 4px;
  }

  .footer-social {
    margin: 8px 0 0 0;        
    gap: 8px;
  }

  .footer-left {
    max-width: 100%;
  }
}