/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  background: url('ChatGPT Image Jun 15, 2025, 03_39_58 PM.png') center center / cover no-repeat fixed;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  line-height: 1.6;
  padding-top: 70px;
  max-width: 100%;
  overflow-x: hidden;
}

/* Navbar background soft black with blur */
.navbar {
 
  background-color: rgba(31, 29, 29, 0.85) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


.navbar .container-fluid {
  padding: 20px 50px;
  background-color: #1f1d1c;
}


/* Navbar Brand (Logo) */
.navbar-brand {
  font-weight: bold;
  font-size: 24px;
}
.navbar-brand span:first-child {
  color: #ff6600;
}
.navbar-brand span:last-child {
  color: #ccc;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 2px;
}

/* Navbar Toggler Position Fix */
@media (max-width: 768px) {
  .navbar-toggler {
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1051;
    
  }
}

/* Menu Links */
.navbar-nav .nav-link {
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s;
  text-transform: capitalize;
}
.navbar-nav .nav-link:hover {
  color: #ff6600 !important;
}

/* Sections */
section {
  padding: 100px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
}

/* Images Responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Sticky Contact Button */
.sticky-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff5e00, #ff9933);
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.7);
  transition: all 0.4s ease;
  animation: pulse 2s infinite;
}
.sticky-contact:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 25px rgba(255, 94, 0, 0.9);
  background: linear-gradient(135deg, #e14a00, #ff6600);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 94, 0, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(255, 94, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 94, 0, 0); }
}


/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('your-background.jpg') center/cover no-repeat fixed;
  padding: 80px 50px;
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1300px;
  margin: auto;
}

.hero-content {
  flex: 1 1 50%;
  color: white;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px black;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-btn {
  padding: 12px 28px;
  background: #ff5e00;
  color: white;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}
.hero-btn:hover {
  background: #e24e00;
}

.hero-image {
  flex: 1 1 45%;
  text-align: center;
  padding: 20px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(4px 4px 6px rgba (white));
}

@keyframes float {
  0% {transform: translateY(0);}
  50% {transform: translateY(-10px);}
  100% {transform: translateY(0);}
}

.hero-image img {
  max-width: 90%;
  height: auto;
  border-radius: 16px;
  border: 5px solid white;
  box-shadow:
    0 20px 30px rgba(0, 0, 0, 0.4),
    0 10px 15px rgba(0, 0, 0, 0.3);
  transform: translateZ(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image img:hover {
  transform: translateY(-10px);
  box-shadow:
    0 25px 40px rgba(0, 0, 0, 0.5),
    0 15px 20px rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-content,
  .hero-image {
    flex: 1 1 100%;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-image img {
    max-width: 80%;
    margin: 0 auto;
  }
}

/* ABOUT SECTION */
.about-section {
  position: relative;
   background: url('your-background.jpg') center/cover no-repeat fixed;
  padding: 100px 30px;
  min-height: 100vh;
  overflow: hidden;
}

.about-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease forwards;
}

.about-content h1 {
  text-align: center;
  color: #ff5e00;
  font-size: 2.5rem;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #ddd;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ ONLY ON MOBILE: Reduce side padding */
@media (max-width: 768px) {
  .about-content {
    padding: 30px px; /* Reduce left-right padding only */
  }

  .about-content h1 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}




/* SERVICES SECTION */
.services-section {
  padding: 80px 20px;
  
  position: relative;
  min-height: 100vh;
}

.services-section .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.services-container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 40px;
 
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 94, 0, 0.2);
  animation: fadeInUp 1s ease;
}

.section-title {
  text-align: center;
  color: #ff5e00;
  font-size: 2.8rem;
  margin-bottom: 50px;
}

.service-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid #ff5e00;
  padding: 25px 10px;
  margin-bottom: 40px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 94, 0, 0.1);
}

.service-box h3 {
  font-size: 1.6rem;
  color: #ff9900;
  margin-bottom: 15px;
}

.service-box p {
  font-size: 1.03rem;
  color: #ddd;
  line-height: 1.7;
}

.coverflow-slider {
  padding: 80px 30px;
  background: #101010;
  color: #fff;
  overflow: hidden;
  text-align: center;
}

