/* Container of entire navbar */
@font-face {
  font-family: "Engravers' Gothic Regular";
  src: url("assets/Engravers' Gothic Regular/Engravers' Gothic Regular.otf") format("opentype");
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Engravers' Gothic Regular", sans-serif;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 15px;
  background-color: #034948;
  /* optional background */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  /* subtle shadow */
  position: relative;
}

/* .hamburger {
  display: none;
} */

.logo-container {
  display: flex;
  align-items: center;
  gap: 0px;
}
.full_logo{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
/* Logo section on left */
.logo {
  display: flex;
  flex-direction: column; /* Arrange items vertically */
  align-items: center; /* Align items to the center */
  gap: 0px; /* Adjust gap as needed */
  color: ivory;
}

.logo-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.logo-top-part {
  display: flex;
  align-items: center;
  gap: 10px;
}

@font-face {
  font-family: "engravers-mt";
  src: url("assets/engravers-mt.ttf") format("truetype");
}



.logo_text {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -5px;
  margin-left: 10px;
}

.logo-main__text {
  margin: 0;
  font-weight: bold;
  font-size: 1.5rem;
  color:ivory;
  font-family: "Engravers' Gothic Regular", sans-serif;
}

#from {
  font-weight: normal;
  font-size: 0.6rem;
  color: #777;
  position: relative;
  top:-24px;
  right:-6px;
  color: gold;;
}

/* Navigation links centered */
nav {
  flex: 1;
  text-align: center;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: ivory;
  font-weight: 600;
  padding: 5px 10px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  font-family: 'Engravers\' Gothic Regular', sans-serif;
  font-size: 1.1rem; /* Make it more readable */
  letter-spacing: 0.5px; /* Add some spacing */
}

.nav-links li.active a,
.nav-links li a:hover {
  border-bottom: 2px solid gold;
  /* underline effect */
  color: gold;
}

.action-button .calendly-button {
  text-decoration: none;
}

.action-button button {
  padding: 12px 25px;
  background: linear-gradient(135deg, #d4af37, #f7e192, #d4af37);
  border: none;
  color: #034948;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  box-shadow:
    0 0 8px #f7e192,
    inset 0 0 5px #d4af37;
  font-family: "Engravers' Gothic Regular", sans-serif;
}

.action-button button:hover {
  background: linear-gradient(135deg, #f7e192, #d4af37, #f7e192);
  box-shadow:
    0 0 15px #fbe870,
    inset 0 0 8px #fbe870;
}


/* Font Awesome phone icon styling */
.action-button i.fas.fa-phone {
  font-size: 1.2rem;
  line-height: 1;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  transform: translateX(-100%);
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
  z-index: 2;
  text-align: left;
}

.slide-content h2 {
  font-family: "Engravers' Gothic Regular", sans-serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #f7e192;
}

.slide-content p {
  font-family: "Engravers' Gothic Regular", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
}

.slider-dots {
  text-align: center;
  position: absolute;
  bottom: 30px;
  width: 100%;
  z-index: 2;
}

.slider-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dots .dot.active {
  background-color: #f7e192;
  transform: scale(1.2);
}

.slider-buttons {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
  z-index: 30;
}

.gold-buttons-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  background-color: #f9f7f1;
}

.tagline {
  font-size: 2rem;
  font-weight: bold;
  color: #034948;
  user-select: none;
  font-family: "Engravers' Gothic Regular", sans-serif;
}

.gold-button {
  display: block;
}

@keyframes rotate-left {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes rotate-right {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.rotate-left {
  animation: rotate-left 3s linear infinite;
}

.rotate-right {
  animation: rotate-right 3s linear infinite;
}

.svg-container svg {
  width: 100%;
  height: auto;
  display: block;
}

#goldenline {
  stroke-dasharray: 1920px;
  stroke-dashoffset: 1920;
  /* Hidden by default */
  /* No animation here */
}

.svg-container.animate #goldenline {
  animation: drawLine 21s forwards ease-out;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
    fill: gold;
  }
}

#collection {
  background-color: #034948;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 24px;
  flex-wrap: wrap;
}

.collection-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 200px;
}

.frame-container {
  width: 200px;
  height: 200px;
  background: url("assets/golden_frame.png") center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.product-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 20px 0;
}

