/* Reset & basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f7fafd;
    color: black;
}
  
header {
    display: flex;
    background: linear-gradient(90deg, #fff 20%, #df295e,#4054b2 80%);
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    position: relative;
    z-index: 100;
}
  
.logo img {
    height: 7rem;
    margin-left: 100px;
}
  
  /* Hamburger menu styles */
.menu-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
}

  /* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
    margin-right: 250px;
}
nav ul li a {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #4054b2;
}

.menu-icon {
    display: none;
    font-size: 24px;
    color: black;
}

@media (max-width: 1024px) {
  .logo img {
    margin-left: 10px;
    height: 5rem;
  }
  nav {
    display: none;
    position: relative;
    z-index: 9999;
  }

  .menu-icon {
    display: block;
    padding: 0 5px;
    margin-right: 15px;
  }
  nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0px;
    align-items: center;
    justify-content: center;
    background-color: rgba(80, 80, 80, 0.85);
    width: 50%;
    border-radius: 15px;
  }
  nav ul {
    flex-direction: column;
    margin: 20px 0;
    text-align: center;
    line-height: 8px;
  }
  nav ul li a {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
}
  
/* Hero section */
.hero {
  position: relative;
  background: url('../images/hero_bg.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 60px;
  min-height: 40%;
  overflow: visible;
  flex-wrap: wrap;
  animation: fadeIn 1.5s ease forwards;
}

.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
  top: 0;
}

.hero-content {
  flex: content;
  z-index: 2;
  padding: 0 60px;
  text-align: center;
  position: relative;
}

