@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.embla {
  overflow: hidden;
}
.embla__container {
  display: flex;
}
/* .embla__slide {
  flex: 0 0 100%;
  min-width: 0;
} */

.embla__controls {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.embla__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  align-items: center;
}
.embla__button {
  width: 2.4em;
  height: 2.4em;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: #00000034;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}
.embla__button:disabled {
  opacity: 0;
}
.embla__button__svg {
  width: 35%;
  height: 35%;
}

.image-section {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.image-section img {
    width: 80%;
    max-width: 1000px;
    height: auto;
    border-radius: 10px; /* Optional: Adds smooth rounded edges */
}
