
/* style.css */

/* Reset and font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #fff;
}

/* Header */
.header {
  background-color: #1a1a1a;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}
.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Left Logo & Text */
.logo-area {
  display: flex;
  align-items: center;
}
.logo-area img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}
/* Logo */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
}

/* Nav Menu */
.navbar {
  display: flex;
  align-items: center;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}
.nav-menu li a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.nav-menu li a:hover {
  color: #1abc9c;
}

/* CTA Button */
.cta-btn {
  background-color: #1abc9c;
  color: #111;
  padding: 8px 16px;
  margin-left: 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.cta-btn:hover {
  background-color: #16a085;
}

/* Hamburger */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  margin-left: 20px;
}
/* Hero Section */
.hero {
  background: url('image/thumnel.jpeg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #1abc9c;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: #1abc9c;
  color: #111;
}

.primary-btn:hover {
  background-color: #16a085;
}

.secondary-btn {
  background-color: transparent;
  border: 2px solid #1abc9c;
  color: #1abc9c;
}

.secondary-btn:hover {
  background-color: #1abc9c;
  color: #111;
}/* Product Highlights Section */
.products {
  background-color: #0f0f0f;
  padding: 60px 20px;
  color: #fff;
}
.container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #1abc9c;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  margin: 15px 0 10px;
  font-size: 1.3rem;
  color: #1abc9c;
}

.product-card p {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 15px;
}

.product-card a {
  color: #1abc9c;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.product-card a:hover {
  color: #16a085;
}

/* Export Coverage / Global Reach */
.export-reach {
  background: url('image/thumnel.jpeg') no-repeat center center/cover;
  position: relative;
  height: 50vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.export-reach .overlay {
  background-color: rgba(0, 0, 0, 0.75); /* Dark overlay */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.reach-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 900px;
  margin: auto;
}

.reach-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1abc9c;
}

.reach-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #ccc;
}

.country-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.flag {
  background-color: #1a1a1a;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 1rem;
  color: #1abc9c;
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.1);
  transition: transform 0.3s;
}
.flag:hover {
  transform: scale(1.1);
}
/* Why Choose Us Section */
.why-choose-us {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #1abc9c;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.usp-card {
  background-color: #1a1a1a;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.05);
  transition: transform 0.3s ease, background 0.3s;
}

.usp-card:hover {
  transform: translateY(-6px);
  background-color: #181818;
}

.usp-icon {
  font-size: 2rem;
  color: #1abc9c;
  margin-bottom: 15px;
}

.usp-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #1abc9c;
}

.usp-card p {
  font-size: 0.95rem;
  color: #ccc;
}
/* Certificates & Approvals */
.certificates {
  background-color: #0e0e0e;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.certificates .section-title {
  font-size: 2.2rem;
  color: #1abc9c;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 255, 200, 0.1);
  position: relative;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.1);
}
.certificates .section-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
  font-style: italic;
  font-weight: 500;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  
}

.cert-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.05);
  transition: transform 0.3s;
  position: relative;
  text-align: center;
  color: #ccc;
  text-decoration: none;
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.1);
  background-color: #181818;
  border: 1px solid #1abc9c;
  color: #fff;
  text-decoration: none;
}

.cert-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: brightness(1.1);
}

.cert-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #1abc9c;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;

}

.cert-card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0;
  line-height: 1.4;
  font-style: italic;
  font-weight: 500;
  text-align: left;

}

/* Testimonials Section */
.testimonials {
  background-color: #0e0e0e;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.testimonials .section-title {
  font-size: 2.2rem;
  color: #1abc9c;
  margin-bottom: 10px;
}

.testimonials .section-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.testimonial-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.05);
  transition: transform 0.3s;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

.testimonial-card p {
  font-style: italic;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-meta {
  border-top: 1px solid #333;
  padding-top: 10px;
  font-weight: bold;
  color: #1abc9c;
}

.testimonial-meta small {
  display: block;
  font-weight: normal;
  color: #999;
  font-size: 0.9rem;
  margin-top: 4px;
}
.certificate-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.1);
}

