
/* Global */

html, body {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(270deg, #667eea, #764ba2, #ff6a00, #00d1ff);
  background-size: 800% 800%;
  animation: gradientShift 18s ease infinite;
  color: #fff;
  /*padding-top: 70px; /* keep this so content doesn’t hide behind navbar */
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Fixed Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000; /* stays above content */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px; /* adjust spacing */
  background: #0d3b46; /* keep your dark background */
}

/* Logo + Title */
.logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Menu */
.menu {
  display: flex;
  gap: 30px;
}

/* Prevent content from hiding behind navbar */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  padding-top: 70px; /* same as navbar height */
}


/* Links */
.menu a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Responsive rules */
@media (max-width: 768px) {
  .menu {
    display: none;                /* Hide menu by default */
    flex-direction: column;
    background: #0d3b46;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 10px;
    border-radius: 8px;
  }

  .menu.show {
    display: flex;                /* Show when toggled */
  }

  .hamburger {
    display: block;               /* Show hamburger on mobile */
  }
}

.about {
  background: linear-gradient(to right, #eaf6ff, #c6e2f9);
  padding: 60px 10%;
}

.about-container {
  display: flex;
  align-items: center;  /* vertically center text with image */
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  text-align: left; /* left-align text */
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
  position: relative;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #007bff;
  margin-top: 8px;
}

.about-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-img {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
/* BACKGROUND ANIMATION */
.background-animation {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, #eef7ff, #90c7ca);
  z-index: -1;
  animation: gradientShift 10s ease infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* HEADER */
/* Navbar */
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  background: linear-gradient(90deg, #0a3d4d, #093b42);
  color: white;
}


/* Logo + Title Container */
.logo-title {
  display: flex;
  align-items: center;   /* Vertically center logo + text */
  gap: 12px;             /* Space between logo and text */
}

/* Make logo circular */
.logo {
  width: 50px;          /* Adjust size as you like */
  height: 50px;
  border-radius: 50%;   /* Makes it a circle */
  object-fit: cover;    /* Prevents stretching */
  border: 2px solid #fff;  /* Optional border for contrast */
  background: #fff;        /* Optional background to look clean */
}

/* Site title */
.site-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}


/* Menu */
.menu a {
  margin-left: 25px;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.menu a:hover {
  text-decoration: underline;
}

/* HERO */ 
body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f5f5f5; /* Plain background for rest of site */
    }

  /* Carousel Image */
#hero-carousel img {
  height: 80vh; 
  object-fit: cover;
}

/* Overlay Gradient */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.2));
  z-index: 1;
}

/* Caption Box */
.carousel-caption {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  padding: 20px 40px;
  border-radius: 10px;
  z-index: 2;
  width: 90%;
  max-width: 700px;
}

/* Caption Text */
.carousel-caption h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.carousel-caption p {
  font-size: 1.1rem;
  color: #ddd;
  margin: 0 0 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-caption h1 { font-size: 1.8rem; }
  .carousel-caption p { font-size: 1rem; }
}

/* Typing Effect */
.typing {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #fff;
  width: 0;
  animation: typing 3s steps(30, end) forwards, blink 0.7s step-end infinite;
}
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}
@keyframes blink {
  50% { border-color: transparent; }
}

/* Call-to-Action Button */
.btn-hero {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 25px;
  background: #00b894;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-hero:hover {
  background: #009874;
  transform: translateY(-3px);
}

/* Progress Bar */
.carousel-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 4px;
  background: #00d4ff;
  z-index: 3;
  animation: progress 5s linear infinite;
}
@keyframes progress {
  from { width: 0; }
  to { width: 100%; }
}


/* Example for rest of site */
section {
  padding: 50px 20px;
  text-align: center;
}

/* SECTION TITLES */
.section-title { 
text-align: center; 
font-size: 32px; 
font-weight: 700;
 margin-bottom: 40px;
 }
 
/* Section Styling *//* Section Styling */
.key-skills-section {
  padding: 80px 10%;
  background: linear-gradient(to right, #eaf6ff, #c6e2f9); /* Website matching gradient */
  color: #fff;
  text-align: center;
}

.key-skills-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: black;
  position: relative;
}

.key-skills-section .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Container */
.skills-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Step Card */
.step {
  background: #828d99;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 1s ease both;
}

.step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 200, 255, 0.3);
}

/* Circle Number */
.circle {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.7);
  animation: glowPulse 2s infinite;
}

/* Text Content */
.step h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.step p {
  font-size: 0.95rem;
  color: #050505;
}

