/* Color Variables */
:root {
  --primary-color: #2c5aa0;
  --primary-dark: #1e3f6b;
  --primary-light: #4a7bc8;
  --secondary-color: #f39c12;
  --secondary-dark: #e67e22;
  --secondary-light: #f7b731;
  --accent-color: #27ae60;
  --accent-dark: #229954;
  --text-dark: #2c3e50;
  --text-light: #34495e;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e9ecef;
  --shadow-color: rgba(44, 90, 160, 0.15);
}


/* General Styles */
body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: var(--bg-light);
  color: var(--text-dark);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-weight: 700;
  color: var(--text-dark);
}

h2 {
  margin-top: 0;
  font-size: 2.2rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  padding: 0.75em 2em;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-color);
}


/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--bg-white);
  padding: 0.3em 0;
  font-size: 0.75rem;
}

.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
}

.top-contact {
  display: flex;
  gap: 2em;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 500;
}

.contact-item i {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

.top-social {
  display: flex;
  gap: 1em;
  align-items: center;
}

.iso-certification {
  display: flex;
  align-items: center;
  margin-right: 1em;
}

.iso-certification img {
  height: 30px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.iso-certification img:hover {
  opacity: 1;
}

.social-link {
  color: var(--bg-white);
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Main Header */
.main-header {
  padding: 0.6em 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.main-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1em;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}

.logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.3px;
}

/* Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4em 0.8em;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
  display: inline-block;
  min-width: fit-content;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
  background: rgba(44, 90, 160, 0.1);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5em;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Footer Logo */
.footer-logo img {
  width: 50px;
  border-radius: 8px;
}

/* Large Screen Responsive */
@media (min-width: 1200px) {
  .nav-list {
    gap: 1.5em;
  }

  .nav-link {
    font-size: 0.9rem;
    padding: 0.5em 1em;
  }

  .logo img {
    width: 65px;
    height: 65px;
  }

  .logo-title {
    font-size: 1.3rem;
  }

  .logo-subtitle {
    font-size: 0.8rem;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--bg-light) 100%);
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

#particles-js {
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

.hero-slider {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 600px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.hero-text {
  max-width: 500px;
  color: var(--bg-white);
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5em;
  color: var(--bg-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
  color: var(--bg-white);
  opacity: 0.9;
}

.hero-img img {
  /* width: 250px; */
  width: 400px;
  height: auto;
  border-radius: 12px;
  /* box-shadow: 0 4px 24px var(--shadow-color); */
}

/* Slider Navigation */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--secondary-color);
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
  background: var(--secondary-color);
  color: var(--bg-white);
  transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

/* About Us */
.about {
  background: var(--bg-light);
  padding: 3em 0;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 2.5em;
}

.about-img img {
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 20px var(--shadow-color);
}

.about-text {
  gap: 5px;
}

.about-text ul {
  margin: 1em 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.5em;
  flex-wrap: wrap;
}

.about-text ul li {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  padding: 0.5em 1.2em;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.about-text ul li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

.iso-certification-section {
  margin-top: 2em;
  padding-top: 1.5em;
  border-top: 2px solid var(--border-color);
}

.iso-certification-section h4 {
  color: var(--primary-color);
  margin-bottom: 1em;
  font-size: 1.1rem;
  font-weight: 600;
}

.certification-badge {
  display: flex;
  align-items: center;
  gap: 1em;
  background: var(--bg-light);
  padding: 1em;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--shadow-color);
}

.certification-badge img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}

.certification-badge span {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Google Map Styles */
.map-container {
  margin-top: 2em;
  padding-top: 1.5em;
  border-top: 2px solid var(--border-color);
}

.map-container h4 {
  color: var(--primary-color);
  margin-bottom: 1em;
  font-size: 1.1rem;
  font-weight: 600;
}

.google-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-map:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-color);
}

.google-map iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 8px;
}

.map-actions {
  margin-top: 1em;
  text-align: center;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  padding: 0.6em 1.2em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow-color);
}

.btn-directions:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
  color: var(--bg-white);
  text-decoration: none;
}

.btn-directions i {
  font-size: 0.8rem;
}

/* Vision & Mission */
.vision-mission {
  background: var(--bg-light);
  padding: 3em 0;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3em;
  margin-top: 2em;
}

