/* Welcome Section */
.welcome-section {
  margin: 0 auto;
  max-width: 1110px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
}

/* Content Wrapper */
.content {
  display: flex;
  justify-content: space-between; /* Keeps text and logo side by side */
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 950px;
  flex-wrap: nowrap; /* Prevents wrapping */
}

/* Heading Styling */
.contenth1 {
  color: #fff;
  font-size: 3vw; /* Adjusts font size dynamically */
  text-align: left;
  font-weight: bold;
  margin: 0;
  max-width: 70%; /* Prevents text from taking too much space */
  line-height: 1.2;
}

/* Logo Styling */
.logowel {
  width: 18vw;
  max-width: 150px;
  height: auto;
  margin: 0;
}

/* Tablets & Smaller Screens */
@media (max-width: 1024px) {
  .content {
    width: 100%;
    max-width: 80%;
    flex-wrap: nowrap; /* Ensures text and logo remain side by side */
  }
  .contenth1 {
    font-size: 4vw;
    max-width: 70%;
  }
  .logowel {
    width: 22vw;
    max-width: 130px;
  }
}

/* Mobile Devices (Below 820px) */
@media (max-width: 819px) {
  .content {
    flex-wrap: nowrap; /* Keeps text and logo inline */
    justify-content: space-between;
  }
  .contenth1 {
    font-size: 5vw;
    max-width: 80%;
  }
  .logowel {
    width: 25vw;
    max-width: 120px;
  }
}

/* Small Mobile Devices (Below 480px) */
@media (max-width: 480px) {
  .content {
    flex-wrap: nowrap;
    width: 80%;
    justify-content: space-between;
  }
  .contenth1 {
    font-size: 6vw;
    max-width: 80%;
  }
  .logowel {
    width: 30vw;
    max-width: 100px;
  }
}


 Video section 
.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0; /* Remove excessive space */
  width: 100%; /* Full width of the section*/
  max-width: 1100px;
  margin: 0 auto;
}

/* Responsive video wrapper */
.video-wrapper {
  position: relative;
  width: 100%; /* Use a percentage for flexibility */
  max-width: 1080px; /* Restrict the maximum width */
  aspect-ratio: 16/9; /* Maintains 16:9 aspect ratio more efficiently */
  margin: 0 auto; /* Center the wrapper */
  overflow: hidden; /* Ensures video fits within rounded corners */
  border-radius: 5px; /* Rounded corners for the video wrapper */
}

/* Video element */
.responsive-video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the video covers the wrapper without distortion */
  border-radius: 05px; /* Same rounding as the wrapper */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Optional shadow for styling */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1024px) { 
  .video-wrapper {
    width: 80%; /* Restrict width only for smaller screens */
    max-width: 80%;
  }
}

/* Further Adjustments for Standard Tablets */
@media (max-width: 768px) {
  .video-wrapper {
    width: 80%; /* Adjust width for smaller tablets */
    max-width: 80%;
  }
}