.marquee {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  font-size: 24px;
  font-weight: bold;
  color: #eeff00;
  text-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.hero-content .company h1 {
  background: linear-gradient(135deg, #fff 20%, #df295e, #4054b2 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  font-size: 4.5rem;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 900;
}

.hero-content .company p {
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.6rem;
  font-family: "Viner Hand ITC", cursive;
  margin-top: -15px;
  margin-bottom: 20px;
}

.hero-content h2 {
  font-size: 3.3rem;
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
  color: #f7fafd;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
}

.mission-text {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
  overflow: visible;
}
.mission-text strong {
  color: #ff3131;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 35px;
}
.btn-primary {
  background: #4054b2;
  color: #fff;
  border: none;
  padding: 15px 38px;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(80, 84, 178, 0.13);
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #df295e;
}
.btn-secondary {
  background: #fff;
  color: #4054b2;
  border: 2px solid #4054b2;
  padding: 15px 38px;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(80, 84, 178, 0.13);
  transition: background-color 0.3s ease;
}
.btn-secondary:hover {
    background: #4054b2;
    color: #fff;
}
.btn-chat {
  text-align: center;
  text-decoration: none;
  background: #1ec75c;
  color: #000;
  border: 2px solid #1ec75c;
  padding: 15px 38px;
  font-size: 1.08rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(80, 84, 178, 0.13);
  transition: background-color 0.3s ease;
}

.features-list { 
  display: flex; 
  flex-direction: column; 
  gap: 10px;
  margin-bottom: 14px;
  margin-left: 0;
  max-width: 450px;
}

.features-item { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  font-size: 1.15rem;
  color: #fff;
  text-align: left;
  margin-left: 0; 
}

.features-item img {
  width: 30px;
  background: linear-gradient(135deg,#ffffff 40%, #f8f8f8 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  height: 30px;
  flex-shrink: 0;
}

.wave-container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: transparent;
  margin-top: -5px;
}

/* Common style for all waves */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300%;
  height: 100%;
  background-repeat: repeat no-repeat;
  background-position: 0 bottom;
  transform-origin: center bottom;
  animation: waveMove 12s linear infinite;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}

/* Different wave layers with slightly different speeds and opacity */
.wave1 {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="0.9" d="M0,80 C300,200 900,0 1200,100 L1200,200 L0,200 Z"></path></svg>');
  animation-duration: 12s;
  z-index: 1;
  opacity: 0.9;
}

.wave2 {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="0.6" d="M0,100 C400,200 800,0 1200,120 L1200,200 L0,200 Z"></path></svg>');
  animation-duration: 18s;
  z-index: 1;
  opacity: 0.7;
}

.wave3 {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="0.4" d="M0,120 C500,200 700,0 1200,140 L1200,200 L0,200 Z"></path></svg>');
  animation-duration: 25s;
  z-index: 1;
  opacity: 0.5;
}

.wave4 {
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 200" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="0.25" d="M0,140 C600,200 600,0 1200,160 L1200,200 L0,200 Z"></path></svg>');
  animation-duration: 35s;
  z-index: 1;
  opacity: 0.3;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .wave-container {
    height: 130px;
  }
}

@media (max-width: 768px) {
  .wave-container {
    height: 100px;
  }
  .wave {
    width: 400%;
  }
}

@media (max-width: 480px) {
  .wave-container {
    height: 80px;
  }
  .wave {
    width: 500%;
  }
}

@media (max-width:1024px) {
  .hero {
    display: block;
    width: 100%;
    min-height: unset;
    padding: 28px 0 0 0;
    box-sizing: border-box;
    position: relative;
    overflow: visible !important;
    margin: auto;
  }
  .hero-content {
    width: 100%;
    max-width: 99%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 0;
    box-sizing: border-box;
  }
  .marquee {
    font-size: 17px;
  }
  .hero-content .company h1 {
    font-size: 34px;
    line-height: 1.35;
    font-weight: 500;
    color: #23223c;
    margin-bottom: 14px;
    text-align: center;
    letter-spacing: 0.01em;
    word-break: break-word;
    max-width: 100%;
  }
  .hero-content .company p {
    font-size: 16px;
  }
  .hero-content h2 {
    font-size: 24px;
    text-align: left;
    margin-left: 15px;
  }
  .mission-text {
    font-size: 1rem;
    color: #2779c3;
    margin-bottom: 18px;
    line-height: 1.48;
    text-align: left;
    word-break: break-word;
  }
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
    align-items: stretch;
  }
  .btn-primary, .btn-secondary, .btn-chat {
    width: 100%;
    font-size: 1.08rem;
    font-weight: 600;
    padding: 11px 0;
    border-radius: 26px;
    border: none;
    margin-bottom: 0;
    text-align: center;
    box-shadow: 0 2px 9px rgba(64,84,178,0.08);
  }
  .btn-primary { background: #2878c7; color: #fff; }
  .btn-secondary {
    background: #fff; color: #2878c7; border: 2px solid #2878c7;
  }
  .btn-primary:hover, .btn-secondary:hover {
    background: #1b305a; color: #fff; border-color: #1b305a;
  }
  .features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 14px;
  }
  .features-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.97rem;
    color: #fff;
    background: none;
    padding: 0;
    border-radius: 0;
    word-break: break-word;
    font-weight: 500;
  }
  .features-item img {
    width: 21px;
    height: 21px;
    flex-shrink: 0;
  }
  /* HERO LOGO BANNER (optional, if needed) */
  .hero-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
  }
  .hero-logo img {
    height: 31px;
    width: auto;
  }
}

.program-highlights {
  background: #f6f9fc;
  padding: 62px 0 44px 0;
  text-align: center;
}

