/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  background-image: url("../img/background3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  color: #eee;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navbar */
.navbar {
  background: transparent;
  color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.navbar .logo,
.navbar .nav-links a {
  font-size: 1.25rem; /* increase to 1.5rem or 2rem as needed */
  font-weight: 600;
  color: white;
}

.navbar.scrolled {
  background-color: black;
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a {
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  display: block;
  font-size: 1.2rem;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: #ff3c3c;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slider,
.slide {
  height: 100%;
  width: 100%;
  position: absolute;
}

.slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 10px;
  z-index: 10;
}

.caption h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.caption p {
  font-size: 1.2rem;
}

/* General Sections */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: white;
}

/* Product Grid */
.product-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
  background: #ffffff0a;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  backdrop-filter: blur(8px);
  color: white;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.product-card h3 {
  margin-bottom: 0.5rem;
}

/* Solutions Section */
.solutions-wrapper {
  background: rgba(255, 255, 255, 0.03);
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.solutions-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.solution-item {
  text-align: center;
  cursor: pointer;
  padding: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease, background 0.3s ease;
  border-radius: 10px;
}

.solution-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 0.5rem;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.solution-item:hover {
  filter: brightness(1.2);
  transform: translateY(-5px) scale(1.1);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.1);
}

/* Display area for selected solution */
.solution-display {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.solution-display img {
  width: 480px;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.solution-text {
  max-width: 550px;
  padding: 1rem;
  color: #f1f1f1;
}

.solution-text h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.solution-text p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.learn-more {
  padding: 0.75rem 1.8rem;
  border: none;
  background: #27bfed;
  color: white;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.learn-more:hover {
  background: #9ad6f9;
}

.about-us {
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  position: relative;
  gap: 2rem;
  padding-left: 4rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
  z-index: 2;
  position: relative;
}

.about-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.about-text h1 span {
  color: #ff3c3c;
}

.about-text p {
  color: #ddd;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.about-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid #781bbf;
  color: #9658c2d9;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.about-link:hover {
  background: #cb8def;
  color: white;
}

.about-image {
  position: relative;
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 2;
}

.circle-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, #3b82f6, #9333ea);
  border-radius: 50%;
  z-index: 1;
  filter: blur(80px);
}

#why-us .container {
  padding-left: 3rem; /* Adjust this value as needed */
}

/* Footer */
footer {
  background: #111;
  color: white;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
  flex: 1 1 200px;
  margin-bottom: 2rem;
  text-align: center;
}  

.footer-column h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #aaa;
  font-size: 0.8rem;
}

.footer-address-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
  margin-left: 0; /* Remove auto margin */
  justify-content: center; /* Center the content */
}

.footer-address-wrapper img {
  width: 20px;
  height: 20px;
  filter: invert(1);
}

.footer-address {
  max-width: 300px;
  line-height: 1.6;
  color: #ccc;
  text-align: left; /* Change from center to left */
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-cta {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 4rem; /* Add this line to shift right */
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-text h3 {
  color: #d34a4aed;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.cta-text p {
  color: #ffffff;
  font-size: 1rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #3cfff870;
  color: rgb(255, 255, 255);
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #bdf8ff7f;
}

.cta-button img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

/* History Carousel Styling - Complete Fix */
.history-section {
  position: relative;
  padding: 5rem 0;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.carousel-header {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  color: #00e4ff;
  font-weight: bold;
}

.carousel-subtext {
  text-align: center;
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  height: 300px; /* Fixed height container */
}

.history-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Base styles for all history items */
.history-item {
  position: absolute;
  width: 350px; /* Fixed width */
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease-in-out;
  display: none; /* Hidden by default */
  top: 0; /* All items start from top */
}

/* Active (center) item */
.history-item.active {
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 1;
  background: rgba(35, 5, 168, 0.644) !important;
}

/* Previous (left) item */
.history-item.prev {
  left: 20%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.7;
}

/* Next (right) item */
.history-item.next {
  left: 80%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.7;
}

/* Year & Description Styling */
.history-year {
  font-size: 2rem;
  color: #00e4ff;
  font-weight: bold;
  margin-bottom: 1rem;
}

.history-description {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 2rem;
}

.carousel-btn {
  background: none;
  border: 2px solid #00e4ff;
  color: #00e4ff;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #00e4ff;
  color: #000;
}

/* Responsive styles */
@media (max-width: 992px) {
  .history-item {
    width: 300px;
  }
  
  .history-item.prev {
    left: 15%;
  }
  
  .history-item.next {
    left: 85%;
  }
}

@media (max-width: 768px) {
  .carousel-wrapper {
    height: 450px;
  }
  
  .history-item {
    width: 280px;
  }
  
  /* Stack vertically on mobile */
  .history-item.prev {
    left: 50%;
    top: -50px;
  }
  
  .history-item.active {
    left: 50%;
    top: 150px;
  }
  
  .history-item.next {
    left: 50%;
    top: 350px;
  }
}

.hero-section-about {
  min-height: 100vh;
  padding-top: 100px; /* makes space for navbar */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.about-us {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
  flex-wrap: wrap;
}

.about-text {
  max-width: 550px;
  flex: 1;
}

.about-text p.intro-highlight {
  border-left: 4px solid red;
  padding-left: 1rem;
  color: #ff4c4c;
  font-weight: 600;
  margin-bottom: 2rem;
}

.about-image {
  flex: 1;
  max-width: 600px;
}

.about-image img {
  width: 100%;
  border-radius: 50px;
}

/* === style.css additions for solutions.html === */

.feature-section {
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.feature-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.feature-text .feature-label {
  color: #00bfff;
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
}

.feature-text h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-text p {
  color: #ccc;
  line-height: 1.6;
}

.feature-image {
  flex: 1;
  z-index: 1;
}

.feature-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 400px;
}

@media (max-width: 992px) {
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
  }

  .feature-text,
  .feature-image {
    flex: 1 1 100%;
  }
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: #eee;
  font-size: 1.05rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(var(--i, 1) * 0.1s);
}

.feature-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: #40ffba;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.solutions-intro {
  padding: 4rem 2rem 2rem;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solutions-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #51cec8ee;
}

.solutions-intro p {
  color: #ddd;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
}

.solution-block {
  border-top: 1px solid #111;
  padding-top: 3rem;
}

/* === CAREER PAGE STYLES === */

.hero-section-career {
  height: 60vh;
  background: url("../img/career-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
  position: relative;
}

.hero-section-career .caption {
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 10px;
}

.career-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4rem;
}

.career-intro h2 {
  font-size: 2.5rem;
  color: #00e4ff;
  margin-bottom: 1rem;
}

.career-intro p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}

.career-section {
  padding: 5rem 2rem;
  background: rgba(255, 255, 255, 0.03);
}

.career-block {
  max-width: 1000px;
  margin: 0 auto 4rem auto;
}

.career-block h3 {
  font-size: 2rem;
  color: #00e4ff;
  margin-bottom: 1rem;
}

.career-block p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

.benefits-section {
  text-align: center;
  padding: 0.5rem 2rem 4rem;
}
.benefits-grid-custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  justify-items: center;
  margin-top: 3rem;
}
.benefits-grid-custom .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 260px;
}
.benefit-item img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.benefit-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.benefit-item p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .benefits-grid-custom {
    grid-template-columns: 1fr;
  }
}