/* ✅ ONLY ON MOBILE: Reduce side padding */
@media (max-width: 768px) {
  .service-box{
    padding: 20px 1px; /* Reduce left-right padding only */
  }

  .service-box h {
    font-size: 2rem;
  }

  .service-box p {
    font-size: 1rem;
  }
}

/* ===============================
   COVERFLOW IMAGE SLIDER SECTION
   =============================== */

.coverflow-slider {
  padding: 100px 30px;
  background: url('ChatGPT\ Image\ Jun\ 15\,\ 2025\,\ 03_39_58\ PM.png') center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Optional dark overlay */
.coverflow-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.coverflow-slider .section-title {
  font-size: 2.5rem;
  color: #ff5e00;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.slider-wrapper {
  width: 100%;
  overflow: hidden;
  perspective: 1200px;
  position: relative;
  z-index: 1;
}

.slider-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scrollCoverflow 10s linear infinite; /* ⏩ Faster loop */
  transform-style: preserve-3d;
}

.slide {
  flex: 0 0 250px;
  transform: rotateY(15deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  padding-bottom: 30px; /* ✅ Space for location name */
}

.slide:nth-child(3n) {
  transform: rotateY(0deg) scale(1.1); /* Center effect */
  z-index: 10;
}

.slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s;
}

.slide:hover img {
  transform: scale(1.05);
}

.slide h4 {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #ff5e00;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Auto-scrolling animation */
@keyframes scrollCoverflow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}





/* CLIENTS SECTION */
.clients-section {
  padding: 100px 30px;
  background: url('ChatGPT\ Image\ Jun\ 15\,\ 2025\,\ 03_39_58\ PM.png') center/cover no-repeat;
  background-attachment: fixed;
  text-align: center;
  position: relative;
}

.clients-section .section-title {
  font-size: 2.5rem;
  color: #ff5e00;
  margin-bottom: 10px;
}

.clients-subtext {
  font-size: 1.1rem;
  color: #faefef;
  margin-bottom: 40px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 50px;
  justify-items: center;
}

.client-logos {
  background: rgba(221, 223, 218, 0.295);
  padding: 20px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-logos:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(255, 94, 0, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
}

.client-logos img {
  max-width: 100%;
  max-height: 80px;
  opacity: 1;
}

.client-logos:hover img {
  opacity: 1;
}



/* gallery Section */
.gallery-section {
  padding: 100px 30px;
  background: url('ChatGPT\ Image\ Jun\ 15\,\ 2025\,\ 03_39_58\ PM.png') center/cover no-repeat fixed;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  text-align: center;
}

.gallery-subtext {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.gallery-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  width: 280px;
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item h4 {
  padding: 15px;
  font-size: 1rem;
  color: #ff5e00;
  background: rgba(0, 0, 0, 0.6);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 94, 0, 0.4);
}

.gallery-item:hover img {
  transform: scale(1.05);
}



/* machine Section */
.machine-gallery-section {
  padding: 80px 30px;
  background: url('ChatGPT\ Image\ Jun\ 15\,\ 2025\,\ 03_39_58\ PM.png') center/cover no-repeat;
  background-attachment: fixed;
  color: #fff;
}

.machine-gallery-section .section-title {
  font-size: 2.5rem;
  color: #ff5e00;
  margin-bottom: 0.2px;
  text-align: center;
}

.machine-card {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: rgba(0,0,0,0.5);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.machine-image {
  flex: 1 1 300px;
}

.machine-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* ===== Optional: Set a max-width on larger screens ===== */
@media (min-width: 1024px) {
  .machine-image img {
    max-width: 500px; /* Adjust this width as needed */
    margin: 0 auto;
  }
}

.machine-details {
  flex: 2 1 500px;
}

.machine-details h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ff5e00;
}

.machine-details ul {
  list-style-type: none;
  padding: 0;
}

.machine-details ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
}

/* ============ Table Scroll Wrapper ============ */
.table-scroll-visible {
  width: 100%;
  overflow-x: auto;       /* Enable horizontal scroll */
  padding-bottom: 10px;   /* Space for scrollbar visibility */
  margin-top: 20px;
}