/* Nearly Full Width for Mobile Devices */
@media (max-width: 480px) {
  .video-wrapper {
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
  }
}
.underquote_container {
  width: 100%;
  max-width: 1080px;
  margin: 30px auto;
  border-radius: 8px;
  padding: 20px 0px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.underquote_quote {
  text-align: center;
}

.quote_mark {
  display: block;
  font-size: 2.2rem;
  color: #eec063;
  font-family: Georgia, serif;
  margin-bottom: 10px;
}

.quote_text {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: #f0f0f0;
  line-height: 1.4;
  margin: 0;
  padding: 0 5px;
}

/* Tablet */
@media (max-width: 768px) {
  .underquote_container {
    max-width: 80%;
    margin: 0 auto;
    padding: 15px 12px;
  }

  .quote_mark {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .quote_text {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .underquote_container {
    max-width: 80%;
    margin: 0 auto;
    padding: 30px;
  }

  .quote_mark {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }

  .quote_text {
    font-size: 0.88rem;
    line-height: 1.3;
  }
}
.racing-intro {
  padding: 0px 0px;
  font-family: 'Helvetica Neue', sans-serif;
}

.racing-container {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.racing-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

.racing-content {
  flex: 1;
  min-width: 300px;
}

.racing-content h1 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.racing-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 30px;
}

.racing-btn {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  font-weight: 600;
  padding: 14px 24px;
  font-family: 'Helvetica Neue', sans-serif;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  border: none;
  transition: background-color 0.4s ease, color 0.4s ease;
  cursor: pointer;
}

.racing-btn .icon {
  margin-right: 10px;
  transition: transform 0.3s ease;
  font-weight: bold;
}

.racing-btn .text {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.racing-btn:hover {
  background-color: #eec063;
  color: #000000;
}

.racing-btn:hover .icon {
  transform: rotate(45deg) ;
}

.racing-btn:hover .text {
  transform: translateX(3px);
}

/* Responsive layout */
@media (max-width: 1024px) {
  .racing-container {
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
  }

  .racing-content h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .racing-container {
    margin: 0 auto;
    width: 80%;
  }
  .racing-image img {
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .racing-content h1 {
    font-size: 26px;
  }

  .racing-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .racing-container {
    margin: 0 auto;
    width: 80%;
  }
  .racing-image img {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .racing-content h1 {
    font-size: 22px;
  }

  .racing-content p {
    font-size: 14px;
  }
}
.amun_intro {
  padding: 0px 0px;
  font-family: 'Helvetica Neue', sans-serif;
}

.amun_container {
  max-width: 1100px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: row;
}

.amun_image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

.amun_content {
  flex: 1;
  min-width: 300px;
}

.amun_content h1 {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.amun_content p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 30px;
}

.amun_btn {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  color: #000000;
  font-weight: 600;
  padding: 14px 24px;
  font-family: 'Helvetica Neue', sans-serif;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  border: none;
  transition: background-color 0.4s ease, color 0.4s ease;
  cursor: pointer;
}

.amun_btn .icon {
  margin-right: 10px;
  transition: transform 0.3s ease;
  font-weight: bold;
}

.amun_btn .text {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.amun_btn:hover {
  background-color: #eec063;
  color: #000000;
}

.amun_btn:hover .icon {
  transform: rotate(45deg);
}

.amun_btn:hover .text {
  transform: translateX(3px);
}

/* Responsive layout */
@media (max-width: 1024px) {
  .amun_container {
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
    text-align: center;
  }

  .amun_content h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .amun_container {
    margin: 0 auto;
    width: 80%;
    flex-direction: column-reverse; /* ⬅ Image first, text second */
  }

  .amun_image img {
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .amun_content h1 {
    font-size: 26px;
  }

  .amun_content p {
    font-size: 15px;
  }
}


@media (max-width: 480px) {
  .amun_container {
    margin: 0 auto;
    width: 80%;
  }

  .amun_image img {
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .amun_content h1 {
    font-size: 22px;
  }

  .amun_content p {
    font-size: 14px;
  }
}


.car-highlight {
  color: #fff;
  padding: 0px 20px;
  font-family: 'Helvetica Neue', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

/* Filter Menu */
.filter-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  font-size: 20px;
  color: #ffffff;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.filter-option {
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;
}

.filter-option.active {
  color: #e8aa56;
  font-weight: 450;
}

.filter-option.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 2px;
  width: 100%;
  background-color: #000;
}

/* Car Container */
.car-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  width: 100%;
  margin: auto;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}

.car-container.fade-out {
  opacity: 0;
}

.car-image {
  flex: 1;
  max-width: 300px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.car-image img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.car-image img:hover {
  transform: scale(1.05);
}

.car-details {
  flex: 1;
  max-width: 500px;
  width: 100%;
}

.car-details h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #ffffff;
}

.car-details p {
  font-size: 15px;
  color: #ffffff;
  margin: 10px 0;
}

.your-button-class {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background: linear-gradient(90deg, #f3e3c3, #eec063);
  color: #000;
  text-decoration: none;
  font-weight: 400;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.your-button-class:hover {
  background: linear-gradient(90deg, #eec063, #f3e3c3);
}

/* ======================= */
/* Responsive Layout Fixes */
/* ======================= */

@media (max-width: 1024px) {
  .car-container,
  .filter-menu {
    width: 80%;
  }

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

  .car-image {
    max-width: 80%;
  }

  .car-details {
    max-width: 80%;
  }

  .car-details h1 {
    font-size: 28px;
  }

  .filter-menu {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .car-container,
  .filter-menu {
    width: 80%;
  }

  .car-image {
    max-width: 80%;
  }

  .car-details {
    max-width: 80%;
  }

  .car-details h1 {
    font-size: 24px;
  }

  .filter-menu {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .car-container,
  .filter-menu {
    width: 100%;
  }
  .filter-option{
    font-size: 13px;
  }

  .car-image {
    max-width: 80%;
  }

  .car-details {
    max-width: 80%;
  }

  .car-details h1 {
    font-size: 20px;
  }

  .car-details p {
    font-size: 14px;
  }
}



.about-acetia {
  padding: 20px 20px;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 1100px;
  width: 100%;
}

.about-header span {
  display: inline-block;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 10px;
}

.about-header p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 40px;
}


/* Responsive Optimization */
@media (max-width: 1024px) {
  .about-container {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .about-container {
    width: 80%;
  }
}

@media (max-width: 480px) {
  .about-container {
    width: 80%;
  }

  .about-header p {
    font-size: 16px;
  }
}
.testimun_name-section {
  background-color: #0a0a0a;
  padding: 0px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.testimun_name-container {
  position: relative;
  width: 100%;
  max-width: 1080px;
  overflow: hidden;
  margin: 0 auto;
}

.testimun_name-slider {
  display: flex;
  overflow: hidden;
}

.testimun_name-wrapper {
  display: flex;
  gap: 80px;
  animation: testimonial-scroll 40s linear infinite;
}

@keyframes testimonial-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testimun_name-logo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 300px;
  max-width: 300px;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
}

.testimun_name-title {
  font-size: 22px;
  font-weight: bold;
  color: #e8aa56;
  white-space: nowrap;
}

.testimun_name-text {
  background: linear-gradient(135deg, #ffffff, #aaaaaa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  white-space: normal;
}

.testimun_name-container::before,
.testimun_name-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.testimun_name-container::before {
  left: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0));
}

.testimun_name-container::after {
  right: 0;
  background: linear-gradient(to left, rgba(10, 10, 10, 1), rgba(10, 10, 10, 0));
}

/* Responsive Tweaks */
@media (max-width: 1024px) {
  .testimun_name-container {
    max-width: 70%;
  }
  .testimun_name-logo {
    min-width: 260px;
  }
  .testimun_name-title {
    font-size: 20px;
  }
  .testimun_name-text {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .testimun_name-container {
    max-width: 70%;
  }
  .testimun_name-container::before,
  .testimun_name-container::after {
    width: 80%; /* Smaller blur for tablets */
  }
  .testimun_name-logo {
    min-width: 240px;
  }
  .testimun_name-title {
    font-size: 18px;
  }
  .testimun_name-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .testimun_name-container {
    max-width: 70%;
    margin: 0 auto;
  }
  .testimun_name-container::before,
  .testimun_name-container::after {
    width: 50px; /* Tighter blur for phones */
  }
  .testimun_name-logo {
    min-width: 220px;
  }
  .testimun_name-title {
    font-size: 16px;
  }
  .testimun_name-text {
    font-size: 13px;
  }
}

.key-features-section {
  color: #ffffff;
  padding: 60px 20px;
  font-family: 'Helvetica Neue', sans-serif;
  box-sizing: border-box;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

/* Left Title */
.feature-left {
  flex: 1 1 100%;
  max-width: 300px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
  color: #ffffff;
}

/* Right Features Grid */
.feature-items {
  flex: 1 1 700px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Feature Box Styling */
.feature-box h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-left: 14px;
}

.feature-box h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 2px;
  height: 16px;
  background-color: #e8aa56;
}

.feature-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #dddddd;
  margin: 0;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .features-container {
    width: 80%;
  }

  .feature-left {
    max-width: 100%;
    font-size: 28px;
    margin-bottom: 30px;
  }

  .feature-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .features-container {
    width: 80%;
  }

  .feature-left {
    font-size: 24px;
  }

  .feature-box h3 {
    font-size: 14px;
  }

  .feature-box p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .features-container {
    width: 80%;
  }

  .feature-left {
    font-size: 20px;
  }
}

.indexteam-section {
  display: flex;
  justify-content: center;
  padding: 0px 20px;
}

.indexteam-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.indexteam-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.indexteam-text h5 {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: #ccc;
}

.indexteam-text h1 {
  font-size: 2.5rem;
  color: #e8aa56;
  margin-top: 10px;
}

.indexteam-text p {
  font-size: 1rem;
  color: #ccc;
  margin-top: 20px;
  line-height: 1.5;
}

.indexteam-profile {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.indexteam-profile img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 10px;
}

.indexteam-info {
  margin-top: 15px;
  text-align: center;
}

.indexteam-info span {
  color: #aaa;
  font-size: 0.9rem;
}

.indexteam-info h2 {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.indexteam-dots {
  margin-top: 15px;
  text-align: center;
}

.indexteam-dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #888;
  border-radius: 50%;
  display: inline-block;
}

.indexteam-dot.active {
  background-color: #fff;
}

/* Responsive Fixes */

@media (max-width: 768px) {
  .indexteam-container {
    flex-direction: column;
    align-items: center;
  }

  .indexteam-text,
  .indexteam-profile {
    width: 100%;
    max-width: 80%;
    text-align: center;
  }

  .indexteam-profile {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .indexteam-profile img {
    max-width: 100%;
    width: auto;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .indexteam-text h1 {
    font-size: 1.8rem;
  }

  .indexteam-text p {
    font-size: 0.95rem;
  }

  .indexteam-info h2 {
    font-size: 1.2rem;
  }

  .indexteam-profile {
    justify-content: center;
  }

  .indexteam-profile img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
  }
}

.announcement_section {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding: 0px 0px;
  box-sizing: border-box;
}

.announcement_slider_container {
  position: relative;
  overflow: hidden;
}

.announcement_slider_wrapper {
  overflow: hidden;
}

.announcement_slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  will-change: transform;
}

.announcement_card {
  flex: 0 0 33.3333%;
  background: #1b1b1b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.announcement_card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.announcement_info {
  padding: 16px;
  color: #fff;
}

.announcement_info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #e8aa56;
}

.announcement_info p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

.announcement_button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #e8aa56;
  border: none;
  font-size: 24px;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.announcement_button.prev {
  left: 10px;
}

.announcement_button.next {
  right: 10px;
}

/* Responsive Layouts */
@media (max-width: 1024px) {
  .announcement_section {
    max-width: 80%;
  }

  .announcement_card {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .announcement_section {
    max-width: 80%;
  }

  .announcement_card {
    flex: 0 0 100%;
  }

  .announcement_card img {
    height: 200px;
  }

  .announcement_info h3 {
    font-size: 16px;
  }

  .announcement_info p {
    font-size: 13px;
  }

  .announcement_button {
    font-size: 20px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .announcement_section {
    max-width: 70%;
  }

  .announcement_card {
    flex: 0 0 100%;
  }

  .announcement_card img {
    height: 180px;
  }

  .announcement_info h3 {
    font-size: 15px;
  }

  .announcement_info p {
    font-size: 13px;
  }

  .announcement_button {
    font-size: 18px;
    padding: 8px;
  }
}