.vision-card,
.mission-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.vision-img,
.mission-img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  text-align: center;
}

.vision-mission img {
  height: 150px;
  width: auto;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 10px;
  padding-bottom: 0px;
}

.vision-content,
.mission-content {
  padding: 2em 1.5em;
}

.vision-content h3,
.mission-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1em;
  text-align: center;
}

.vision-content p,
.mission-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5em;
  text-align: center;
}

.vision-highlights,
.mission-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  justify-content: center;
}

.vision-highlights span,
.mission-highlights span {
  background: #4a6fa5;
  color: white;
  padding: 0.4em 1em;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.vision-highlights span:hover,
.mission-highlights span:hover {
  background: #36527c;
}

/* Products */
.products {
  background: var(--bg-white);
  padding: 3em 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  margin-top: 2em;
}

.product-card {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-color);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  height: 250px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.product-image {
  flex: 0 0 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  min-height: 200px;
}

.product-image img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-details {
  flex: 1;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}

.product-details h3 {
  margin: 0 0 0.5em 0;
  font-size: 1.1rem;
  color: var(--primary-color);
  line-height: 1.3;
}

.product-details p {
  margin: 0 0 1em 0;
  color: var(--text-dark);
  line-height: 1.5;
  font-size: 0.9rem;
  flex: 1;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: auto;
}

.product-features span {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  padding: 0.3em 0.8em;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}


/* team  */
.team {
  padding: 3em 1em;
  background: var(--bg-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  margin-top: 2em;
}

/* Center the last card when item count is odd */
.team-grid .team-card:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
  max-width: 620px;
}

.team-card {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-color);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  min-height: 220px;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px var(--shadow-color);
}

.team-image {
  flex: 0 0 180px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.team-details {
  flex: 1;
  padding: 1.2em 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-details h3 {
  margin: 0 0 0.4em 0;
  font-size: 1.1rem;
  color: var(--primary-color);
  line-height: 1.3;
}

.team-details p {
  margin: 0 0 0.8em 0;
  color: var(--text-dark);
  line-height: 1.5;
  font-size: 0.9rem;
  flex: 1;
}

.team-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: auto;
}

.team-meta span {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--bg-white);
  padding: 0.3em 0.8em;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}


/* Presence */
.presence {
  background: var(--bg-white);
  padding: 3em 0;
}

.presence-flex {
  display: flex;
  gap: 3em;
  flex-wrap: wrap;
  justify-content: space-between;
}

.presence-domestic,
.presence-international {
  flex: 1 1 300px;
  background: var(--bg-white);
  border-radius: 10px;
  padding: 2em 1.5em;
  text-align: center;
  margin-bottom: 1em;
  box-shadow: 0 4px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.presence-international img,
.presence-domestic img {
  margin: 1em 0;
  width: 377px;
  border-radius: 10px;
}

/* Values / Commitment */
.values {
  background: var(--bg-light);
  padding: 3em 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.value-card {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-color);
  padding: 2em 1em;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px var(--shadow-color);
}

/* Industries */
.industries {
  background: var(--bg-white);
  padding: 3em 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1em;
  margin-top: 2em;
}

.industry-card {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 1.5em 1em;
  text-align: center;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.industry-card:hover {
  box-shadow: 0 6px 25px var(--shadow-color);
}

.industry-card img {
  width: 150px;
  margin-bottom: 0.7em;
}

/* Testimonials */
.testimonials {
  background: var(--bg-white);
  padding: 3em 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px var(--shadow-color);
  padding: 2em 1.5em;
  font-style: italic;
  position: relative;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px var(--shadow-color);
}

.testimonial-card span {
  display: block;
  margin-top: 1em;
  font-weight: 600;
  color: var(--secondary-color);
}

/* Contact */
/* .contact {
  background: var(--bg-light);
  padding: 1em 0;
} */
/* .contact-flex {
  display: flex;
  gap: 3em;
  flex-wrap: wrap;
  align-items: flex-start;
} */
/* .contact-info {
  flex: 1 1 300px;
  font-size: 1.1rem;
}
.contact-form {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  background: var(--bg-white);
  padding: 1em 1.5em;
  border-radius: 10px;
  box-shadow: 0 4px 20px var(--shadow-color);
  border: 1px solid var(--border-color);
}
.contact-form input,
.contact-form textarea {
  padding: 0.8em;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}
.contact-form button {
  align-self: flex-start;
} */


.contact {
  background: var(--bg-light);
  padding: 2em 0;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

.contact-card {
  background: #fff;
  padding: 2em;
  max-width: 420px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  flex: 1 1 350px;
}

.contact-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5em;
  color: #000;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  /* margin-bottom: 1.5em; */
}

.contact-item .icon {
  color: #0b5ed7;
  font-size: 1.5rem;
  margin-top: 3px;
}

.contact-item small {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 0.5px;
}

.contact-item p {
  margin: 2px 0 0;
  color: #111;
  font-size: 1rem;
  line-height: 1.4;
}

/* Form Styling */
.contact-form {
  background: #fff;
  padding: 2em;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  max-width: 450px;
}

.contact-form h3 {
  margin-bottom: 0.5em;
  font-size: 1.4rem;
  color: #000;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  resize: none;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0b5ed7;
  box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.1);
}

.contact-form button {
  background: #0b5ed7;
  color: #fff;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #094bb5;
}

.contact-form button:disabled {
  background: #6c757d;
  cursor: not-allowed;
}

.form-message {
  margin-top: 1em;
}

.form-message .message {
  padding: 0.8em 1em;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

.form-message .message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message .message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}


/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
  color: var(--bg-white);
  padding: 0.5em 0;
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* flex-wrap: wrap;    */
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 700;
}