.job-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.job-card ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.job-card ul li {
  margin-bottom: 0.5rem;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-title {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.job-info {
  font-size: 0.95rem;
  color: #999;
  margin-bottom: 1rem;
}

.job-desc,
.job-req {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.job-req ul {
  padding-left: 1.5rem;
}

.job-req li::before {
  content: '•';
  margin-right: 0.5rem;
  color: #00e4ff;
}

/* Animation Fade-in */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

@media (max-width: 768px) {
  .hero-section-career {
    height: 50vh;
    padding: 4rem 1rem;
  }

  .career-intro h2 {
    font-size: 2rem;
    margin-bottom: 0; /* Or something like 1rem */
  }

  .job-title {
    font-size: 1.3rem;
  }
}

.openings-section {
  text-align: center;
  padding-top: 2rem;
}
.openings-section .intro-text {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #ccc;
}
.job-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
  color: #eee;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.job-card:hover {
  transform: translateY(-5px);
}
.job-card h3 {
  color: #00e4ff;
  margin-bottom: 0.5rem;
}

.job-card p span.icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 0.4rem;
}
.job-card p span.icon img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

.apply-btn {
  display: inline-block;
  margin-top: 1rem;
  background: #00e4ff;
  color: #000;
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.apply-btn:hover {
  background: #0bf;
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo img {
  height: 60px;
  width: auto;
  cursor: pointer;
}

.solutions-cta {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  padding: 4rem 2rem 3rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.solutions-cta h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  transform: translateX(50px); /* Move title slightly right */
}

.solutions-cta p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 1.8rem;
}

.solutions-cta .cta-btn {
  background: #00e4ff;
  color: #000;
  font-weight: 700;
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 228, 255, 0.2);
  transition: all 0.3s ease;
  transform: translateY(-50px); /* Move button slightly up */
}

.solutions-cta .cta-btn:hover {
  background: #0cf;
  color: white;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
}

.contact-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.contact-image {
  flex: 1;
  background: url('../img/contact-side.jpg') center center / cover no-repeat;
  min-height: 500px;
}

.contact-form-section {
  flex: 1;
  padding: 2rem;
  color: #fff;
}

.contact-form-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-form-section p {
  color: #ccc;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
  margin-bottom: 1rem;
}

input, textarea {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #555;
  border-radius: 5px;
  color: white;
  font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

.contact-submit {
  padding: 0.8rem 1.5rem;
  background: #00e4ff;
  border: none;
  border-radius: 5px;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: flex-start;
}

.contact-submit:hover {
  background: #0cf;
  color: white;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-image {
    width: 100%;
    height: 300px;
  }

  .form-row {
    flex-direction: column;
  }

  .contact-submit {
    align-self: stretch;
  }
}

.contact-header {
  margin-bottom: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.contact-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.contact-header p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-wrapper {
  margin-top: 50px; /* Adjust this value as needed */
}

.contact-info-top {
  max-width: 800px;
  margin: 4rem auto 3rem;
  margin-top: 120px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  color: #eee;
  backdrop-filter: blur(6px);
}

.contact-info-top h2 {
  color: #00e4ff;
  margin-bottom: 1rem;
}

.contact-info-top ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.contact-info-top li {
  margin: 0.75rem 0;
  font-size: 1rem;
  color: #ccc;
}

.faq-section {
  width: 100%;
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.02);
}
.faq-section h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: #00e4ff;
  font-size: 1.8rem;
}
.faq-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
.faq-box details {
  margin-bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #00e4ff;
  transition: background 0.3s ease;
}
.faq-box details:hover {
  background: rgba(255, 255, 255, 0.06);
}
.faq-box summary {
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  outline: none;
}
.faq-box p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #ccc;
}

