.top-info-bar {
    width: 100%;
    background: linear-gradient(90deg, #003366, #005999);
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.scroll-wrapper {
    display: flex;
    width: max-content;
    animation: scrollLeft 60s linear infinite;
}

.scroll-content {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    padding-right: 50px;
    font-size: 16px;
    font-weight: 500;
}

.scroll-content span i {
    color: #00eaff;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-content {
        gap: 30px;
        font-size: 14px;
    }
}

.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}


img.logo.me-2 {
    border-radius: 10px;
}

img.mb-2 {
    border-radius: 10px;
    width: 30%;
}



:root{
  --brand: #0b8fae;        /* main teal */
  --accent: #0b5ed7;       /* accent blue */
  --muted: #6b7280;
  --bg: #ffffff;
  --footer-bg: #073e3a;    /* darker footer background */
  --text-light: #ffffff;
  --tile: #ffffff;
  --base-font: 16.5px;     /* slightly increased base size */
}

/* ---------- Global ---------- */
*{box-sizing:border-box}
html {font-size: 100%;} /* keep rem sane */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /* font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; */
  font-size: var(--base-font);
  line-height: 1.55;
  margin: 0;
  color: #102433;
  background: var(--bg);
}

/* Links + hover underline */
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 2px; }

/* ---------- Top Bar ---------- */
.topbar{
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,0.06);
  font-size: 0.95rem;
  display: none;
}
.topbar .fa { color: var(--muted); }

/* ---------- Navbar ---------- */
#mainNavbar {
    /* padding: 12px 0; */
    transition: box-shadow .25s 
ease;
    background: linear-gradient(180deg, var(--footer-bg), #052423) !important;
}
#mainNavbar .logo { height: 46px; }
#mainNavbar .brand-text { font-weight: 700; color: var(--brand); font-size: 1.1rem; }
.navbar .nav-link {
  font-weight: 600;
  color: white;
  padding: .75rem .85rem;
  transition: all .22s ease;
  font-size: 1rem; /* slightly larger */
}
@media (max-width: 576px) {
    #mainNavbar .brand-text {
        font-weight: 700;
        color: var(--brand);
        font-size: 0.88rem;
    }
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* sticky */
.sticky { position: fixed; top: 0; left:0; right:0; z-index: 1030; box-shadow: 0 8px 30px rgba(0,0,0,0.08); }

/* ---------- Hero ---------- */
.hero-wrapper { position: relative; overflow: hidden; }
.hero-slide { height: 520px; background-size: cover; background-position: center; }
@media (max-width: 991.98px) { .hero-slide { height: 420px; } }

.hero-content { z-index: 3; padding-top: 30px; padding-bottom: 30px; }
.hero-content h1 { color: #fff; font-size: 2.6rem; line-height: 1.05; }
.hero-content p.lead { color: rgba(255,255,255,0.95); font-size: 1.05rem; }

/* ---------- Appointment card ---------- */

/* .appointment-card {
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 50px;
}
@media (min-width: 992px) { .appointment-card { transform: translateY(-60px); } }
.appointment-card .form-control, .appointment-card .form-select { border-radius: 8px; padding: .6rem .8rem; } */

/* Wrapper to place it at right-mid */
.appointment-wrapper {
  position: absolute;
  top: 50%;
  /* right: -245px; */
  transform: translateY(-50%);
  width: 135%;
  top: -65px;
}

/* Card size about ¾ of original full width */
.appointment-card {
  width: 100%;
  max-width: 300px;  /* smaller width */
  border: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.90);  /* slightly transparent like their style */
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.appointment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* FIX APPOINTMENT CARD OVERLAP IN MOBILE */
@media (max-width: 768px) {

  .hero-wrapper {
    padding-bottom: 100px;
  }

  .appointment-wrapper {
    position: relative;
    top: 0;
    transform: none;
    z-index: 999;
  }

  .appointment-card {
    position: relative;
    z-index: 999;
    margin: 20px auto;
  }

}SS

/* Gradient title */
.text-gradient {
  background: linear-gradient(90deg, #1d4ed8, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Inputs adjustment */
.form-control, .form-select {
  /* font-size: 5px; */
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background-color: #fff;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: #10b981;
  box-shadow: 0 0 4px rgba(16, 185, 129, 0.4);
}

/* Button styling */
.btn-appointment {
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 25px;
  background: linear-gradient(135deg, #10b981, #34d399);
  color: #fff;
  font-size: 0.9rem;
  padding: 0.55rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-appointment:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.5);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -65%;
  width: 35%;
  height: 100%;
  background: rgba(255,255,255,0.25);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
}

.btn-appointment:hover .btn-glow {
  left: 115%;
}

/* Card body padding reduced */
.card-body {
  padding: 0.7rem !important;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .appointment-wrapper {
    position: static;
    transform: none;
    margin: 1.5rem auto;
    right: auto;
  }
  .col-md-5 {
    margin: 0 auto;
  }
}
@media (max-width: 991.98px) {
    .appointment-card {
        max-width: 55% !important;
    }
}


/* ---------- Info Cards ---------- */
/* .info-card { border-radius: 12px; border: 1px solid rgba(13,27,50,.06); background: #fff; transition: all .25s ease; padding: 28px; }
.info-card .icon i { font-size: 30px; color: var(--brand); }
.info-card h6 { font-size: 1.05rem; margin-top: .4rem; margin-bottom: .4rem; } */

/* INFO CARDS SECTION */
.info-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(13, 27, 50, 0.08);
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 153, 255, 0.1), rgba(0, 255, 204, 0.15));
  transition: all 0.5s ease;
}

