* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

header {
  background: #46C3C5;
  color: #fff;
  padding: 25px;
  text-align: center;
}

header img {
  margin-bottom: 10px;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: black;
  padding: 15px 25px;
  flex-wrap: wrap;
}

.left {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s;
}

nav a:hover {
  color: #46C3C5;
}
.nav-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #46C3C5;
  vertical-align: middle;
}

.hero {
  text-align: center;
  padding: 20px;
  background: #FCCC11;
}

.hero h1 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 800;
}

.hero p {
  font-size: 20px;
  margin-bottom: 15px;
}

.steps-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.step-card {
  background-color: #38cfd9;
  color: white;
  width: 280px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 4px 6px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 16px;
  line-height: 1.4;
}

.container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px auto;
}

.card {
  background: white;
  padding: 25px;
  width: 350px;
  border-radius: 12px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}
form {
  display: none;
  margin-top: 15px;
}

form.active {
  display: block;
}



  .toggle-container {
            display: flex;
            justify-content: center;
            margin: 30px auto;
            max-width: 400px;
            position: relative;
        }

        .toggle-slider {
            position: relative;
            width: 100%;
            height: 60px;
            background-color: #e9ecef;
            border-radius: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .toggle-option {
            position: absolute;
            top: 0;
            height: 100%;
            width: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: color 0.3s ease;
            z-index: 2;
        }

        .toggle-option:first-child {
            left: 0;
        }

        .toggle-option:last-child {
            right: 0;
        }

        .toggle-option.active {
            color: white;
        }

        .toggle-indicator {
            position: absolute;
            top: 5px;
            left: 5px;
            height: calc(100% - 10px);
            width: calc(50% - 5px);
            background: linear-gradient(135deg, #46C3C5, #3a9fa1);
            border-radius: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .toggle-indicator.publish {
            transform: translateX(100%);
            background: linear-gradient(135deg, #28a745, #218838);
        }


label {
  font-weight: bold;
  display: block;
  margin: 10px 0 5px;
}

input,
select {
  width: 100%;
  padding: 12px;
  border: 1px solid black;
  border-radius: 5px;
  margin-bottom: 12px;
}

button {
  width: 100%;
  height: 100%;
  padding: 12px;
  background: #46C3C5;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #3a9fa1;
}

.divider {
  width: 80%;
  height: 2px;
  margin: 30px auto;
  background: linear-gradient(to right, transparent, black, transparent);
}

section h1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 20px;
}

.platforms .card {
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  padding: 15px;
  text-align: center;
}

.platforms .card img {
  max-width: 120px;
  margin-bottom: 10px;
}

.platforms .card p {
  font-size: 16px;
  line-height: 1.4;
}

footer {
  background: #f7c600;
  padding: 20px;
  color: #000;
}

.footer-container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  height: 70px;
  vertical-align: middle;
  mix-blend-mode: color-burn;
}

.social-icon {
  height: 28px;
  transition: transform 0.2s;
}

.social-icon:hover {
  transform: scale(1.2);
}

.footer-social p {
  font-weight: bold;
  margin-bottom: 8px;
}

.footer-left p {
  font-size: 16px;
}

.footer-bottom {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.footer-bottom a {
  color: #000;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .left {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero p {
    font-size: 16px;
  }

  .steps-container {
    gap: 15px;
  }

  .card {
    width: 90%;
  }

  .platforms .card {
    width: 90%;
  }

  footer {
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  header img {
    width: 120px;
    height: 120px;
  }

  nav a {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 20px;
  }

  .step-card {
    width: 90%;
  }

  .platforms .card img {
    max-width: 100px;
  }
}
.btn-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-group button {
  flex: 1;                
  padding: 12px;          
  border-radius: 5px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}


.btn-group button[type="submit"] {
  background: #46C3C5;
  color: white;
}

.btn-group button[type="submit"]:hover {
  background: #3a9fa1;
}


.btn-group .toggle-btn {
  background: #28a745;
  color: white;
}

.btn-group .toggle-btn:hover {
  background: #218838;
}
.toggle-btn {
  margin: auto;
}

.feedback-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    width: 400px;
}