.captcha-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  background: #f5f5f5;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.captcha-question {
  flex-grow: 1;
  font-weight: 600;
  color: #333;
}

.refresh-captcha {
  cursor: pointer;
  color: #3f51b5;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 0.9em;
  transition: all 0.2s ease;
}

.refresh-captcha:hover {
  background: #ececec;
}

.refresh-captcha i {
  margin-right: 5px;
}

.captcha-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

span.required {
  color: #e53935;
}

/* Mobile Responsiveness Improvements */

/* Base Responsive Adjustments */
html {
  font-size: 16px;
}

@media (max-width: 1200px) {
  .container, .cta-container, .carousel-wrapper {
    width: 95%;
    max-width: 95%;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.75rem;
  cursor: pointer;
  z-index: 1001;
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
    display: block;
    position: relative;
    z-index: 1001;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 1rem 0;
  }
  
  .navbar {
    padding: 0.8rem 1rem;
  }
  
  .navbar .logo {
    font-size: 1.1rem;
  }
  
  .logo img {
    height: 40px;
  }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
  }
  
  .caption {
    width: 90%;
    padding: 1.5rem;
  }
  
  .caption h1 {
    font-size: 2rem;
  }
  
  .caption p {
    font-size: 1rem;
  }
}

/* About Section Responsive */
@media (max-width: 992px) {
  .about-content {
    padding-left: 1rem;
    gap: 1rem;
  }
  
  .about-text h1 {
    font-size: 2.2rem;
  }
  
  .circle-bg {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .about-us {
    padding: 3rem 1.5rem;
  }
  
  .about-content {
    padding-left: 0;
  }
  
  .about-image, .about-text {
    min-width: 100%;
  }
  
  .about-text h1 {
    font-size: 1.8rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
}

/* Product Grid Responsive */
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-card img {
    height: 150px;
  }
}

/* Solutions Section Responsive */
@media (max-width: 992px) {
  .solution-display {
    flex-direction: column;
  }
  
  .solution-display img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .solutions-bar {
    gap: 1rem;
  }
  
  .solution-item {
    padding: 0.5rem;
  }
  
  .solution-item img {
    width: 40px;
    height: 40px;
  }
  
  .solution-text h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .carousel-wrapper {
    height: auto !important;
  }

  .history-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static;
  }

  .history-item {
    position: static !important;
    transform: none !important;
    display: block !important;
    margin: 1rem 0;
    width: 90%;
  }

  .carousel-controls {
    display: none; /* hide the arrows on mobile */
  }
}