.footer-links a {
  color: var(--bg-white);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 5px;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-copy {
  font-size: 0.95rem;
  opacity: 0.8;
}


@media (max-width: 767px) {
  .top-header {
    display: none;
  }
}

@media (max-width: 900px) {

  /* Header Responsive */
  .top-bar {
    padding: 0.2em 0;
  }

  .top-bar-flex {
    flex-direction: column;
    gap: 0.3em;
  }

  .top-contact {
    gap: 0.8em;
    justify-content: center;
  }

  .contact-item {
    font-size: 0.75rem;
  }

  .main-header {
    padding: 0.4em 0;
  }

  .main-header-flex {
    flex-direction: column;
    gap: 0.8em;
  }

  .main-nav {
    order: 3;
    width: 100%;
  }

  .nav-list {
    gap: 0.5em;
  }

  .nav-link {
    font-size: 0.75rem;
    padding: 0.3em 0.6em;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav.active .nav-list {
    flex-direction: column;
    gap: 0.2em;
    width: 100%;
  }

  .main-nav.active .nav-link {
    width: 100%;
    text-align: center;
    padding: 0.35em 0.7em;
    font-size: 0.8rem;
  }

  .header-actions {
    justify-content: center;
  }

  /* Flex and Layout Adjustments */
  .hero-content,
  .about-flex,
  .contact-flex,
  .footer-flex {
    flex-direction: column;
    /* align-items: flex-start; */
    gap: 1.5em;
  }

  html,
  body {
    overflow-x: hidden;
  }

  /* Header */
  .header {
    padding: 0.3em 1em;
  }

  .logo {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5em;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .header-contact {
    display: none;
  }

  /* Hero Section */
  .hero {
    min-height: 500px;
    padding: 2em 1em;
    text-align: center;
  }

  .hero-slider,
  .slide {
    min-height: 500px;
    padding: 1em 0;
  }

  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2em;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-img {
    text-align: center;
  }

  .hero-img img {
    width: 180px;
    display: block;
    margin: 0 auto;
  }

  /* Slider Arrows */
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    z-index: 2;
  }

  .prev-arrow {
    left: 10px;
  }

  .next-arrow {
    right: 10px;
  }

  .slider-dots {
    bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 5px;
  }

  .slider-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
  }

  .slider-dots li.slick-active button {
    background-color: #333;
  }

  /* ✅ Vision & Mission Responsive */
  .vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    padding: 1em;
  }

  .vision-card,
  .mission-card {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    align-items: center;
  }

  .vision-content,
  .mission-content {
    padding: 1.5em 1.2em;
    text-align: center;
  }

  .vision-content h3,
  .mission-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5em;
  }

  .vision-content p,
  .mission-content p {
    font-size: 1rem;
    line-height: 1.5;
  }



  .about-flex {
    flex-direction: column;
    align-items: flex-start;
    text-align: center;
  }

  .about-img img {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    left: 80px;

  }

  .about-text {
    padding-top: 1em;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    position: relative;
    bottom: 10px;
  }

  .about-text p,
  .about-text ul li {
    font-size: 1rem;
  }

  .presence-flex {
    flex-direction: column;
    align-items: center;
    gap: 2em;
  }

  .presence h2 {
    font-size: 1.5rem;
  }

  .presence-flex img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px var(--shadow-color);
  }

  .presence h3 {
    font-size: 1.6rem;
  }

  .presence p {
    font-size: 1rem;
  }

}