/* Icon */
.icon {
  font-size: 2rem;
  margin-top: 15px;
  color: #00c6ff;
  transition: transform 0.3s ease;
}

.step:hover .icon {
  transform: rotate(10deg) scale(1.2);
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0% { box-shadow: 0 0 10px rgba(0,200,255,0.4); }
  50% { box-shadow: 0 0 25px rgba(0,200,255,0.9); }
  100% { box-shadow: 0 0 10px rgba(0,200,255,0.4); }
}

	
/* PRODUCTS */
/* Products Section */
.products {
  padding: 80px 0;
  background: linear-gradient(to right, #eaf6ff, #c6e2f9);
  text-align: center;
}

.products .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: black;
}

.card {
  width: 100%;
  max-width: 320px;
  height: 240px;
  perspective: 1000px;
  margin: auto;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Front and Back */
.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Front */
.card-front {
  background: linear-gradient(135deg, #00c6ff, #0a3d49);
  color: #010101;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.card-front h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.card-front p {
  font-size: 0.95rem;
  color: #eee;
}

/* Back */
.card-back {
  transform: rotateY(180deg);
}

.card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0, 219, 222, 0.9), rgba(255, 0, 128, 0.9));
  padding: 20px;
  color: #fff;
  text-align: left;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
  border-radius: 0 0 20px 20px;
}

.product-card:hover .overlay {
  transform: translateY(0);
}

/* Overlay Text */
.overlay h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  font-weight: 600;
}

.overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Glow effect for section title */
.glow-text {
  background: linear-gradient(45deg, #00dbde, #ff0080, #7928ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0% { text-shadow: 0 0 10px #00dbde; }
  50% { text-shadow: 0 0 20px #ff0080; }
  100% { text-shadow: 0 0 10px #7928ca; }
}


/* Customer Logos Section */
/* Section Background */
.customer-logos {
  padding: 60px 0;
  background: linear-gradient(to right, #eaf6ff, #c6e2f9);
  text-align: center;
  overflow: hidden;
  position: relative;
}

.customer-logos .section-title {
  color: black;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
}

/* Logos Slider */
.logos-slider {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.logos-wrapper {
  display: flex;
  gap: 50px;
  animation: scrollLogos 25s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
}

.logo-img {
  height: 80px;
  max-width: 150px;
  filter:  brightness(0.8);
  transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.logo-img:hover {
  filter: brightness(1.1);
  transform: scale(1.15);
  box-shadow: 0 0 20px rgba(0, 219, 222, 0.7);
  border-radius: 10px;
}

/* Infinite Scroll */
@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Glowing Heading Effect */
.glow-text {
  background: linear-gradient(45deg, #00dbde, #ff0080, #7928ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0% { text-shadow: 0 0 10px #00dbde; }
  50% { text-shadow: 0 0 20px #ff0080; }
  100% { text-shadow: 0 0 10px #7928ca; }
}

/* MACHINERY */
.machinery{
	background: linear-gradient(to right, #eaf6ff, #c6e2f9);
	color:black;
}
.machinery-card {
  background: #fff; 
  border-radius: 10px; 
  overflow: hidden;
  transition: transform .3s; 
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}
.machinery-card img 
{
 width: 100%;
 height: 220px; 
 object-fit: cover; 
}
.machinery-card:hover 
{ 
	transform: translateY(-10px);
}

/* CONTACT */
/* Contact Section */
.contact {
  padding: 100px 10%;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  text-align: center;
  color: #fff;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}
.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Glassmorphism Card */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0, 200, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInUp 1s ease both;
}

/* Input Groups */
.input-group {
  position: relative;
  margin-bottom: 25px;
}
.input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #00c6ff;
  font-size: 1.2rem;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: none;
  outline: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.input-group textarea {
  height: 120px;
  resize: none;
}
.input-group input:focus,
.input-group textarea:focus {
  background: rgba(0, 200, 255, 0.15);
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
}

/* Floating Labels */
.input-group label {
  position: absolute;
  left: 45px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-size: 0.95rem;
  pointer-events: none;
  transition: 0.3s ease;
}
.input-group.textarea label {
  top: 20px;
  transform: none;
}
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  left: 40px;
  font-size: 0.75rem;
  color: #00c6ff;
  background: #203a43;
  padding: 0 6px;
  border-radius: 6px;
}

/* Button */
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.btn-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  transition: left 0.7s;
}
.btn-gradient:hover::before {
  left: 130%;
}
.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 200, 255, 0.5);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

#form-status {
  margin-top: 15px;
  font-weight: bold;
  color: #333;
}

/* FOOTER */
footer { background: #111; color: #bbb; text-align: center; padding: 15px; }