/* Feature Section Responsive */
@media (max-width: 768px) {
  .feature-section {
    padding: 3rem 1rem;
    gap: 3rem;
  }
  
  .feature-text h2 {
    font-size: 1.5rem;
    text-align: left;
  }
  
  .feature-text {
    padding: 1.5rem;
  }
  
  .feature-list li {
    font-size: 0.95rem;
  }
}

/* Benefits Grid Responsive */
@media (max-width: 992px) {
  .benefits-grid-custom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid-custom {
    grid-template-columns: 1fr;
  }
  
  .benefit-item img {
    width: 100px;
    height: 100px;
  }
}

/* Job Cards Responsive */
@media (max-width: 768px) {
  .job-card {
    padding: 1.5rem;
  }
  
  .job-title {
    font-size: 1.3rem;
  }
  
  .job-info, .job-desc, .job-req {
    font-size: 0.9rem;
  }
}

/* Contact Form Responsive Improvements */
@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
  
  .contact-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .contact-info-top {
    margin-top: 80px;
    padding: 1.5rem;
  }
  
  .contact-form-section {
    padding: 1.5rem;
  }
  
  .contact-form-section h2 {
    font-size: 1.5rem;
  }
  
  input, textarea {
    padding: 0.6rem;
  }
}

/* CTA Sections Responsive */
@media (max-width: 768px) {
  .solutions-cta h2 {
    font-size: 1.8rem;
    transform: none;
  }
  
  .solutions-cta .cta-btn {
    transform: none;
  }
  
  .cta-container {
    padding-left: 1rem;
    text-align: center;
  }
  
  .cta-text h3 {
    font-size: 1.5rem;
  }
}

