:root {
  /* Base / Neutral */
  -bg: #fff4ec;           /* soft warm cream background */
  -card: #ffffff;          /* white cards */
  -muted: #6b5e4b;         /* muted brown for text */
  -text: #f6ebdd;         /* dark brown for headings */
  -text2: #4b3b2a;        /* darker brown for body text */

  /* Primary Accent */
  -accent: #a9734b;        /* warm brown for main buttons, borders */
  -accent-light: #d4a077;  /* lighter brown for gradients / hover states */

  /* Pink Highlights */
  -pink: #ff8b94;          /* soft pink for badges, secondary CTAs */
  -pink-light: #ffc4c8;     /* lighter pink for hover / subtle backgrounds */

  /* Gradients */
  -glow1: linear-gradient(90deg, #ff9c6b, #ffc4a3);   /* peach gradient */
  -glow2: linear-gradient(90deg, #ff8b94, #ffc4c8);   /* pink gradient for buttons/badges */

  /* Modal & Sidebar */
  -modal-bg: #fff;             /* modal card background */
  -modal-sidebar-bg: linear-gradient(135deg, #fff4ec, #ffd9cc); /* modal sidebar gradient */
  -modal-input-border: #ffd9cc; 
  -modal-input-bg: #fff7f5; 
  -modal-input-focus-bg: #fff0f2;
  -modal-close-btn: #6b5e4b;
  -modal-scrollbar-track: #ffe6e9;
  -modal-scrollbar-thumb: #ff8b94;

  /* Buttons */
  -btn-save-bg: #ff8b94;
  -btn-save-hover-bg: #ffc4c8;
  -btn-cancel-bg: #ffd9cc;
  -btn-cancel-hover-bg: #ffc4b0;
  -btn-cancel-color: #a9734b;

  /* Tab Menu */
  -tab-menu-bg: #ffe6e9;
  -tab-menu-active-bg: #ff8b94;
  -tab-menu-active-color: #fff;
  -tab-menu-color: #6b5e4b;

  /* Photo Placeholder */
  -photo-placeholder-bg: #fff0f2;
  -photo-placeholder-border: #ffc4c8;
  -photo-placeholder-hover-bg: #ffc4c8;
  -photo-placeholder-hover-border: #ff8b94;
  -photo-placeholder-hover-color: #ff8b94;

  /* Shadows */
  -shadow-card: rgba(0,0,0,0.08);
  -shadow-card-hover: rgba(0,0,0,0.15);
  -shadow-btn-report: rgba(168,124,95,0.4);
  -shadow-btn-report-hover: rgba(168,124,95,0.5);
  -shadow-btn-details: rgba(168,124,95,0.3);
  -shadow-btn-details-hover: rgba(168,124,95,0.4);
  -shadow-tab-active: rgba(255,140,148,0.3);
  -shadow-modal: rgba(0,0,0,0.2);
}

.hero-section {
  padding-top: 5rem;
  padding-bottom: 6rem;
  color: #3a2e2e;back
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.hero-section img {
  max-width: 60%;
  height: auto;
  margin-top: 100px; 
  margin-bottom: 100px;
  filter: drop-shadow(4px 6px 8px rgb(90, 77, 74));
  position: relative;
  z-index: 10;
}

.hero-section h2 {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: -15px;
  color: var(--muted);
  position: relative;
  z-index: 5;
}

.hero-section p.lead {
  font-size: 20px;
  font-weight: 500;
  margin-top: -0.8rem;
  margin-bottom: 0.8rem;
  color: #7d6f5c;
}

.hero-section p.mx-auto {
  font-size: 15px;
  color: #7d6f5c;
  margin-top: 1rem;
  font-weight: 500;
}

.hero-section .btn {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 500;
}

.hero-section .btn-dark {
  background-color: #6b5e4b;
  border: 2px solid #6b5e4b;
  color: #FFFFFF;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-section .btn-dark:hover {
  background-color: #5a4e3d; 
  border-color: #5a4e3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 94, 75, 0.3);
}

.hero-section .btn-outline-dark {
  border: 2px solid #6b5e4b;
  color: #6b5e4b;
  background-color: transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero-section .btn-outline-dark:hover {
  background-color: #6b5e4b;
  color: #FFFFFF;
  border-color: #6b5e4b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 94, 75, 0.3);
}

.split-hero-section {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  z-index: 1;
}

.split-hero-section .cloud-divider img {
  width: 105vw;
  margin-left: -2.5vw;
  display: block;
}

.cloud-content-wrapper {
  position: relative;
  background: #6c5e53;
  color: white;
  padding: 4rem 0;
  z-index: 2;
  margin-top: -20px;
  margin-bottom: -20px;
  overflow: hidden;
}

.cloud-content-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="40" opacity="0.1">🐾</text></svg>');
  background-repeat: repeat;
  background-size: 80px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.3;
  animation: pawFloat 30s linear infinite;
}

@keyframes pawFloat {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

.cloud-content-wrapper > * {
  position: relative;
  z-index: 1;
}

/* Content Styling */
.hero-content .content-box {
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.badge-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 500px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  justify-content: start;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffc4c8;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* Button Styling */
.btn-primary-custom {
  background: #ffc4c8 !important;
  color: #000000 !important;
  padding: 0.9rem 2rem;
  border: 2px solid #ffc4c8;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(255, 196, 200, 0.4);
  transition: all 0.5s ease !important;
}

.btn-primary-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 139, 148, 0.6);
  background: #ff8b94;
  color: #6c5e53 !important;
  border-color: #ff8b94;
}

.btn-outline-custom {
  background: transparent;
  color: white;
  padding: 0.9rem 2rem;
  border: 2px solid white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-outline-custom:hover {
  background: white;
  color: #5a4a3a;
  transform: translateY(-2px);
}

/* Image Section */
.hero-image-col {
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 600px;
}

.hero-image {
  width: 500px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  clip-path: url(#blobClip);
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.image-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.3; }
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}

.card-icon {
  font-size: 1.5rem;
}

.card-text {
  font-weight: 600;
  color: #5a4a3a;
  font-size: 0.9rem;
}

.card-1 {
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: -5%;
  animation-delay: 1.3s;
}

.card-3 {
  bottom: 15%;
  left: 5%;
  animation-delay: 2.6s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-stats {
    justify-content: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .floating-card {
    padding: 0.6rem 1.2rem;
  }
  
  .card-text {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .cloud-content-wrapper {
    padding: 3rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .floating-card {
    display: none;
  }
}


.cloud-divider {
  width: 100%;
  position: relative;
  z-index: 3;
  line-height: 3;
}

.cloud-divider img {
  width: 100%;
  margin: 0;
  display: block;
  height: auto;
}

.cloud-divider-bottom {
  transform: rotate(180deg);
}

/* PETS CLOUD WRAPPER */
.cloud-content-wrapper.pets-cloud {
  background: #6C5E53;
  position: relative;
  padding: 40px 0;
}
.cloud-content-wrapper.pets-cloud::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/paw2.png');
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.gallery-grid .item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

.blob-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.text-brown {
  color: #5a3e28;
}

/* FOREVER HOME SECTION - shrink all cards */
.forever-home-highlight .highlight-card,
.forever-home-highlight .d-flex.bg-white-transparent {
  width: 90%;       /* shrink slightly */
  max-width: 400px; /* limits the maximum size */
  margin: 0 auto;   /* center the cards */
}

/* Reduce image sizes inside cards */
.forever-home-highlight .highlight-card img {
  width: 100%;
  max-height: 250px;  /* smaller height for the big card */
  object-fit: cover;
}

.forever-home-highlight .side-img {
  width: 100px;      /* smaller side image */
  height: 100px;     /* smaller side image */
}


.side-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 16px;
}

.bg-white-transparent {
  background-color: rgba(255, 255, 255, 0.3); 
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px); 
  border-radius: 1rem;
}

.pet-gallery .pets-label {
  color: #6b5e4b !important;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.pet-gallery .pets-title {
  color: #6b5e4b !important;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(255,255,255,.6);
}

.pet-gallery .pets-subtitle {
  color: #8a7a64 !important;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.2;
  margin-top: -6px;
  text-shadow: 0 1px 5px rgba(255,255,255,.5);
}

.pet-gallery .pets-description {
  color: #5a4f3f !important;
  font-size: 17px;
  line-height: 1.6;
  opacity: .95;
  text-shadow: 0 1px 6px rgba(255,255,255,.5);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: white;
  font-size: 1.5rem;
  animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }
  
  .gallery-overlay i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

.container {
  max-width: 1000px; 
  margin: 0 auto;
  padding: 0 1rem;
}


.item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  display: flex;           
  align-items: stretch;   
}


.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  flex: 1;
  border-radius: 1rem;
}


.item.tall {
  grid-row: span 2;
}

.item.wide {
  grid-column: span 2;
}

.pets-gallery .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}


/* MISSION & IMPACT SECTION */
.mission-impact-section {
  padding: 80px 20px;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.mission-content {
  padding: 20px;
}

.mission-badge {
  display: inline-block;
  background-color: #5f4d42;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.mission-content h2 {
  font-size: 42px;
  color: #5f4d42;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.mission-content p {
  font-size: 18px;
  color: #7a6a5f;
  line-height: 1.8;
  margin-bottom: 40px;
}

.mission-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column; /* important */
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 15px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-text {
  text-align: center;
}

.feature-item:hover {
  transform: translateX(10px);
  background-color: rgba(255, 255, 255, 0.9);
}

.feature-text h4 {
  margin: auto;
  font-size: 18px;
  color: #5f4d42;
  font-weight: 600;
}

.feature-text p {
  margin: auto;
  font-size: 14px;
  color: #7a6a5f;
  line-height: 1.5;
}

.mission-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(95, 77, 66, 0.15);
  transition: transform 0.3s ease;
}

.mission-image:hover {
  transform: translateY(-10px);
}

.mission-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
  padding: 30px;
  color: white;
  font-size: 18px;
  font-weight: 500;
}

/* HOW IT WORKS SECTION */
.how-it-works-section {
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 38px;
  color: #5f4d42;
  margin: 0 0 15px 0;
}

.section-header p {
  font-size: 18px;
  color: #8b7a6f;
}

.steps-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-card {
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(95, 77, 66, 0.15);
}

.step-card:last-child {
  color: white;
}

.step-card:last-child h3,
.step-card:last-child p {
  color: white;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  color: #5f4d42;
}

.step-card:last-child .step-number {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.step-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 22px;
  color: #5f4d42;
  margin: 15px 0;
}

.step-card p {
  font-size: 14px;
  color: #7a6a5f;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .mission-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mission-content h2 {
    font-size: 32px;
  }
  
  .mission-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .steps-container {
    grid-template-columns: 1fr;
  }
}

/* ===== Scroll-reveal animations ===== */
.fade-in-up,
.reveal-up {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}
.fade-in-up.show,
.reveal-up.show {
  opacity: 1;
  transform: none;
}

/* POP reveal (for hero image) */
.reveal-pop {
  opacity: 0;
  transform: scale(.96);
  transform-origin: center bottom;
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}
.reveal-pop.show {
  opacity: 1;
  transform: scale(1);
}

.story-card {
  position: relative;
  padding-top: 80px; /* enough space para sa floating image */
  background: #ffffffcc;
  backdrop-filter: blur(6px);
  border-radius: 20px;
  transition: 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.story-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: -35px; /* floating above card, half of image height */
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid #fff;
}

.story-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #5d4338;
  margin-top: 70px; /* space below floating image */
}

