*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins;
}

body{
  background:#f5f7fb;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* NAVBAR */
.navbar{
  background:#fff;
  position:sticky;
  top:0;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 0;
}
nav a{
  margin-left:20px;
  text-decoration:none;
  color:#333;
}

/* HERO */
.hero{
  background: linear-gradient(135deg, #3b5cff, #6f86ff);
  position:relative;
  padding:100px 0;
}
.overlay{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgb(9 29 123 / 60%);
  pointer-events:none;
}
.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
.hero-text{
  color:#fff;
}
.hero-text h1{
  font-size:45px;
}
.hero-text p{
  margin-top:10px;
}
.btn{
  display:inline-block;
  background:#fff;
  color:#333;
  padding:12px 25px;
  border-radius:6px;
  margin-top:15px;
  text-decoration:none;
}

/* FORM */
.form-box{
  background:#fff;
  padding:30px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,.2);
}
.form-box input,
.form-box select{
  width:100%;
  padding:12px;
  margin:10px 0;
  border:1px solid #ddd;
  border-radius:6px;
}
.form-box button{
  width:100%;
  padding:12px;
  background:#3366ff;
  color:#fff;
  border:none;
  border-radius:6px;
  cursor:pointer;
}

/* ABOUT */
.about{
  padding:80px 20px;
}
.about-main-heading{
  text-align:center;
  font-size:32px;
  margin-bottom:50px;
}
.about-grid-new{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}
.about-list{
  padding-left:20px;
}
.about-list li{
  margin-bottom:15px;
  line-height:1.6;
}
.about-list strong{
  display:block;
}

/* VIDEO */
.about-video iframe{
  width:100%;
  height:350px;
  border-radius:12px;
}

/* BUTTON */
.demo-btn-wrapper{
  text-align:center;
  margin-top:40px;
}
.demo-btn{
  background:#4f6df5;
  color:#fff;
  padding:14px 34px;
  border-radius:6px;
  text-decoration:none;
}

/* ACHIEVEMENT */
.achievement-section{
  padding:100px 0;
  background: linear-gradient(135deg, #3366ff, #5f8bff);
  color:#fff;
  text-align:center;
}
.achievement-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-top:60px;
}
.achievement-card{
  background:rgba(255,255,255,0.12);
  padding:35px 20px;
  border-radius:16px;
}

/* TESTIMONIAL */
.trust-section{
  padding:100px 0;
  background:#f9fbff;
  text-align:center;
}
.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  margin-top:50px;
}
.testimonial-card{
  background:#fff;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* VIDEO SECTION */
.video-testimonials{
  padding:80px 0;
  text-align:center;
  background:#f9fbff;
}
.video-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}
.video-card{
  position:relative;
  cursor:pointer;
  border-radius:12px;
  overflow:hidden;
}
.video-card img{
  width:100%;
  transition:.4s;
}
.video-card:hover img{
  transform:scale(1.1);
}
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:#fff;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* POPUP */
.video-popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  display:none;
  justify-content:center;
  align-items:center;
}
.video-popup iframe{
  width:80%;
  height:500px;
}
.close-btn{
  position:absolute;
  top:20px;
  right:30px;
  color:#fff;
  font-size:35px;
  cursor:pointer;
}

/* FOOTER */
.footer{
  background:#0f172a;
  color:#fff;
  padding:20px 10px;
}
.footer-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}
.footer-right a{
  margin-left:10px;
  background:#fff;
  color:#000;
  width:35px;
  height:35px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
}

/* MOBILE */
@media(max-width:768px){

  .nav{
    flex-direction:column;
  }

  .hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about-grid-new{
    grid-template-columns:1fr;
  }

  .achievement-grid{
    grid-template-columns:1fr 1fr;
  }

  .testimonial-grid{
    grid-template-columns:1fr;
  }

  .video-grid{
    grid-template-columns:1fr;
  }

  .video-popup iframe{
    width:95%;
    height:250px;
  }

  .footer-container{
    flex-direction:column;
    text-align:center;
  }
}
/* style.css */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
}

body{
  background:#f5f7ff;
}

/* SECTION */
.thankyou-section{
  width:100%;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:linear-gradient(135deg,#3366ff,#6f86ff);
}

/* CARD */
.thankyou-card{
  width:100%;
  max-width:600px;
  background:#fff;
  padding:60px 40px;
  border-radius:24px;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,0.15);
  animation:fadeUp 0.7s ease;
}

/* LOGO */
.thankyou-logo{
  width:180px;
  margin-bottom:25px;
}

/* SUCCESS ICON */
.success-icon{
  width:90px;
  height:90px;
  margin:auto;
  border-radius:50%;
  background:#22c55e;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  font-weight:700;
  margin-bottom:25px;
  box-shadow:0 10px 30px rgba(34,197,94,0.3);
}

/* HEADING */
.thankyou-card h1{
  font-size:48px;
  color:#111827;
  margin-bottom:15px;
}

/* TEXT */
.thankyou-card p{
  font-size:16px;
  color:#6b7280;
  line-height:1.8;
  margin-bottom:35px;
}

/* BUTTON WRAPPER */
.thankyou-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

/* BUTTON */
.thank-btn{
  display:inline-block;
  padding:14px 30px;
  background:#3366ff;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:600;
  transition:0.3s;
}

/* SECOND BUTTON */
.secondary-btn{
  background:#111827;
}

/* HOVER */
.thank-btn:hover{
  transform:translateY(-3px);
  opacity:0.9;
}

/* ANIMATION */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* MOBILE */
@media(max-width:768px){

  .thankyou-card{
    padding:40px 25px;
  }

  .thankyou-card h1{
    font-size:36px;
  }

  .thankyou-card p{
    font-size:14px;
  }

  .thank-btn{
    width:100%;
  }

}