.label {
  margin-top: 12px;
  font-size: 1em;
  font-weight: 500;
  color: #f3d27a;
  text-align: center;
  letter-spacing: 1px;
}

#collection-head h3 {
  text-align: center;
  font-size: 36px;
  font-weight: 300;
  color: #034948;
}

.tagline {
  font-size: 40px;
  font-weight: 700;
  color: #bfa24b;
  text-align: center;
  animation: taglineFadeIn 2s ease forwards;
  opacity: 0;
  margin: 0 20px;
}

@keyframes taglineFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }

  from {
    opacity: 0;
    transform: scale(0.95);
  }
}

.tagline-section {
  background: linear-gradient(135deg, #0b3d3d 0%, #034948 100%);
  padding: 40px 0;
  position: relative;
}

#custom-tailoring {
  position: relative;
  background: url("assets/tailoring-background.avif") no-repeat center center/cover;
  color: white;
  padding: 60px 20px;
  overflow: hidden;
}

#custom-tailoring .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(3, 73, 72, 0.7); /* dark teal overlay */
  z-index: 1;
}

#custom-tailoring .container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 2;
  text-align: center;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #D4AF37; /* richer golden tone */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.section-subtitle {
  font-size: 22px;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #f0e6ac; /* Adjusted for better readability on green background */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.fabric-gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fabric-card {
  width: 200px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(191, 162, 75, 0.3);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.fabric-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(191, 162, 75, 0.6);
}

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

.fabric-name {
  padding: 12px 0;
  font-weight: 600;
  font-size: 16px;
  color: #f3d27a; /* golden yellow */
}

.cta-container {
  margin-top: 20px;
}

.btn-primary {
  background: #bfa24b;
  color: white;
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.25s ease;
  font-family: "Engravers' Gothic Regular", sans-serif;
}

.btn-primary:hover {
  background-color: #a28629;
}

.custom-tailoring-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 10%;
  background-color: #f8f8f8;
}

.custom-tailoring-image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.custom-tailoring-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(40, 40, 40, 0.08);
}

.custom-tailoring-content {
  flex: 1 1 300px;
  padding: 30px;
  min-width: 300px;
  background: white; 
  backdrop-filter: blur(10px);
  border: 1px solid rgba(3, 73, 72, 0.4); /* Darker green border */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(3, 73, 72, 0.3); /* Green-tinted shadow */
}

.custom-tailoring-content h2 {
  font-family: "Engravers' Gothic Regular", sans-serif;
  font-size: 2.2em;
  margin-bottom: 16px;

  color: #d4af37; /* Adjusted for better readability on green background */
}

.custom-tailoring-content p {
  font-size: 1.2em;
  color: green; /* Adjusted for better readability on green background */
  margin-bottom: 28px;
  line-height: 1.7;
}

body {
  overflow-x: hidden;
}

.measuring-tape-container {
  width: 100%;
  height: 46px;
  background: #f3e476;
  border-radius: 30px;
  margin: 40px 0;
  overflow: hidden;
  border: 2px solid #c7b144;
  box-shadow: 0 1px 8px rgba(80, 80, 60, 0.07);
  position: relative;
}

