* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
 background-color: #FFD84D;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 25px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.icons span {
  margin-left: 18px;
  font-size: 20px;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 80px;
}

.left {
  max-width: 45%;
}

.left h1 {
  font-size: 48px;
  font-weight: 900;
  color: #222;
  line-height: 1.2;
}

.left p {
  margin-top: 20px;
  color: #444;
  font-size: 18px;
}

.buttons {
  margin-top: 30px;
}

.btn {
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 15px;
  margin-right: 15px;
}

.primary {
  background: #00aaff;
  color: white;
}

.secondary {
  border: 2px solid #333;
  color: #333;
}

.right img {
  width: 420px;
  opacity: 0.8;

}
main{
    background-color: aliceblue;
}
.a{
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    margin-top: 20px;
}
.b{
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
}
.c{
    text-align: center;
    font-size: 16px;
    margin-top: 5px;
    color: gray;
}
.cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.card {
  width: 260px;
  height: 150px;
  background: #fafafa;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  cursor: pointer;
}

.card .icon {
  width: 45px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 16px;
  color: #0f1e37;
  font-weight: 700;
}

/* ACTIVE CARD (Blue) */
.card.active {
  background: #00a3c8;
  color: white;
}

.card.active h3 {
  color: white;
}

.card.active .icon {
  filter: brightness(0) invert(1);
}

/* Hover Effect */
.card:hover {
  transform: translateY(-5px);
}
.practice {
  text-align: center;
  padding: 60px 0;
  width: 80%;
  margin: 0 auto;
}

.practice h2 {
  font-size: 32px;
  color: #1d2b3a;
  font-weight: 800;
}

.practice .subtitle {
  margin-top: 10px;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

.practice-cards {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.p-card {
  width: 260px;
  background: white;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  text-align: left;
}

.p-card h3 {
  font-size: 18px;
  color: #16293b;
  font-weight: 700;
  margin-bottom: 12px;
}

.p-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 15px;
}

.p-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 0 0 6px 6px;
}
  
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            text-align: center;
        }
        .section {
            padding: 30px 15px;
        }
        .row {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        .video {
            position: relative;
        }
        .video img {
            width: 350px;
        }
        .play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #1ea1f2;
            color: white;
            padding: 10px 15px;
            border-radius: 50%;
            font-size: 20px;
        }
        .logos img {
            width: 70px;
            margin: 10px;
            opacity: 0.7;
        }
        .newsletter {
            background: #004c80;
            color: white;
            padding: 20px;
        }
        input {
            padding: 8px;
            width: 200px;
        }
        button {
            padding: 8px 15px;
            background: orange;
            border: none;
            color: white;
            cursor: pointer;
        }
    

.im{
    background: none;
}
     body {
            font-family: Arial, sans-serif;
            margin: 0;
            text-align: center;
        }

        /* Top Section */
        .section {
            padding: 30px 20px;
        }

        .cards {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .card {
            width: 220px;
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }

        .card.dark {
            background: #1f3047;
            color: white;
        }

        .btn {
            margin-top: 10px;
            padding: 8px 15px;
            border: none;
            cursor: pointer;
        }

        .btn.light {
            background: #eee;
        }

        .btn.dark {
            background: #0b5ed7;
            color: white;
        }

        /* Footer */
        .footer {
            margin-top: 40px;
            background: #0f4d5f;
            color: white;
            text-align: left;
            padding: 30px 20px;
        }

        .footer-columns {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer h4 {
            margin-bottom: 10px;
        }

        .footer p {
            margin: 4px 0;
        }

/* Responsive Design */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }
  .logo {
    font-size: 18px;
  }
  .icons span {
    font-size: 18px;
  }
  .hero {
    flex-direction: column;
    padding: 20px 15px;
    text-align: center;
  }
  .left h1 {
    font-size: 28px;
  }
  .left p {
    font-size: 14px;
  }
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .right img {
    width: 100%;
    max-width: 250px;
  }
  .cards {
    flex-direction: column;
    gap: 15px;
  }
  .card {
    width: 100%;
    height: auto;
    padding: 15px;
  }
  .practice {
    padding: 40px 0;
    width: 90%;
  }
  .practice h2 {
    font-size: 24px;
  }
  .practice .subtitle {
    font-size: 14px;
  }
  .practice-cards {
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
  }
  .p-card {
    width: 100%;
    padding: 20px;
  }
  .section {
    padding: 15px 10px;
  }
  .row {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .video {
    margin: 10px;
    padding: 10px;
  }
  .video video {
    width: 200px;
    height: 400px;
  }
  .row > div:last-child {
    margin: 10px;
    padding: 10px;
  }
  .cards {
    justify-content: center;
    text-align: center;
  }
  .card {
    text-align: center;
  }
  .logos img {
    width: 40px;
  }
  .newsletter {
    padding: 10px;
  }
  input {
    width: 100%;
  }
  .footer {
    padding: 20px 15px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  .hero {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
  .left {
    max-width: 100%;
  }
  .left h1 {
    font-size: 32px;
  }
  .left p {
    font-size: 16px;
  }
  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .btn {
    margin-right: 0;
  }
  .right img {
    width: 100%;
    max-width: 300px;
  }
  .cards {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
  .card {
    width: 100%;
  }
  .practice-cards {
    flex-direction: column;
    gap: 20px;
  }
  .p-card {
    width: 100%;
  }
  .section {
    padding: 20px 10px;
  }
  .row {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .video video {
    width: 150px;
    height: 100px;
  }
  .logos img {
    width: 50px;
  }
  .newsletter {
    padding: 15px;
  }
  input {
    width: 100%;
  }
  .footer-columns {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 40px 40px;
  }
  .left h1 {
    font-size: 40px;
  }
  .right img {
    width: 350px;
  }
  .cards {
    gap: 20px;
  }
  .card {
    width: 200px;
  }
  .practice-cards {
    gap: 20px;
  }
  .p-card {
    width: 200px;
  }
}
