.about-container {
  display: grid;
  grid-template-columns: 41% 59%;
  align-items: end;
  height: 100vh;
  text-align: center;
}

/* Carousel Container */
.carousel {
  position: relative;
  width: 90%;
  height: 500px;
  margin: 50px auto;
  align-items: baseline;
  overflow-x: hidden;
  overflow-y: hidden;
}

/* Carousel Track */
.carousel-track {
  display: flex;
  height: 210px;
  transition: transform 0.5s ease-in-out; /* Smooth movement for transitions */
  justify-content: center;
}

/* Individual Carousel Items */
.carousel-item {
  flex: 0 0 27%; /* 3 items visible at a time */
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  padding: 30px;
  opacity: .8;
  transition: transform 0.5s ease-in-out, font-size 0.5s ease-in-out;
}

.carousel-item img {
    filter: brightness(95%);
    width: 325px; /* Scale images to fit container */
    height: 325px; /* Maintain aspect ratio */
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.6); /* Add subtle shadow */
}

.carousel-item video {
  filter: brightness(95%);
  width: 325px; /* Scale images to fit container */
  height: 325px; /* Maintain aspect ratio */
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.6); /* Add subtle shadow */
}

/* Focused Item */
.carousel-item.focus {
  filter: brightness(110%);
  transform: scale(1.4); /* Makes the center item bigger */
  font-size: 1.5rem;
  opacity: 1;
  z-index: 5;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  padding-left: 40px;
  padding-right: 40px;
  top: 35%;
  transform: translateY(-50%);
  color: grey;
  border: none;
  cursor: pointer;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0);
  font-weight: 300;
  font-size: 2.3em;
  text-shadow: #e5ccff 0px 0px 4px;
}

.carousel-btn.left-btn {
  left:0px;
}

.carousel-btn.right-btn {
  right: 0px;
}

@media (max-width: 768px) {
    .carousel-item {
      flex: 0 0 80%; /* Show one item at a time */
    }
  
    .carousel {
      padding: 10px 0; /* Reduce padding on smaller screens */
    }
  
    .carousel-btn {
      font-size: 1rem;
      padding: 10px;
    }
  }

.desc {
  margin: 30px;
  padding: 8px;
  text-align: center;
  color: white;
  font-family: 'Genos', sans-serif;
  font-weight: 600;
}

.arch-image-container {
    width: 80vh; /* Set your desired width */
    height: 650px; /* Set your desired height */
    overflow: hidden; /* Ensures the image does not overflow the container */
    border-top-left-radius: 50%; /* Rounds the top-left corner */
    border-top-right-radius: 50%; /* Rounds the top-right corner */
    border-bottom-left-radius: 0; /* Keeps bottom-left corner square */
    border-bottom-right-radius: 0; /* Keeps bottom-right corner square */
}
  
  .arch-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the container while maintaining aspect ratio */
  }
  
.text-container {
    width: 110vh;
    height: 100vh;
    padding: 20px;
    background: #5271ff; /* Light background */
    margin: 0; /* Remove any default margins */
    position: relative; /* Ensure it's positioned properly */
    right: 0; /* Align to the left */
    text-align: left;
}


.contact-container {
    height: 100vh;
    text-align: center;
}

/* Form Container */
.form-container {
    width: 100%;
    height: 100vh;
    max-width: 50%;
    max-height: 100vh;
    margin: 0 auto;
    padding: 10px;
    background: #5271ff; /* Light background */
    margin: 0; /* Remove any default margins */
    position: relative; /* Ensure it's positioned properly */
    left: 0; /* Align to the left */
}
.connect-container {
    width: 100%;
    height: 100vh;
    max-width: 50%;
    max-height: 100vh;
    margin: 0 auto;
    right:0;
    background: #ffffff;
}
  
  /* Form Elements */
form {
    display: flex;
    flex-direction: column;
    gap: 11px; /* Add space between elements */
    margin: 0px 50px 80px 90px;
}
  
  /* Labels */
  form label {
    font-size: 11px;
    font-weight: bold;
    color: #ffffff;
  }
  
  /* Input and Textarea */
  form input[type="text"],
  form textarea {
    width: 98%;
    padding: 10px;
    border: 3px solid #ffffff;
    font-size: 24px;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: #5271ff;
}
  
  /* Button */
  form button {
    padding: 15px;
    width: 175px;
    background-color: #ffffff; /* Blue button */
    color: #5271ff;
    font-size: 30px;
    font-weight: 700;
    font-family: 'Genos', sans-serif;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
    margin: 30px 0px 30px;
  }
  
  form button:hover {
    background-color: #7b92fb; /* Darker blue on hover */
    color: #ffffff;
  }
  
/* Style for placeholder text */
form input::placeholder,
form textarea::placeholder,
form input,
form textarea {
  color: #ffffff;
  font-size: 24px;
  opacity: 1;
  font-family: 'Genos', sans-serif;
}

form input:focus::placeholder,
form textarea:focus::placeholder
form input:focus,
form textarea:focus {
  color: #5271ff;
  font-style: normal;
}