.measuring-tape {
  width: 100%;
  height: 46px;
  background: repeating-linear-gradient(to right,
      #e7d97a 0 30px,
      #b3a155 30px 34px);
  display: flex;
  align-items: center;
  transform: translateX(-40vw);
  animation: slide-tape 2.5s ease-in-out infinite alternate;
}

.tape-numbers {
  font-family: "Engravers' Gothic Regular", sans-serif;
  font-weight: bold;
  color: #4b3d0c;
  font-size: 1.2em;
  margin-left: 35px;
  letter-spacing: 6px;
  white-space: nowrap;
}

@keyframes slide-tape {
  0% {
    transform: translateX(-40vw);
  }

  100% {
    transform: translateX(0vw);
  }
}


.custom-tailoring-section {
  position: relative;
  overflow: visible;
  /* allow SVG outside normal flow */
  padding: 40px 20px;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}

/* SVG overlays entire section */
.line-artist {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Content and video stacked below SVG */
.custom-tailoring-video,
.custom-tailoring-content {
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 300px;
}

/* Optional: adjust video and content styling as before */
.custom-tailoring-video {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
}

.custom-tailoring-video video {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .navbar-container {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    background-color: #034948;
    padding: 20px 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
    font-size: 1.5rem;
    color: ivory;
    cursor: pointer;
    margin-top: -5px; /* Move hamburger a little upwards */
  }

  .action-button {
    order: 4;
  }

  .slide-content h2 {
    font-size: 3rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .gold-buttons-container {
    gap: 20px;
  }

  .gold-button:nth-child(n+3) {
    display: none;
  }

  .tagline {
    font-size: 2rem;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  /* NEW MOBILE RULES FOR ALIGNMENT */

  .navbar-left {
    /* flex: 1; Takes available space */
    display: flex;
    align-items: center;
    justify-content: center; /* Centers logo block and nav */
    gap: 10px; /* Space between logo block and nav */
  }

  .consultation-button-mobile {
    display: none;
  }

  .navbar-consult-button-laptop {
    display: none;
  }

  .navbar-container .consultation-button {
    display: none !important;
  }


  .consultation-button {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .consultation-button-container {
    padding-bottom: 0px;
  }

  #new-quote-section {
    padding-top: 0px;
  }


  .logo-wrapper {
    display: flex; /* Make it a flex container */
    align-items: center;
    justify-content: center; /* Centers .logo-container within itself */
  }

  .logo-container {
    display: flex; /* keep it flex for its children */
    justify-content: center; /* center its children (.full_logo and .logo_text) */
    align-items: center;
    gap: 10px; /* Space between logo image and KHANATE text */
  }

  .full_logo {
    order: 1;
  }

  .logo_text {
    order: 2;
    margin-top: -15px; /* Upward adjustment */
    margin-left: 0; /* Ensure no left push */
  }
}

@media (max-width: 768px) {
  .navbar-container {
    padding: 15px;
    gap: 15px;
  }

  .action-button {
    display: none;
  }

  .hero {
    height: 60vh;
  }

  .slide-content {
    left: 5%;
    max-width: 90%;
  }

  .slide-content h2 {
    font-size: 2.5rem;
  }

  .gold-buttons-container {
    flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }

  .gold-button:nth-child(n+2) {
    display: none;
  }

  .tagline {
    font-size: 1.5rem;
    text-align: center;
  }

  #collection {
    padding: 15px;
    gap: 15px;
  }

  .custom-tailoring-section {
    flex-direction: column;
    padding: 35px 5%;
    text-align: center;
    gap: 30px; /* Reduced gap for mobile */
  }

  .custom-tailoring-content h2 {
    font-size: 1.8rem; /* Reduced font-size for mobile */
  }

  .custom-tailoring-content,
  .custom-tailoring-video {
    min-width: unset;
    padding: 15px;
  }

  .line-artist {
    display: none;
  }
}

@media (max-width: 480px) {
.logo_text p {
  font-size: 1.8rem; /* Increased size for "KHANATE" */
  color:ivory;
}

  .logo img {
    width: 80px;
    height: 80px;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .gold-button {
    width: 80px;
  }

  .whatsapp-fab {
    width: 50px;
    height: 50px;
    font-size: 24px;
    right: 20px;
    bottom: 20px;
  }
}

/* Hamburger default hidden on desktop */

/* Footer Styles */
.site-footer {
  background-color: #034948;
  color: #f3d27a;
  padding: 40px 20px;
  font-family: "Engravers' Gothic Regular", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-about, .footer-links, .footer-social {
  flex: 1;
  min-width: 250px;
  padding: 0 15px;
}

.site-footer h3 {
  color: #f7e192;
  font-size: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #bfa24b;
  padding-bottom: 10px;
}

.footer-about p {
  color: #e0d1b0;
  line-height: 1.6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li a {
  color: #e0d1b0;
  text-decoration: none;
  line-height: 2;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #f7e192;
}

.social-icons a {
  color: #f3d27a;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #bfa24b;
  color: #e0d1b0;
}

.collection-item-link {
  text-decoration: none;
}
/* WhatsApp FAB */
.whatsapp-fab {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    animation: whatsapp-float 3s ease-in-out infinite;
}

.whatsapp-fab:hover {
    animation-play-state: paused;
    transform: translateY(-50%) scale(1.1);
}

@keyframes whatsapp-float {
    0% {
        transform: translateY(-55%);
    }
    50% {
        transform: translateY(-45%);
    }
    100% {
        transform: translateY(-55%);
    }
}

#rumi-quote {
    padding: 100px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.quote-text {
    font-size: 2.5em;
    font-weight: 300;
    line-height: 1.6;
    color: green;
    margin-bottom: 20px;
}

.quote-author {
    font-size: 1.5em;
    font-weight: 600;
    color: gold;
    background-color: #034948;
    width:100px;
    margin:auto;
}
.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-slide {
    display: flex;
    animation: carousel-slide 20s linear infinite;
}

.carousel-slide img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin: 0 15px;
}

@keyframes carousel-slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* Responsive styles for tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .slide-content h2 {
        font-size: 2.8rem;
    }

    .slide-content p {
        font-size: 1.3rem;
    }

    .gold-buttons-container {
        gap: 25px;
    }

    .tagline {
        font-size: 1.8rem;
    }
}

/* Responsive styles for smaller laptops */
@media (min-width: 1025px) and (max-width: 1280px) {
    .slide-content h2 {
        font-size: 3rem;
    }

    .slide-content p {
        font-size: 1.4rem;
    }
}

/* Responsive styles for larger screens */
@media (min-width: 1600px) {
    .slide-content h2 {
        font-size: 4rem;
    }

    .slide-content p {
        font-size: 1.8rem;
    }
}

/* Styling for the new navbar-left container */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 30px; /* Adjust spacing between logo and nav links */
}
.services {
    padding: 50px 20px;
    text-align: center;
}

.services h1 {
    font-size: 2.5em;
    margin-bottom: 50px;
}

.service-item {
    margin-bottom: 30px;
}

.service-item h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

#new-quote-section {
    padding: 0 20px; /* Removed padding-top, keeping left/right */
    text-align: center;
    background-color: #f9f9f9;
}

#new-quote-section p:first-child {
    font-size: 2.5em;
    font-weight: 300;
    line-height: 1.6;
    color: green;
    margin-bottom: 20px;
    opacity: 1;
}

#new-quote-section p:last-child {
    font-size: 1.5em;
    font-weight: 600;
    color: gold;
    opacity: 1;
    background-color: #034948;
    width:100px;
    margin:auto;
}