.story-text {
  font-size: 0.9rem;
  color: #333;
}

.h6 { margin-top: 0; }

/* =========================
   HERO IMAGE + FLOATING CARDS (FINAL FIX)
   - show floating ONLY on <=425px
   - keep image smaller on <=425px
   - overrides any old "display:none" rules
========================= */

/* wrapper must be relative */
.image-wrapper{
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: inline-block;
}

/* hero image default */
.hero-image{
  width: min(500px, 100%);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  clip-path: url(#blobClip);
  position: relative;
  z-index: 2;
}

/* floating default (desktop/tablet) */
.floating-card{
  position: absolute;
  background: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  z-index: 4;
}

.card-icon{ font-size: 1.5rem; }
.card-text{ font-weight: 600; color:#5a4a3a; font-size: 0.9rem; }

.card-1{ top: 10%; left: -5%; }
.card-2{ top: 50%; right: -5%; }
.card-3{ bottom: 15%; left: 5%; }

/* ✅ Hide floating cards for ALL screens <= 991px by default */
@media (max-width: 991.98px){
  .floating-card{ display: none !important; }
  .hero-image{
    clip-path: none !important;   /* prevent "nawawala" */
    border-radius: 24px;
  }
}

/* ✅ Show floating cards ONLY on phones <= 425px */
@media (max-width: 425px){

  /* smaller image for 425 */
  .hero-image{
    width: min(260px, 100%);
    height: auto;
  }

  /* force show floating cards even if may display:none ka sa 768 */
  .floating-card{
    display: flex !important;
    padding: 0.45rem 0.70rem !important;
    gap: 0.35rem !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18) !important;
    z-index: 9999 !important;
  }

  .card-icon{ font-size: 1.05rem !important; }
  .card-text{ font-size: 0.70rem !important; }

  /* reposition para di lumabas sa screen */
  .card-1{ top: 6% !important; left: 6% !important; }
  .card-2{ top: 55% !important; right: 6% !important; }
  .card-3{ bottom: 10% !important; left: 10% !important; }
}
