/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
  animation: fadeIn 1s ease-in-out;
}

 @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }
.info:hover{
    background-color: rgb(30, 30, 102) ;
    color: white;
    animation: fadeIn 1s ease-in-out;
}

/* Navbar */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #cc78be;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  z-index: 1000;
}
header:hover{
  background-color: #ff008c;
}
header .logo {
  font-weight: 600;
  font-size: 24px;
}
header nav ul {
  display: flex;
  list-style: none;
}
header nav ul li {
  margin-left: 20px;
}
header nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}
header nav ul li a:hover {
  text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
}

/* Hero */
#hero {
  height: 100vh;
  background: linear-gradient(to right, #9e2069, #dbabcd);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 50px;
}
#hero:hover{
background: linear-gradient(to right, #ee2a9c, #f57abe);
}
#hero .btns .btn {
  background: white;
  color: #080808;
  padding: 12px 25px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}
#hero .btns .btn:hover {
  background: #222;
  color: white;
}

/* Sections */
section {
  padding: 100px 50px;
  text-align: center;
}
.fade {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-in-out;
}
.fade.show {
  opacity: 1;
  transform: translateY(0);
}
#about, #services, #academy, #portfolio, #contact {
  background: #f9f9f9;
  color: #222;
}
.pt{
  margin-top: 100px;
}
/* Cards */
#services .cards, #portfolio .projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.card, .project {
  background: #cc78be;
  color: white;
  padding: 20px;
  border-radius: 10px;
  width: 200px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover, .project:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  background-color: #ff008c;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
form input, form textarea {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.t{
  height: 250px;
}
#name{
  width: 400px;
}
form button {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  background: #cc78be;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
form button:hover {
  background: #ff008c;
}

/* Footer */
footer {
  background: #222;
  color: white;
  padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  header nav ul {
    display: none;
    flex-direction: column;
    background: #cc78be;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
  }
  header nav ul li {
    margin: 15px 0;
  }
  .hamburger {
    display: flex;
  }
  header nav ul.active {
    display: flex;
  }
}
.pt{
    margin-bottom: 50px;
}