.program-highlights h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg,#df295e 40%, #4054b2 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  font-family: 'Poppins', sans-serif;
}
.prog-desc {
  font-size: 1.14rem;
  color: #23395d;
  margin-bottom: 46px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.prog-features {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.prog-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 28px rgba(64,84,178,0.10);
  min-width: 210px;
  max-width: 255px;
  padding: 34px 15px 20px 15px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.prog-card:hover {
  box-shadow: 0 12px 36px rgba(64,84,178,0.13);
}

.prog-icon {
  font-size: 2.7rem;
  color: #df295e;
  margin-bottom: 14px; /* px */
}

.prog-title {
  font-size: 1.13rem;
  color: #4054b2;
  font-weight: bold;
  margin-bottom: 11px;
}

.prog-text {
  color: #23395d;
  font-size: 0.98rem;
  line-height: 1.5;
}

@media (max-width:1024px){
  .prog-desc { padding: 10px; }
  .prog-features { flex-direction: column; gap: 0px; }
  .prog-card { min-width: 0; max-width: 1900px; margin: 45px;}
}

.achievements {
  background: #f0f1f2;
  padding: 54px 0 34px 0;
  text-align: center;   /*f7fafd */
}

.achievements h2 {
  font-size: 1.8rem;
  background: linear-gradient(135deg,#df295e 40%, #4054b2 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  margin-bottom: 30px;
}

.ach-list {
  display: flex;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
}

.ach-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 17px rgba(64,84,178,0.09);
  min-width: 210px;
  max-width: 260px;
  padding: 27px 13px 15px 13px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ach-icon {
  font-size: 2.3rem;
  color: #df295e;
  margin-bottom: 10px;
}

.ach-title {
  font-size: 1.09rem;
  color: #4054b2;
  font-weight: 600;
  margin-bottom: 8px;
}

.ach-caption {
  color: #222a54;
  font-size: 0.97rem;
}

@media (max-width:1024px) {
  .ach-list { flex-direction: column; gap: 0px; }
  .ach-card { min-width: 0; max-width: 99%; margin: 45px;}
}
  
/* Trainers */
.trainers {
  background: #f7fafd;
  padding: 60px 0 40px 0;
  text-align: center;
}

.trainers h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg,#df295e 40%, #4054b2 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 38px;
  letter-spacing: 1px;
}

.trainer-info-list {
  max-width: 80%;
  margin: auto;
  text-align: left;
  padding: 30px 26px 22px 26px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(64,84,178,0.08);
  font-size: 1.18rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 50px;
}

.trainer-point {
  background: linear-gradient(90deg, #df295e, #8837a6, #4054b2);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon {
  font-size: 1.6rem;
  margin-right: 12px;
}

.point-text {
  color: #fff;
  line-height: 1.55;
  font-size: 1.05rem;
}

.trainer-info-list strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width:1024px){
  .trainer-info-list {
    padding: 20px 10px 12px 14px;
    font-size: 1.05rem;
  }
  .icon {
    font-size: 1.4rem;
    margin-right: 10px;
  }
  .point-text {
    font-size: 0.95rem;
  }
}

/* Testimonials */
.testimonials {
  background: #f0f1f2;
  padding: 64px 0 42px 0;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg,#df295e 40%, #4054b2 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 38px;
  letter-spacing: 1px;
}

.testimonial-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(64,84,178,0.08);
  max-width: 340px;
  min-width: 220px;
  margin-bottom: 40px;
  padding: 28px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 12px 36px rgba(64,84,178,0.16);
}
.testimonial-quote {
  font-size: 1.08rem;
  font-style: italic;
  color: #222a54;
  margin-bottom: 18px;
  line-height: 1.6;
  position: relative;
  padding-left: 16px;
}
.testimonial-quote:before {
  content: "❝";
  position: absolute;
  left: 0;
  top: -12px;
  font-size: 2.1rem;
  color: #df295e;
  line-height: 1;
}
.testimonial-author {
  color: #4054b2;
  font-size: 1.02rem;
  font-weight: 600;
  margin-left: 8px;
}


@media (max-width:1024px){
  .testimonial-list {
    padding: 20px 10px 12px 14px;
    gap: 16px;
    margin: 45px;
  }
}


  
/* Placements */
.placement-support {
  background: #f7fafd;
  padding: 58px 0 34px 0;
  text-align: center;
}

.placement-support h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg,#df295e 40%, #4054b2 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.placement-intro {
  font-size: 1.18rem;
  color: #df295e;
  font-weight: 600;
  margin-bottom: 15px;
}

.job-ready {
  background: linear-gradient(90deg,#df295e,#4054b2 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 1px;
}

.placement-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 22px 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(64,84,178,0.10);
  margin-bottom: 40px;
}