/* Optional: Show scrollbar always (visible) */
.table-scroll-visible::-webkit-scrollbar {
  height: 8px;
}
.table-scroll-visible::-webkit-scrollbar-thumb {
  background: #ff5e00;   /* Orange scrollbar */
  border-radius: 4px;
}
.table-scroll-visible::-webkit-scrollbar-track {
  background: transparent;
}

/* ============ Table Styles ============ */
.spec-table {
  width: 100%;
  min-width: 900px;         /* Forces scroll on small screens */
  border-collapse: collapse;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  backdrop-filter: blur(3px);
}

.spec-table th,
.spec-table td {
  padding: 12px 16px;
  border: 1px solid #999;
  text-align: left;
  white-space: nowrap;      /* Prevent line break for scroll */
}

.spec-table th {
  background-color: #111;
  color: #ff5e00;
  font-weight: bold;
}

/* Optional: Responsive font size */
@media (max-width: 768px) {
  .spec-table {
    font-size: 13px;
    min-width: 700px;
  }
}




 #gallery {
  background: url('ChatGPT Image Jun 15, 2025, 03_39_58 PM.png') center/cover no-repeat fixed;
  padding: 80px 20px;
  color: #fff;
}

#gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ff5e00;
  margin-bottom: 40px;
}

.gallery-swiper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1300px;
  margin: auto;
}

.gallery-swiper-box {
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 94, 0, 0.25);
  padding: 15px;
  transition: transform 0.3s ease;
}

.gallery-swiper-box:hover {
  transform: translateY(-5px);
}

.gallery-swiper-box .gallery-swiper-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff5e00;
  text-align: center;
  margin-bottom: 10px;
}

.gallery-swiper-box .swiper {
  width: 100%;
  height: 220px;
}

.gallery-swiper-box .swiper-slide {
  background: #d12929;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-swiper-box .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-swiper-box .swiper-slide img:hover {
  transform: scale(1.05);
}

.gallery-swiper-box .swiper-pagination {
  bottom: 8px;
}

.gallery-swiper-box .swiper-pagination-bullet {
  background: #ff5e00;
  opacity: 0.5;
}

.gallery-swiper-box .swiper-pagination-bullet-active {
  opacity: 1;
}





/* WHY US Section */
.whyus-section, .strengths-section {
  padding: 100px 30px;
  position: relative;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.whyus-section .overlay,
.strengths-section .overlay {
  position: absolute;
  inset: 0;
  
  z-index: 1;
}

.content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #ff5e00;
  margin-bottom: 30px;
}

.whyus-text {
  font-size: 1.1rem;
  color: #ddd;
  line-height: 1.7;
  max-width: 900px;
  margin: auto;
}

/* Strengths List */
.strengths-list {
  text-align: left;
  max-width: 900px;
  margin:  auto;
  color: #ccc;
  font-size: 1rem;
  padding-left: 20px;
  line-height: 1.7;
}

.strengths-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.strengths-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ff5e00;
}




/* Footer CSS */
.footer {
  background: #121212;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  color: #f57c00;
  font-family: 'Segoe UI', sans-serif;
  padding: 50px  20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 200px;
  top: -80px;
  left: -25%;
  background: linear-gradient(120deg, #f57c00 0%, #ff9800 100%);
  transform: rotate(-8deg);
  animation: wave 8s infinite linear alternate;
  opacity: 0.2;
}

@keyframes wave {
  0% { transform: rotate(-8deg) translateX(0); }
  100% { transform: rotate(-8deg) translateX(60px); }
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo h2 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-logo p {
  font-size: 14px;
  color: #dddddd;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 6px 0;
}

.footer-links ul li a {
  color: #f57c00;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ffffff;
}


.footer-contact i {
  color: #ff5722;
  margin-right: 8px;
}
/* ✅ Mobile Padding Fix */
@media (max-width: 768px) {
  body,
  section,
  .about-content,
  .services-container,
  .clients-section,
  .gallery-section,
  .machine-gallery-section,
  .coverflow-slider {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .hero {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .hero-content {
    padding: 0px !important;
  }
}