.info-card:hover::before {
  left: 100%;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 153, 255, 0.2);
}

.info-card .icon {
  color: #0078ff;
  background: rgba(0, 120, 255, 0.1);
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.info-card:hover .icon {
  background: #0078ff;
  color: #fff;
  transform: rotate(10deg) scale(1.1);
}

.info-card h6 {
  font-weight: 600;
  color: #0d1b32;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.info-card p {
  color: #6c757d;
  font-size: 0.9rem;
}

/* Section heading styling */
.section-heading {
  font-weight: 700;
  font-size: 1.8rem;
  color: #0d1b32;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  position: relative;
}

.section-heading::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #0078ff;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 2px;
}


/* ---------- Section heading (stylish) ---------- */
.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  position: relative;
  display: inline-block;
  /* padding-bottom: 10px;
  margin-bottom: 18px; */
}
.section-heading::after {
  content: "";
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  display: block;
  margin: 8px auto 0;
  border-radius: 3px;
}

/* ---------- Services ---------- */
.services .service-tile {
  background: var(--tile);
  border-radius: 14px;
  border: 1px solid rgba(13,27,50,0.06);
  padding: 18px 12px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 110px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .22s ease;
  text-align: center;
}
.services .tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #e7f7fb;
}
.services .tile-icon i { color: var(--brand); font-size: 22px; }
.services .tile-label { display: block; margin-top: 6px; font-size: 0.98rem; color: #22343a; }

/* hover: color change + underline */
.services .service-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 38px rgba(13,27,50,0.08);
  background: linear-gradient(180deg,#ffffff,#f2fbff);
  color: var(--brand);
}
.services .service-tile:hover .tile-label {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* ---------- About / counters ---------- */
.history-section img { border-radius: 12px; box-shadow: 0 16px 40px rgba(13,27,50,0.12); }
.stat-card { border-radius: 12px; border: 1px solid rgba(13,27,50,0.06); background: #fff; padding: 18px; }
.counter { font-size: 2rem; color: var(--brand); font-weight: 700; }

/* ---------- Doctors ---------- */
.doctor-card { border-radius: 12px; overflow: hidden; background: #fff; transition: transform .25s ease; }
.doctor-card .card-img-top { height: 420px; object-fit: cover; }

/* ---------- Departments ---------- */
.dept-card { font-size: 22px; border-radius: 12px; border: 1px solid rgba(13,27,50,0.06); background: #073e3a; color: white; padding: 14px; transition: transform .25s ease; }
.dept-card img { height: 80px; object-fit: contain; margin: 0 auto; display: none;}

/* ---------- Gallery ---------- */
.gallery-img { border-radius: 12px;  object-fit: cover; width: 100%; height: 178px; transition: transform .25s ease; }
.gallery-img:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,27,50,0.12); }

/* ---------- News ---------- */
.news-card { background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid rgba(13,27,50,0.06); transition: transform .25s ease; }
.news-card img { height: 170px; object-fit: cover; width: 100%; }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,27,50,0.08); }

/* ---------- Footer ---------- */
.footer-section {
  background: linear-gradient(180deg, var(--footer-bg), #052423);
  padding: 42px 0;
  color: var(--text-light);
}
.footer-title { color: #fff; font-weight: 700; margin-bottom: 12px; }
.footer-contact li { margin-bottom: 8px; color: rgba(255,255,255,0.9); }
.social-links a { display: inline-flex; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: 8px; background: rgba(255,255,255,0.06); color: #fff; margin-right: 8px; transition: transform .2s ease; }
.social-links a:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); }

/* Footer bottom */
.footer-bottom { gap: 12px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 14px; margin-top: 18px; }
.footer-bottom .left small { color: rgba(255,255,255,0.9); }
.footer-bottom .right small { color: rgba(255,255,255,0.85); }

/* inline back to top button */
.back-to-top {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items:center; justify-content:center;
  background: #fff; color: var(--footer-bg); border: none; cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}
.back-to-top i { font-size: 14px; }

/* Fade-in helper */
section, header { opacity: 0; transform: translateY(18px); transition: all 1s ; }
.fade-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hero-content h1 { font-size: 1.9rem; }
  .hero-content { padding: 20px 0; }
  .appointment-card { max-width: 100%; transform: none; }
  .services .tile-icon { width: 48px; height: 48px; }
  .counter { font-size: 1.6rem; }
  .footer-section { padding: 30px 0; }
}


/* facilities */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  /* background-color: #0b1020; */
  /* color: #fff; */
}

.facilities-section {
  text-align: center;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
}

.facilities-section h2 {
  font-size: 2.5rem;
  color: var(--brand);
  margin-bottom: 10px;
}

.facilities-section p {
  color: #cfd4e3;
  margin-bottom: 50px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Facility Card Base */
.facility-card {
  position: relative;
  height: 400px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease;
}

.facility-card:hover {
  transform: scale(1.03);
}

.facility-card .overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.55); */
  transition: background 0.3s ease;
}

