body{
    background-color: rgb(255, 220, 202);
}

.nav-links .active {
  color: #f39c12; /* Use a color that matches your theme */
  font-weight: bold;
  border-bottom: 2px solid #f39c12;
}

/* NAVBAR SECTION */
.navbar {
    border: 4px solid black;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    margin-bottom: 5px;
    background-color: #ffffff; /* important for sticky */
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
    transition: all 0.3s ease;
  
  
  }
  
  /* to make sure google translate navbar dont eatup orinal navbar */
  .navbar.scrolled {
    height: 90px;
    padding-top: 10px;
    background-color: #ffffff;
  }
  
  
  .navbar.sticky-padding {
    padding-top: 2rem;
    height: 90px;
  }
  
  .logo-navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    padding-right: 20px;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
  }
  
  .nav-links a {
    text-decoration: underline;
    color: black;
    font-weight: bolder;
    font-size: 24px;
    transition: all ease;
  }
  
  .nav-links a:hover {
    color: #0000FF;
    text-decoration-color: #0000FF;
  }
  
  /* NAVBAR SECTION END */
  



/* about us */


/* General Styles for the Sections */
.about-us, .mission, .story, .author {
    border: 2px solid black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    box-sizing: border-box;
}

.content {
    width: 50%;
}

.image {
    width: 50%;
    height: 100%;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
    transition: transform 0.5s ease;
}

.image img:hover {
    transform: scale(1.05);
}

/* About Us Section Specific */
#about-h1 {
    font-weight: 800;
    font-size: 3rem;
    transition: transform 0.5s ease-in;
}

#about-p {
    font-style: italic;
    font-size: 1rem;
    font-weight: 550;
    transition: transform 0.5s ease-in;
}

.content:hover #about-h1,
.content:hover #about-p {
    transform: scale(1.05);
}

/* Mission Section Specific */
#h1 {
    font-weight: 800;
    font-size: 3rem;
    transition: transform 0.5s ease-in;
}

#p {
    font-style: italic;
    font-size: 1rem;
    font-weight: 550;
    transition: transform 0.5s ease-in;
}

.content:hover #h1,
.content:hover #p {
    transform: scale(1.05);
}

/* Story Section Specific */
#h1 {
    font-weight: 800;
    font-size: 3rem;
    transition: transform 0.5s ease-in;
}

#p {
    font-style: italic;
    font-size: 1rem;
    font-weight: 550;
    transition: transform 0.5s ease-in;
}

.content:hover #h1,
.content:hover #p {
    transform: scale(1.05);
}

/* Author Section Specific */
#about-h1 {
    font-weight: 800;
    font-size: 3rem;
    transition: transform 0.5s ease-in;
}

#about-p {
    font-style: italic;
    font-size: 1rem;
    font-weight: 550;
    transition: transform 0.5s ease-in;
}

.content:hover #about-h1,
.content:hover #about-p {
    transform: scale(1.05);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .about-us, .mission, .story, .author {
        flex-direction: column;
        text-align: center;
    }

    .content, .image {
        width: 100%;
    }

    .image img {
        object-fit: contain;
    }
}



/* footer section */

.footer {
  background-color: #000000;
  color: white;
  padding: 2rem 1rem;
  font-size: 0.95rem;
  font-family: sans-serif;
  border-radius: 7px;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 10px;
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  
}

.icon-row a {
  color: rgb(185, 168, 255);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.footer a:hover {
  color: #ffffff;
}

.utkarsh {
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 0.85rem;
  color: rgb(185, 168, 255);
}

.footer-details p {
  margin: 0.5rem 0 0 0;
}



/* Responsive Navbar */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #000;
  margin-left: auto;
  margin-right: 20px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .logo-navbar {
    height: 50px;
  }

  .nav-links a {
    font-size: 16px;
    padding: 10px 0;
  }
}

