/* -------------------------------------------------
   GLOBAL VARIABLES
--------------------------------------------------*/
:root {
  --primary: #1976d2; /* Light blue theme */
  --primary-dark: #0d47a1;
  --accent: #64b5f6;
  --light: #f4f8fc;
  --gray: #e0e0e0;
  --text: #1f2933;
  --white: #ffffff;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);
  --radius-lg: 1rem;
  --help-accent: #e53935;
}

/* -------------------------------------------------
   RESET & BASICS
--------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* -------------------------------------------------
   UTILITIES
--------------------------------------------------*/
.container {
  width: min(1100px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: clamp(1.8rem, 2.5vw, 2.3rem);
}

.section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  color: #4b5563;
}

.alt-bg {
  background-color: #e7f1fb;
}

/* -------------------------------------------------
   HEADER & NAV
--------------------------------------------------*/
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(8px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #4b5563;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--primary-dark);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.26rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, #ffffff, #e3f2fd);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
  cursor: pointer;
  padding: 0.4rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.menu-toggle .bar {
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: var(--primary-dark);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

/* Turn hamburger into an "X" when open */
.menu-toggle.open .bar:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}


/* -------------------------------------------------
   HERO SECTION
--------------------------------------------------*/
main {
  padding-top: 4.5rem;
}

.hero {
  min-height: 70vh;
  background-image: url("../images/hero.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(25, 118, 210, 0.88),
    rgba(100, 181, 246, 0.7)
  );
}

.hero-content {
  position: relative;
  max-width: 600px;
  padding: 4rem 0;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* -------------------------------------------------
   INNER PAGE HERO (About / Projects / Contact)
--------------------------------------------------*/
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
              rgba(255, 255, 255, 0.18),
              transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.page-hero .container {
  position: relative;          /* sit above ::before */
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 3.4vw, 2.9rem);
  margin-bottom: 0.6rem;
}

.page-hero p {
  max-width: 700px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Mobile tweaks */
@media (max-width: 720px) {
  .page-hero {
    padding: 3rem 0;
    text-align: center;
  }

  .page-hero .container {
    max-width: 100%;
  }

  .page-hero p {
    margin-inline: auto;
  }
}


/* -------------------------------------------------
   BUTTONS
--------------------------------------------------*/
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.primary-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}

.primary-btn:hover {
  transform: translateY(-3px);
}

.ghost-btn {
  border: 1px solid var(--primary);
  background: var(--white);
  color: var(--primary-dark);
}

.ghost-btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* -------------------------------------------------
   AIMS & OBJECTIVES
--------------------------------------------------*/
.aims-section {
  background: var(--white);
}

.aims-box {
  margin-top: 2rem;
  background: #f0f6ff;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
  border-left: 6px solid var(--primary);
}

.aims-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.aims-list {
  list-style: none;
  padding: 0;
}

.aims-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.7rem;
}

.aims-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}

/* -------------------------------------------------
   IMPACT SECTION
--------------------------------------------------*/
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.impact-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.impact-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.counter {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
}

/* -------------------------------------------------
   PROJECTS (updated layout)
--------------------------------------------------*/
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

/* scrolling image strip */
.project-image-scroll {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #f0f5fc;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.project-image-scroll img {
  width: 230px;
  height: 155px;
  object-fit: cover;
  border-radius: 0.75rem;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* subtle scrollbar styling */
.project-image-scroll::-webkit-scrollbar {
  height: 6px;
}

.project-image-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.project-image-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

/* card body */
.project-card-body {
  padding: 1.9rem 1.6rem 2.1rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.project-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.project-card-body p {
  font-size: 0.96rem;
  line-height: 1.6;
  opacity: 0.94;
  margin: 0 auto;
  max-width: 360px;
}

/* mobile tweaks */
@media (max-width: 720px) {
  .project-card-body {
    padding: 1.6rem 1.3rem 1.9rem;
  }
}


/* ---------------------------------------------
   FEATURED PROGRAMS (Updated Styling)
---------------------------------------------*/

.featured-programs {
  text-align: center;
  margin-bottom: 4rem;
}

.featured-programs h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.program-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.08);
  padding: 2.2rem 1.6rem;      /* Increased padding */
  text-align: center;           /* Center all contents */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.12);
}

.program-card i {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 1rem;
}

.program-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  text-align: center;           /* FIX: Center headings */
}

.program-card p {
  line-height: 1.55;
  font-size: 0.97rem;
  opacity: 0.92;
  margin: 0 auto;
  max-width: 320px;             /* Improves readability */
}

/* Mobile adjustments */
@media (max-width: 720px) {
  .program-card {
    padding: 1.8rem 1.2rem;
  }
}


/* -------------------------------------------------
   ABOUT PAGE
--------------------------------------------------*/

.about-wrapper {
  margin-top: 2rem;
}

/* Card layout + spacing + accent bar */
.about-section {
  position: relative;
  background: var(--white);
  padding: 2.6rem 2.6rem 2.4rem;
  border-radius: 1.4rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 55px; /* space between Mission / Vision / Values */
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

/* Header with icon + title */
.about-section-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.about-section-header h2 {
  font-size: 1.4rem;
  margin: 0;
}

.about-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 118, 210, 0.08); /* soft light-blue bubble */
  color: var(--primary);
  flex-shrink: 0;
}

.about-icon i {
  font-size: 1.2rem;
}

/* Typography */
.about-section p,
.about-section li {
  font-size: 0.98rem;
  line-height: 1.7;
}

.values-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin: 0.5rem 0 0;
}

.values-list li + li {
  margin-top: 0.35rem;
}

