/* Global Reset and Box-Sizing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --site-font: 'Poppins', 'Segoe UI', Arial, sans-serif;
  --primary-color: #222222;
  --accent-color: #ffa500;
  --text-light: #f0f0f0;
  --text-dark: #333;
  --transition: all 0.3s ease;
}

body {
  overflow-x: hidden;
  font-family: var(--site-font);
  font-weight: 400;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/*................................................................... Navbar Styles.................................................................... */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 1rem 5%;
  background-color: white;
  /*var(--primary-color)*/
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  margin-top: 5px;
  margin-bottom: 10px;
  height: 40px;
  transform: scale(1.5);
  /* Increase the size without affecting navbar height */
}

.logo span {
  color: var(--text-light);
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  color: black;
  /* var(--text-light) */
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition);
  font-size: 15px;
  /* Increased from default (likely 1rem) */
}

.nav-links a:hover {
  color: var(--accent-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/*................................................................... Dropdown Styles .................................................................... */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.navbar .dropdown-toggle::after {
  display: none;
}

.dropdown-toggle i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.navbar .dropdown-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  list-style: none;
  min-width: 290px;
  z-index: 999;
  border-radius: 5px;
  text-align: left;
  /* Center the text */
}

.navbar .dropdown-menu li {
  margin: 0;
  list-style: none;
  /* REMOVE BULLETS */
  padding: 0;
  /* Remove extra spacing */
}

.navbar .dropdown-menu a {
  display: block;
  padding: 0.7rem 1rem;
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
  font-size: 1.1rem;
}

.navbar .dropdown-menu a:hover {
  background-color: #f0f0f0;
  color: var(--accent-color);
}

.navbar .dropdown.open .dropdown-menu {
  display: block;
}

.dropdown.open .dropdown-toggle i {
  transform: rotate(180deg);
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-light);
}




/* .....................................................Banner/Hero Section......................................................................... */
.hero {
  position: relative;
  width: 100%;
  margin-top: 80px;
  overflow: hidden;
  max-height: calc(100vh - 80px);
}

.slider {
  display: grid;
  width: 100%;
}

.slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 80px);
  object-fit: cover;
  display: block;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 10;
  width: 80%;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--accent-color);
}

.btn:hover {
  background-color: transparent;
  color: white;
}


/* .................................................................Categories Section................................................................. 
    
	
	/* Elevator Categories Section Styles */
.categories {
  padding: 60px 15px;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #333;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #1e90ff;
}