.placement-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.placement-icon {
  font-size: 2.4rem;
  color: #df295e;
  min-width: 35px;
  text-align: center;
  line-height: 1.1;
}

.placement-item strong {
  color: #4054b2;
}

.placement-item div {
  color: #222a54;
  font-size: 1.08rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width:1024px){
  .placement-list {
    padding: 20px 10px 12px 14px;
    gap: 16px;
    margin: 45px;
  }
  .placement-intro {
    font-size: 1rem;
  }
}

.contact-section {
  background: #f7fafd;
  padding: 50px 0;
  font-size: 1.09rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}
.contact-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-left: 100px;
}
.contact-logo {
  height: 80px;
  margin-bottom: 15px;
}
.contact-details {
  color: #4054b2;
  line-height: 1.6;
}
.contact-details a { 
  color: #4054b2; 
  text-decoration: none; 
}

.contact-middle {
  text-align: center;
}
.contact-middle h3 {
  color: #df295e;
  font-size: 1.09rem;
  margin-bottom: 15px;
  margin-top: -90px;
}
.contact-middle ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.contact-middle li {
  margin-bottom: 10px;
}
.contact-middle a {
  color: #4054b2;
  text-decoration: none;
  font-weight: 600;
}
.contact-middle a:hover { text-decoration: underline; }

.contact-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}
.contact-right .certified-logo {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.contact-right .certified-logo img {
  width: 80px;
  height: auto;
  border-radius: 8px;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 12px;
}
.contact-social a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
.contact-social a:hover img {
  transform: scale(1.2);
}

.whatsapp { filter: invert(27%) sepia(82%) saturate(1358%) hue-rotate(108deg) brightness(90%) contrast(90%);}
/* .facebook { filter: invert(34%) sepia(92%) saturate(2257%) hue-rotate(203deg) brightness(96%) contrast(101%); } */
.linkedin { filter: invert(38%) sepia(95%) saturate(2783%) hue-rotate(185deg) brightness(91%) contrast(104%); }
.instagram { filter: invert(27%) sepia(86%) saturate(3209%) hue-rotate(308deg) brightness(96%) contrast(101%); }
.youtube { filter: invert(22%) sepia(100%) saturate(3720%) hue-rotate(354deg) brightness(92%) contrast(110%); }

@media (max-width:1024px){
  .contact-details {
    text-align: center;
    padding: 0 5px;
  }
  .contact-grid { 
    grid-template-columns: 1fr;
    text-align: center;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    gap: 28px; 
  }
  .contact-grid img { 
    display: flex;
    margin: 0;
    max-width: 180px;
    height: auto;
  }
  .contact-left {
    align-items: center;
    justify-content: center;
    margin-left: -25px;
    text-align: center;
  }
  .contact-right {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
  }
  .contact-middle {
    margin-top: 90px;
  }
  .contact-social {
    justify-content: center;
  }
  .whatsapp-btn img {
    height: 20px;
  }
}
  
/* Footer */
footer {
  background-color: #222a54;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  color: white;
}

@media (max-width:768px) {
  html, body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    position: static;
  }
  .hero, .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0;
    overflow: visible !important;
  }
  .hero::before {
    margin-top: -22px;
  }

  .hero-content h1,
  .mission-text,
  .features-item {
    width: 100% !important;
    word-break: break-word;
    text-align: center;
  }
  .hero-content h1 {
    tab-size: 2rem;
  }
  .cta-buttons, .features-list {
    width: 100% !important;
    margin: 0 !important;
  }
  .hero-logos {
    bottom: -350px;
    right: 20px;
  }
  .btn-primary, .btn-secondary, .btn-chat {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }

}

/* ===== POPUP FORM STYLING ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeIn 0.4s ease;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

.popup-content h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 20px;
}

.popup-content form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.popup-content input,
.popup-content select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.submit-btn {
  background: linear-gradient(90deg, #df295e, #8837a6, #4054b2);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.submit-btn:hover {
  opacity: 0.9;
}

/* Animation */
@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}