/* Footer Responsive */
@media (max-width: 768px) {
  footer {
    padding: 2rem 1rem;
  }
  
  .footer-column {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  
  .footer-wrapper {
    gap: 1rem;
  }
  
  .footer-address-wrapper {
    justify-content: center;
  }
}

/* FAQ Section Responsive */
@media (max-width: 768px) {
  .faq-section h3 {
    font-size: 1.5rem;
  }
  
  .faq-box {
    padding: 0 1rem;
  }
  
  .faq-box details {
    padding: 0.8rem 1rem;
  }
  
  .faq-box summary {
    font-size: 1rem;
  }
}

/* Section Padding Responsive */
@media (max-width: 768px) {
  section {
    padding: 3rem 1rem;
  }
  
  h2 {
    font-size: 2rem;
  }
}

/* General Typography Responsive */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 0.95rem;
  }
}

/* Additional Fixes for Specific Sections */
@media (max-width: 480px) {
  .carousel-btn {
    padding: 0.4rem 0.8rem;
    font-size: 1.2rem;
  }
  
  .carousel-controls {
    gap: 1rem;
  }
  
  .captcha-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .refresh-captcha {
    margin-top: 10px;
  }
  
  .about-link, .learn-more {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* Fix for Hero Section on Very Small Screens */
@media (max-width: 360px) {
  .caption h1 {
    font-size: 1.5rem;
  }
  
  .caption {
    padding: 1rem;
  }
  
  .hero-section-career {
    height: 40vh;
  }
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Quality Section Styles */
.quality-section {
  padding: 5rem 0;
  background-color: transparent;
  position: relative;
}

.quality-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid rgba(200, 200, 200, 0.1);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.quality-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #431f72;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.quality-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(200, 200, 200, 0.1);
}

.quality-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.1);
}

.quality-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
}

.quality-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.quality-card p {
  color: #ffffff;
  line-height: 1.6;
}

/* Partnerships Section Styles */
.partnerships-section {
  padding: 5rem 0;
  background-color: transparent;
  position: relative;
}

.partnerships-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid rgba(200, 200, 200, 0.1);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.partnerships-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ec9191ec;
}

.partnerships-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.partnerships-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partnerships-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.partnerships-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: #ffffff;
}

.partnerships-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 992px) {
  .partnerships-content {
    grid-template-columns: 1fr;
  }
  
  .partnerships-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .partnerships-stats {
    flex-wrap: wrap;
  }
  
  .stat-item {
    flex: 0 0 33%;
    margin-bottom: 1.5rem;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quality-grid {
    grid-template-columns: 1fr;
  }
  
  .quality-section h2,
  .partnerships-section h2 {
    font-size: 2rem;
  }
}

/* Partnerships Section Styles */
.partnerships-wrapper {
  padding: 5rem 0;
  position: relative;
  background-color: transparent;
}

.partnerships-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid rgba(200, 200, 200, 0.1);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
}

.partnerships-wrapper h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.partnerships-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #555;
  font-size: 1.1rem;
}

.partnerships-showcase {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.partner-logo {
  flex: 0 1 180px;
  height: 100px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid rgba(200, 200, 200, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 90px;
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%);
}

.partnerships-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 200, 200, 0.3);
}

.more-text {
  font-style: italic;
  color: #869ac5;
}

.view-all-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #0066cc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.view-all-btn:hover {
  background-color: #0055aa;
}

/* Value-Added Services Section */
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid rgba(200, 200, 200, 0.5);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
}

.services-container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(200, 200, 200, 0.3);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.5);
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-icon img {
  width: 64px;
  height: 64px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.service-card p {
  color: #555;
  line-height: 1.6;
}

/* Update existing styles to match the new semi-transparent look */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(200, 200, 200, 0.3);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.5);
}

#why-us .container, 
#solutions .container {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(200, 200, 200, 0.1);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.solutions-wrapper {
  padding: 5rem 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .partnerships-more {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .partner-logo {
    flex: 0 1 140px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  #why-us .container h2,
  .partnerships-wrapper h2,
  .services-container h2,
  #solutions .container h2 {
    font-size: 2rem;
  }
}

