* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ================= TOP HEADER ================= */
.top-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100;

  background: rgba(0, 82, 204, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 25px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  min-height: 40px;
}

/* Left */
.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.top-left a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Center */
.top-center {
  flex: 1;
  text-align: center;
}

.top-center p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0 10px;
}

/* Right */
.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-right a {
  color: #fff;
  font-size: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-right a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    gap: 6px;
    padding: 6px 12px;
    text-align: center;
  }

  .top-left,
  .top-right {
    justify-content: center;
  }

  .top-center p {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .top-center p {
    font-size: 11.5px;
  }
}



/* Hero Slider Styles */
.hero {
  position: relative;
  overflow: hidden;
  background: #f5f9ff;
  padding-bottom: 60px;
  top: 50px;
}

.hero-slides {
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 50px;
  padding: 120px 6% 0;
}

/* Trust Row */
.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.trust-row span {
  font-size: 14px;
  color: #333;
}

/* Content */
.hero-content h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
  background: linear-gradient(90deg,#1a5cff,#00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content h1 span {
  color: #1a5cff;
}

.hero-content p {
  font-size: 16px;
  color: #555;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  background: linear-gradient(90deg,#1a5cff,#00c6ff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
}

.hero-btn:hover {
  background: linear-gradient(90deg,#00c6ff,#1a5cff);
  transform: translateY(-2px);
}

/* Image */
.hero-image img {
  width: 100%;
  border-radius: 20px;
  border: 5px solid #1a5cff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Controls */
.hero-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.hero-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 22px;
  cursor: pointer;
  background: #1a5cff;
  color: #fff;
}

.dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cddcff;
  cursor: pointer;
}

.dot.active {
  background: #1a5cff;
}

/* Responsive */
@media (max-width:991px){
  .hero-inner{
    grid-template-columns:1fr;
    text-align:center;
  }
  .avatars img{
    width:30px;
    height:30px;
  }
}


/* ================= WHY CHOOSE US ================= */
/* ================= WHY CHOOSE US SECTION ================= */
.why-choose-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a5cff; /* crimson theme */
  margin-bottom: 50px;
  position: relative;
}

.why-choose-us h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #1a5cff;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Cards Container */
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual Card */
.why-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

/* Card Head */
.why-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.why-icon {
  font-size: 2.5rem;
  color: #1a5cff;
  flex-shrink: 0;
  background: #ffe5e8;
  padding: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.why-card:hover .why-icon {
  background: #061d58;
  color: #fff;
  transform: scale(1.1);
}

.why-head h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  text-align: left;
}

/* Card Paragraph */
.why-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  text-align: left;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .why-choose-us h2 {
    font-size: 2.4rem;
  }

  .why-card {
    padding: 20px 18px;
  }
}

