/* ==========================================================================
   Cleanure Laundry Services — shared styles
   ========================================================================== */

:root {
  --green: #72c3a2;
  --green-dark: #5aab89;
  --green-darker: #458a6c;
  --green-light: #eaf6f1;
  --green-light-2: #f3faf7;
  --ink: #3f3f3f;
  --ink-soft: #6d6d6d;
  --gray-border: #e7e7e7;
  --footer-bg: #3f3f3f;
  --font-display: "Baloo 2", "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;
}

* {
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5,
.display-font {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
}

.text-green {
  color: var(--green) !important;
}

.bg-green-light {
  background-color: var(--green-light);
}

.bg-green-light-2 {
  background-color: var(--green-light-2);
}

.section-pad {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (max-width: 767.98px) {
  .section-pad {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--green);
}

/* ---------- Buttons ---------- */
.btn-cleanure {
  background-color: var(--green);
  border: 1px solid var(--green);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.85rem 1.75rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cleanure:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-cleanure-outline {
  background-color: transparent;
  border: 1px solid var(--gray-border);
  color: var(--ink);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.85rem 1.75rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cleanure-outline:hover {
  border-color: var(--green);
  color: var(--green-darker);
  transform: translateY(-1px);
}

.btn-cleanure-white {
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--green-darker);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.85rem 1.75rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cleanure-white:hover {
  transform: translateY(-1px);
  color: var(--green-darker);
}

/* ---------- Navbar ---------- */
.navbar-cleanure {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  background: #fff;
  border-bottom: 1px solid var(--gray-border);
}

.navbar-brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
  overflow: hidden;
}

.navbar-brand-logo img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.footer-cleanure .navbar-brand-logo {
  border-color: rgba(255,255,255,0.15);
}

.brand-text-block {
  line-height: 1.05;
}

.brand-text-block .brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
}

.brand-text-block .brand-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--green);
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.5rem 1rem;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.15rem;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--ink);
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-link::after {
    left: 1rem;
    right: auto;
    width: 28px;
  }
}

.nav-phone-btn {
  background-color: var(--green);
  color: #fff;
  border-radius: 50px;
  padding: 0.65rem 1.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.nav-phone-btn:hover {
  background-color: var(--green-dark);
  color: #fff;
}

/* ---------- Animated hamburger toggler ---------- */
.navbar-toggler.custom-toggler {
  border: none;
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

/* Bootstrap hides .navbar-toggler at >=992px via .navbar-expand-lg;
   only force flex layout below that breakpoint so it stays hidden on desktop */
@media (max-width: 991.98px) {
  .navbar-toggler.custom-toggler {
    display: inline-flex;
  }
}

.navbar-toggler.custom-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler.custom-toggler .hamburger-box {
  position: relative;
  width: 20px;
  height: 14px;
  display: inline-block;
}

.navbar-toggler.custom-toggler .hamburger-line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--green-darker);
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.navbar-toggler.custom-toggler .hamburger-line.line1 { top: 0; }
.navbar-toggler.custom-toggler .hamburger-line.line2 { top: 6px; }
.navbar-toggler.custom-toggler .hamburger-line.line3 { top: 12px; }

.navbar-toggler.custom-toggler[aria-expanded="true"] .hamburger-line.line1 {
  top: 6px;
  transform: rotate(45deg);
}

.navbar-toggler.custom-toggler[aria-expanded="true"] .hamburger-line.line2 {
  opacity: 0;
}

.navbar-toggler.custom-toggler[aria-expanded="true"] .hamburger-line.line3 {
  top: 6px;
  transform: rotate(-45deg);
}

/* ---------- Mobile / tablet dropdown menu animation ---------- */
@media (max-width: 991.98px) {
  #navMain.collapsing {
    transition: height 0.3s ease;
  }

  #navMain .navbar-nav {
    padding-top: 0.5rem;
  }

  #navMain .navbar-nav .nav-item,
  #navMain .nav-phone-btn {
    opacity: 0;
    transform: translateY(-8px);
  }

  #navMain.show .navbar-nav .nav-item,
  #navMain.show .nav-phone-btn {
    animation: navItemIn 0.35s ease forwards;
  }

  #navMain.show .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.05s; }
  #navMain.show .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.1s; }
  #navMain.show .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.15s; }
  #navMain.show .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.2s; }
  #navMain.show .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.25s; }
  #navMain.show .nav-phone-btn { animation-delay: 0.3s; }

  #navMain .nav-phone-btn {
    justify-content: center;
    margin-top: 0.5rem;
  }
}

