* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #e7433f; /* bold red inspired by logo */
  --secondary: #1d6fe2; /* vibrant blue from logo */
  --accent: #ff6548; /* bright highlight tone */
  --surface: #ffffff;
  --card: linear-gradient(145deg, #ffffff 0%, #f3f4f6 100%);
  --text: #0f172a;
  --muted: #4b5563;
  --border: #e5e7eb;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
}

body {
  font-family:
    "Roboto",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 22%, rgba(231, 67, 63, 0.1), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(29, 111, 226, 0.1), transparent 30%),
    #f8fafc;
}

/* Header Styles */
header {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition:
    transform 0.35s ease,
    box-shadow 0.3s ease;
  will-change: transform;
}

header.scroll-down {
  transform: translateY(-140%);
  box-shadow: none;
}

header.scroll-up {
  transform: translateY(0);
}

.header-container {
  background: transparent;
  padding: 1rem 0;
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-section {
  flex: 0 0 auto;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

.header-text {
  flex: 1;
  text-align: center;
}

.header-text h4 {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
  line-height: 1.3;
  font-weight: 600;
}

.header-text .subtitle {
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
  margin-top: 2px;
}

.header-cta {
  flex: 0 0 auto;
}

.btn-call {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    opacity 0.2s ease;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.35);
  opacity: 0.95;
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .logo-section {
    order: 1;
    width: 100%;
    text-align: center;
  }

  .header-text {
    order: 2;
    width: 100%;
  }

  .header-cta {
    order: 3;
    width: 100%;
    text-align: center;
  }
}

.btn-call {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    opacity 0.2s ease;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(249, 115, 22, 0.35);
  opacity: 0.95;
}

.header-notice {
  background: linear-gradient(
    135deg,
    rgba(231, 67, 63, 0.05),
    rgba(29, 111, 226, 0.05)
  );
  padding: 14px 0;
  text-align: center;
  border-top: 1px solid #e0e0e0;
}

.header-notice p {
  margin: 0;
  font-size: 0.95rem;
  color: #1f2937;
  font-weight: 500;
}

.header-notice a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--primary);
  transition: opacity 0.2s ease;
}

.header-notice a:hover {
  opacity: 0.8;
}

/* Main Content */
main {
  padding-top: 0;
}

section {
  padding: 60px 20px;
}

h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #222;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--secondary) 45%,
    #0b7ac7 100%
  );
  color: white;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 30%
    );
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-areas:
    "images form"
    "text text";
}

.hero-image {
  grid-area: images;
}

.hero-form {
  grid-area: form;
}

.hero-text {
  grid-area: text;
  text-align: center;
  margin: 20px auto 0;
  max-width: 800px;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-text h2 {
  color: white;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  width: 100%;
}

.hero-text p {
  font-size: 1.1rem;
  margin: 0 auto 1.5rem;
  opacity: 0.95;
  text-align: center;
  color: white;
  width: 100%;
}

.pricing-notice {
  margin-top: 1rem;
  width: 100%;
}

.hero-text h2 {
  color: white;
  text-align: left;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Hero Form Styles */
.hero-form {
  background: rgba(255, 255, 255, 0.98);
  padding: 35px;
  border-radius: 20px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.15),
    0 0 1px rgba(231, 67, 63, 0.2);
  width: 100%;
  height: 100%;
  border: 1px solid rgba(231, 67, 63, 0.1);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-form:hover {
  transform: translateY(-5px);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.2),
    0 0 1px rgba(231, 67, 63, 0.3);
}

.hero-form h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 25px;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.hero-form h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  transition: all 0.3s ease;
  color: var(--text);
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(231, 67, 63, 0.1);
  background: #ffffff;
  transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #d1d5db;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.hero-form .btn {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(231, 67, 63, 0.4);
}

/* Hero Image */
.hero-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.hero-image img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
  .hero-form-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "images"
      "form";
    gap: 40px;
  }

  .hero-text {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .hero-form {
    padding: 30px 20px;
    height: auto;
  }

  .hero-form h3 {
    font-size: 22px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14px;
    padding: 12px 16px;
  }

  .hero-image {
    gap: 15px;
  }

  .hero-image img {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 480px) {
  .hero-image {
    grid-template-columns: 1fr;
  }
}

.btn {
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    box-shadow 0.3s ease,
    opacity 0.2s ease;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  background-size: 180% 180%;
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(249, 115, 22, 0.35);
  opacity: 0.96;
  background-position: 100% 0;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
  opacity: 0.9;
}

.pricing-notice {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.6s ease,
    box-shadow 0.4s ease;
}

.hero-image img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
/* Process Section */
.process-section {
  background: #f8fafc;
}

.process-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-card {
  background: var(--card);
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(99, 102, 241, 0.18);
}

.process-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.process-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #333;
}