@media (max-width: 768px) {
  .why-choose-us {
    padding: 50px 15px;
  }

  .why-choose-us h2 {
    font-size: 2rem;
  }

  .why-head h3 {
    font-size: 1.15rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .why-choose-us h2 {
    font-size: 1.8rem;
  }

  .why-cards {
    gap: 20px;
  }

  .why-card {
    padding: 18px 15px;
  }

  .why-head h3 {
    font-size: 1rem;
  }

  .why-card p {
    font-size: 0.85rem;
  }
}

/* .courses-section */

.courses-section {
  background: #049669;
  padding: 70px 20px;
  color: #fff;
  text-align: center;
}

.section-tag {
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.9;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  margin: 10px 0 50px;
}

.courses-wrapper {
  position: relative;
  max-width: 1400px;
  margin: auto;
}

.courses-container {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.courses-container::-webkit-scrollbar {
  display: none;
}

.course-card {
  min-width: 280px;
  background: #fff;
  color: #000;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.course-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.course-content {
  padding: 18px;
  text-align: left;
}

.rating {
  font-size: 14px;
  color: #ff9800;
  margin-bottom: 8px;
}

.course-content h3 {
  font-size: 18px;
  font-weight: 600;
}

.duration {
  display: block;
  font-size: 14px;
  color: #555;
  margin: 6px 0;
}

.tag {
  display: inline-block;
  background: #e8f0ff;
  color: #1f4fd8;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 12px;
}

.course-btn {
  width: 100%;
  padding: 10px;
  border: 1px solid #1f4fd8;
  background: transparent;
  color: #1f4fd8;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
}

.course-btn:hover {
  background: #1f4fd8;
  color: #fff;
}

/* Arrow Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.nav-btn.left { left: -20px; }
.nav-btn.right { right: -20px; }

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 70px 20px;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.about-tag {
  color: #1f4fd8;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}

.about-content h2 {
  font-size: 34px;
  margin: 10px 0 18px;
  color: #0a2540;
}

.about-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
  text-align: left; /* Ensure left alignment */
}

/* Counters */
.about-counters {
  display: flex;
  gap: 30px;
  flex-wrap: wrap; /* Wrap counters on small screens */
}

.counter-box h3 {
  font-size: 28px;
  color: #1f4fd8;
  margin-bottom: 4px;
}

.counter-box p {
  font-size: 14px;
  color: #555;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr; /* Stack image and content */
  }

  .about-content {
    text-align: left; /* Keep left alignment */
    padding: 0 20px;
  }

  .about-counters {
    justify-content: flex-start; /* Left align counters */
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 50px 15px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 14px;
  }

  .about-counters {
    gap: 20px;
  }

  .counter-box h3 {
    font-size: 24px;
  }

  .counter-box p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 10px;
  }

  .about-content h2 {
    font-size: 24px;
  }

  .about-content p {
    font-size: 13px;
  }

  .about-counters {
    flex-direction: column; /* Stack counters vertically */
    gap: 15px;
  }

  .counter-box h3 {
    font-size: 22px;
  }

  .counter-box p {
    font-size: 12px;
  }
}


/* .single-image-section */

.single-image-section {
  padding: 60px 20px;
  background: #ffffff;
}

.image-wrapper {
  max-width: 1200px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .single-image-section {
    padding: 40px 15px;
  }

  .image-wrapper {
    border-radius: 14px;
  }
}


/* Certificate Benefits Section */
.certificate-benefits-section {
  padding: 80px 20px;
  background: #fff; /* Plain background */
  color: #0a2540;
}

.benefits-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px; /* increased gap for more spacing */
  flex-wrap: wrap;
}

.benefits-content {
  flex: 1;
  min-width: 280px;
  margin-right: 5px; /* move contents slightly left */
}


.benefits-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.benefits-content p {
  font-size: 18px;
  margin-bottom: 15px;
}

.benefits-content ul {
  list-style: disc inside;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.benefits-content ul li {
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  background: #1f4fd8;
  color: #fff;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #3aa0f3;
}

/* Right Image */
.benefits-image {
  flex: 0 0 250px;
  text-align: center;
}

.benefits-image img {
  width: 500px;   /* increased size */
  height: 500px;  /* increased size */
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transform: none; /* removed rotation */
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .benefits-image img {
    width: 200px;  /* increased size */
    height: 200px; /* increased size */
  }
}


/* Responsive */
@media (max-width: 768px) {
  .certificate-benefits-section {
    padding: 60px 15px;
  }
  .benefits-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .benefits-image {
    margin-top: 30px;
    flex: 1;
  }
  .benefits-content h2 {
    font-size: 28px;
  }
  .benefits-content p,
  .benefits-content ul li {
    font-size: 15px;
  }
  .cta-button {
    padding: 10px 22px;
  }
}

@media (max-width: 480px) {
  .benefits-content h2 {
    font-size: 24px;
  }
  .benefits-content p,
  .benefits-content ul li {
    font-size: 14px;
  }
  .cta-button {
    padding: 8px 18px;
  }
  .benefits-image img {
    width: 150px;
    height: 150px;
  }
}





/* .certificate-section */
/* .certificate-section */
.certificate-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1f4fd8, #3aa0f3); /* Blue gradient */
  color: #fff; /* Text readable on gradient */
}

