.career-intro {
  max-width: 700px;
  /* margin:auto; */
  /* text-align:center; */
  margin-bottom: 50px;
}

.career-intro h2 {
  font-size: 34px;
  font-weight: 700;
  color: #003761;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.career-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.career-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #0b3d6d;
}

.career-card h4 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  color: #003761;
  margin-bottom: 20px;
}

.apply-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: #0b3d6d;
  color: #fff;
  border-radius: 6px;
}

.focus-section H2 {
  color: #003761;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.focus-card {
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-size: 15px;
  line-height: 1.6;
  color: #003761;
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0b3d6d;
  margin-bottom: 14px;
}

/* YOUTUBE VIDEO CSS */

.podcast-grid {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.podcast-content {
  flex: 2;
}

.podcast-video {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.video-card {
  width: 100%;
  max-width: 520px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Mobile */
@media (max-width: 768px) {
  .podcast-grid {
    flex-direction: column;
  }

  .podcast-video {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

/* CONTACT FORM */

.contact-wrapper {
  margin-top: 60px;
}

.contact-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
  margin-bottom: 20px;
  color: #0c2a4d;
}

.contact-person {
  color: #003761;
  font-size: 17px;
  margin-bottom: 15px;
}

.contact-item {
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-item span {
  font-weight: 600;
  color: #0c2a4d;
}

.contact-item a {
  color: #003761;
  text-decoration: none;
}

.contact-note {
  margin-top: 15px;
  line-height: 1.6;
  color: #003761;
}

.contact-actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.contact-btn {
  background: #003761;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
}

.contact-btn.whatsapp {
  background: #25D366;
}

.form-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-card h3 {
  margin-bottom: 20px;
  color: #003761;
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e4e7ec;
  border-radius: 6px;
  margin-bottom: 15px;
}

.form-card textarea {
  height: 120px;
}

.form-card button {
  background: #003761;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 6px;
}

.office-section {
  padding: 80px 0 0;
  /* background: #f7f9fb; */
}

.office-top {
  /* text-align: center; */
  padding-bottom: 40px;
}

.section-title {
  font-size: 34px;
  margin-bottom: 20px;
}

.section-title-partner {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #003761;
  position: relative;
}

.tick-list {
  list-style: none;
  padding-left: 0;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.tick-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #003761;
  font-weight: bold;
}

.section-title-partner:after {
  content: "";
  width: 60px;
  height: 3px;
  background: #003761;
  display: block;
  margin: 12px auto 0;
}

.office-details h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #003761;
}

.office-details p {
  font-size: 16px;
  line-height: 1.7;
  color: #003761;
  margin-bottom: 20px;
}

.direction-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #1c63ff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s;
}

.direction-btn:hover {
  background: #0f4ed6;
  color: #fff;
}

.full-map {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.full-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}



/* whatsapp chatbot */
.wa-widget {
  position: fixed;
  bottom: 100px;
  right: 25px;
  z-index: 9999;
  font-family: Arial;
}

.wa-button {
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.wa-button:hover {
  transform: scale(1.1);
}

.wa-box {
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  position: absolute;
  bottom: 80px;
  right: 0;
  display: none;
  animation: waFade 0.4s ease;
  overflow: hidden;
}

@keyframes waFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa-header {
  background: #25D366;
  color: #fff;
  padding: 12px;
}

.wa-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-agent img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.wa-agent span {
  font-size: 12px;
  opacity: 0.9;
}

.wa-body {
  padding: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.wa-start {
  display: block;
  margin: 0 15px 15px;
  padding: 12px;
  background: #25D366;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}


/* Execution Page CSS */
.engagement-models {
  margin-top: 60px;
}

.section-title {
  margin-bottom: 40px;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.engagement-card {
  background: #fff;
  padding: 26px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  font-size: 14px;
  line-height: 1.6;
}

.engagement-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.program {
  font-weight: 600;
  color: #0a3a5a;
  margin-bottom: 12px;
}

.engagement-card h4 {
  margin-top: 16px;
  margin-bottom: 6px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #003761;
}

.engagement-card ul {
  padding-left: 18px;
  list-style: none;
  padding-left: 0;
}

.engagement-card ul li {
  margin-bottom: 6px;
  color: #003761;
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  line-height: 1.6;
}


.engagement-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #003761;
  font-weight: 600;
  font-size: 14px;
}

@media(max-width:1000px) {
  .engagement-grid {
    grid-template-columns: 1fr;
  }
}



/* Download */
.download-section {
  padding: 90px 0;
  /* background-image: url(../images/background/gtm-network-bg.jpg);
background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
}



.download-section h2 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #003761;
}

.download-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #003761;
}

.download-section ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.download-section ul li {
  margin-bottom: 8px;
  font-size: 15px;
  color: #003761;
}

.deck-list {
  margin-bottom: 30px;
  padding-left: 20px;
}

.deck-list li {
  margin-bottom: 8px;
}


.deck-img {
  width: 100%;
  max-width: 460px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-btn {
  background: #003761;
  color: #fff;
  border: none;
  padding: 14px 26px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}



.download-section img {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}


.download-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff;
  padding: 35px;
  width: 420px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.popup-box h3 {
  margin-bottom: 15px;
}

.popup-box input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.popup-box button {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background: #003761;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}



.popup-box span {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 18px;
  cursor: pointer;
}

@media(max-width:768px) {

  .download-section {
    padding: 50px 20px;
  }

  .download-section h2 {
    font-size: 26px;
  }

  .popup-box {
    width: 90%;
  }

}


@media (max-width:768px) {

  .download-section {
    padding: 60px 20px;
    text-align: center;
  }

  .download-section h2 {
    font-size: 24px;
  }

  .deck-list {
    text-align: left;
    display: inline-block;
  }

  .deck-img {
    margin-bottom: 30px;
  }



  /* MOBILE NAV FIX */

  @media (max-width:768px) {



    .main-header .header-top-two {
      display: none;
    }

    .main-header .logo img {
      max-height: 70px;
    }

    .main-menu .navbar-header {
      width: auto;
      padding: 0;
      text-align: right;
    }

    .logo-outer {
      margin: 0;
    }

    .logo img {
      max-height: 40px;
    }

    .navbar-toggler {
      margin: 0;
      position: absolute;
      right: 15px;
      top: 20px;
      border: none;
      font-size: 24px;
    }

    /* menu container */

    .main-menu .navbar-collapse {
      /* position: absolute; */
      background: #ffffff;
      padding: 10px 0;
      margin-top: 100px;

    }

    .main-menu .collapse {
      max-height: 0;
      transition: max-height .35s ease;
      /* display: block; */
    }

    .main-menu .collapse.show {
      max-height: 500px;
    }

    /* menu list */

    .main-menu .navigation {
      width: 100%;
      display: block;
      padding: 10px 0;
    }

    /* menu items */

    .main-menu .navigation li {
      display: block;
      width: 100%;
      border-bottom: 1px solid rgba(255, 255, 255, .15);
    }

    .main-menu .navigation li:last-child {
      border-bottom: none;
    }


    /* menu links */

    .main-menu .navigation li a {
      display: block;
      padding: 12px 22px;
      font-size: 15px;
      color: #222;
      background: #003761 !important;
    }

    /* dropdown */

    .main-menu .navigation li ul {
      position: relative;
      display: block;
      width: 100%;
      box-shadow: none;
      background-color: #003761 !important;
    }

    .main-menu .navigation li ul li a {
      padding-left: 35px;
      background: #003761 !important;
    }


  }


  .main-menu .navigation li {
    position: relative;
  }

  .main-menu .navigation li .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
  }

  .main-menu .navigation li ul {
    display: none;
    background: #003761;
  }

  .main-menu .navigation li ul li a {
    padding-left: 35px;
  }

  .main-menu .navigation li.open>ul {
    display: block;
  }

  .main-menu .navigation li.dropdown>a::after {
    content: "▾";
    float: right;
  }

}



.success-box {
  display: none;
  text-align: center;
  padding: 30px;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #22c55e;
  color: #fff;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}




/* testimonial CSS */

.testimonials-page {
  padding: 50px 0;
  background: #f7f9fb;
}

.page-title-tes {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
  color: #003761;
}

.page-subtitle {
  text-align: center;
  color: #003761;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.testimonial-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #003761;
}

.testimonial-card h4 {
  font-size: 15px;
  color: #003761;
  font-weight: 600;
}

@media(max-width:768px) {

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .page-title {
    font-size: 28px;
  }


  @media (max-width:768px) {

    .about-section,
    .story-section,
    .vision-section,
    .mission-section,
    .evolution-section {
      padding: 50px 20px;
    }

  }


  .about-section img,
  .story-section img,
  .vision-section img,
  .mission-section img {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
  }


  .about-section h2,
  .story-section h2,
  .vision-section h2,
  .mission-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }


  .timeline {
    padding-left: 20px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    padding-left: 25px;
    margin-bottom: 30px;
  }

  .page-title {
    margin-top: 60px;
  }

  .form-card {
    margin-top: 30px;
  }

}


/* FAQ CSS */
.faq-page {
  /* padding:80px 0; */
  background: #f7f9fb;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 5px;
}

.faq-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #666;
}

.faq-section {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 22px;
  color: #003761;
}

.faq-item {
  background: #fff;
  border-radius: 6px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}


.faq-question {
  color: #003761;
  width: 100%;
  text-align: left;
  padding: 18px;
  font-size: 16px;
  border: none;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: 0.3s;
}

.faq-item.active .faq-question::after {
  content: "−";
}



.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 18px;
  color: #444;
  line-height: 1.6;
  transition: max-height 0.45s ease;
}

.faq-item.active .faq-answer {
  padding: 10px 18px 18px;
  max-height: 500px;
}

.faq-answer p {
  color: #003761;
}

.faq-answer ul {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.faq-answer ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #003761;
}

.faq-answer ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #003761;
  font-weight: bold;
}

.faq-quote {
  margin-top: 60px;
  margin-bottom: 60px;
  text-align: center;
  font-size: 20px;
  font-style: italic;
  color: #003761;
}



/* Privacy-Policy */

.policy-page {
  padding: 80px 0;
  background: #f7f9fb;
}

.policy-title {
  /* text-align:center; */
  font-size: 36px;
  margin-bottom: 10px;
  color: #003761;
}

.policy-date {
  /* text-align:center; */
  color: #003761;
  margin-bottom: 40px;
}

.policy-page h2 {
  margin-top: 35px;
  margin-bottom: 10px;
  font-size: 22px;
  color: #003761;
}

.policy-page p {
  line-height: 1.7;
  color: #003761;
  margin-bottom: 10px;
}

/* .policy-page ul{
padding-left:20px;
margin-bottom:15px;
} */

.policy-page ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.policy-page ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: #003761;
}

.policy-page ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #003761;
  font-weight: 600;
}