/* Hover elevation */
.about-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

/* Mobile tweaks */
@media (max-width: 720px) {
  .about-section {
    padding: 2.1rem 1.6rem 2rem;
    margin-bottom: 40px;
  }

  .about-section-header {
    align-items: flex-start;
  }
}


/* -------------------------------------------------
   TEAM MODERN
--------------------------------------------------*/
.team-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}

.team-card-modern {
  background: white;
  padding: 2rem 1rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: 0.3s ease;
}

.team-card-modern:hover {
  transform: translateY(-7px);
}

.team-image-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary);
  margin: 0 auto 1rem;
}

.role {
  color: var(--primary);
  font-weight: 600;
}

/* -------------------------------------------------
   TESTIMONIALS
--------------------------------------------------*/
.testimonial-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.testimonial-card {
  max-width: 800px;
  padding: 2.5rem;
  background: white;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

.testimonial-nav.left {
  left: -25px;
}
.testimonial-nav.right {
  right: -25px;
}

.testimonial-dots {
  margin-top: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: #cdd8e2;
  display: inline-block;
  border-radius: 50%;
  margin: 0 3px;
  cursor: pointer;
  transition: 0.2s;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

/* -------------------------------------------------
   HELP SECTION
--------------------------------------------------*/
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.help-card {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: 0.25s ease;
}

.help-card:hover {
  transform: translateY(-6px);
  background: #fff7f7;
  box-shadow: var(--shadow-soft);
}

.help-icon {
  font-size: 2.8rem;
  color: var(--help-accent);
}

/* -------------------------------------------------
   CONTACT PAGE
--------------------------------------------------*/
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 1rem;
}

/* -------------------------------------------------
   FORMS
--------------------------------------------------*/
.card {
  background: white;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  padding: 0.65rem;
  border-radius: 0.6rem;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
}

.error-message {
  color: #c62828;
  font-size: 0.8rem;
  min-height: 0.8rem;
}

.form-group.invalid input,
.form-group.invalid textarea {
  border-color: #c62828;
}

.form-success-message {
  margin-top: 1rem;
  color: var(--primary-dark);
}

/* -------------------------------------------------
   FOOTER
--------------------------------------------------*/

.main-footer {
  background: linear-gradient(135deg, #0b1729, #102a43);
  color: #e5e7eb;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: flex-start;
}

.main-footer h3 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  color: #ffffff;
}

.main-footer h4 {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
  color: #f9fafb;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

/* Social icons */
.social-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.social-links a {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-links a i {
  color: #ffffff; /* icons white */
  font-size: 1rem;
}

.social-links a:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.social-links a:hover i {
  color: #0b1729; /* dark text on white hover */
}

/* Bottom strip */
.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* ---------------------------------------------
   Footer mobile layout
---------------------------------------------*/
@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-grid > div {
    align-items: center;
  }

  .social-links {
    justify-content: center;
  }
}


/* -------------------------------------------------
   BACK TO TOP BUTTON
--------------------------------------------------*/
#backToTop {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 45px;
  height: 45px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: none;
  cursor: pointer;
}

/* Show when active */
#backToTop.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------------------
   FADE IN ANIMATION
--------------------------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------
   RESPONSIVE DESIGN
--------------------------------------------------*/

@media (max-width: 900px) {
  .impact-grid,
  .projects-grid,
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-nav.left {
    left: 0;
  }
  .testimonial-nav.right {
    right: 0;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }

  .nav-container {
    gap: 0.6rem;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.85rem 1.1rem;
    border-radius: 1rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.3rem 0;
    font-size: 0.98rem;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .aims-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 500px) {
  .logo img {
    height: 40px;
  }

  .team-grid-modern {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------
   CONTACT PAGE ENHANCEMENTS
--------------------------------------------------*/

/* Soft background glow just for the contact page */
.contact-page main {
  background:
    radial-gradient(circle at top left, rgba(100, 181, 246, 0.22), transparent 55%),
    radial-gradient(circle at bottom right, rgba(13, 71, 161, 0.18), transparent 55%);
}

/* Layout & spacing */
.contact-page .contact-grid {
  align-items: stretch;
  margin-top: 2.5rem;
}

/* Cards with a bit more color & depth */
.contact-page .card {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  padding: 2.2rem 2rem;
  overflow: hidden;
}

/* Accent bar at the top of each card */
.contact-page .card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(to right, var(--primary-dark), var(--accent));
}

/* Form labels & fields */
.contact-page .form-group label {
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.35rem;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  background-color: #f9fbff;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(100, 181, 246, 0.35);
  background-color: #ffffff;
}

/* Error state tweak */
.contact-page .form-group.invalid input,
.contact-page .form-group.invalid textarea {
  border-color: #c62828;
}

/* Success message a bit more visible */
.contact-page .form-success-message {
  margin-top: 1rem;
  color: var(--primary-dark);
  font-weight: 500;
}

/* Map block with soft background */
.contact-page .map-container {
  margin: 1.5rem 0;
  padding: 0.6rem;
  background: rgba(25, 118, 210, 0.05);
  border-radius: 1.3rem;
}

.contact-page .map-container iframe {
  border-radius: 1.1rem;
}

/* Social icons on contact card */
.contact-page .contact-social {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
}

.contact-page .contact-social a {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 118, 210, 0.08);
  color: var(--primary-dark);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-page .contact-social a:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Make sure it still feels good on smaller screens */
@media (max-width: 720px) {
  .contact-page .card {
    padding: 1.8rem 1.4rem;
    border-radius: 1.3rem;
  }
}

