body {
  font-family: "Segoe UI", sans-serif;
  background-color: #120744;
}

header {
  background-color: #0f172a;
  padding: 15px 30px;
  position: fixed;
  width: 99%;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
  align-content: center;
  justify-items: center;
  margin-left: -2%;

}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  z-index: 1;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  align-content: center;
  justify-items: center;
}

.buttons{
    padding: 12px 28px;
    width: 100px;
  border-radius: 8px;
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
   background-color: transparent;
   border: 2px solid #38bdf8 ;
  color: #0f172a;
  font-weight: 600;
  color: white;
}
.buttons a{
    text-decoration: none;
    color: aqua;
}

.buttons:hover {
    background-color: #0ea5e9;
    color: #0f172a;
}
.buttons:hover a{
     
    color: #0f172a;
}



.logo {
  font-size: 26px;
  font-weight: bold;
  color: #38bdf8;
  transition: 0.3s;
  letter-spacing: 1px;
  justify-items: center;
}

.logo span {
  color: #fff;
}

.hero {
  margin-top: 60px;
  position: relative;
  background-image: url("/assets/img/jt.jpeg");
  background-size: cover;
  background-position: center;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  animation: fadeInUp 1s ease-in-out;
}

.hero-content h1{
    font-size: 2.5rem;
  color: #38bdf8;
  margin-top: 60px;
  font-weight: bold;
  text-shadow: 0 0 10px #38bdf8;
  margin: 0;
}

.hero p {
  font-size: 1.2rem;
  
  color: #e2e8f0;
}



.about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: white;
  text-align: center;
}

.about-section h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 20px;
}

.about-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f1f5f9;
  transition: all 0.3s ease;
}

.about-text span {
  display: inline;
}

#moreText {
  display: none;
}

.know-more-btn {
  display: none;
  background: #38bdf8;
  color: #0f172a;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.know-more-btn:hover {
  background: #0ea5e9;
}

@media (max-width: 768px) {
  .know-more-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  #moreText.hidden {
    display: none;
  }

  #moreText.visible {
    display: inline;
  }
}

.whatsapp-chat {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 5px;
  height: 45px;
  width: 45px;
  text-align: center;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  font-size: 35px;
}