/* Responsive Styles */
@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;

  }

  .contact-card {
    width: 81%;
  }

  .contact-form {
    width: 93%;

  }
  .contact-info h2 {
    font-size: 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .btn-primary {
    font-size: 0.95rem;
  }
}



@media (max-width: 768px) {
  .footer-flex {
    /* flex-direction: column; */
    justify-content: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-logo span {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.95rem;
    text-align: center;
  }
}


@media (max-width: 600px) {
  .container {
    width: 98%;
    padding: 0 0.5em;
  }

  /* Very Small Screen Styles */
  @media (max-width: 480px) {
    .top-contact {
      gap: 0.2em;
    }

    .contact-item {
      font-size: 0.65rem;
    }

    .logo img {
      width: 40px;
      height: 40px;
    }

    .logo-title {
      font-size: 0.9rem;
    }

    .logo-subtitle {
      font-size: 0.6rem;
    }

    .nav-link {
      font-size: 0.65rem;
      padding: 0.2em 0.4em;
    }

    .main-nav.active .nav-link {
      font-size: 0.7rem;
      padding: 0.3em 0.5em;
    }
  }

  /* Header Mobile Styles */
  .top-bar {
    padding: 0.15em 0;
  }

  .top-contact {
    flex-direction: column;
    gap: 0.2em;
    align-items: center;
  }

  .contact-item {
    font-size: 0.65rem;
    gap: 0.25em;
  }

  .contact-item i {
    font-size: 0.75rem;
  }

  .top-social {
    gap: 0.4em;
  }
  
  .iso-certification {
    margin-right: 0.3em;
  }
  
  .iso-certification img {
    height: 20px;
  }

  .social-link {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
  }

  .main-header {
    padding: 0.3em 0;
  }

  .logo {
    flex-direction: column;
    text-align: center;
    gap: 0.4em;
  }

  .logo img {
    width: 40px;
    height: 40px;
  }

  .logo-title {
    font-size: 0.95rem;
  }

  .logo-subtitle {
    font-size: 0.6rem;
  }

  .nav-link {
    font-size: 0.7rem;
    padding: 0.25em 0.5em;
  }

  .mobile-menu-toggle {
    padding: 0.3em;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
  }

  .main-nav.active .nav-link {
    font-size: 0.75rem;
    padding: 0.35em 0.6em;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  /* Hero section mobile adjustments */
  .hero {
    min-height: 400px;
    padding: 1em 0;
  }

  .hero-slider {
    min-height: 400px;
  }

  .slide {
    min-height: 400px;
    padding: 0.5em 0;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5em;
    padding: 0 1em;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 1.8rem;
    margin-bottom: 0.3em;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1em;
  }

  .hero-img img {
    width: 150px;
  }

  /* Slider mobile adjustments */
  .slider-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .prev-arrow {
    left: 5px;
  }

  .next-arrow {
    right: 5px;
  }

  .slider-dots {
    bottom: 5px;
    gap: 8px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  /* Mobile header adjustments */
  .header {
    padding: 0.2em 0;
  }

  .logo {
    font-size: 1rem;
  }

  .logo img {
    width: 25px;
    height: 25px;
  }

  .header-contact {
    font-size: 0.75rem;
  }

  /* Vision & Mission mobile responsive */
  .vision-mission-grid {
    gap: 1.5em;
  }

  .vision-card,
  .mission-card {
    max-width: 100%;
  }

  .vision-content h3,
  .mission-content h3 {
    font-size: 1.2rem;
  }

  .vision-content p,
  .mission-content p {
    font-size: 0.95rem;
  }

  .vision-highlights,
  .mission-highlights {
    gap: 0.5em;
  }

  .vision-highlights span,
  .mission-highlights span {
    font-size: 0.8rem;
    padding: 0.3em 0.8em;
  }

  .product-card,
  .value-card,
  .testimonial-card {
    padding: 1em 0.5em;
  }

  .contact-form {
    padding: 0em 0.5em;
  }
  
  .google-map iframe {
    height: 180px;
  }
  
  .btn-directions {
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
  }
  
  .iso-certification img {
    height: 18px;
  }

  .about {
    padding: 2em 1em;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p,
  .about-text ul li {
    font-size: 0.95rem;
  }
  
  .certification-badge {
    flex-direction: column;
    text-align: center;
    gap: 0.5em;
  }
  
  .certification-badge img {
    height: 40px;
  }
  
  .google-map iframe {
    height: 200px;
  }
  
  .btn-directions {
    font-size: 0.85rem;
    padding: 0.5em 1em;
  }
  
  .iso-certification img {
    height: 16px;
  }




  .presence {
    padding: 0em 1em;
  }

  .presence h2 {
    font-size: 1.3rem;
  }

  .presence h3 {
    font-size: 1.4rem;
  }

  .presence p {
    font-size: 0.95rem;
  }



}


/* Medium screens (tablets in landscape) */
@media (max-width: 768px) and (min-width: 601px) {
  .hero {
    min-height: 450px;
    padding: 1.5em 0;
  }

  .hero-slider {
    min-height: 450px;
  }

  .slide {
    min-height: 450px;
    padding: 0.8em 0;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 1.8em;
  }

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

  .hero-text p {
    font-size: 1.15rem;
  }

  .hero-img img {
    width: 160px;
  }

  .slider-arrow {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* Medium Screen Responsive */
@media (max-width: 768px) and (min-width: 601px) {
  .top-bar {
    padding: 0.25em 0;
  }

  .top-bar-flex {
    flex-direction: row;
    gap: 1em;
  }

  .top-contact {
    gap: 1.2em;
  }

  .contact-item {
    font-size: 0.75rem;
  }

  .main-header {
    padding: 0.5em 0;
  }

  .main-header-flex {
    flex-direction: row;
    gap: 1.2em;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  .logo-title {
    font-size: 1.1rem;
  }

  .nav-list {
    gap: 0.8em;
  }

  .nav-link {
    font-size: 0.8rem;
    padding: 0.4em 0.8em;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .main-nav {
    display: block !important;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 0.4em 0;
  }

  .logo {
    font-size: 1rem;
  }

  .logo img {
    width: 28px;
    height: 28px;
  }

  .header-contact {
    font-size: 0.7rem;
    padding: 0.4em 0.6em;
  }

  .header-contact span {
    font-size: 0.8rem;
  }
}

/* Products Responsive */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }

  .product-card {
    height: auto;
    flex-direction: column;
    min-height: 300px;
  }

  .product-image {
    flex: none;
    height: auto;
    min-height: 150px;
  }
  
  .product-image img {
    max-height: 150px;
  }

  .product-details {
    padding: 1.2em;
    flex: 1;
  }

  .product-details h3 {
    font-size: 1rem;
  }

  .product-details p {
    font-size: 0.85rem;
    margin-bottom: 1em;
  }

  .product-features {
    margin-top: 1em;
  }
}

/* Team Responsive (mirror product responsive) */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }

  .team-card {
    min-height: 300px;
    flex-direction: column;
  }

  .team-image {
    flex: none;
    height: 150px;
  }

  .team-details {
    padding: 1.2em;
  }
}

@media (max-width: 600px) {
  .team-card {
    min-height: 280px;
  }

  .team-image {
    height: 120px;
  }

  .team-details {
    padding: 1em;
  }
}

@media (max-width: 600px) {
  .product-card {
    height: auto;
    min-height: 280px;
  }

  .product-image {
    height: auto;
    min-height: 120px;
    padding: 0.5em;
  }
  
  .product-image img {
    max-height: 120px;
    width: auto;
    max-width: 100%;
  }

  .product-details {
    padding: 1em;
  }

  .product-features {
    gap: 0.3em;
    margin-top: 0.8em;
  }

  .product-features span {
    font-size: 0.75rem;
    padding: 0.2em 0.6em;
  }
}