.facility-card:hover .overlay {
  /* background: rgba(0, 0, 0, 0.35); */
}

.facility-card .text {
  position: relative;
    z-index: 2;
    padding: 3px;
    background-color: white;
    border-top-right-radius: 10px;
}

.facility-card h3 {
  color: #5b4747;
  font-size: 1.6rem;
  /* margin-bottom: 10px; */
}

.facility-card p {
  color: #e4e7f2;
  font-size: 1rem;
  line-height: 1.6;
}

/* Individual Images */
.facility-card.emergency {
  /* background-image: url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3?auto=format&fit=crop&w=1200&q=80'); */
  background-image: url('images/facilities-x-ray.JPG');
}

.facility-card.doctors {
  background-image: url('images/facilities-dialysis.JPG');
}

.facility-card.pharmacy {
  background-image: url('images/facilities-laminar.JPG');
}

.facility-card.lab {
  background-image: url('images/facilities-icu.JPG');
}

.facility-card.rooms {
  background-image: url('images/facilities-inph.JPG');
}

.facility-card.lab1 {
  background-image: url('images/facilities-lab.jpg');
}

.facility-card.babycare {
  background-image: url('images/facilities-pharmacy.JPG');
}


/* Responsive */
@media (max-width: 768px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }
  .facility-card {
    height: 260px;
  }
}

/* schemes */

schemes body {
    background: linear-gradient(135deg, #dff1ff, #ffffff);
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-weight: 700;
    font-size: 40px;
    color: #003366;
}

/* Tabs */
.tab-btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    background: #ffffff70;
    backdrop-filter: blur(8px);
    border: 1px solid #ffffff99;
    transition: 0.4s;
    cursor: pointer;
    font-size: 16px;
}

.tab-btn.active {
    background: #003366;
    color: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

/* Insurance Card */
.insurance-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: 0.4s ease;
}

.insurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

/* Image */
.card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* Badge */
.badge-premium {
    background: #003366;
    color: white;
    border-radius: 12px;
    padding: 6px 12px;
    font-size: 12px;
    position: absolute;
    margin: 10px;
}