.certificate-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.certificate-steps h2 {
  font-size: 32px;
  margin-bottom: 40px;
  line-height: 1.3;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-left: 0; /* removed extra padding for line */
  margin-bottom: 30px;
}

/* Remove the vertical line */
/* .step::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 40px;
  width: 4px;
  height: calc(100% - 40px);
  background: #fff;
}

.step:last-child::before {
  display: none;
} */

.step-number {
  background-color: #fff;
  color: #1f4fd8;
  font-weight: 700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #fff;
}

.step-content p {
  color: #f0f0f0;
  font-size: 15px;
  line-height: 1.6;
}

.certificate-image {
  display: flex;
  justify-content: flex-end; /* move image more to right */
}

.certificate-image img {
  width: 90%;
  border-radius: 18px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .certificate-container {
    grid-template-columns: 1fr;
    text-align: left; /* Align text left on smaller screens */
  }
  .step {
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 0;
  }
  .certificate-image {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .certificate-section {
    padding: 60px 15px;
  }
  .certificate-steps h2 {
    font-size: 28px;
    text-align: left; /* Ensure heading aligns left */
  }
  .step-content h3,
  .step-content p {
    text-align: left; /* Align step text left */
  }
  .step-content h3 {
    font-size: 18px;
  }
  .step-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .certificate-steps h2 {
    font-size: 24px;
    text-align: left;
  }
  .step-content h3,
  .step-content p {
    text-align: left;
  }
  .step-content h3 {
    font-size: 16px;
  }
  .step-content p {
    font-size: 13px;
  }
}







/* .testimonial-videos */

.testimonial-videos {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.testimonial-videos h2 {
  color: #1f4fd8;
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: 700;
}

.video-slider {
  display: flex;
  overflow-x: hidden;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 20px;
}

.video-card {
  min-width: 300px;
  border: 2px solid #1f4fd8;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.video-card iframe {
  width: 100%;
  height: 200px;
}

.slider-buttons {
  margin-top: 10px;
}

.slider-buttons button {
  background: #1f4fd8;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.slider-buttons button:hover {
  background: #0c2465;
}

/*  */




/* ===============================
   STUDENT TESTIMONIALS
================================ */

.testimonials-section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1f4fd8;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.student-name {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.student-location {
  font-size: 14px;
  color: #777;
}









/* FOOTER */

.footer {
  background: #0c0f1a;
  color: #dcdcdc;
  font-family: 'Poppins', sans-serif;
}

/* ===== STATE QUICK LINKS ===== */
.footer-states {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-states h4 {
  color: #1f4fd8;
  margin-bottom: 20px;
}

.state-links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 30px;
}

.state-links a {
  color: #cccccc;
  font-size: 13px;
  text-decoration: none;
}

.state-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== MAIN GRID ===== */
.footer-grid {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* COMMON */
.footer-col h4 {
  color: #1f4fd8;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #ffffff;
}

/* BRAND */
.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-col h3 {
  color: #1f4fd8;
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #1f4fd8;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  color: #555;
}

.footer-bottom p {
  margin: 0 0 5px 0;
}

.footer-link {
  color: #1a5cff; /* crimson theme */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-link:hover {
  color: #1a5cff;
  text-decoration: underline;
}

.footer-links {
  font-size: 13px;
  color: #555;
}

.footer-links span {
  margin: 0 5px;
}




/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .state-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .state-links {
    grid-template-columns: 1fr;
  }
}



/* ===============================
   ENROLL NOW MODAL – PROFENAA
================================ */

.enroll-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Modal Box */
.enroll-box {
  background: #ffffff;
  width: 90%;
  max-width: 420px;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  animation: popUp 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.enroll-box h2 {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 5px;
}

.enroll-box p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* Form Fields */
.enroll-box input,
.enroll-box select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

/* Submit Button */
.enroll-box button {
  width: 100%;
  padding: 12px;
  background:    #1a5cff;
  color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.enroll-box button:hover {
  background: #15723b;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  cursor: pointer;
  color: #555;
}

/* Animation */
@keyframes popUp {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .enroll-box {
    padding: 25px 20px;
  }
}