*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
    font-family: "Syne", sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

header {
    display: flex;
    justify-content: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(18, 22, 21, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #52ce8a;
    border-radius: 100px;
    padding: 10px 30px 10px 15px; 
    box-shadow: 0 0 20px rgba(0, 255, 115, 0.1);
    transition: all 0.3s ease;
}
.navbar:hover {
    border-color: #00ff73;
    box-shadow: 0 0 30px rgba(0, 255, 115, 0.2);
}

.navbar-ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.navbar-ul li {
    margin: 0 15px;
}
.navbar-ul li a{
  text-decoration: none;
  color: #e0e0e0;
  font-size: 18px;
  font-weight: 500;
  font-family: "Syne", sans-serif;
  transition: color 0.3s ease;
}
.navbar-ul li a:hover{
  color: #00ff73;
  text-shadow: 0 0 10px rgba(0, 255, 115, 0.5);
}
.logo {
    width: 50px; 
    height: 50px;
    display: block;
    border-radius: 50%;
    transition: transform 0.3s ease;
    object-fit: cover;
}
.logo:hover{
    transform: scale(1.1);
}
#navbtn{
  display: none;
}
.home{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 80px; 
  background: radial-gradient(circle at center, rgba(0, 255, 115, 0.05) 0%, transparent 70%);
}
.home h1{
  text-align: center;
  font-size: 64px;
  line-height: 1.1;
  max-width: 1600px;
  margin-bottom: 20px;
}
.home h2{
  text-align: center;
  font-size: 24px;
  color: #888;
  font-weight: 400;
  margin-bottom: 40px;
}
.home h1 a{
  color: #121615;
  background-color: #00ff73;
  padding: 0 10px;
  box-shadow: 0 0 20px rgba(0, 255, 115, 0.4);
  text-decoration: none;
}
.home button{
  font-family: "Syne", sans-serif;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;  
  font-size: 20px;
  font-weight: 700;
  background-color: #00ff73;
  color: #121615;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 115, 0.3);
  position: relative;
  overflow: hidden;
}

.home button:hover{
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 255, 115, 0.6);
  background-color: #52ce8a;
}

.aboutus {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 46px;
    margin-bottom: 40px;
    color: #00ff73;
}
.cards{
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 20px;
  cursor: default;
}

.cards img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.cards img:hover{
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 255, 115, 0.4);
}
.cards-flex1{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
}
.card1{
  background: #ffffff08;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #ffffff0d;
  transition: transform 0.5s ease, border-color 0.3s ease, background 0.3s ease;
}
.card1:hover{
  transform: translateY(-10px);
  border-color: #00ff73;
  background: rgba(255, 255, 255, 0.05);
} 
.cards-flex {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.card {
    background: #ffffff08;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #ffffff0d;
    transition: transform 0.5s ease, border-color 0.3s ease, background 0.3s ease;
    cursor: default;
    border-bottom: 1px solid #00ff73;
}
.card:hover {
    transform: translateY(-10px);
    border-color: #00ff73;
    background: rgba(255, 255, 255, 0.05);
}
.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}
.card1 i {
    color: #00ff73;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 115, 0.4);
}
.card h3 i {
    color: #00ff73;
    font-size: 28px;
    text-shadow: 0 0 10px rgba(0, 255, 115, 0.4);
}
.card p {
    color: #aaa;
    line-height: 1.6;
}
.card1 a{
  color: #00ff73;
  text-shadow: 0 0 10px rgba(0, 255, 115, 0.4);
  text-decoration: none;
}
@media (max-width: 768px) {
  .cards-flex {
    flex-direction: column;
  }
  .home h1{
    font-size: 41px;
  }
  .home h2{
    font-size: 20px;
  }

    nav ul {
    display: none; 
    top: 0;
    left: 0;
    height: 12vh;    
    background-color: transparent; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    gap: 5px;
  
  }
  .navbar-ul{
    display: none;
  }
  nav ul.active {
    display: flex;
    color: #e8e6fc;
  }

  #navbtn {
    display: flex;
    color: #00ff73;
    border-radius: 50%;
    background-color: transparent;
    border: none;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: flex-end;
    font-size: 50px;
    overflow: hidden;
    cursor: pointer;
  }
  .cardservices{
    flex-direction: column;
  }
}
.services{
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
#services i{
    color: #00ff73;
    font-size: 34px;
    text-shadow: 0 0 10px rgba(0, 255, 115, 0.4);
}
#services h2{
  font-size: 56px;
  text-align: center;
}
#services h3{
  font-size: 26px;
  text-align: center;
}
.cardservices{
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 70px;
  cursor: default;
  padding: 20px;
}
.cardservice{
  background: #ffffff08;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #ffffff0d;
  transition: transform 0.5s ease, border-color 0.3s ease, background 0.3s ease;
  margin-top: 30px;
  border-bottom: 1px solid #00ff73;
}
.cardservice h1{
  font-size: 27px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cardservice p{
  color: #aaa;
  font-size:  30px;
}
.cardservice li{
  color: #aaa;
  font-size:  22px;
  text-decoration: none;
  list-style: none;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cardservice a{
  color: #db3131;
  font-size:  22px;
  text-decoration: none;
}
.cardservice button{
  font-family: "Syne", sans-serif;
  padding: 10px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;  
  font-size: 19px;
  font-weight: 500;
  background-color: #00ff73;
  color: #121615;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 255, 115, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  display: flex;
}
.cardservice:hover{
  transform: translateY(-10px);
  border-color: #00ff73;
  background: rgba(255, 255, 255, 0.05);
}
#contact{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  margin-top: 200px;
  background: radial-gradient(circle at center, #00ff730d 0%, transparent 35%);
}
#contact h1{
  font-size: 56px;
  text-align: center;
  color: #00ff73;
}
#contact h1 a{
  background-color: #52ce8a;
  color: #121615;
  text-shadow: 0 0 10px #00ff7366;
}

#contact h3{
  font-size: 26px;
  text-align: center;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    margin-top: 30px;
  background: #ffffff08;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #ffffff0d;
    border-bottom: 1px solid #00ff73;
}

.contact-form label {
    font-weight: bold;
    color: #e0e0e0;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #444;
    border-radius: 28px;
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: "Syne", sans-serif;
    font-size: 19px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ff73;
    caret-color: #00ff73;
}

.contact-form button {
    border: none;
    border-radius: 28px;
    font-size: 26px;
    font-family: "Syne", sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #00ff73;
    color: #121615;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 115, 0.3);
    padding: 10px 40px;
    margin-top: 35px;
}

.contact-form button:hover {
    background-color: #52ce8a;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 255, 115, 0.4);
}

#my-form-status {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 40px;
    color: #555;
    font-size: 14px;
    border-top: 1px solid #ffffff0d;
}
footer i{
  font-size: 35px;
  margin: 10px;
  cursor: pointer;
}
footer i:hover{
  rotate: 360deg;
  transition: all 0.3s ease;
}
footer i:active{
  color: #00ff73;
}
footer a{
  color: #555;
}
footer p{
  font-size: 17px;
  margin-top: 5px;
}
