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

body {
  background-color: #f5f5f5;
  color: #333;
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


.navbar {
  background-color: transparent; 
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.nav-btns {
  display: flex;
  gap: 15px;
}

.login {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.btn {
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.join-btn {
  background-color: #7c3aed;
  color: #fff;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url('images/cute-girl-holding-book-laptop-office.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 150px 0;
  text-align: center;
  margin-top: -60px;
}

.hero-content {
  max-width: 600px;
 margin-left: -30px;
}

.hero-content .highlight {
  color: #7c3aed;
  font-size: 18px;
}

.hero h1 {
  color: #fff;
font-size: 60px;
font-family: sans-serif;
margin-left: 100px;
}
.hero p {
  color: #fff;
font-size: 30px;
font-family:sans-serif;
margin-left: 40px;
}

.header1{
background-color: transparent;
display: flex;
padding-top: 30px;
}
.logo{
font-size: 20px;
font-weight: 400;
font-family: sans-serif;
color: #fff;
padding-left: 40px;
}
.navlinks{
padding-left: 200px;

}
.navlinks ul{
display: flex;


}
.navlinks ul li{    
list-style: none;

}
.navlinks ul li a{
text-decoration: none;
font-size: 20px;
color: #fff;
font-family: sans-serif;

}

.form{
padding-left: 300px;
display: flex;
}
.form ul li{
list-style: none;

}
.form ul li a{
text-decoration: none;
font-size: 20px;
color: #fff;
font-family: sans-serif;
}
.form button{
background: #8D5CF6;
border: none !important;
box-shadow: none !important;
font-size: 12px;
padding: 15px 30px;
margin-top: 10px;
color: #fff;
border-radius: 5px;
margin-top: -15px;
font-family: sans-serif;
}

.body2 h1{
  font-size: 50px;
  padding-left: 90px;
  color: #fff;
  margin-top: 200px;
  
}
.body2 p{
  padding-left: 90px;
  font-size: 30px;
  font-family: sans-serif;
  font-weight: 100;
  color: #fff;
}
.body2 a{
  text-decoration: none;
  color: #8D5CF6;
  padding-left: 90px;
  font-family: sans-serif;
}
.video-container {
  position: relative;
  width: 350px;
  height: 350px; 
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  margin-left: 800px;
 margin-top: -250px;
  
}


video {
  width: 100%;
  height: 100%; 
  object-fit: cover;
  display: block;
  filter: brightness(50%);
  border-radius: 15px;
}


.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color:#8D5CF6; 
  color: white;
  border: none;
  font-size: 30px;
  border-radius: 50%;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;

}


.video-container:hover video {
  filter: brightness(100%);
}

.card {
  background: white;
  width: 240px;
  height: 300px;
  padding: 20px;
  margin: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, background-color 0.3s; 
  text-align: center;
  display: inline-block;
  vertical-align: top;
  margin-left: 50px;
  margin-top: 150px;
 
}
.card p{
 
}

.icon img {
  width: 72px;
  height: 72px;
}

.card h3 {
  font-size: 18px;
  font-weight: bold;
  color: #212529;
  margin-top: 15px;
}

.divider {
  width: 30px;
  height: 2px;
  background-color: red;
  border: none;
  margin: 10px auto;
}

.card p {
  color: #666;
  font-size: 14px;
  justify-content: center;
  margin-right: 170px;
  padding-right: 170px;
  padding-left: -200px;
  line-height: 20px;
}


.card:nth-child(odd) {
  transform: translateY(-10px);
}

.card:nth-child(even) {
  transform: translateY(10px);
}


.card:hover {
  transform: scale(1.1); 
  background-color: #9b7eed; 
  color: white;
}



.card:hover .divider {
  color: white;
  background-color: white;
}
.buy{
  max-width: 1200px;
  margin: 0 auto;
}


.buy-cart {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cart {
  background: white;
  color: #1C2E56;
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);  
}

.cart-image {
  position: relative;
}

.cart-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: red;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.8rem;
}

.cart-content {
  padding: 20px;
}

.cart-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.rate {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.star {
  color: #FFD700;
  margin-right: 5px;
}

.cart-info {
  font-weight: bold;
  margin-bottom: 10px;
}

.description {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.sales {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.price del {
  color: #888;
  margin-right: 5px;
}

.learn-more {
  background: transparent;
  color: #1C2E56;
  border: 2px solid #1C2E56;
  padding: 10px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s;
}

.learn-more:hover {
  background: #1C2E56;
  color: white;
}

.heart {
  margin-top: -50px;
  justify-content: center;
}

.heart i {
  color: black;
  background-color: #fff;
  font-size: 10px;
}

.cart-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.cart-icons i {
  background: white;
  color: #1C2E56;
  border-radius: 50%;
  padding: 10px;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.cart-icons i:hover {
  color: white;
  background: #1C2E56;
}

.popular-courses {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  color: #fff;
}

.image-container {
  position: relative;
  flex: 1;
}

.child-image {
  width: 250px; 
  z-index: 2;
  position: relative;
}

.decorative-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #FF5E84, #FDCB8C);
  z-index: 1;
  border-radius: 40% 60% 60% 40%;
  transform: rotate(-25deg);
  animation: moveShape 8s infinite alternate ease-in-out;
  margin-top: 60px;
  
}

@keyframes moveShape {
  0% {
      transform: rotate(-25deg) translateX(0px) translateY(0px);
  }
  50% {
      transform: rotate(-15deg) translateX(20px) translateY(-10px);
  }
  100% {
      transform: rotate(-25deg) translateX(-20px) translateY(10px);
  }
}

.text-content {
  flex: 1;
  padding-left: 50px;
}

h2 {
  font-size: 2em;
  margin-bottom: 15px;
  border-top: 3px solid #F14E4E;
  padding-top: 10px;
}

p {
  max-width: 400px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.learn-more-link {
  color: #8E77FF;
  text-decoration: none;
  font-weight: bold;
}
.testimonials {
  text-align: center;
  max-width: 800px;
}

.testimonials h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.testimonials p {
  color: #d3d4e0;
  font-size: 1rem;
  margin-bottom: 30px;
}

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

.carz {
  background-color: #fff;
  color: #333;
  width: 300px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.carz img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.carz p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
}

.stars {
  color: #f7c948;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.carz h3 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.carz h4 {
  font-size: 0.9rem;
  color: #888;
  font-weight: normal;
}


.team-section {
padding: 60px 20px;
text-align: center;
}

.team-section .content h2 {
font-size: 2.5em;
font-weight: bold;
color: white;
margin-bottom: 10px;
}

.team-section .content p {
font-size: 1.1em;
color: #A6A6DF;
margin-bottom: 50px;
}

.team-cart {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}

.cart {
background-color: #2E3A5B;
border-radius: 15px;
width: 220px;
overflow: hidden;
text-align: center;
transition: transform 0.3s ease;
}

.cart:hover {
transform: translateY(-10px);
}

.cart img {
width: 100%;
height: 220px;
object-fit: cover;
}

.card-content {
padding: 20px 10px;
}

.cart-content h3 {
font-size: 1.2em;
color: white;
margin-bottom: 5px;
}

.card-content p {
font-size: 0.9em;
color: #A6A6DF;
margin-bottom: 15px;
}

.social-icons {
display: flex;
justify-content: center;
gap: 15px;
}

.social-icons a {
color: #A6A6DF;
font-size: 1.2em;
transition: color 0.3s ease;
}

.social-icons a:hover {
color: #6C7CD5;
}

/* Responsive Design */
@media (max-width: 768px) {
.team-cart {
flex-direction: column;
align-items: center;
}
}

.newsletter-section {
text-align: center;
padding: 60px 20px;
color: #A6A6DF;
}

.newsletter-section .subtitle {
color: #A6A6DF;
font-size: 1em;
margin-bottom: 10px;
}

.newsletter-section h2 {
font-size: 2.5em;
font-weight: bold;
color: white;
margin-bottom: 10px;
}

.newsletter-section .description {
font-size: 1em;
margin-bottom: 30px;
}

.subscribe-form {
display: flex;
justify-content: center;
margin-bottom: 60px;
}

.subscribe-form input[type="email"] {
padding: 10px 20px;
width: 300px;
border-radius: 5px 0 0 5px; 
border: 1px solid #6C7CD5;
outline: none;
font-size: 1em;
}

.subscribe-form button {
padding: 10px 20px;
background-color: #6C7CD5;
border: none;
border-radius: 0 5px 5px 0; 
color: white;
font-size: 1em;
cursor: pointer;
transition: background-color 0.3s;
}

.subscribe-form button:hover {
background-color: #5a68c4;
}

.subscribe-form input[type="email"]:focus {
border-color: #5a68c4;
}


footer {

padding: 40px 20px;
}

.footer-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 20px;
padding-bottom: 20px;

}

.footer-column h3 {
color: white;
margin-bottom: 15px;
font-size: 1em;
}

.footer-column ul {
list-style: none;
}

.footer-column ul li {
margin-bottom: 10px;
color: #A6A6DF;
font-size: 0.9em;
}

.footer-column ul li a {
color: #A6A6DF;
text-decoration: none;
transition: color 0.3s;
}

.footer-column ul li a:hover {
color: #6C7CD5;
}

.footer-column ul li i {
margin-right: 10px;
}

.footer-bottom {
text-align: center;
padding-top: 20px;
font-size: 0.9em;
color: #A6A6DF;
}

.footer-bottom .social-icons {
margin-top: 10px;
}

.footer-bottom .social-icons a {
color: #A6A6DF;
font-size: 1.5em;
margin: 0 10px;
text-decoration: none;
transition: color 0.3s;
}

.footer-bottom .social-icons a:hover {
color: #6C7CD5;
}


@media (max-width: 768px) {
.footer-container {
flex-direction: column;
align-items: center;
text-align: center;
}

.subscribe-form {
flex-direction: column;
}

.subscribe-form input[type="email"], .subscribe-form button {
width: 100%;
max-width: 300px;
}
}