.process-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* About Section */
.about-section {
  background: #fdfdfd;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 2rem;
  color: #555;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

/* Features Section */
.features-section {
  background: #f5f7fb;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--card);
  padding: 30px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(231, 67, 63, 0.16);
}

.feature-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
  background: #fdfdfd;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 30px;
  border-radius: 14px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(231, 67, 63, 0.16);
}

.testimonial-card p {
  color: #475569;
  font-style: italic;
  line-height: 1.7;
}

/* Services & Warranty Section */
.services-warranty-section {
  background: #f5f7fb;
}

.services-warranty-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.info-card {
  background: var(--card);
  padding: 30px;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(29, 111, 226, 0.16);
}

.info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.info-icon {
  font-size: 2rem;
}

.info-card h3 {
  font-size: 1.3rem;
  color: #333;
}

.info-card h5 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 1.1rem;
}

.info-card ul {
  list-style: none;
  margin: 15px 0;
}

.info-card ul li {
  padding: 8px 0;
  color: #555;
  line-height: 1.6;
}

.info-card ul li::before {
  content: "• ";
  color: #ff7c36;
  font-weight: bold;
  margin-right: 8px;
}

.contact-list li::before {
  content: "";
  margin: 0;
}

.contact-list a {
  color: var(--secondary);
  text-decoration: none;
  position: relative;
}

.contact-list a:hover {
  text-decoration: none;
}

.contact-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.contact-list a:hover::after {
  transform: scaleX(1);
}

/* Visit Section */
.visit-section {
  background: #fdfdfd;
}

.visit-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.visit-info h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.visit-info p {
  margin-bottom: 2rem;
  color: #555;
}

.contact-details {
  list-style: none;
  margin: 2rem 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: #555;
}

.contact-details .icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details a {
  color: var(--secondary);
  text-decoration: none;
  position: relative;
}

.contact-details a:hover {
  text-decoration: none;
}

.contact-details a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.contact-details a:hover::after {
  transform: scaleX(1);
}

.visit-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

/* Footer */
footer {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(99, 102, 241, 0.15),
      transparent 35%
    ),
    linear-gradient(135deg, #0f172a 0%, #111827 100%);
  color: white;
  padding: 70px 20px 24px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h2 {
  color: white;
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
  color: #ccc;
  line-height: 1.6;
}

.footer-column p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact .icon {
  flex-shrink: 0;
}

.footer-contact a {
  color: #ff7c36;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  margin: 0;
}

.footer-bottom a {
  color: #ff7c36;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-text {
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text h2 {
    font-size: 2rem;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-text h2 {
    text-align: center;
  }

  .visit-content {
    grid-template-columns: 1fr;
  }

  .visit-info h2 {
    text-align: center;
  }

  .visit-map iframe {
    height: 350px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .services-warranty-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h2 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 15px;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero-section {
    padding: 50px 15px;
  }

  .hero-text h2 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .logo-img {
    height: 50px;
  }
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
}

.testimonial-card {
  flex: 0 0 100%; /* Default mobile: 1 slide per view */
  max-width: 100%;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.carousel-btn {
  background: white;
  border: 1px solid var(--border);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 67, 63, 0.25);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 15px); /* Tablet: 2 slides per view */
    max-width: calc(50% - 15px);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 20px); /* Desktop: 3 slides per view */
    max-width: calc(33.333% - 20px);
  }
}
/* Pill Header Wrapper */
.pill-header {
    padding: 20px;
    background: #f7f7f7;
}

/* Rounded Header Bar */
.pill-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Logo */
.pill-logo img {
    max-height: 45px;
}

/* Call Button */
.pill-call-btn {
    background: #f1f500; /* yellow-green */
    color: #000;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pill-call-btn:hover {
    background: #e6ea00;
}

/* Mobile */
@media (max-width: 600px) {
    .pill-container {
        flex-direction: column;
        gap: 12px;
        border-radius: 25px;
    }
}