.category-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-item {

  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-card {
  position: relative;
  height: 300px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.category-item:hover .category-img {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 20px;
  transition: all 0.3s ease;
}

.category-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.category-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.category-btn {
  display: block;
  text-align: center;
  padding: 12px;
  background-color: #1e90ff;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  transition: background-color 0.3s ease;
}

.category-btn:hover {
  background-color: #ff6b00;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .category-container {
    gap: 20px;
  }

  .category-card {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .category-item {
    flex: 1 1 200px;
  }

  .category-card {
    height: 220px;
  }

  .category-overlay h3 {
    font-size: 1.2rem;
  }

  .category-overlay p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .categories {
    padding: 40px 10px;
  }

  .category-container {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .category-item {
    width: 100%;
    max-width: 320px;
  }
}



/*...................................................................Our Clients Section..............................................................*/
.client-companies {
  margin-bottom: 65px;
  overflow: hidden;
  /* Prevent horizontal scrollbar */
}

.client-companies .section-title {
  margin-top: 50px;
  text-align: center;
  margin-bottom: 40px;
}

.client-logos-container {
  width: 100%;
  position: relative;
  margin-top: 3rem;
  white-space: nowrap;
}

.client-logos {
  display: inline-block;
  animation: scrollLogos 30s linear infinite;
  /* Adjust duration as needed */
  width: max-content;
  /* Allow the container to expand */
}

.client-logos:hover {
  animation-play-state: paused;
}

.logo-item {
  display: inline-block;
  /* Ensure logos are inline */
  height: 100px;
  /* Adjust height as needed */
  margin-right: 30px;
  /* Adjust spacing between logos */
}

.logo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Half the width of all logos */
  }
}







/* ................................................................Services Section................................................................ */
.services {
  padding: 4rem 5%;
  background-color: #f2f2f2;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* .................................................................Stats Counter Section.............................................................. */
.stats-counter {
  padding: 3rem 5%;
  background-color: rgba(0, 0, 0, 0.85);
  color: white;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  flex: 1;
  min-width: 200px;
  margin: 1rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-title {
  font-size: 1.2rem;
  font-weight: 500;
}

/*-----------------------------------------------------------Unique Edge Section--------------------------------------------------------------------*/
.unique-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.unique-section {
  padding: 80px 0;
}

.unique-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.unique-section-title h2 {
  font-size: 36px;
  color: #1a56db;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.unique-section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #1e90ff;
}

.unique-section-title p {
  color: var(--gray);
  font-size: 18px;
}

/* Content Layouts */
.unique-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.unique-flex-reverse {
  flex-direction: row-reverse;
}

.unique-content-box {
  flex: 1;
}

.unique-content-box h3 {
  font-size: 24px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.unique-content-box p {
  margin-bottom: 20px;
  color: var(--gray);
}

.unique-image-box {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.unique-image-box:hover {
  transform: translateY(-10px);
}

.unique-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature Cards */
.unique-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.unique-feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.unique-feature-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}

.unique-feature-title {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 15px;
}

/* Responsive Styles for Unique Edge Section */
@media (max-width: 768px) {
  .unique-flex-container {
    flex-direction: column-reverse;
    /* Stack in reverse order (image above text) */
  }

  .unique-content-box {
    width: 100%;
    /* Full width on mobile */
    padding: 20px 0;
    /* Add some vertical padding */
  }

  .unique-image-box {
    width: 100%;
    /* Full width on mobile */
    margin-bottom: 20px;
    /* Space between image and text */
  }

  .unique-features {
    grid-template-columns: 1fr;
    /* Single column layout on mobile */
  }

  .unique-feature-card {
    margin-bottom: 20px;
    /* Space between feature cards */
  }
}




/* ...........................................................Gallery Section .......................................................................*/

/* Gallery Section */
.gallery {
  padding: 4rem 5%;
  background-color: #f9f9f9;
  overflow: hidden;
  position: relative;
}

/* Gallery Container */
.gallery-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-overlay {
  text-align: center;
  font-size: 1rem;
  margin: 0;
}

/* Gallery Slider - Horizontal Scroll */
.gallery-slider {
  display: flex;
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 20px 50px;
  /* Prevent images from touching arrows */
}

/* Hide Scrollbar */
.gallery-slider::-webkit-scrollbar {
  display: none;
}

/* Gallery Slide */
.gallery-slide {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
  height: 450px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
  /* Just in case the image is missing */
}

/* Image Styling */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover Effect */
.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Navigation Buttons */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  color: var(--text-dark);
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Hover Effect for Navigation Buttons */
.gallery-nav:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Position Arrows - Outside the Images */
.prev-btn {
  left: 20px;
  /* Moves the left arrow further from images */
}

.next-btn {
  right: 20px;
  /* Moves the right arrow further from images */
}

/* Ensure Arrows are Visible */
.gallery-container {
  position: relative;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .gallery-slide {
    flex-basis: calc((100% - 20px) / 2);
    height: 550px;
  }
}

@media (max-width: 768px) {
  .gallery-slide {
    flex-basis: 100%;
    height: 500px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .gallery-slide {
    width: 300px;
    height: 450px;
  }

  .prev-btn,
  .next-btn {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}


/* ..................................................Testimonials Section .......................................................................*/
.testimonials {
  padding: 4rem 5%;
  overflow: hidden;
}

/*--------------------------------------------------------------- Footer------------------------------------------------------------------------- */
.footer {
  background-color: #0f172a;
  padding: 4rem 5% 2rem;
  color: var(--text-light);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  width: 250px;
  height: 80px;
  margin-bottom: 1.0rem;
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-about p sup {
  font-size: 0.6em;
  /* Smaller than the default sup size */
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-block;
  width: 50px;
  height: 50px;
  padding-top: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: var(--text-light);
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-color);
  color: var(--text-dark);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.contact-info i {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--accent-color);
}

.contact-info p {
  line-height: 1.4;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 1300px) {
  .nav-links li {
    margin: 0 0.5rem;
  }

  .nav-links a {
    font-size: 0.95rem;
  }
}

@media (max-width: 1150px) {
  .logo img {
    margin-left: 15px;
    /* Adjust the margin as needed */
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    flex-direction: column;
    background-color: var(--primary-color);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    left: 0;

  }

  .nav-links.active a {
    color: white;
  }


  .nav-links li {
    margin: 1rem 0;


  }

  /* Mobile dropdown */
  .navbar .dropdown-menu {
    display: none;
    position: static;
    background-color: var(--primary-color);
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }

  .navbar .dropdown-menu.active,
  .navbar .dropdown.open .dropdown-menu {
    display: block;
  }

  .navbar .dropdown-menu a {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
  }

  .navbar .dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
  }

  .hamburger {
    display: block;
    color: black;
  }

  /* Make HTML text much smaller so it doesn't overlap built-in banner text badly */
  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.2rem;
  }

  .logo img {
    margin-left: 15px;
    /* Adjust the margin as needed */
  }

  .logo span {
    font-size: 1.2rem;
  }

  .hero {
    height: 60vw;
    min-height: 200px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .testimonial-card {
    min-width: 250px;
  }
}

/*-------------------------------------------------------------- Enquiry Page ---------------------------------------------------------------------*/
/* Enquiry Page Specific Styles */
.enquiry-section {
  margin-top: 50px;
  padding: 80px 5% 60px;
  background-color: #f9f9f9;
}

.enquiry-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.enquiry-text {
  flex: 1 1 300px;
}

.enquiry-text h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.enquiry-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.enquiry-highlight {
  background-color: var(--accent-color);
  color: #fff;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-methods {
  margin-top: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-method i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.enquiry-form-container {
  flex: 1 1 600px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.enquiry-form-container h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 5px rgba(255, 165, 0, 0.3);
  outline: none;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-option input {
  margin-right: 8px;
  width: auto;
}

.conditional-fields {
  background-color: #f8f8f8;
  padding: 15px;
  border-radius: 5px;
  margin-top: 15px;
  border-left: 3px solid var(--accent-color);
  display: none;
}

.conditional-fields.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.captcha-container {
  margin: 20px 0;
  text-align: center;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.submit-btn {
  background-color: var(--accent-color);
  color: var(--text-dark);
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.submit-btn:hover {
  background-color: #e69500;
  transform: translateY(-2px);
}

.clear-btn {
  background-color: #f2f2f2;
  color: #666;
  border: 1px solid #ddd;
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.clear-btn:hover {
  background-color: #e6e6e6;
}

.required-field::after {
  content: '*';
  color: #ff4444;
  margin-left: 4px;
}

.enquiry-benefits {
  margin-top: 40px;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.benefits-list li i {
  color: var(--accent-color);
  margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .enquiry-container {
    flex-direction: column;
  }

  .radio-group {
    flex-direction: column;
    gap: 10px;
  }

  .form-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .submit-btn,
  .clear-btn {
    width: 100%;
  }
}

/*.......................................................Contact Us Page.........................................................................*/
/* Header Styles */
header {
  margin-top: 90px;
  background: linear-gradient(135deg, #ffa500, #7a35ff);
  color: white;
  padding: 2.5rem 0;
  text-align: center;
}

.contact-header {

  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Main Content Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-title {
  text-align: center;
  margin: 3rem 0;
  position: relative;
}

.page-title h1 {
  font-size: 2.5rem;
  color: #000000;
  font-weight: 600;
}

.page-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #000000, #333333);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Map Section */
.map-section {
  margin-bottom: 3rem;
}

.map-container {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Address Section */
.address-section {
  display: flex;
  margin-bottom: 3rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.office-box {
  flex: 1;
  padding: 2rem;
  position: relative;
}

.vertical-divider {
  width: 2px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
}

.office-title {
  color: #000000;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.office-small-title {
  margin-left: 38px;

}

.office-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #000000, #333333);
}

.address-content {
  display: flex;
  align-items: flex-start;
}

.address-icon {
  margin-right: 15px;
  color: #000000;
  font-size: 1.2rem;
  min-width: 24px;
}

/* Contact Info Section */
.contact-info-section {
  display: flex;
  margin-bottom: 3rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-box {
  flex: 1;
  padding: 2rem;
}

.contact-title {
  color: #000000;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  position: relative;
  padding-bottom: 10px;
}

.contact-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(to right, #000000, #333333);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.contact-icon {
  margin-right: 15px;
  color: #000000;
  font-size: 1.2rem;
  min-width: 24px;
}

/* Contact Form */
.contact-form-section {
  margin-bottom: 4rem;
}

.form-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
}

.form-title {
  text-align: center;
  margin-bottom: 2rem;
  color: #000000;
  font-size: 1.8rem;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #555;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #000000;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background: linear-gradient(135deg, #000000, #333333);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/*.............................................................About Us Page ...................................................................*/
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Banner */
.about-banner {
  height: 500px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.about-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.about-banner-content {
  margin-top: 180px;
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.about-banner-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-banner-content p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto;
}

/* About Sections */
.about-section {
  padding: 80px 0;
}

.about-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.about-section-title h2 {
  font-size: 36px;
  color: #1a56db;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.about-section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #3b82f6;
}

.about-section-title p {
  color: #64748b;
  font-size: 18px;
}

/* Content Layouts */
.about-flex-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  margin-bottom: 60px;
}

.about-flex-reverse {
  flex-direction: row-reverse;
}

.about-content-box {
  flex: 1;
}

.about-content-box h3 {
  font-size: 24px;
  color: #0f172a;
  margin-bottom: 20px;
}

.about-content-box p {
  margin-bottom: 20px;
  color: #64748b;
}

.about-image-box {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image-box:hover {
  transform: translateY(-10px);
}

.about-image-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Feature Cards */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-card {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 40px;
  color: #1a56db;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 15px;
}

/* Process Steps */
.steps {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #e2e8f0;
  z-index: -1;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 25%;
}

.step-number {
  width: 80px;
  height: 80px;
  background-color: #1a56db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.step-title {
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 10px;
}

.step-description {
  color: #64748b;
  font-size: 14px;
}


/* CTA Section */
.cta {
  background-color: #1a56db;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: white;
  color: #1a56db;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
  background-color: #f8fafc;
  transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

/* Responsive */
@media (max-width: 992px) {
  .about-flex-container {
    flex-direction: column;
  }

  .about-flex-reverse {
    flex-direction: column;
  }

  .steps {
    flex-direction: column;
  }

  .steps::before {
    display: none;
  }

  .step {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .about-banner {
    height: 400px;
  }

  .about-banner-content h1 {
    font-size: 36px;
  }

  .about-section-title h2 {
    font-size: 28px;
  }
}



/*-----------------------------------------------------------Blog Page----------------------------------------------------------------------------*/
/* Overall Layout */
.vrt-blog-wrapper {
  font-family: var(--site-font);
  background-color: var(--background-color);
  color: var(--text-color);
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 2rem;
}

/* Main Content Styles */
.vrt-main-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Blog Header */
.vrt-blog-header {
  text-align: center;
  background-color: var(--primary-color);
  color: white;
  padding: 2rem;
  margin-bottom: 1rem;
  grid-column: 1 / -1;
}

.vrt-blog-header h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Project Card Styles */
.vrt-project-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin: 20px;
  /* Add space outside the card */
  transition: all 0.3s ease;
}

.vrt-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.vrt-project-title {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.vrt-project-meta {
  display: flex;
  justify-content: space-between;
  color: var(--meta-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--background-color);
}

.vrt-project-description {
  color: var(--secondary-color);
  line-height: 1.7;
}

/* Sidebar Styles */
.vrt-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 20px;
  /* Add space outside the card */
}

.vrt-sidebar-section {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.vrt-sidebar-title {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 0.5rem;
}

.vrt-recent-articles-list,
.vrt-categories-list,
.vrt-tags-list {
  display: flex;
  /* Make it horizontal */
  flex-wrap: wrap;
  /* Wrap items if they exceed container width */
  justify-content: space-between;
  /* Distribute items evenly */
  list-style: none;
  padding: 0;
  width: 100%;
}

.vrt-recent-articles-list li,
.vrt-categories-list li,
.vrt-tags-list li {
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.vrt-recent-articles-list li:hover,
.vrt-categories-list li:hover {
  color: var(--accent-color);
  cursor: pointer;
}

.vrt-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vrt-tag {
  display: inline-flex;
  align-items: center;
  background: #0096FF;
  color: white;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 20px;
  /* Rounded corners */
  font-size: 14px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.vrt-tag:hover {
  background-color: var(--accent-color);
  color: white;
  cursor: pointer;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .vrt-blog-wrapper {
    grid-template-columns: 1fr;
  }

  .vrt-sidebar {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .vrt-blog-wrapper {
    padding: 1rem;
  }

  .vrt-blog-header h1 {
    font-size: 2rem;
  }

  .vrt-project-title {
    font-size: 1.5rem;
  }
}

/*------------------------------------------------------ Hydraulic Passenger Lift Header ------------------------------------------------------*/
.hydraulic-page {
  background: #f7f8fa;
  color: #526070;
}

.hydraulic-page-header {
  margin-top: 80px;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px 5%;
  background: #111827;
  color: #fff;
  text-align: center;
}

.hydraulic-page-header__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hydraulic-page-header__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.58)),
    rgba(0, 0, 0, 0.18);
}

.hydraulic-page-header__inner {
  width: 100%;
  max-width: 980px;
  position: relative;
  z-index: 3;
}

.hydraulic-page-header h1 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.12;
  font-weight: 800;
}

.hydraulic-page-breadcrumb {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.hydraulic-page-breadcrumb a {
  color: #ffa500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hydraulic-page-breadcrumb a:hover {
  color: #fff;
}

.hydraulic-overview-section {
  padding: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 52%, #ffffff 100%);
}

.hydraulic-overview-container {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.72fr);
  gap: 46px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 64px 5%;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hydraulic-overview-content {
  padding: 10px 0;
}

.hydraulic-overview-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #ffa500;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hydraulic-overview-content h2,
.hydraulic-applications-heading h2 {
  margin-bottom: 18px;
  color: #111827;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  font-weight: 800;
}

.hydraulic-overview-content p {
  margin-bottom: 18px;
  color: #526070;
  font-size: 1.03rem;
  line-height: 1.85;
  text-align: justify;
}

.hydraulic-overview-content strong {
  color: #111827;
}

.hydraulic-overview-image {
  width: 100%;
  max-width: none;
  min-height: 0;
  justify-self: end;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.16);
  background: #111827;
}

.hydraulic-overview-image img {
  width: 100%;
  height: clamp(360px, 42vw, 520px);
  object-fit: cover;
  display: block;
}

.hydraulic-applications-box {
  width: 100%;
  margin: 0;
  padding: 64px 5%;
  background: #f7f8fa;
}

.hydraulic-applications-heading {
  max-width: 760px;
  margin-bottom: 28px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hydraulic-applications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
}

.hydraulic-application-item {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.07);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hydraulic-application-item:hover {
  transform: translateY(-5px);
  border-color: #ffa500;
}

.hydraulic-application-item i {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff4df;
  color: #ffa500;
  border-radius: 50%;
  font-size: 1.2rem;
}

.hydraulic-application-item span {
  color: #111827;
  font-weight: 700;
  line-height: 1.35;
}

.hydraulic-technical-box {
  width: 100%;
  margin: 0;
  padding: 64px 5%;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hydraulic-technical-heading {
  margin-bottom: 26px;
  text-align: center;
}

.hydraulic-technical-heading h2 {
  margin-bottom: 0;
  color: #111827;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  font-weight: 800;
}

.hydraulic-technical-table-wrap {
  overflow: hidden;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

.hydraulic-technical-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.hydraulic-technical-table th,
.hydraulic-technical-table td {
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e7eaf0;
  font-size: 1rem;
  line-height: 1.55;
}

.hydraulic-technical-table th {
  background: #111827;
  color: #ffffff;
  font-weight: 800;
}

.hydraulic-technical-table th:first-child,
.hydraulic-technical-table td:first-child {
  width: 34%;
}

.hydraulic-technical-table td:first-child {
  color: #111827;
  font-weight: 800;
}

.hydraulic-technical-table td:last-child {
  color: #526070;
}

.hydraulic-technical-table tbody tr:nth-child(even) {
  background: #fbfcfe;
}

.hydraulic-technical-table tbody tr:last-child td {
  border-bottom: 0;
}

.hydraulic-technical-note {
  margin: 22px 0 0;
  padding: 18px 20px;
  background: #fff8ed;
  border-left: 4px solid #ffa500;
  border-radius: 8px;
  color: #526070;
  font-size: 1rem;
  line-height: 1.75;
  text-align: justify;
}

.hydraulic-choice-box {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 0;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.hydraulic-choice-image {
  min-height: 100%;
  background: #111827;
}

.hydraulic-choice-image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  display: block;
}

.hydraulic-choice-content {
  padding: 64px 5%;
}

.hydraulic-choice-heading {
  max-width: 780px;
  margin: 0 0 20px;
  text-align: left;
}

.hydraulic-choice-heading h2 {
  margin-bottom: 0;
  color: #111827;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  font-weight: 800;
}

.hydraulic-choice-intro,
.hydraulic-choice-note {
  max-width: 100%;
  margin: 0;
  color: #526070;
  font-size: 1.03rem;
  line-height: 1.8;
  text-align: justify;
}

.hydraulic-choice-panel {
  margin-top: 30px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.hydraulic-choice-panel h3 {
  margin: 0 0 22px;
  color: #111827;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.3;
  font-weight: 800;
}

.hydraulic-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hydraulic-choice-item {
  min-height: auto;
  position: relative;
  padding: 18px 18px 18px 52px;
  background: #f7f8fa;
  border: 1px solid #e7eaf0;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.hydraulic-choice-item::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffa500;
  box-shadow: 0 0 0 6px rgba(255, 165, 0, 0.14);
}

.hydraulic-choice-item strong {
  display: block;
  margin-bottom: 8px;
  color: #111827;
  font-size: 1.02rem;
  line-height: 1.35;
}

.hydraulic-choice-item span {
  display: block;
  color: #526070;
  font-size: 0.98rem;
  line-height: 1.65;
}

.hydraulic-choice-note {
  margin-top: 24px;
  padding: 20px;
  background: #111827;
  color: #ffffff;
  border-radius: 8px;
  text-align: justify;
}

.hydraulic-comparison-box {
  width: 100%;
  margin: 0;
  padding: 64px 5%;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hydraulic-comparison-heading {
  max-width: 900px;
  margin: 0 auto 28px;
  text-align: center;
}

.hydraulic-comparison-heading h2 {
  margin: 0 0 14px;
  color: #111827;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.2;
  font-weight: 800;
}

.hydraulic-comparison-heading p {
  margin: 0;
  color: #526070;
  font-size: 1.03rem;
  line-height: 1.8;
}

.hydraulic-comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid #e4e7ec;
  border-radius: 8px;
  background: #ffffff;
  scrollbar-color: #ffa500 #eef1f5;
  scrollbar-width: thin;
}

.hydraulic-comparison-table-wrap::-webkit-scrollbar {
  height: 10px;
}

.hydraulic-comparison-table-wrap::-webkit-scrollbar-track {
  background: #eef1f5;
}

.hydraulic-comparison-table-wrap::-webkit-scrollbar-thumb {
  background: #ffa500;
  border-radius: 999px;
}

.hydraulic-comparison-table {
  width: 100%;
  min-width: 1260px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.hydraulic-comparison-table th,
.hydraulic-comparison-table td {
  padding: 18px 16px;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid #e7eaf0;
  border-bottom: 1px solid #e7eaf0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hydraulic-comparison-table th {
  position: sticky;
  top: 0;
  z-index: 3;
  background: #111827;
  color: #ffffff;
  font-weight: 800;
}

.hydraulic-comparison-table th:first-child,
.hydraulic-comparison-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
  width: 190px;
  background: #ffffff;
  color: #111827;
  font-weight: 800;
  box-shadow: 8px 0 18px rgba(17, 24, 39, 0.06);
}

.hydraulic-comparison-table th:first-child {
  z-index: 4;
  background: #111827;
  color: #ffffff;
}

.hydraulic-comparison-table th:nth-child(2) {
  background: #ffa500;
  color: #111827;
}

.hydraulic-comparison-table td:nth-child(2) {
  background: #fff8ed;
  color: #111827;
  font-weight: 700;
}

.hydraulic-comparison-table tbody tr:nth-child(even) td {
  background: #fbfcfe;
}

.hydraulic-comparison-table tbody tr:nth-child(even) td:nth-child(2) {
  background: #fff3dc;
}

.hydraulic-comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.hydraulic-comparison-table th:last-child,
.hydraulic-comparison-table td:last-child {
  border-right: 0;
}

.hydraulic-comparison-note {
  margin: 22px 0 0;
  padding: 20px;
  background: #111827;
  color: #ffffff;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.75;
  text-align: justify;
}

.hydraulic-safety-box {
  width: 100%;
  margin: 0;
  background: #111827;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.hydraulic-safety-hero {
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 76px 6% 112px;
  overflow: hidden;
}

.hydraulic-safety-hero img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.hydraulic-safety-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.52), rgba(17, 24, 39, 0.72));
  z-index: 1;
}

.hydraulic-safety-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hydraulic-safety-hero-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.2;
  font-weight: 800;
}

.hydraulic-safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 22px;
  align-items: stretch;
  padding: 0 5% 64px;
  margin-top: -280px;
  position: relative;
  z-index: 2;
}

.hydraulic-safety-column {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid #e7eaf0;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.hydraulic-safety-column--guidelines {
  background: #ffffff;
}

.hydraulic-safety-column--emergency {
  background: #fff8ed;
  border-color: #f0dfc5;
}

.hydraulic-safety-column h3 {
  margin: 0 0 22px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.3;
  font-weight: 800;
}

.hydraulic-safety-column--guidelines h3,
.hydraulic-safety-column--emergency h3 {
  color: #111827;
}

.hydraulic-safety-list {
  display: grid;
  gap: 12px;
}

.hydraulic-safety-item {
  position: relative;
  padding: 17px 18px 17px 48px;
  border-radius: 8px;
}

.hydraulic-safety-column--guidelines .hydraulic-safety-item {
  background: #f7f8fa;
  border: 1px solid #e7eaf0;
}

.hydraulic-safety-column--emergency .hydraulic-safety-item {
  background: #ffffff;
  border: 1px solid #f0dfc5;
}

.hydraulic-safety-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffa500;
  box-shadow: 0 0 0 6px rgba(255, 165, 0, 0.14);
}

.hydraulic-safety-item strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 800;
}

.hydraulic-safety-item span {
  display: block;
  font-size: 0.97rem;
  line-height: 1.65;
}

.hydraulic-safety-column--guidelines .hydraulic-safety-item strong,
.hydraulic-safety-column--emergency .hydraulic-safety-item strong {
  color: #111827;
}

.hydraulic-safety-column--guidelines .hydraulic-safety-item span,
.hydraulic-safety-column--emergency .hydraulic-safety-item span {
  color: #526070;
}

.hydraulic-safety-note {
  margin: 18px 0 0;
  padding: 18px 20px;
  background: #111827;
  border-left: 4px solid #ffa500;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.75;
  text-align: justify;
}

.hydraulic-cta-section {
  width: 100%;
  padding: 40px 5%;
  background:
    linear-gradient(115deg, rgba(17, 24, 39, 0.96), rgba(17, 24, 39, 0.82)),
    url("../images/hydraulic-elevators.png") center/cover no-repeat;
}

.hydraulic-cta-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hydraulic-cta-content h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 1.12;
  font-weight: 800;
}

.hydraulic-cta-content p {
  margin: 0 auto 18px;
  max-width: 950px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hydraulic-cta-content p strong {
  color: #ffffff;
}

.hydraulic-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin-top: 16px;
  padding: 14px 30px;
  background: #ffa500;
  color: #111827;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hydraulic-cta-btn:hover {
  transform: translateY(-3px);
  background: #ffffff;
  color: #111827;
}

@media (max-width: 768px) {
  .hydraulic-page-header {
    min-height: 320px;
    padding: 68px 20px;
  }

  .hydraulic-page-breadcrumb {
    font-size: 0.95rem;
    border-radius: 8px;
  }

  .hydraulic-overview-section {
    padding: 0;
  }

  .hydraulic-overview-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 52px 20px;
  }

  .hydraulic-applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hydraulic-overview-image {
    max-width: 100%;
    justify-self: stretch;
  }

  .hydraulic-overview-image img {
    height: 320px;
  }

  .hydraulic-applications-box {
    margin-top: 0;
    padding: 52px 20px;
  }

  .hydraulic-technical-box {
    margin-top: 0;
    padding: 52px 20px;
  }

  .hydraulic-choice-box {
    margin-top: 0;
    grid-template-columns: 1fr;
  }

  .hydraulic-choice-content {
    padding: 52px 20px;
  }

  .hydraulic-choice-image img {
    min-height: 340px;
    height: 340px;
  }

  .hydraulic-comparison-box {
    margin-top: 0;
    padding: 52px 20px;
  }

  .hydraulic-comparison-heading {
    text-align: left;
  }

  .hydraulic-safety-box {
    margin-top: 0;
  }

  .hydraulic-safety-layout {
    grid-template-columns: 1fr;
    padding: 0 22px 22px;
    margin-top: -34px;
  }

  .hydraulic-safety-hero {
    min-height: 320px;
    padding: 52px 20px 72px;
  }

  .hydraulic-cta-section {
    padding: 58px 20px;
  }

  .hydraulic-technical-table thead {
    display: none;
  }

  .hydraulic-technical-table,
  .hydraulic-technical-table tbody,
  .hydraulic-technical-table tr,
  .hydraulic-technical-table td {
    display: block;
    width: 100%;
  }

  .hydraulic-technical-table tr {
    padding: 16px;
    border-bottom: 1px solid #e7eaf0;
  }

  .hydraulic-technical-table tbody tr:last-child {
    border-bottom: 0;
  }

  .hydraulic-technical-table th:first-child,
  .hydraulic-technical-table td:first-child {
    width: 100%;
  }

  .hydraulic-technical-table td {
    padding: 0;
    border-bottom: 0;
  }

  .hydraulic-technical-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 5px;
    color: #ffa500;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .hydraulic-technical-table td+td {
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .hydraulic-page-header {
    min-height: 285px;
    padding: 52px 16px;
  }

  .hydraulic-page-breadcrumb {
    gap: 7px;
  }

  .hydraulic-overview-section {
    padding: 0;
  }

  .hydraulic-overview-container,
  .hydraulic-applications-grid {
    grid-template-columns: 1fr;
  }

  .hydraulic-overview-container {
    padding: 44px 16px;
  }

  .hydraulic-applications-box {
    padding: 44px 16px;
  }

  .hydraulic-technical-box {
    padding: 44px 16px;
  }

  .hydraulic-choice-content {
    padding: 44px 16px;
  }

  .hydraulic-comparison-box {
    padding: 44px 16px;
  }

  .hydraulic-safety-layout {
    padding: 0 16px 16px;
    margin-top: -24px;
  }

  .hydraulic-safety-hero {
    min-height: 240px;
    padding: 28px 16px 48px;
  }

  .hydraulic-safety-column {
    padding: 16px;
  }

  .hydraulic-safety-item {
    padding: 16px 16px 16px 46px;
  }

  .hydraulic-comparison-table {
    min-width: 1120px;
  }

  .hydraulic-comparison-table th,
  .hydraulic-comparison-table td {
    padding: 14px 12px;
    font-size: 0.9rem;
  }

  .hydraulic-comparison-table th:first-child,
  .hydraulic-comparison-table td:first-child {
    width: 150px;
  }

  .hydraulic-choice-intro,
  .hydraulic-choice-note {
    font-size: 0.95rem;
    text-align: justify;
  }

  .hydraulic-application-item {
    min-height: 96px;
    padding: 18px;
  }

  .hydraulic-technical-table tr {
    padding: 14px;
  }

  .hydraulic-technical-note {
    padding: 15px;
    font-size: 0.95rem;
  }

  .hydraulic-overview-image img {
    height: 280px;
  }

  .hydraulic-cta-section {
    padding: 48px 16px;
  }

  .hydraulic-cta-btn {
    width: 100%;
  }
}