* {
  padding: 0;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(
    180deg,
    #00b4ff 0%,
    #29d3d3 40%,
    #6fffd2 70%,
    #8dffb0 100%
  );
  min-height: 100vh;
  margin: 0;
}
.container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
header {
  padding: 20px;
}
.glass {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  transition: all 0.5s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.glass:hover {
  transform: scale(1.02);
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 45px;
}

.logo {
  font-size: 32px;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}
.nav-link {
  display: flex;
  gap: 30px;
}
.nav-link a {
  color: rgba(255, 255, 225, 0.9);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.5 ease;
  padding: 12px 24px 13px 24px;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.nav-link a:hover {
  color: white;
  background-color: rgba(255, 255, 225, 0.6);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Hero style */

.Page {
  display: block;
  min-height: 100vh;
  padding: 40px 20px 20px;
}

.content-wrapper {
  min-height: calc(100vh - 300px);
}
.hero {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  align-items: center;
  padding: 60px 30px;
  margin-bottom: 30px;
}
.hero-image img {
  width: 60vh;

  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.hero-content {
  text-align: right;
}
.hero-content h1 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0);
  line-height: 1.2;
}
.hero-content p {
  color: rgba(255, 255, 225, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
}
.cta-button{
  display: inline-block;
  padding: 15px 40px ;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.cta-button:hover{
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
/* feature style */
.features {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 25px;
  margin-bottom: 40px;
}

.feature-card {
  width: 33%;
  min-height: 300px;
  padding: 40px 20px;
  color: white;
  text-align: center;
}

.feature-icon{
  width: 60px;
  height: 60px ;
  margin: 0 auto 20px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50% ;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.feature-card h3 {
  font-size: 3.5rem;
  color: rgb(0, 0, 0);
}
.feature-card p {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.6;
}
  /* footter style*/
  #footer-content{
    margin-top: 10px;
    padding: 30px 0;
  }
 .footer-content{
  padding: 30px ;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
 }
 .footer-links{
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
 }
 .footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 20px ;
  transition:  color 0.3s ease ;
  padding: 5px 10px ;
 }
 .footer-links a:hover {
  color: white;
  text-shadow: rgba(255, 255, 225, 0.6);
 }
 .copyright{
  font-size: 14px ;
  color: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px ;

 }
 @media (max-width: 768px) {

  nav {flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .nav-link {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .logo {
    font-size: 24px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 350px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .features {
    flex-direction: column;
  }

  .feature-card {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

}