.certificate-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  filter: brightness(1.1);
}

.certificate-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #1abc9c;
}

.certificate-card p {
  font-size: 0.9rem;
  color: #ccc;

  /* Contact / Inquiry Section */
.contact-section {
  background: url('image/thumnel.jpeg') no-repeat center center/cover;
  position: relative;
  height: 50vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.contact-section .section-title {
  font-size: 2.2rem;
  color: #1abc9c;
  margin-bottom: 10px;
}

.contact-section .section-subtitle {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group input,
.form-group select,
.form-group textarea {
  flex: 1;
  background-color: #1a1a1a;
  color: #fff;
  padding: 12px 15px;
  border: 1px solid #2c2c2c;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.form-group select option {
  background-color: #1a1a1a;
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  width: 100%;
}

.send-btn {
  background-color: #1abc9c;
  color: #111;
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.send-btn:hover {
  background-color: #16a085;
}
/* Call-to-Action Sticky Strip */
.cta-strip {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #1abc9c;
  color: #111;
  padding: 15px 20px;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.6);
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.cta-content span {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  flex: 1 1 100%;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex: 1 1 100%;
}

.cta-buttons .btn {
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn.whatsapp {
  background-color: #25d366;
  color: #111;
}
.btn.whatsapp:hover {
  background-color: #1ebe5d;
}

.btn.call {
  background-color: #ffffff;
  color: #111;
}
.btn.call:hover {
  background-color: #e1e1e1;
}
.cta-strip {
  top: 0;
  bottom: auto;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0e0e0e;
  color: #ffffff;
}

.location-section {
  padding: 50px 0;
}

.location-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}
.location-text {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #00ffcc;
}

.address {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
}

.map-container {
  flex: 1;
  min-width: 300px;
  height: 300px;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
  border-radius: 12px;
  overflow: hidden;
}
.contact-location-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* allow stacking on mobile */
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.contact-form-box,
.location-box {
  flex: 1;
  min-width: 350px;
  background-color: #111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.1);
}

/* Responsive fix */
@media (max-width: 900px) {
  .contact-location-wrapper {
    flex-direction: column;
  }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .location-container {
    flex-direction: column;
  }

  .map-container {
    height: 250px;
  }
}


/* Testimonials Section */
.testimonials-section {
  background: url('image/thumnel.jpeg') no-repeat center center/cover;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1abc9c;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background-color: #1c1c1c;
  border-left: 4px solid #1abc9c;
  padding: 25px;
  border-radius: 10px;
  max-width: 350px;
  flex: 1 1 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #ccc;
}

.client-name {
  font-weight: bold;
  color: #fff;
}

.client-role {
  font-size: 0.9rem;
  color: #aaa;
}
  
/* Responsive */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #222;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 20px;
    border-radius: 6px;
  }
  .nav-menu li {
    margin-bottom: 15px;
  }
  .navbar.open .nav-menu {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .reach-content h2 {
    font-size: 1.8rem;
  }
  .flag {
    font-size: 0.95rem;
    padding: 10px 16px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .usp-card h3 {
    font-size: 1rem;
  }
  .usp-card p {
    font-size: 0.9rem;
  }
  .cert-card img {
    width: 60px;
    height: 60px;
  }
  .cert-card h3 {
    font-size: 1rem;
  }
  .cert-card p {
    font-size: 0.85rem;
  }
  .testimonial-card {
    padding: 20px;
  }
  .form-group {
    flex-direction: column;
  }
  .cta-content {
    flex-wrap: nowrap;
  }
  .cta-content span {
    flex: 1;
    text-align: left;
  }
  .cta-buttons {
    flex: 0 0 auto;
  }
  .cta-dark-content {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    align-items: center;
  }
  .testimonials-container {
    flex-direction: column;
    align-items: center;
  }
}