/* Fade Animation */
.fade-in {
    animation: fadeEffect 1 ease;
}

@keyframes fadeEffect {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --------------------- */
/*   RESPONSIVE DESIGN   */
/* --------------------- */

@media (max-width: 768px) {
    .section-title {
        font-size: 30px;
    }
    .card-img {
        height: 150px;
    }
    .tab-btn {
        padding: 8px 18px;
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .section-title {
        font-size: 26px;
    }
    .card-img {
        height: 140px;
    }
    .insurance-card h4 {
        font-size: 18px;
    }
    .insurance-card p {
        font-size: 14px;
    }
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}


    /* ====== BASIC RESET ====== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    academic body {
      font-family: 'Poppins', sans-serif;
      background: #f9fafc;
      color: #333;
    }

       .academic-section {
  background-image: url("images/academic-bg.jpg"); /* Change to your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: #fff; /* Change text color for visibility */
  text-align: center;
  position: relative;
}

/* Optional: Add a transparent overlay for readability */
.academic-section::before {
  content: "";
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 0;
}

.academic-section * {
  /* position: relative; */

}

 

    /* ====== SECTION STYLING ====== */
    .courses-section {
      padding: 80px 10%;
      /* background: linear-gradient(135deg, #e0f7fa, #ffffff); */
      text-align: center;
      /* background-image: url('academic-bg.JPG'); */
    }

    .courses-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      /* color: #1c1c1c; */
      color: darkblue;
      margin-bottom: 10px;
    }
    .courses-section-div {
    background: #f9f9f9;
    border-radius: 150px;
}

    .courses-section p {
      font-size: 1rem;
      color: #555;
      /* color: black; */
      margin-bottom: 50px;
    }

    /* ====== GRID LAYOUT ====== */
    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
      gap: 30px;
    }

    /* ====== CARD DESIGN ====== */
    .course-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: all 0.4s ease;
      transform: translateY(30px);
      opacity: 0;
      cursor: pointer;
    }

    .course-card.show {
      transform: translateY(0);
      opacity: 1;
    }

    .course-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }

    .course-image img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .course-content {
      padding: 20px;
    }

    .course-content h3 {
      font-size: 1.3rem;
      /* color: #222; */
      color: darkgreen;
      margin-bottom: 10px;
    }

    .course-content p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .course-btn {
      display: inline-block;
      background: linear-gradient(135deg, #2575fc, #6a11cb);
      color: #fff;
      padding: 10px 18px;
      border-radius: 25px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .course-btn:hover {
      background: linear-gradient(135deg, #6a11cb, #2575fc);
    }

    @media (max-width: 768px) {
      .courses-section {
        padding: 60px 6%;
      }

      .courses-section h2 {
        font-size: 2rem;
      }
    }








/* ====== RESPONSIVE MEDIA QUERIES ====== */
@media (max-width: 991.98px) {
  .hero-slide { height: 400px; }
  .hero-content h1 { font-size: 2rem; }
  .facilities-section, .courses-section { padding: 60px 6%; }
}

@media (max-width: 768px) {
  .hero-slide { height: 350px; }
  .info-card .icon { width: 60px; height: 60px; font-size: 1.2rem; }
  .facilities-section h2, .courses-section h2 { font-size: 2rem; }
  .facility-card, .course-card { max-width: 100%; }
}

@media (max-width: 576px) {
  body { font-size: 15px; }
  .hero-content h1 { font-size: 1.7rem; }
  .section-heading { font-size: 1.3rem; }
  .info-card { padding: 20px; }
  .info-card .icon { width: 55px; height: 55px; font-size: 18px; }
  .facilities-grid, .courses-grid { gap: 20px; }
}

@media (max-width: 991.98px) {
  .navbar {
    background: #0b8fae !important; /* or #fff if you want white background */
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    background-color: #0078ff !important; /* choose your preferred color */
    color: #fff !important;
    border-color: #0078ff !important; /* optional: match border */
    font-size: unset !important; /* removes Bootstrap’s default font-size */
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }

  .navbar-toggler-icon {
    filter: invert(1); /* make icon white */
  }
}




.whatsapp-body {
    font-family: Arial, sans-serif;
    position: relative;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
    width: 54px;
    height: 54px;
    border-radius: 21px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 1s;
}