
.custom-shape-divider-top-1742245286 {
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background-color: var(--color-2);
}

.custom-shape-divider-top-1742245286 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.custom-shape-divider-top-1742245286 .shape-fill {
  fill: var(--color-1);
}
.slider-container {
  position: relative;
  width: 100%;
  height: fit-content;
  padding-bottom: 2px;
  margin: auto;
  overflow: hidden;
  background-color: var(--color-2);
}

.slider {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.slide img {
  height: 400px;
  object-fit: cover;
}

.slide-content {
  /* position: absolute;
  bottom: 20px;
  left: 20px; */
  /* background: rgba(0, 0, 0, 0.7); */
  color: var(--color-2);
  padding: 15px;
  border-radius: 5px;
}

.slide-content h2 {
  margin-bottom: 10px;
  color: var(--color-1);
}

.slide-content p {
  text-align: justify;
  color: var(--color-1);
}


.slider-buttons {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
  /* box-sizing: border-box; */
}

.slider-buttons div {
  /* background-color: rgba(0, 0, 0, 0.5); */
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  /* border-radius: 50%; */

}



.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
iframe{
  width: 100%;
}

/* Main Carousel */
#main-carasol-container {
  height: fit-content;
  /* background-color: var(--color-1); */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center items horizontally */
  /* justify-content: center; Center items vertically */
  overflow: hidden;
  color: var(--color-2);
  width: 100%;
  /* position: relative; */
}

/* Carousel Wrapper */
#Carasol {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  gap: 10px;
  padding: 10px;
  width: auto; /* Auto width to fit items */
  max-width: 100%;
  /* justify-content: center; Center the items */
  scroll-snap-type: x mandatory;
}

/* Hide Scrollbar */
#Carasol::-webkit-scrollbar {
  display: none;
}

/* Individual Carousel Items */
.carasol-container {
  width: 300px;
  background-color: white;
  border-radius: 4px;
  color: var(--color-1);
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-weight: bold;
}

/* Images */
.weoffer-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
/* Images */
.pizza-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

/* Why Us Section */
#Whyus-childrens {
  display: flex;

  justify-content: center;
  gap: 1em;
  width: 100%;
}

.whyus-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  background-color: var(--color-2);

  padding: 8px;
  border-radius: 4px;
}
/* Responsive Design */

#contact-form-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  /* bboutckground-color: #f9f9f9; */
  /* border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

#contact-form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  color: var(--color-2);

  gap: 15px;
}

label {
  font-size: 14px;
  color: var(--color-2);
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  height: 150px;
  resize: none; /* Prevents resizing the textarea */
}
.contact-number {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.contact-number > div {
  
  display: flex;
  padding: 4px;
  align-items: center;
  justify-content: center;
  width: 100%;
  
}

@keyframes scrollCarasol {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.scrolling {
  display: flex;
  flex-wrap: nowrap;
  animation: scrollCarasol 5s linear infinite;
}
#Services-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Creates 2 equal columns */
  gap: 10px; /* Optional spacing */
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  box-sizing: border-box;
  border: var(--color-1) solid 1px;
  border-radius: 4px;
}

.services img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 4px 4px 0px 0px;
}
#AboutMe-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-left: 2em;
  padding-right: 2em;
  scroll-margin-top: 80px;
}
.AboutMe-Img-Container {
  position: relative;

  width: 300px;
  height: 400px;
  background-color: #2daa9e;
  border-radius: 64% 36% 74% 26% / 51% 50% 50% 49%;
  background-image: url("../static/images/janica-profile.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2); /* <- real box shadow here */
}
.section4{
  display: flex;
  flex-direction: column;
  
}

#AboutMe-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.About-profile {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
  padding: 8px;
  font-size: 1.5em;
}

#More-Service {
  width: 100%;
  display: flex;
  justify-content: end;
  a {
    all: unset;
    font-weight: bold;
  }
}

@media screen and (max-width: 768px) {
  #AboutMe-container {
    display: flex;
    flex-direction: column;
    padding-left: 1em;
    padding-right: 1em;
  }

  .slide img {
    height: 60%;
  }
  .container {
    grid-template-rows: repeat(auto-fit, minmax(200px, 1fr));
  }
  .contact-number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

  /* #Whyus-childrens {
    flex-direction: column;
    align-content: center;
  } */

  .whyus-container {
    width: 100%;
    justify-content: space-around;
  }

  /* Images */
  .weoffer-img {
    height: 150px;
  }
}
