:root {
  --primary: #c5a648;
  --secondary: #0b1f3b;
  --accent: #e5e5e5;
  --bg: #ffffff;
  --text: #333333;
  --font-main: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: auto;
  width: 100%;
  overflow-x: clip;
}

body {
  height: auto;
  width: 100%;
  overflow-x: clip;
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }
}

/* Top Bar Styling */
.top-bar {
  background-color: var(--secondary);
  color: var(--bg);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .contact-info {
  display: flex;
  align-items: center;
}

.top-bar .contact-link {
  text-decoration: none;
  color: var(--bg);
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.top-bar .contact-link i {
  color: var(--primary);
  margin-right: 10px;
  font-size: 14px;
}

.top-bar .contact-link:hover {
  color: var(--bg);
}

.top-bar .contact-link i {
  margin-right: 8px;
}

.top-bar .contact-info .divider {
  color: rgba(255, 255, 255, 0.2);
  margin: 0 15px;
}

.top-bar .social-links .follow-us {
  margin-right: 15px;
  font-weight: 600;
  color: var(--primary);
}

.top-bar .social-links a {
  color: var(--bg);
  margin-left: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.top-bar .social-links a:hover {
  color: var(--primary);
  transform: scale(1.2);
}

/* Nav Bar Styling */
.sticky-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.nav-bar {
  background-color: var(--bg);
  height: 90px;
  padding: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.nav-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-bar .logo img {
  height: 80px;
  width: auto;
  transition: 0.3s;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  margin: 0 12px;
  text-transform: capitalize;
  transition: color 0.3s ease;
  font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 5px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-btn,
.support-btn,
.prev-btn,
.next-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 45px;
  height: 45px;
  background-color: var(--primary);
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(11, 31, 59, 0.2);
  transition: all 0.3s ease;
  align-items: center;
}

.mobile-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--secondary);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-toggle.active {
  background-color: var(--secondary);
}

.mobile-toggle.active span {
  background-color: var(--primary);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.search-btn::before,
.support-btn::before,
.prev-btn::before,
.next-btn::before,
.search-btn::after,
.support-btn::after,
.prev-btn::after,
.next-btn::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--secondary);
  transition: all 0.4s ease;
  z-index: -1;
}

.search-btn::before,
.support-btn::before,
.prev-btn::before,
.next-btn::before {
  top: 0;
}

.search-btn::after,
.support-btn::after,
.prev-btn::after,
.next-btn::after {
  bottom: 0;
}

.search-btn:hover::before,
.support-btn:hover::before,
.prev-btn:hover::before,
.next-btn:hover::before,
.search-btn:hover::after,
.support-btn:hover::after,
.prev-btn:hover::after,
.next-btn:hover::after {
  height: 50%;
}

.search-btn {
  background: none;
  border: 2px solid var(--accent);
  padding: 8px 10px;
  cursor: pointer;
  font-size: 18px;
}

.search-btn:hover {
  border-color: var(--secondary);
  color: var(--bg);
}

.support-btn {
  background-color: var(--primary);
  color: var(--bg);
  border: none;
  padding: 12px 25px;
  font-weight: 400;
  cursor: pointer;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  width: fit-content;
}

.support-btn:hover {
  background-color: var(--secondary);
  color: var(--bg);
}

.support-btn.secondary-btn {
  background-color: var(--secondary);
  color: var(--bg);
}

.support-btn.secondary-btn:hover {
  background-color: var(--primary);
  color: var(--bg);
}

.support-btn.know-more {
  background-color: #ffffff;
  color: var(--secondary);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.support-btn.know-more:hover {
  background-color: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

/* Static Hero Section */
.hero-static {
  height: 85vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)),
    url("../img/ai-slider/5.png");
  background-size: cover;
  background-position: center;
  position: sticky;
  top: 140px;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  will-change: transform, opacity;
}

.scroll-arrow {
  position: absolute;
  bottom: 30px; /* Moved down from 80px to give more space below buttons */
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  font-size: 32px;
  animation: bounce 2.5s infinite;
  cursor: pointer;
  text-decoration: none;
  z-index: 5;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.scroll-arrow:hover {
  color: var(--bg);
  transform: translateX(-50%) scale(1.2);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-10px) translateX(-50%);
  }

  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

/* Main Content Wrapper for Reveal Effect */
.main-content {
  position: relative;
  z-index: 99;
  /* Higher than hero-static but lower than nav */
  background-color: #ffffff;
  /* Removed top shadow as it can look like a white/gray gap */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: -1px;
  /* Overlap slightly to prevent sub-pixel gaps */
}

.hero-slider-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  /* Solid white background for reveal */
}

.slider-container {
  height: 100%;
  width: 100%;
  display: flex !important;
  /* Force flex for horizontal sliding */
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.slide.active .slide-content h1 {
  animation: slideInUp 0.8s both 0.4s;
}

.slide.active .slide-content p {
  animation: slideInUp 0.8s both 0.6s;
}

.slide.active .support-btn {
  animation: slideInUp 0.8s both 0.8s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  /* Base dark overlay */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 10;
}

.slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.slide-content {
  position: relative;
  z-index: 20;
  color: var(--bg);
  max-width: 900px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.slide-content h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: capitalize;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.slide-content p {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Slider Specific: Transparent/Outline Buttons */
.slide-content .support-btn {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.slide-content .support-btn:hover {
  background-color: var(--primary);
  color: var(--primary);
}

/* Static Hero Left Alignment */
.hero-static .hero-btns {
  justify-content: flex-start;
}

.support-btn.know-more {
  background-color: white;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.support-btn.know-more:hover {
  background-color: var(--primary);
  color: var(--bg);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0;
  transform: translateY(-50%);
  z-index: 100;
  pointer-events: none;
}

.prev-btn,
.next-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--bg);
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 15px;
  cursor: pointer;
  pointer-events: auto;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border-radius: 50%;
  margin: 0 40px;
  font-size: 20px;
  backdrop-filter: blur(5px);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.1);
}

@media (max-width: 768px) {
  /* Hero Slider Buttons: Slimmer and Smaller specifically for mobile */
  .slide-content .support-btn {
    padding: 8px 18px !important;
    font-size: 13px !important;
  }

  .slide-content .support-btn:hover {
    background: var(--primary) !important;
    color: var(--secondary) !important;
  }
  
  .slide-content {
    position: relative;
    z-index: 20;
    color: var(--bg);
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 20%;
}

  /* Slider Controls: Move below the text */
  .slider-controls {
    top: auto !important;
    bottom: 25px !important;
    transform: none !important;
    justify-content: center !important;
    gap: 15px !important;
    width: 100%;
    position: absolute;
    display: flex;
    z-index: 100;
  }

  .prev-btn,
  .next-btn {
    margin: 0 !important;
    width: 44px !important;
    height: 44px !important;
    font-size: 16px !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
}

/* Responsive Header & Top Bar */

@media (max-width: 992px) {
  .top-bar .social-links {
    display: none;
  }

  .top-bar .container {
    justify-content: center;
  }

  .nav-bar {
    height: 70px;
  }

  .nav-bar .logo img {
    height: 55px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    margin: 15px 0;
    font-size: 18px;
  }

  .nav-actions .support-btn {
    display: none;
    /* Hide Quote button on tablet/mobile to save space */
  }

  .slide-content h1 {
    font-size: 32px;
  }

  .hero-static {
    position: relative;
    top: 0;
    height: auto;
    min-height: 500px;
    padding: 120px 0 140px; /* Increased bottom padding to accommodate arrow below buttons */
  }

  .hero-text-box {
    max-width: 100%;
    text-align: center;
  }

  .hero-text-box h6 {
    border-bottom: none;
    margin-bottom: 5px;
  }

  .hero-text-box h1 {
    font-size: 36px;
  }

  .hero-static .hero-btns {
    justify-content: center;
  }

  .s-prev,
  .s-next {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-bar .logo img {
    height: 60px;
  }

  .slide-content h1 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .slide-content p {
    font-size: 14px;
    padding: 0 10px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .hero-static {
    min-height: 450px;
    padding: 80px 0;
  }

  .hero-text-box h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .hero-text-box p {
    font-size: 15px;
    margin-bottom: 25px;
  }
}

/* Utility Classes */
.center {
  text-align: center;
  justify-content: center;
}

.side-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.section-header {
  margin-bottom: 25px;
}

.section-header.center {
  text-align: center;
}

.section-sub {
  color: var(--primary);
  font-size: clamp(14px, 2vw, 16px) !important;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 36px;
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Hero Text Box Override */
.hero-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text-box {
  max-width: 650px;
  color: var(--bg);
  position: relative;
  z-index: 5;
}

.hero-text-box h6 {
  color: var(--primary);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 3px;
  display: inline-block;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 5px;
}

.hero-text-box h1 {
  font-size: 45px;
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-text-box p {
  font-size: 16px;
  margin-bottom: 35px;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 580px;
}

/* About Section */
.about-section {
  padding: 70px 0;
  background-color: var(--primary);
  color: var(--secondary);
}

.about-section .section-sub {
  color: #fff;
}

.about-section .section-title {
  color: var(--secondary);
}

.about-section p {
  color: var(--text);
}

.about-section .container.item-stretch {
  display: flex;
  /*align-items: stretch;*/
  gap: 60px;
  flex-wrap: wrap;
}

.about-img {
  position: relative;
  flex: 1;
  min-width: 400px;
  display: flex;
}

@media (max-width: 576px) {
  .about-img {
    min-width: 100%;
  }
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  border-radius: 12px;
  box-shadow: 20px 20px 0 var(--secondary);
}

@media (max-width: 768px) {
  .about-img img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Standard shadow for mobile to prevent overflow */
  }
}

.exp-badge {
  position: absolute;
  bottom: -20px;
  left: 0;
  border: 2px solid var(--primary);
  background: var(--secondary);
  padding: 20px;
  color: var(--bg);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .exp-badge {
    left: 20px;
    /* Shift inward on mobile */
  }
}

.exp-badge span {
  font-size: 32px;
  font-weight: 800;
  display: block;
  line-height: 1;
  color: var(--primary);
}

.exp-badge p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--bg);
}

.about-content {
  flex: 1.2;
  min-width: 300px;
}

@media (max-width: 576px) {
  .about-content {
    min-width: 100%;
  }
}

.check-list {
  list-style: none;
  margin-top: 25px;
}

.check-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.check-list i {
  color: var(--secondary);
  font-size: 20px;
}
.industries-section {
  background: linear-gradient(to bottom, #ffffff, #f5fbfd, #cddded)!important;
}
/* Services Section */
.services-section {
  padding: 70px 0;
  background-color: #f9f9f9;
}

.services-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 10px;
  /* Increased padding for better spacing */
}

.services-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  /* Smoother curve */
  will-change: transform;
}

.service-card {
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s,
    opacity 0.3s;
  flex: 0 0 calc(33.333% - 20px);
}

.services-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.s-prev,
.s-next {
  background: var(--primary);
  color: var(--bg);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.s-prev:hover,
.s-next:hover {
  background: var(--secondary);
}

.s-dots {
  display: flex;
  gap: 8px;
  opacity: 0;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: var(--primary);
  width: 25px;
}

@media (max-width: 992px) {
  .service-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 600px) {
  .service-card {
    flex: 0 0 100%;
  }
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-info {
  padding: 25px;
}

.service-info h3 {
  font-size: 20px;
  color: var(--secondary);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-info p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

/* Accessories */
.accessories-section {
  padding: 70px 0;
  background-color: var(--secondary);
  color: var(--bg);
}

.accessories-section .section-title {
  color: var(--bg);
}

.accessories-intro p,
.accessories-outro p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.accessories-section .support-btn:hover {
  color: var(--primary);
  border: 2px solid var(--primary);
}

.parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.part-item {
  background: #ffffff;
  text-align: center;
  border-radius: 8px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow: hidden;
  padding: 0;
}

.part-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.part-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  transition: 0.4s;
  background-color: #f5f5f5;
  border: none;
  border-bottom: 2px solid var(--primary);
  border-radius: 0;
}

.part-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s transform ease;
}

.part-item:hover .part-img img {
  transform: scale(1.1);
}

.part-item span {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: var(--secondary);
  padding: 20px 10px;
  display: block;
  width: 100%;
  transition: 0.3s;
}

.part-item:hover span {
  color: var(--primary);
}

/* Project Gallery */
.project-section {
  padding: 70px 0;
  background-color: #f9f9f9;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(11, 31, 59, 0.9));
  color: var(--bg);
  transform: translateY(100px);
  transition: 0.3s;
}

.project-item:hover img {
  transform: scale(1.1);
}

.project-item:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay span {
  color: rgb(11 31 59);
  background: rgb(255 255 255 / 80%);
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.project-overlay h4 {
  font-size: 20px;
  font-weight: 700;
}

/* Why Choose Section */
.why-choose-section {
  padding: 70px 0;
  background-color: var(--bg);
}

.why-choose-section .container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.why-content {
  flex: 1.2;
  min-width: 300px;
}

.why-img {
  flex: 1;
  min-width: 300px;
}

.why-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: -15px 15px 0 var(--primary);
}

@media (max-width: 768px) {
  .why-img img {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Standard shadow for mobile to prevent overflow */
  }
}

.reason-item {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  align-items: center;
}

.reason-icon {
  width: 26px;
  height: 26px;
  background: #fff5da;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.reason-text h4 {
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 5px;
  font-weight: 700;
}

.reason-text p {
  font-size: 16.5px;
  color: var(--text);
  line-height: 1.5;
  margin: 0;
}

.reason-text {
  display: block;
}

/* Major Clients Section */
.clients-section {
  padding: 70px 0;
  background-color: var(--bg);
  position: relative;
  z-index: 100;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.client-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border: 1px solid rgba(197, 166, 72, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.client-card:hover {
  transform: translateY(-15px) scale(1.05);
  background: #fff;
  border-color: var(--primary);
  box-shadow: 0 20px 50px rgba(197, 166, 72, 0.15);
}

.client-logo {
  height: 90px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
  background: #fff;
  border-radius: 50%;
  width: 90px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.client-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-info h4 {
  font-size: 15px;
  line-height: 1.4;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 8px;
  /* text-transform: uppercase; */
  letter-spacing: 0.5px;
}

.client-info p {
  font-size: 12px;
  color: #777;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* Persistent Gold Switcher (Matched to User Image) */
.vm-dynamic-container {
  /* margin-top: 80px; */
  width: 100%;
  padding: 80px 40px 0;
  background: var(--primary);
  /* PERSISTENT GOLD */
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 30px 60px rgba(197, 166, 72, 0.15);
}

.vm-dynamic-nav {
  display: inline-flex;
  gap: 60px;
  position: relative;
  margin-bottom: 60px;
  border-bottom: 2px solid rgba(11, 31, 59, 0.1);
  padding-bottom: 0;
  /* Remove padding to align underline exactly */
}

.dyn-trigger {
  background: none;
  border: none;
  font-size: 32px;
  font-weight: 900;
  cursor: pointer;
  padding: 0 0 15px 0;
  /* Padding moves text up from line */
  letter-spacing: 1px;
  transition: all 0.4s ease;
  color: rgb(11 31 59 / 88%);
  position: relative;
}

/* Glowing effect for inactive triggers to show clickability */
.dyn-trigger:not(.active) {
  animation: inactivePulse 3s infinite ease-in-out;
}

@keyframes inactivePulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.02);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }

  100% {
    opacity: 0.4;
    transform: scale(1);
  }
}

.dyn-trigger:hover {
  color: var(--secondary);
  opacity: 1;
}

.dyn-trigger.active {
  color: var(--secondary);
  opacity: 1;
}

/* Perfect alignment: underline sits exactly on the nav border */
.dyn-trigger.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  /* Sits directly on the border */
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--secondary);
  box-shadow: 0 -2px 10px rgba(11, 31, 59, 0.2);
}

.dyn-pane {
  display: none;
  animation: dynFade 0.6s ease both;
}

.dyn-pane.active {
  display: block;
}

.dyn-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.dyn-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.dyn-item i {
  font-size: 24px;
  color: var(--secondary);
}

.dyn-item span {
  font-size: 18px;
  font-weight: 400;
  color: var(--secondary);
}

@keyframes dynFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .dyn-content-grid {
    grid-template-columns: 1fr;
  }

  .dyn-trigger {
    font-size: 20px;
  }

  .vm-dynamic-container {
    padding: 40px 20px;
  }

  .vm-dynamic-nav {
    gap: 20px;
  }
}

/* Nature of Business Strip */
.nature-business-strip {
  background: #1a202c;
  /* Matte Charcoal */
  padding: 20px 0;
  margin-top: -30px;
  /* Slight overlap with Hero for continuity */
  position: relative;
  z-index: 100;
  border-radius: 20px 20px 0 0;
  border-bottom: 4px solid var(--primary);
  /* Gold Accent */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.nb-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nb-label-box {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--primary);
  font-weight: 900;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  font-size: 18px;
  border-right: 2px solid rgba(255, 255, 255, 0.1);
  padding-right: 40px;
  flex-shrink: 0;
}

.nb-label-box i {
  font-size: 20px;
}

.nb-content p {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .nature-business-strip {
    padding: 15px 0;
    margin-top: -20px;
    border-radius: 15px 15px 0 0;
  }

  .nb-flex {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .nb-label-box {
    border-right: none;
    padding-right: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nb-content p {
    font-size: 14px;
    padding: 0 15px;
  }
}

/* Warm Muted Steel Background (Duo-Tone Blue & Gold) */
.clients-section {
  padding: 70px 0;
  background-color: #e2e8f0;
  /* Neutral Slate-Base */
  background-image: linear-gradient(
    135deg,
    rgba(197, 166, 72, 0.5) 0%,
    rgba(245, 245, 245, 0.534) 50%,
    rgb(125, 149, 185) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Remove Box/Grid Detail */
.clients-section::before {
  display: none;
}

.clients-section .section-title {
  color: var(--secondary) !important;
  position: relative;
  z-index: 10;
}

.clients-section .section-sub {
  color: var(--primary) !important;
  position: relative;
  z-index: 10;
}

.clients-section .container {
  position: relative;
  z-index: 10;
}

/* Prestige ISO Impact Banner (No Cards) */
.iso-impact-section {
  padding: 70px 0;
  background: var(--secondary);
  /* Dark Blue */
  position: relative;
  overflow: hidden;
  color: #fff;
}

.iso-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(197, 166, 72, 0.08) 0%,
    transparent 40%
  );
  pointer-events: none;
}

.iso-impact-row {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 10;
}

.iso-impact-left {
  flex: 1;
  position: relative;
}

.iso-outline-text {
  font-size: 140px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  /* Ghost Text */
  position: absolute;
  top: -60px;
  left: -20px;
  pointer-events: none;
  /* text-transform: uppercase; */
}

.iso-impact-left h2 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  position: relative;
  color: #fff;
}

.iso-impact-right {
  flex: 1;
  border-left: 2px solid var(--primary);
  padding-left: 50px;
}

.iso-impact-right p {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
}

.iso-impact-right strong {
  color: var(--primary);
  font-weight: 800;
}

.iso-seal-minimal {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 800;
  /* text-transform: uppercase; */
  letter-spacing: 2px;
  font-size: 14px;
}

.iso-seal-minimal i {
  font-size: 20px;
}

@media (max-width: 991px) {
  .iso-impact-row {
    flex-direction: column;
    gap: 40px;
    text-align: left;
  }

  .iso-impact-left h2 {
    font-size: 34px;
  }

  .iso-outline-text {
    font-size: 80px;
    top: -40px;
  }

  .iso-impact-right {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid var(--primary);
    padding-top: 30px;
  }

  .iso-impact-right p {
    font-size: 17px;
  }
}

/* CTA Section */

.cta-section {
  padding: 70px 0;
  background:
    linear-gradient(rgb(11 31 59 / 70%), rgb(11 31 59 / 70%)),
    url(../img/factory.jpeg);
  background-size: cover;
  background-position: center;
  color: var(--bg);
  background-attachment: fixed;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-box h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.secondary-btn {
  background-color: #fff !important;
  border: 2px solid var(--primary) !important;
  color: var(--primary) !important;
}

.secondary-btn:hover {
  color: var(--bg) !important;
  border-color: var(--primary) !important;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .hero-text-box h1 {
    font-size: 42px;
  }

  .section-title {
    font-size: 30px;
  }
}

@media (max-width: 992px) {
  .hero-static {
    height: 100% !important;
    min-height: 80vh;
    padding: 40px 0;
  }

  .about-section,
  .services-section,
  .accessories-section,
  .project-section,
  .why-choose-section,
  .cta-section {
    padding: 50px 0;
  }

  .nav-bar .logo img {
    height: 60px;
  }

  @media (max-width: 480px) {
    .nav-bar .logo img {
      height: 50px;
    }
  }
}

@media (max-width: 768px) {
  .hero-text-box {
    text-align: center;
  }

  .hero-btns {
    display: flex;
    justify-content: center;
    gap: 10px;
  }

  .side-flex {
    flex-direction: column;
    text-align: center;
  }

  .about-img {
    margin-bottom: 40px;
    width: 100%;
  }

  .exp-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    padding: 12px 15px;
    width: 160px;
  }

  .exp-badge span {
    font-size: 24px;
  }

  .exp-badge p {
    font-size: 10px;
  }

  .why-img {
    order: -1;
    margin-bottom: 40px;
    width: 100%;
  }

  .reason-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  .cta-box h2 {
    font-size: 30px;
  }

  .parts-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-text-box h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .about-section .section-title {
    font-size: 24px;
  }

  .section-sub {
    font-size: clamp(14px, 4vw, 16px);
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  .support-btn {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .parts-grid {
    grid-template-columns: 1fr;
  }

  .cta-box h2 {
    font-size: 24px;
  }
}

/* Single Golden Circle around Logo */
.logo-wrapper {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Golden Orbital Motion around Logo */
/* Two Golden 3D Orbital Planes around Logo */
.loader {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(transparent 10%, #8d6e1e);
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 1.5px),
    #000 0
  );
  mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 0);
  animation: loader-rotate 1.2s infinite linear;
  z-index: 1;
}

.loader:before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid #9a7b2c;
  animation: pulse-ring 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
  opacity: 0;
}

.loader:after {
  content: "";
  position: absolute;
  inset: 15px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  animation: simple-rotate 4s infinite linear reverse;
}

@keyframes loader-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes simple-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 1;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.inner-logo-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 130px;
  overflow: hidden;
  border-radius: 50%; /* Keeping it circular matches the shell */
  z-index: 2;
}

.preloader-logo {
  width: 100px;
  height: auto;
  filter: brightness(0) invert(1);
  animation: logoPulse 2s ease-in-out infinite;
}

.logo-shine {
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 10%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 90%
  );
  transform: skewX(-20deg);
  animation: shine 2.5s infinite ease-in-out;
  pointer-events: none;
}

@keyframes shine {
  0% {
    left: -150%;
  }
  30%,
  100% {
    left: 150%;
  } /* Slight pause between shines for a professional feel */
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hide preloader */
#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

/* Main Footer Styling */
.main-footer {
  background-color: var(--secondary);
  color: var(--bg);
  padding-top: 80px;
  position: relative;
  z-index: 99;
}

.footer-top {
  padding-bottom: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.footer-col ul li a i {
  color: var(--primary);
  font-size: 10px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-col ul li a:hover i {
  transform: translateX(5px);
}

.footer-logo {
  height: 100px;
  margin-bottom: 25px;
  background-color: var(--bg);
  padding: 5px;
  border-radius: 4px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  text-decoration: none;
  border-radius: 40%;
  transition: 0.3s;
}

.footer-social a:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
}

.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-item i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 4px;
  width: 20px;
  text-align: center;
}

.contact-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-flex a {
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* what we do slider  */
@media (max-width: 600px) {
  .services-grid {
    gap: 20px;
  }

  .services-controls {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .top-bar .contact-text,
  .top-bar .contact-info .divider {
    display: none;
  }

  .top-bar .contact-info {
    gap: 15px;
  }

  .top-bar .contact-link {
    width: 35px;
    height: 35px;
    background-color: var(--primary);
    color: var(--secondary) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top-bar .contact-link i {
    margin: 0;
    font-size: 14px;
    color: var(--bg);
  }
}

/* Contact Page Specific Styles */
.page-header {
  padding: 60px 0;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  background-color: var(--secondary);
}

.contact-header {
  background:
    linear-gradient(rgba(11, 31, 59, 0.6), rgba(11, 31, 59, 0.6)),
    url("../img/inner-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.page-header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.page-header h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 25px;
  letter-spacing: -1px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  background: var(--primary);
  padding: 15px 30px;
  position: relative;
  z-index: 10;
  gap: 15px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: fit-content;
  margin: 0 auto;
}

.breadcrumb::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid var(--primary);
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.3s;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb span {
  color: var(--secondary);
}

.breadcrumb .sep {
  opacity: 0.5;
  margin: 0 5px;
}

.contact-main-section {
  padding: 100px 0;
  background: #fff;
}

#contact-form {
  scroll-margin-top: 200px;
}

.contact-info-wrapper {
  padding-right: 30px;
}

.contact-form-wrapper {
  background: transparent;
  padding-left: 50px;
  box-shadow: none;
  border: none;
}

.contact-submit-btn {
  padding: 24px !important;
  font-size: 19px !important;
  border-radius: 15px !important;
  text-transform: none !important;
  background: var(--secondary) !important;
  color: var(--primary) !important;
  border: none !important;
  outline: none !important;
  transition: 0.4s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: 100%;
}

.contact-submit-btn i {
  color: var(--primary) !important;
  font-size: 20px;
}

.contact-submit-btn:hover {
  background: var(--primary) !important;
  color: var(--primary) !important;
}

.contact-submit-btn:hover i {
  color: var(--primary) !important;
}

@media (max-width: 768px) {
  .contact-form-wrapper {
    padding-left: 0;
  }
}

@media (max-width: 576px) {
  .contact-submit-btn {
    padding: 16px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    gap: 8px !important;
  }
  
  .contact-submit-btn i {
    font-size: 16px;
  }
}

.custom-input {
  background-color: #fcfcfc;
  border: 1px solid #e2e8f0;
  padding: 18px 25px;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--secondary);
  font-weight: 500;
}

.custom-input::placeholder {
  color: #a0aec0;
  opacity: 1;
}

.custom-input:focus {
  background-color: #fff;
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(197, 166, 72, 0.15);
  outline: none;
  transform: translateY(-2px);
}

/* More Contact Responsive Fixes */
@media (max-width: 576px) {
  .contact-main-section {
    padding: 60px 0 !important;
  }
  
  .form-header h3 {
    font-size: 24px !important;
    margin-bottom: 10px !important;
  }
  
  .form-header p {
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
  
  .form-header {
    margin-bottom: 30px !important;
  }
  
  .custom-input {
    padding: 12px 18px !important;
    font-size: 15px !important;
  }
  
  .mb-4, .mb-5 {
    margin-bottom: 20px !important;
  }
}

.contact-detail-item {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #e2e8f0;
}

.contact-detail-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact-detail-item i {
  width: 65px;
  height: 65px;
  background-color: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(11, 31, 59, 0.1);
}

.contact-detail-item:hover i {
  background-color: var(--primary);
  color: white;
  transform: rotateY(180deg) translateY(-5px);
  box-shadow: 0 15px 30px rgba(197, 166, 72, 0.3);
}

.detail-text h4 {
  font-size: 20px;
  color: var(--secondary);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.detail-text p,
.detail-text a {
  margin: 0;
  color: #4a5568;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.detail-text a:hover {
  color: var(--primary);
}

.map-container-full {
  width: 100%;
  height: 500px;
  line-height: 0;
}

.map-container-full iframe {
  width: 100%;
  filter: grayscale(0.2) contrast(1.1);
}

@media (max-width: 992px) {
  .contact-info-wrapper {
    padding-right: 0;
    text-align: center;
  }

  .contact-detail-item {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-main-section {
    padding: 60px 0;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .page-header {
    padding: 80px 0;
  }

  .page-header h1 {
    font-size: 36px;
  }
}

/* Industry Card Styling */
.industry-card {
  transition: all 0.3s ease;
  border: none;
}

.industry-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.industry-img img {
  transition: transform 0.5s ease;
}

.industry-card:hover .industry-img img {
  transform: scale(1.1);
}

.industry-card h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  transition: color 0.3s;
}

.industry-card:hover h5 {
  color: var(--primary);
}

/* Home page client logo section on  */
/* Clients Section Unique Styles */
.logysmart-clients-section {
  padding: 80px 0;
  background: #fff9e6;
  overflow: hidden;
}

.logysmart-section-sub {
  color: #c5a648;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
  /* text-transform: uppercase; */
}

.logysmart-section-title {
  font-size: 36px;
  color: #0b1f3b;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.logysmart-section-description {
  font-size: 16px;
  color: #333333;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Scroll Container Styles - No Scrollbar */
.logysmart-clients-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scroll-behavior: auto;
  /* Changed to auto for continuous movement */
  position: relative;
  border-radius: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.logysmart-clients-scroll-container::-webkit-scrollbar {
  display: none;
}

.logysmart-clients-scroll-container:active {
  cursor: grabbing;
}

/* Track Styles */
.logysmart-clients-track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding: 20px 0;
}

.logysmart-client-item {
  flex: 0 0 auto;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 160px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logysmart-client-img {
  width: 140px;
  height: 70px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}

.logysmart-client-item:hover .logysmart-client-img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Scroll Controls */
.logysmart-scroll-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.logysmart-scroll-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0b1f3b;
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

.logysmart-scroll-btn:hover {
  background: #c5a648;
  transform: scale(1.05);
}

.logysmart-scroll-btn:active {
  transform: scale(0.95);
}

@media (max-width: 1200px) {
  .logysmart-client-item {
    width: 140px;
    height: 90px;
  }

  .logysmart-client-img {
    width: 120px;
    height: 60px;
  }

  .logysmart-clients-track {
    gap: 70px;
  }
}

@media (max-width: 992px) {
  .logysmart-clients-section {
    padding: 60px 0;
  }

  .logysmart-section-title {
    font-size: 32px;
  }

  .logysmart-client-item {
    width: 120px;
    height: 80px;
  }

  .logysmart-client-img {
    width: 100px;
    height: 50px;
  }

  .logysmart-clients-track {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .logysmart-clients-section {
    padding: 50px 0;
  }

  .logysmart-section-title {
    font-size: 28px;
  }

  .logysmart-section-description {
    font-size: 14px;
  }

  .logysmart-client-item {
    width: 100px;
    height: 70px;
  }

  .logysmart-client-img {
    width: 85px;
    height: 45px;
  }

  .logysmart-clients-track {
    gap: 50px;
  }

  .logysmart-scroll-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

/* home page client logo section off  */

/* Pumps Showcase Section (50/50) */
.pumps-showcase-section {
  padding: 100px 0;
  background-color: #fcfcfc;
  overflow: hidden;
}

.pumps-flex {
  display: flex !important;
  align-items: center;
  gap: 80px;
}

.pumps-static-content {
  flex: 0 0 45%;
}

.pumps-static-content .section-title {
  font-size: 52px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 30px;
}

.pumps-static-content .section-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 450px;
}

.pumps-carousel-controls {
  display: flex;
  gap: 15px;
}

.pumps-carousel-controls button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid #eee;
  background: white;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pumps-carousel-controls button:hover {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(11, 31, 59, 0.15);
}

.pumps-carousel-wrapper {
  flex: 0 0 55%;
  overflow: visible;
  position: relative;
  display: flex;
}

.pumps-track {
  display: flex;
  gap: 30px;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.pump-slide {
  flex: 0 0 calc(50% - 15px);
  height: 480px;
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.pump-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pump-slide:hover img {
  transform: scale(1.08);
}

@media (max-width: 1100px) {
  .pumps-static-content .section-title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .pumps-flex {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .pumps-static-content {
    flex: 0 0 100%;
  }

  .pumps-static-content .section-description {
    margin: 0 auto 40px;
  }

  .pumps-carousel-controls {
    justify-content: center;
  }

  .pumps-carousel-wrapper {
    flex: 0 0 100%;
    width: 100%;
    margin-right: 0;
  }

  .pump-slide {
    flex: 0 0 calc(60% - 15px);
    height: 400px;
  }
}

@media (max-width: 576px) {
  .pumps-static-content .section-title {
    font-size: 32px;
  }

  .pump-slide {
    flex: 0 0 calc(90% - 15px);
    height: 350px;
    border-radius: 30px;
  }
}

/* ===== Pumps Strip Section ===== */
.pumps-strip-section {
  padding: 70px 0 60px;
  background-color: #e2e8f0;
  background-image: linear-gradient(
    135deg,
    rgba(197, 166, 72, 0.5) 0%,
    rgba(245, 245, 245, 0.534) 50%,
    rgb(125, 149, 185) 100%
  );
  position: relative;
  overflow: hidden;
}

.pumps-strip-section .section-sub {
  margin-bottom: 10px;
}

.pumps-strip-section .section-title {
  margin-bottom: 15px;
}

.pumps-strip-desc {
  font-size: 16px;
  color: #444;
  max-width: 650px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.pumps-strip-overflow {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  user-select: none;
}

.pumps-strip-overflow.dragging {
  cursor: grabbing;
}

.pumps-strip-track {
  display: flex;
  gap: 24px;
  will-change: transform;
  /* No CSS animation — JS controls this */
}

.pumps-strip-item {
  flex: 0 0 280px;
  height: 210px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.pumps-strip-item:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.pumps-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  display: block;
}

@media (max-width: 768px) {
  .pumps-strip-item {
    flex: 0 0 200px;
    height: 160px;
    border-radius: 12px;
  }

  .pumps-strip-desc {
    font-size: 15px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .pumps-strip-item {
    flex: 0 0 160px;
    height: 130px;
  }
}

/* About Page Specific Styles */
.about-header {
  background:
    linear-gradient(rgba(11, 31, 59, 0.7), rgba(11, 31, 59, 0.7)),
    url("../img/inner-banner.png");
}

.about-main-section {
  padding: 100px 0;
  background-color: #fff;
}

.about-page-img {
  position: relative;
  z-index: 10;
  margin-bottom: 50px;
  /* Add padding to the column to container the gold block without crossing gutters */
  padding-left: 35px;
}

/* Gold background block (LEFT-Bottom offset) */
.about-page-img::before {
  content: "";
  position: absolute;
  top: 35px;
  right: 0;
  left: 0; /* Align with internal padding */
  bottom: -35px;
  background-color: var(--primary);
  border-radius: 20px;
  z-index: -1;
  box-shadow: 0 10px 30px rgba(197, 166, 72, 0.2);
}

.about-page-img img {
  border-radius: 15px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 4px solid #fff;
  width: 100%;
  display: block;
}

.exp-badge-page {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--secondary);
  color: #fff;
  padding: 25px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(11, 31, 59, 0.3);
  z-index: 20;
}

.exp-badge-page span {
  font-size: 38px;
  font-weight: 800;
  display: block;
  line-height: 1;
  color: var(--primary);
}

.exp-badge-page p {
  margin: 5px 0 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-page-content h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.iso-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8fbff;
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid var(--primary);
  margin-top: 40px;
}

.iso-highlight i {
  font-size: 40px;
  color: var(--primary);
  animation: rollIcon 10s linear infinite;
  display: inline-block;
}

@keyframes rollIcon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.iso-highlight p {
  margin: 0;
  font-size: 16px;
  color: var(--secondary);
}

/* Services Page Specific Styles */
.services-header {
  background:
    linear-gradient(rgba(11, 31, 59, 0.75), rgba(11, 31, 59, 0.75)),
    url("../img/services-banner-cinematic.png");
}

.products-grid-section {
  padding: 100px 0;
  background-color: #fcfcfc;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--primary) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
}

.product-img-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-color: #fcfcfc; /* Light gray background for the image area */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px; /* Reduced from 30px to make images bigger */
}

.product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
}

.product-card {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  border: 1px solid rgba(197, 166, 72, 0.1);
  z-index: 1;
}

/* Corner Brackets Animation */
.card-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--primary);
  border-style: solid;
  transition: all 0.5s ease;
  opacity: 0;
  z-index: 10;
}

.tl {
  top: 0;
  left: 0;
  border-width: 3px 0 0 3px;
}
.tr {
  top: 0;
  right: 0;
  border-width: 3px 3px 0 0;
}
.bl {
  bottom: 0;
  left: 0;
  border-width: 0 0 3px 3px;
}
.br {
  bottom: 0;
  right: 0;
  border-width: 0 3px 3px 0;
}

.product-card:hover .card-corner {
  opacity: 1;
  width: 35px;
  height: 35px;
}

.product-card:hover .tl {
  top: 15px;
  left: 15px;
}
.product-card:hover .tr {
  top: 15px;
  right: 15px;
}
.product-card:hover .bl {
  bottom: 15px;
  left: 15px;
}
.product-card:hover .br {
  bottom: 15px;
  right: 15px;
}

/* Glint Shine Sweep */
.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 80%
  );
  transition: all 0.8s ease;
  z-index: 11;
  pointer-events: none;
}

.product-card:hover::after {
  left: 150%;
}

/* 
Product Card Body styles removed as per user request for an image-only gallery 
*/

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.product-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-footer i {
  color: #ccc;
  transition: all 0.3s ease;
}

/* Stunning Hover Effect */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(11, 31, 59, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #fdf9f0 100%);
}

.product-card:hover .product-img {
  transform: scale(1.08) rotate(1deg);
}

.product-card:hover .product-footer i {
  color: var(--primary);
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .about-page-img {
    padding-right: 0;
    margin-bottom: 60px;
  }

  .about-page-content h2 {
    font-size: 32px;
  }

  .product-img-wrapper {
    height: 180px; /* More compact height for 2-column mobile view */
    padding: 10px; /* Minimal padding on mobile to maximize image size */
  }
}

/* Services Introduction Section */
.services-intro-section {
  background: var(--secondary);
  overflow: hidden;
  position: relative;
}

.services-intro-img {
  height: 100%;
  display: flex;
}

.services-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-intro-right {
  padding: 80px 10%;
  color: #fff;
  /* border-left: 4px solid var(--primary); */
}

.service-static-item {
  margin-bottom: 40px;
}

.service-static-item:last-child {
  margin-bottom: 0;
}

.service-static-item .section-sub {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 14px;
}

.service-static-item .section-title {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.service-static-item p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
}

.border-secondary {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 991px) {
  .services-intro-img {
    min-height: 400px;
  }

  .services-intro-right {
    padding: 60px 8%;
  }

  .service-slide-content .section-title {
    font-size: 28px;
  }
}

/*footer */
 Footer Improvements 
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  gap: 40px;
}

@media (min-width: 720px) and (max-width: 960px) {
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 2fr));
  }
}

.footer-disclaimer {
    width: 100%;
    /* padding-top: 30px; */
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}