@keyframes navItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--gray-border);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-darker);
}

.hero h1 {
  font-size: 3.4rem;
  line-height: 1.05;
}

@media (max-width: 991.98px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

.hero-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-checks li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.hero-checks i {
  color: var(--green);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  border-radius: 1.5rem;
  width: 100%;
  object-fit: cover;
  height: 420px;
}

.hero-price-card {
  position: absolute;
  bottom: -1.5rem;
  left: 1.5rem;
  background: #fff;
  border-radius: 1.1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 260px;
}

.hero-price-card .icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.hero-price-card .price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1;
}

.hero-price-card .price small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hero-price-card .cap {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* ---------- Marquee ---------- */
.marquee-strip {
  background: var(--green-light);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  overflow: hidden;
  padding: 1.1rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: var(--green-darker);
  text-transform: uppercase;
  padding: 0 2.25rem;
  white-space: nowrap;
}

.marquee-track span i {
  color: var(--green);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Service cards ---------- */
.service-card {
  background: var(--green-light-2);
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(0,0,0,0.08);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card .service-card-body {
  padding: 0 1.5rem 1.75rem;
  position: relative;
}

.service-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-top: -26px;
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(76,174,134,0.35);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.feature-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(114,195,162,0.35);
}

/* ---------- Pricing ---------- */
.price-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 2.25rem 2rem;
  height: 100%;
  border: 1px solid var(--gray-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(0,0,0,0.08);
}

.price-card.featured {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  transform: scale(1.04);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.price-icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.price-card.featured .price-icon-badge {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.price-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  color: inherit;
}

.price-card .price-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.6rem;
  color: inherit;
  line-height: 1;
}

.price-card .price-amount span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
}

.price-card .price-note {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin: 0.5rem 0 1.5rem;
}

.price-card.featured .price-note {
  color: rgba(255,255,255,0.9);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: 0.93rem;
  color: inherit;
}

.price-card ul li i {
  color: var(--green);
  margin-top: 0.2rem;
}

.price-card.featured ul li i {
  color: #fff;
}

.price-card .btn-cleanure,
.price-card .btn-cleanure-white {
  width: 100%;
  justify-content: center;
}

/* ---------- Service area ---------- */
.area-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--green-light);
  border-radius: 0.9rem;
  padding: 1rem 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.area-pill i {
  color: var(--green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.area-image-wrap {
  position: relative;
}

.area-image-wrap img {
  border-radius: 1.5rem;
  width: 100%;
  object-fit: cover;
  height: 420px;
}

.area-caption-card {
  position: absolute;
  bottom: -1.25rem;
  left: 1.5rem;
  right: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}

.area-caption-card i {
  color: var(--green);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- Contact ---------- */
.contact-card {
  background: #fff;
  border-radius: 1.25rem;
  border: 1px solid var(--gray-border);
  padding: 2.25rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-row .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-row h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  color: var(--ink);
}

.contact-row p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.map-frame {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  height: 100%;
  min-height: 360px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green-light);
  border-radius: 1.5rem;
  padding: 3rem;
}

@media (max-width: 767.98px) {
  .cta-band {
    padding: 2rem;
    text-align: center;
  }
  .cta-band .d-flex {
    justify-content: center;
  }
}

/* ---------- Footer ---------- */
.footer-cleanure {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 0;
}

.footer-cleanure h5 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-cleanure .brand-name {
  color: #fff;
}

.footer-cleanure .brand-sub {
  color: var(--green);
}

.footer-cleanure a {
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 0.7rem;
  transition: color 0.2s ease;
}

.footer-cleanure a:hover {
  color: #fff;
}

.footer-cleanure .footer-contact-row {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
  font-size: 0.92rem;
}

.footer-cleanure .footer-contact-row i {
  color: var(--green);
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  font-size: 0.85rem;
}

/* ---------- Service detail blocks (services.html) ---------- */
.service-detail-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1.5rem;
}

.service-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-detail h2 {
  font-size: 2.2rem;
}

.service-detail .tagline {
  color: var(--green);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
}

.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.service-detail ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.service-detail ul li i {
  color: var(--green);
  margin-top: 0.2rem;
}

/* ---------- FAQ ---------- */
.accordion-cleanure .accordion-item {
  border: 1px solid var(--gray-border);
  border-radius: 1rem !important;
  overflow: hidden;
  margin-bottom: 1rem;
}

.accordion-cleanure .accordion-button {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--ink);
}