@media (max-width: 900px) {
  .nav-links li a[href="consultation.html"] {
    display: none;
  }
}


.consultation-button-container {
}

.consultation-button {
  display: inline-block;
  padding: 15px 30px;
  font-family: "Engravers' Gothic Regular", sans-serif;
  font-size: 1.2rem;
  color: #f7e192; /* Golden color */
  background-color: #034948; /* Dark teal/green color */
  border: 2px solid #f7e192; /* Golden border */
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.consultation-button:hover {
  background-color: #f7e192; /* Golden background on hover */
  color: #034948; /* Dark teal/green text on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  #new-quote-section {
    padding: 50px 10px; /* Reduced padding for mobile */
  }

  #new-quote-section p:first-child {
    font-size: 1.5em; /* Smaller font size for mobile */
  }

  #new-quote-section p:last-child {
    font-size: 1em; /* Smaller font size for mobile */
    width: auto; /* Allow width to be flexible for mobile */
  }

  #rumi-quote {
    padding: 50px 10px; /* Reduced padding for mobile */
  }

  #rumi-quote .quote-text {
    font-size: 1.5em; /* Smaller font size for mobile */
  }

  #rumi-quote .quote-author {
    font-size: 1em; /* Smaller font size for mobile */
    width: auto; /* Allow width to be flexible for mobile */
  }
}

@media (min-width: 901px) { /* Applying to laptop and larger screens */
  .hamburger {
    display: none;
  }
  .navbar-container {
    justify-content: space-evenly; /* Evenly space items in the navbar */
  }

  nav {
    flex: unset; /* Remove flex: 1 to prevent it from taking all available space */
  }

  .navbar-consult-button-laptop {
    display: block; /* Show the laptop button */
  }

  .consultation-button-mobile {
    display: none; /* Hide the mobile button */
  }

  .mobile-consultation-button-wrapper {
    display: none; /* Hide the mobile button wrapper on laptop screens */
  }
}

@media (max-width: 900px) {
  .mobile-consultation-button-wrapper {
    display: flex; /* Make it a flex container */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    padding: 20px; /* Add some padding */
  }
}