/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

div a {
  text-decoration: none;
}

:root {
  --primary-color: #f6f8fd;
  --secondary-color: #2257a0;
  --color-text: #505050;
  --color-text-2: #40a2d8;
  --navbar-color: #ffffff;
  --navbar-color-text: #000000;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Header Styles */
header {
  position: fixed;
  animation: slideDown 1s ease-out;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: rgba(0, 0, 0, 0); /* Transparent by default */
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background-color: #fff; /* White background on scroll */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

header .nav-links {
  display: flex;
  gap: 30px;
}

header .nav-links a {
  text-decoration: none;
  font-size: 20px;
  color: var(--color-text); /* Default link color for transparent header */
  transition: color 0.3s ease;
}

header.scrolled .nav-links a {
  color: #333; /* Dark link color for white background */
}

header .logo {
  height: 80px;
}

header .btn {
  border: 2px solid var(--secondary-color);
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  color: var(--secondary-color);
}

header .btn:hover {
  color: var(--navbar-color);
  border: 2px solid var(--secondary-color);
  background-color: var(--secondary-color);
}

/* Hamburger Menu for Mobile */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* Landing Image Section */
.image-container {
  width: 100%;
  height: 100vh;
  position: relative;
}

.image-container .landing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container .content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  text-align: left;
  animation: slideInFromLeft 2s ease-in-out;
}

.image-container .content h1 {
  font-size: 2.5rem;
}

.image-container .content span {
  font-size: 4rem;
  font-weight: bold;
}

.image-container .explore-btn {
  line-height: 80px;
  background: var(--secondary-color);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.image-container .explore-btn:hover {
  background: #7ba2c9;
}

/* Spotlight Section */
.spotlight {
  padding: 50px;
  text-align: center;
  background-color: #f9f9f9;
}

.spotlight h2 {
  font-size: 42px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.spotlight p {
  font-size: 16px;
  margin-bottom: 30px;
  color: var(--color-text);
}

/* Center the slider */
.slider {
  display: flex;
  justify-content: center; /* Centers the slider horizontally */
  align-items: center; /* Centers the content vertically */
  margin: 0 auto; /* Ensures the slider is centered within its container */
  max-width: 1200px; /* Optional: restricts slider width */
}

/* Slide styles */
.slide {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slide img {
  width: 100%;
  max-width: 370px;
  border-radius: 10px;
  margin-bottom: 5px;
}

/* CAROUSEL */
/* Slider Container */
.slider1 {
  padding-top: 50px;
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide1 {
  min-width: 100%;
  height: 610px; /* Default height for larger screens */
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #333;
  background-position: center;
  background-size: cover; /* Ensures images cover the slide area */
  background-repeat: no-repeat;
}

/* Navigation Buttons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
  font-size: 18px;
  z-index: 10;
  opacity: 0.8;
  border-radius: 50%;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
}

/* Dots Navigation */
.nav-dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.nav-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: var(--color-text);
  border-radius: 50%;
  cursor: pointer;
}

.nav-dots .dot.active {
  background-color: var(--secondary-color);
}

/* Slide Content Styling */
.slide-content {
  text-align: center;
  color: #fff;
}

.slide-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 20px;
}

.learn-more {
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 16px;
  background-color: var(--secondary-color);
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.learn-more:hover {
  background-color: var(--color-text-2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .slide1 {
    height: 400px; /* Reduce height for tablets */
    background-size: contain; /* Ensure the full image is visible */
  }

  .slide-content h2 {
    font-size: 28px;
  }

  .slide-content p {
    font-size: 16px;
  }

  .learn-more {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .slide1 {
    height: 500px; /* Reduce height further for smaller screens */
    background-size: cover; /* Cover ensures the slide area is filled */
  }

  .slide-content {
    padding-top: 30px;
  }

  .slide-content h2 {
    font-size: 20px;
  }

  .slide-content p {
    font-size: 14px;
  }

  .learn-more {
    padding: 6px 12px;
    font-size: 12px;
  }
}

/* Product Section */
.image-container2 {
  width: 100%;
  height: 50vh; /* Adjust height to fit your design */
  position: relative; /* Ensures the h1 is positioned relative to this container */
  overflow: hidden; /* Prevents content overflow */
}

.image-container2 .landing-image2 {
  width: 100%;
  height: 100%; /* Make the image cover the container */
  object-fit: cover; /* Ensures the image scales correctly */
}

.image-container2 .content2 h1 {
  color: #fff; /* White text */
  text-align: left; /* Aligns text to the left */
  position: absolute; /* Positions the h1 inside the image container */
  top: 55%; /* Centers the text vertically */
  left: 60px; /* Positions the text slightly from the left */
  transform: translateY(-50%); /* Aligns the text to the vertical center */
  font-size: 3.5rem; /* Adjust font size as per design */
  font-weight: bold; /* Makes the text bold */
  z-index: 1; /* Ensures the text is above the image */
  animation: slideInFromLeft 1.5s ease-in-out; /* Optional animation for entry effect */
}

/* Breadcrumb */
.breadcrumb-container {
  margin-bottom: 20px;
  padding: 10px 140px;
  background-color: #f9f9f9;
}

.breadcrumb {
  margin: 0;
  background-color: transparent;
  padding: 0;
}

.breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: var(--secondary-color); /* Blue color for links */
  transition: color 0.3s ease;
}

.breadcrumb .breadcrumb-item a:hover {
  color: var(--color-text-2); /* Darker blue on hover */
}

.breadcrumb .breadcrumb-item.active {
  color: #6c757d; /* Gray color for active item */
}

.product-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.product-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Ensures responsive layout */
}

.product-card {
  width: 400px;
  background: #f0f4f7;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

.image-product {
  position: relative;
  overflow: hidden;
}

.image-product img {
  width: 100%;
  height: auto;
  display: block;
}

.learn-now-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.learn-now-btn button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.learn-now-btn button:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
}

.image-product:hover .learn-now-btn {
  opacity: 1;
}

.product-info {
  padding: 15px;
  background: #ffffff;
}

.product-name {
  font-size: 16px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-top: 10px;
}

/* DETAIL PRODUCT */
/* Product Section */
.product-section1 {
  margin-top: 170px;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}

.product-grid1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;
  width: 100%;
}

/* Product Images */
.product-images1 {
  flex: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-image1 img {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border-radius: 10px;
}

.thumbnail-images1 {
  display: flex;
  justify-content: left;
  gap: 10px;
  margin-top: 15px;
}

.thumbnail-images1 img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.thumbnail-images1 img:hover {
  border-color: #888;
}

/* Product Info */
.product-info1 {
  flex: 1 1 45%;
  padding-top: 80px;
  padding-left: 20px;
  background-color: #ffffff;
  border-radius: 10px;
}

.product-category1 {
  font-size: 16px;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.product-title1 {
  font-size: 28px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.product-description1 {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  max-width: 80%;
}

/* Specifications Section */
.product-specifications {
  width: 80%;
  margin: 40px auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.specifications-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 50px;
  text-align: center;
}

.specifications-container {
  display: grid;
  gap: 50px; /* Space between the two columns */
}

.specifications-column {
  gap: 20px;
  margin-bottom: 10px;
  padding: 10px 0; /* Add spacing between rows */
}

.specifications-column div {
  width: 100%;
  font-weight: 500; /* Add subtle emphasis to the labels */
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.6;
  border-bottom: 1px solid #eee; /* Optional: Add a subtle separator */
}

.related-products {
  width: 80%;
  margin: 40px auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.related-products h2 {
  font-size: 26px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-bottom: 50px;
  text-align: left;
}

/* Flexbox container for the product cards */
.related-products-container {
  display: flex;
  gap: 20px;
  justify-content: left;
  flex-wrap: wrap; /* Ensures responsive layout */
}

.related-product-card {
  width: 373px;
  background: #f0f4f7;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.related-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

.related-product-image {
  position: relative;
  overflow: hidden;
}

.related-product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.related-product-info {
  padding: 15px;
  background: #ffffff;
}

.related-product-name {
  font-size: 16px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-top: 10px;
}

.related-product-image:hover .learn-now-btn {
  opacity: 1;
}

/* Responsive styling */
@media (max-width: 768px) {
  /* For tablet or smaller screens, reduce card width and adjust layout */
  .related-product-card {
    width: 45%; /* Two products per row on smaller screens */
  }

  .related-products h2 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  /* For mobile screens, make product cards full width */
  .related-product-card {
    width: 100%; /* One product per row on mobile */
  }

  .related-products {
    width: 90%; /* Reduce margin and padding for mobile view */
  }

  .related-products h2 {
    font-size: 20px; /* Reduce title size for mobile */
  }

  .related-product-name {
    font-size: 14px; /* Adjust product name size */
  }
}

/* General Media Query for Mobile Devices */
@media screen and (max-width: 768px) {
  /* Product Section */
  .product-section1 {
    margin-top: 100px;
    padding-left: 10px;
  }

  .product-grid1 {
    flex-direction: column;
    gap: 20px;
  }

  /* Product Images */
  .product-images1 {
    flex: 100%;
  }

  .main-image1 img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
  }

  .thumbnail-images1 img {
    width: 50px;
    height: 50px;
  }

  .thumbnail-images1 {
    justify-content: center; /* Center thumbnails on mobile */
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Product Info */
  .product-info1 {
    flex: 100%;
    padding: 20px;
    text-align: center; /* Center-align text for smaller screens */
  }

  .product-category1 {
    font-size: 14px;
  }

  .product-title1 {
    font-size: 22px;
  }

  .product-description1 {
    font-size: 14px;
    width: 100%; /* Allow full width on mobile */
    line-height: 1.5;
  }

  /* Specifications Section */
  .product-specifications {
    width: 100%; /* Full width on mobile */
    margin: 20px auto;
    padding: 15px;
  }

  .specifications-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .specifications-container {
    grid-template-columns: 1fr; /* Single-column layout for smaller screens */
    gap: 30px;
  }

  .specifications-column {
    text-align: left;
    gap: 10px;
  }

  .specifications-column div {
    padding-bottom: 70px;
    flex-direction: column; /* Stack items vertically */
  }

  .specifications-column div {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .product-section1 {
    margin-top: 130px;
    padding-left: 5px;
  }

  .product-grid1 {
    flex-direction: column;
    align-items: center;
  }

  .product-images1 {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .main-image1 img {
    max-width: 99%;
    height: auto; /* Maintain aspect ratio */
  }

  .thumbnail-images1 {
    justify-content: center;
    gap: 8px;
  }

  .thumbnail-images1 img {
    width: 50px;
    height: 50px;
  }

  .product-info1 {
    flex: 1 1 100%;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-title1 {
    font-size: 24px;
    text-align: center;
  }

  .product-description1 {
    font-size: 14px;
    max-width: 100%;
    text-align: center;
  }

  .product-specifications {
    width: 100%;
    margin: 20px auto;
    padding: 15px;
  }

  .specifications-title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .specifications-container {
    gap: 30px;
  }

  .specifications-column {
    align-items: flex-start;
    gap: 5px; /* Reduce gap between items */
    font-size: 14px;
    padding: 5px 0;
  }

  .specifications-column div {
    padding-bottom: 70px;
    flex-direction: column; /* Stack items vertically */
  }

  .specifications-column span:first-child {
    margin-bottom: 5px;
  }

  .thumbnail-images1 img:hover {
    border-color: var(--secondary-color);
  }
}

/* FAQ */
/* FAQ Section */
.image-container3 {
  width: 100%;
  height: 50vh; /* Adjust height to fit your design */
  position: relative; /* Ensures the h1 is positioned relative to this container */
  overflow: hidden; /* Prevents content overflow */
}

.image-container3 .landing-image3 {
  width: 100%;
  height: 100%; /* Make the image cover the container */
  object-fit: cover; /* Ensures the image scales correctly */
}

.image-container3 .content3 h1 {
  color: #fff; /* White text */
  text-align: left; /* Aligns text to the left */
  position: absolute; /* Positions the h1 inside the image container */
  top: 55%; /* Centers the text vertically */
  left: 60px; /* Positions the text slightly from the left */
  transform: translateY(-50%); /* Aligns the text to the vertical center */
  font-size: 3.5rem; /* Adjust font size as per design */
  font-weight: bold; /* Makes the text bold */
  z-index: 1; /* Ensures the text is above the image */
  animation: slideInFromLeft 1.5s ease-in-out; /* Optional animation for entry effect */
}

.faq-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.faq-title {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 40px;
  text-align: center;
}

.faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  background-color: transparent;
  border: none;
  text-align: left;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 15px 20px;
  font-size: 14px;
  color: #555;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
}

/* Register */
.image-container4 {
  width: 100%;
  height: 50vh; /* Adjust height to fit your design */
  position: relative; /* Ensures the h1 is positioned relative to this container */
  overflow: hidden; /* Prevents content overflow */
}

.image-container4 .landing-image4 {
  width: 100%;
  height: 100%; /* Make the image cover the container */
  object-fit: cover; /* Ensures the image scales correctly */
}

.image-container4 .content4 h1 {
  color: #fff; /* White text */
  text-align: left; /* Aligns text to the left */
  position: absolute; /* Positions the h1 inside the image container */
  top: 55%; /* Centers the text vertically */
  left: 60px; /* Positions the text slightly from the left */
  transform: translateY(-50%); /* Aligns the text to the vertical center */
  font-size: 3.5rem; /* Adjust font size as per design */
  font-weight: bold; /* Makes the text bold */
  z-index: 1; /* Ensures the text is above the image */
  animation: slideInFromLeft 1.5s ease-in-out; /* Optional animation for entry effect */
}

.forminput {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  border-collapse: collapse;
  background: #f9f9f9;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
}

.forminput tr td {
  padding: 12px;
  vertical-align: top;
  font-size: 14px;
  color: #444;
}

/* Label kolom kiri */
.forminput tr td:first-child {
  text-align: left; /* <- ini kuncinya */
  font-weight: 600;
  color: #222;
  width: 220px;
}

/* Input / Textarea */
.forminput tr td input,
.forminput tr td textarea,
.forminput tr td select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  background: #fafafa;
  transition: 0.3s;
}

.forminput tr td input:focus,
.forminput tr td textarea:focus,
.forminput tr td select:focus {
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Tombol submit */
.forminput tr td input[type="submit"] {
  background: #3b82f6;
  color: #fff;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: background 0.3s;
  padding: 10px 20px;
  border-radius: 8px;
}

.forminput tr td input[type="submit"]:hover {
  background: #2563eb;
}

/* Error message */
#diverrortxt {
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  color: maroon;
}

@media (max-width: 768px) {
  .forminput,
  .forminput tr,
  .forminput td {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 10px;
  }

  .forminput tr td {
    padding: 8px 0;
  }

  .forminput tr td:first-child {
    margin-top: 15px;
    width: 100%;
  }

  .forminput tr td input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .forminput {
    width: 100%;
    max-width: 100%;
    margin: 10px;
  }

  .forminput tr td {
    padding: 6px 0;
    font-size: 13px;
  }

  .forminput tr td:first-child {
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
  }

  .forminput tr td input,
  .forminput tr td textarea,
  .forminput tr td select {
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 6px;
  }

  .forminput tr td input[type="submit"] {
    font-size: 14px;
    padding: 12px;
    border-radius: 6px;
    margin-top: 12px;
    width: 100%;
  }

  #diverrortxt {
    font-size: 13px;
    margin-top: 8px;
  }
}

/* About Section */
.image-container5 {
  width: 100%;
  height: 50vh; /* Adjust height to fit your design */
  position: relative; /* Ensures the h1 is positioned relative to this container */
  overflow: hidden; /* Prevents content overflow */
}

.image-container5 .landing-image5 {
  width: 100%;
  height: 100%; /* Make the image cover the container */
  object-fit: cover; /* Ensures the image scales correctly */
}

.image-container5 .content5 h1 {
  color: #fff; /* White text */
  text-align: left; /* Aligns text to the left */
  position: absolute; /* Positions the h1 inside the image container */
  top: 55%; /* Centers the text vertically */
  left: 60px; /* Positions the text slightly from the left */
  transform: translateY(-50%); /* Aligns the text to the vertical center */
  font-size: 3.5rem; /* Adjust font size as per design */
  font-weight: bold; /* Makes the text bold */
  z-index: 1; /* Ensures the text is above the image */
  animation: slideInFromLeft 1.5s ease-in-out; /* Optional animation for entry effect */
}

.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9; /* White background */
  text-align: center;
}

.about-logo {
  max-width: 400px; /* Adjust logo size */
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: #333; /* Dark gray text */
  line-height: 1.8;
  margin: 0 auto;
  max-width: 1000px; /* Center and limit text width */
}

.contact-section {
  padding: 60px 20px;
  background-color: #f8f9fc;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 40px;
  text-align: center;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info .col-md-3 {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
}

.contact-info i {
  font-size: 36px;
  color: var(--color-text);
  margin-bottom: 10px;
}

.contact-info h5 {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--color-text);
}

.contact-info p {
  font-size: 0.7rem;
  color: var(--color-text);
}

.map-container iframe {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Video Section */
.video-section {
  width: 90%;
  height: 600px;
  padding: 20px;
  margin: auto;
  justify-content: center;
}

/* Enterprise Culture Section */
.enterprise-culture-section {
  padding: 60px 10px;
  background-color: #ffffff; /* White background */
}

.section-title {
  font-size: 36px;
  color: var(--secondary-color); /* Blue */
  margin-bottom: 40px;
}

.culture-icon {
  font-size: 38px;
  color: var(--navbar-color-text); /* Dark gray */
  margin-bottom: 20px;
}

.culture-title {
  font-size: 20px;
  color: var(--navbar-color-text); /* Dark gray */
  margin-bottom: 15px;
  font-weight: bold;
}

.culture-description {
  font-size: 16px;
  color: var(--color-text); /* Light gray */
  line-height: 1.5;
}

.enterprise-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.row .col-md-4 {
  background-color: #fff; /* White background */
  border-radius: 5px; /* Slightly rounded corners */
  padding: 10px;
  margin-bottom: 40px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Subtle shadow */
}

/* Catalog Section */
.image-container6 {
  width: 100%;
  height: 50vh; /* Adjust height to fit your design */
  position: relative; /* Ensures the h1 is positioned relative to this container */
  overflow: hidden; /* Prevents content overflow */
}

.image-container6 .landing-image6 {
  width: 100%;
  height: 100%; /* Make the image cover the container */
  object-fit: cover; /* Ensures the image scales correctly */
}

.image-container6 .content6 h1 {
  color: #fff; /* White text */
  text-align: left; /* Aligns text to the left */
  position: absolute; /* Positions the h1 inside the image container */
  top: 55%; /* Centers the text vertically */
  left: 60px; /* Positions the text slightly from the left */
  transform: translateY(-50%); /* Aligns the text to the vertical center */
  font-size: 3.5rem; /* Adjust font size as per design */
  font-weight: bold; /* Makes the text bold */
  z-index: 1; /* Ensures the text is above the image */
  animation: slideInFromLeft 1.5s ease-in-out; /* Optional animation for entry effect */
}

.catalog-section {
  padding: 60px 20px;
  background-color: #f9f9f9; /* White background */
  text-align: center;
}

.catalog-title {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 40px;
  text-align: center;
}

.catalog-container {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.catalog-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.catalog-item {
  width: 300px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  transition: transform 0.3s;
}

.catalog-item:hover {
  transform: scale(1.05);
}

/* Footer Section */
.footer-section {
  background-color: var(--navbar-color);
  padding: 80px 0px;
  color: var(--color-text);
  font-size: 14px;
}

.footer-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left {
  color: var(--color-text);
  text-align: left;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 15px;
}

.footer-left p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact {
  display: block;
  margin-top: 5px;
}

.footer-contact i {
  color: var(--color-text);
  margin-right: 10px;
}

.footer-center h5,
.footer-right h5 {
  color: var(--navbar-color-text);
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 25px;
}

.footer-center ul {
  list-style: none;
  padding: 0;
}

.footer-center ul li {
  margin-bottom: 10px;
}

.footer-center ul li a {
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.footer-center ul li a:hover {
  color: var(--secondary-color);
}

.footer-right .social-links {
  display: flex;
  gap: 15px;
}

.footer-right .social-links a {
  font-size: 20px;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right .social-links a:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  margin-top: 30px;
  font-size: 13px;
  color: var(--color-text);
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translate(-100%, -50%);
    opacity: 0;
  }
  to {
    transform: translateY(-50%);
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    padding: 10px 20px;
  }

  header .logo {
    height: 80px;
  }

  header .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    right: 10px;
    width: 150px;
    padding: 10px;
    border-radius: 5px;
  }

  header .nav-links.active {
    background-color: var(--secondary-color);
    display: flex;
  }

  header .nav-links a {
    color: #fff;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  header.scrolled .nav-links a {
    color: var(--navbar-color); /* Dark link color for white background */
    background-color: var(--secondary-color);
  }

  header .btn {
    display: none;
  }

  .menu-toggle {
    color: var(--secondary-color);
    display: block;
  }

  .image-container .content {
    left: 20px;
    max-width: 90%;
  }

  .image-container .content h1 {
    font-size: 24px;
  }

  .image-container .content p {
    font-size: 16px;
  }

  .image-container .explore-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .footer-section {
    background-color: var(--navbar-color);
    padding: 80px 10px;
    color: var(--color-text);
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  header .logo {
    height: 70px;
  }

  header .nav-links a {
    font-size: 14px;
    color: var(--navbar-color);
  }

  .image-container .content span {
    font-size: 2.5rem;
  }

  .spotlight {
    padding: 50px 10px;
    text-align: center;
    background-color: #f9f9f9;
  }

  .spotlight h2 {
    font-size: 34px;
    color: var(--secondary-color);
    margin-bottom: 10px;
  }

  .spotlight p {
    font-size: 14px;
    margin-bottom: 30px;
    color: var(--color-text);
  }

  .slide {
    background: #fff;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .image-container2 .content2 h1 {
    left: 20px; /* Positions the text slightly from the left */
    font-size: 2.5rem; /* Adjust font size as per design */
  }

  .image-container3 .content3 h1 {
    left: 20px; /* Positions the text slightly from the left */
    font-size: 2.5rem; /* Adjust font size as per design */
  }

  .image-container4 .content4 h1 {
    left: 20px; /* Positions the text slightly from the left */
    font-size: 2.5rem; /* Adjust font size as per design */
  }

  .image-container5 .content5 h1 {
    left: 20px; /* Positions the text slightly from the left */
    font-size: 2.5rem; /* Adjust font size as per design */
  }

  .image-container6 .content6 h1 {
    left: 20px; /* Positions the text slightly from the left */
    font-size: 2.5rem; /* Adjust font size as per design */
  }

  .breadcrumb-container {
    margin-bottom: 20px;
    padding: 10px 0px;
    background-color: #f9f9f9;
  }

  .video-section {
    width: 90%;
    height: 300px;
    padding: 0px;
    margin: auto;
    justify-content: center;
  }

  .footer-section {
    background-color: var(--navbar-color);
    padding: 80px 10px;
    color: var(--color-text);
    font-size: 14px;
  }
}

.forminput td {
  line-height: 25px;
  padding: 5px;
}

/* Error Container */
.error-container {
  max-width: 100%;
  background: #fff;
  padding-top: 180px;
  padding-left: 150px;
  padding-bottom: 100px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.error-container h1 {
  font-size: 100px;
  color: var(--secondary-color);
  margin: 0;
  line-height: 1;
}

.error-container h2 {
  font-size: 24px;
  margin: 10px 0 20px;
}

.error-container p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

/* Button Styles */
.home-button {
  text-decoration: none;
  background-color: var(--secondary-color);
  color: #fff;
  padding: 12px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-size: 16px;
  display: inline-block;
}

.home-button:hover {
  background-color: var(--color-text-2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .error-container {
    padding: 30px;
  }

  .error-container h1 {
    font-size: 80px;
  }

  .error-container h2 {
    font-size: 20px;
  }

  .error-container p {
    font-size: 14px;
  }

  .home-button {
    font-size: 14px;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .error-container {
    padding-top: 130px;
  }

  .error-container h1 {
    font-size: 60px;
  }

  .error-container h2 {
    font-size: 18px;
  }

  .error-container p {
    font-size: 12px;
  }

  .home-button {
    font-size: 12px;
    padding: 8px 10px;
  }
}

.formimg img {
  padding: 10px;
  width: 20%;
}

.alert-success {
  padding: 15px;
  background-color: #d4edda;
  color: #155724;
  border-radius: 5px;
  margin: 20px auto;
  max-width: 600px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-home {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #155724;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.btn-home:hover {
  background-color: #0d3d1f;
}