.accordion-cleanure .accordion-button:not(.collapsed) {
  background-color: var(--green-light);
  color: var(--green-darker);
  box-shadow: none;
}

.accordion-cleanure .accordion-button:focus {
  box-shadow: none;
  border-color: var(--gray-border);
}

/* ---------- Contact modal ---------- */
.modal-cleanure .modal-content {
  border: none;
  border-radius: 1.5rem;
  overflow: hidden;
}

.modal-cleanure .modal-header {
  border-bottom: 1px solid var(--gray-border);
  padding: 1.75rem 1.75rem 1.25rem;
  align-items: flex-start;
}

.modal-cleanure .modal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
}

.modal-cleanure .modal-title-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 0.35rem;
}

.modal-cleanure .btn-close {
  margin-top: 0.35rem;
}

.modal-cleanure .btn-close:focus {
  box-shadow: none;
}

.modal-cleanure .modal-body {
  padding: 1.75rem;
}

.modal-cleanure .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.modal-cleanure .form-control {
  border-radius: 0.85rem;
  border: 1px solid var(--gray-border);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.modal-cleanure .form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(114, 195, 162, 0.22);
}

.modal-cleanure .form-control.is-invalid {
  border-color: #e0685f;
}

.modal-cleanure .invalid-feedback {
  font-size: 0.8rem;
}

.modal-cleanure textarea.form-control {
  resize: none;
}

.modal-cleanure .cf-hours {
  background: var(--green-light);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.modal-cleanure .cf-hours strong {
  color: var(--green-darker);
}

.modal-cleanure .cf-success {
  display: none;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--green-darker);
  font-size: 0.92rem;
}

.modal-cleanure .cf-success.show-success {
  display: flex;
}

.modal-cleanure button[type="submit"]:disabled {
  opacity: 0.85;
  cursor: default;
  transform: none !important;
}

/* ---------- Honeypot (spam trap, hidden from real users) ---------- */
.cf-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Reviews ---------- */
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.review-stars {
  color: #f5b400;
  font-size: 0.95rem;
  display: inline-flex;
  gap: 2px;
}

.review-card {
  position: relative;
  background: #fff;
  border-radius: 1.25rem;
  padding: 2rem 1.85rem 1.75rem;
  height: 100%;
  border: 1px solid var(--gray-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.08);
}

.review-quote-icon {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--green-light);
}

.review-text {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.review-source:hover {
  color: var(--green-darker);
}

.review-source i {
  color: #4285F4;
  font-size: 0.85rem;
}

.btn1 {
  text-align: center;
  width: 13rem;
}

.img1 {
    width: 90%;
    height: 500px;
    border-radius: 1.5rem;
}