.about-img {
  width: 100%;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 20px;
  display: block;
}

.about-section p {
  margin-bottom: 15px;
}


@media (max-width:768px) {

  .about-section {
    padding: 40px 20px;
  }

  .about-section img {
    margin-top: 20px;
  }


  .leader-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .leader-img img {
    width: 200px;
    height: 200px;
  }

  .leader-content {
    padding: 0 10px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-subtitle {
    text-align: center;
    margin-top: 40px;
  }

  .team-grid {
    gap: 65px;
  }


  .page-content {
    margin-top: 0;
  }

  .card-grid,
  .dual-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .card {
    width: 100%;
    padding: 20px;
  }

  .section h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .section h3 {
    font-size: 20px;
  }

  .lead {
    font-size: 15px;
  }

  .section {
    padding: 50px 20px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }


  .dual-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .card-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 20px;
  }


  .career-grid {
    grid-template-columns: 1fr;
  }

  .career-card {
    padding: 22px;
  }

  .career-intro h2 {
    font-size: 24px;
  }

  .career-intro p {
    font-size: 15px;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }



}

/* 404 CSS */
body {
  margin: 0;
  background: #f8f9fb;
}

.not-found {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* .container {
  max-width: 700px;
} */

.error-image img {
  width: 260px;
  margin-bottom: 20px;
}

h1 {
  font-size: 90px;
  margin: 0;
  color: #1d3557;
}

h2 {
  font-size: 28px;
  margin: 10px 0;
}

p {
  color: #003761;
  margin-bottom: 30px;
}


.actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn-home {
  background: #003761;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 4px;
}

.btn-contact {
  background: #003761;
  color: #fff;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 4px;
}

@media (max-width:991px) {

  .navigation li.dropdown ul {
    display: none;
  }

}

.popup-box input {
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.popup-box input,
.iti {
  margin-bottom: 12px;
}

.popup-box input,
.iti {
  margin-bottom: 12px;
}



/* full width */
.iti {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* input styling */
.iti input {
  width: 100%;
  height: 50px i !important;
  padding-left: 90px !important;
  /* space for flag + code */
  border: none !important;
  font-size: 14px;
}

/* flag + code container */
.iti__flag-container {
  padding-left: 10px;
}

/* align flag properly */
.iti__selected-flag {
  height: 50px;
  display: flex;
  align-items: center;
}

/* dropdown styling (optional clean look) */
.iti__country-list {
  border-radius: 8px;
  font-size: 14px;
}

.error-msg {
  color: #e53935;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.input-error {
  border: 1px solid #e53935 !important;
}

.input-success {
  border: 1px solid #2e7d32 !important;
}


/* button loader */
#submitBtn {
  width: 100%;
  height: 50px;
  background: #003761;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


#deckSubmitBtn {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #003761;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  /* important */
}

#deckSubmitBtn .btn-text {
  display: block;
}

#deckSubmitBtn .btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  animation: spin 0.6s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
}


/* button text */
.btn-text {
  display: inline-block;
}

.btn-loader {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* loading state */
#submitBtn.loading .btn-text {
  display: none;
}

#deckSubmitBtn.loading .btn-text {
  visibility: hidden;
  /* better than display:none */
}


#submitBtn.loading .btn-loader {
  display: inline-block;
}

#deckSubmitBtn.loading .btn-loader {
  display: block;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.success-box {
  display: none;
  /* default hidden */
  background: #e8f5e9;
  color: #2e7d32;
  padding: 12px;
  border-radius: 6px;
  margin-top: 15px;
  font-size: 14px;
}