:root {
  --yellow: #FBED22;
  --green: #01A64E;
  --dark-gray: #1a1a1a;
  --white: #FFFFFF;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  line-height: 1.7;
  color: var(--dark-gray);
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-bottom: 2px solid var(--yellow);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-gray);
  text-decoration: none;
}

.logo span {
  color: var(--green);
}

/* Navigation */
.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: var(--white);
  box-shadow: -5px 0 25px rgba(0,0,0,0.1);
  padding: 2rem;
  transition: var(--transition);
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  display: block;
  padding: 1rem 0;
  color: var(--dark-gray);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.59), rgba(255, 215, 200, 0.8)),
              url('https://astonishing-duckanoo-29ed1e.netlify.app/5.jpg') center/cover;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  margin-top: 76px;
}

.hero-content {
text-align: center;
max-width: 800px;
padding: 2rem;
display: flex;
flex-direction: column;
align-items: center;
}

.hero h1 {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
}

/* Sections */
.section {
  padding:4rem 5%;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.75rem;
  color: var(--green);
  margin-bottom: 4rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--yellow);
}



.section-title2 {
  text-align: center;
  font-size: 2.75rem;
  color: var(--green);
  margin-bottom: 1rem;
 
}


/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: rgba(34, 139, 34, 0.05);
  padding: 4rem;
  border-radius: 20px;
}

.about-image {
width: 100%;
border-radius: 15px;
transform: rotate(-3deg);
box-shadow: 15px 15px 0 var(--yellow);
height: 500px;
object-fit: cover;
}

/* Product Highlights */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, var(--yellow), transparent);
  transform: rotate(45deg);
  transition: var(--transition);
  opacity: 0;
}

.product-card:hover::before {
  opacity: 0.1;
  animation: shine 1.5s;
}

@keyframes shine {
  0% { left: -50%; }
  100% { left: 150%; }
}

/* Industries Served */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  padding: 2rem;
  text-align: center;
  border-radius: 15px;
  background: rgba(34, 139, 34, 0.05);
  transition: var(--transition);
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-icon {
  font-size: 2.5rem;
  color: var(--green);
  margin-bottom: 1rem;
}

/* Certifications */
.certifications {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.cert-logo {
  height: 20rem;
  opacity: 0.8;
  transition: var(--transition);
}

.cert-logo:hover {
  opacity: 1;
  transform: translateY(-5px);
}

/* Contact Section */
.contact-container {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(34, 139, 34, 0.05);
  padding: 4rem;
  border-radius: 20px;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--yellow);
  outline: none;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 4rem 5% 2rem;
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--green));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.footer-col {
  padding: 1.5rem;
}

.footer-logo {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.footer-logo span {
  color: var(--yellow);
}

.footer h4 {
  color: var(--yellow);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--yellow);
  padding-left: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
section#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background: #f3f3f3;
}
.social-link {
  width: 40px;
  text-decoration: none !important;
  height: 40px;
  color: var(--green);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--yellow);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255,255,255,0.8);
}
@media (min-width: 1000px) {
 .card.product-card {
    min-height: 640px;
    max-height: 640px !important;
}
}

/* Responsive Design */
@media (max-width: 1024px) {
  .industries-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
      display: none;
  }

  .mobile-menu-btn {
      display: block;
  }

  .hero {
      clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
      margin-top: 64px;
  }

  .about-container {
      grid-template-columns: 1fr;
  }

  .industries-grid {
      grid-template-columns: 1fr;
  }

  .footer-grid {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .social-links {
      justify-content: center;
  }

  .footer-links a:hover {
      padding-left: 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
      font-size: 2.5rem;
  }

  .section {
      padding: 4rem 5%;
  }

  .contact-container {
      padding: 2rem;
  }
}
.animated-button {
position: relative;
display: flex;
align-items: center;
gap: 4px;
padding: 16px 36px;
border: 4px solid;
border-color: transparent;
font-size: 16px;
background-color: inherit;
border-radius: 100px;
font-weight: 600;
color: var(--green);
box-shadow: 0 0 0 2px var(--green);
cursor: pointer;
overflow: hidden;
transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
position: absolute;
width: 24px;
fill: var(--green);
z-index: 9;
transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
right: 16px;
}

.animated-button .arr-2 {
left: -25%;
}

.animated-button .circle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 20px;
height: 20px;
background-color: var(--green);
border-radius: 50%;
opacity: 0;
transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
position: relative;
z-index: 1;
transform: translateX(-12px);
transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
box-shadow: 0 0 0 12px transparent;
color: #212121;
border-radius: 12px;
}

.animated-button:hover .arr-1 {
right: -25%;
}

.animated-button:hover .arr-2 {
left: 16px;
}

.animated-button:hover .text {
transform: translateX(12px);
}

.animated-button:hover svg {
fill: #212121;
}

.animated-button:active {
scale: 0.95;
box-shadow: 0 0 0 4px var(--green);
}

.animated-button:hover .circle {
width: 220px;
height: 220px;
opacity: 1;
}
.contact-section {
  padding: 60px 20px;
  background-color: #fff;
}

.form-wrapper {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-control,
.form-select {
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 1rem;
  border: 1px solid #ccc;
  transition: all 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

.form-check-label {
  margin-left: 5px;
}

.btn-primary {
  border-radius: 12px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 500;
}

.map-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  border: 0;
}

.contact-info {
  margin-top: 40px;
}

.contact-info h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #555;
}

.contact-info .info-item i {
  margin-right: 10px;
  color: var(--bs-primary);
}
button.btn.btn-primary {
  background: var(--green);
  border: none;
}

.products-section {
  padding: 80px 20px;

}

.products-section h2 {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: center;
}

.product-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}
.py-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.product-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: all 0.3s ease;
  /* drop shadow */
filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-body {
  padding: 25px;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
.productImg {
    height: 300px;
}
.product-desc {
  font-size: 0.95rem;
  color: #666;
  min-height: 60px;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color:var(--green);
  margin-top: 15px;
}
@media (max-width:500px){
  body{
    overflow-x: hidden !important;
  }
  .g-5, .gx-5 {
    --bs-gutter-x: 1rem !important;
}
}.who-we-serve {
  padding: 60px 20px;
  color: #222;
}

.who-we-serve .container {
  max-width: 1200px;
  margin: 0 auto;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.intro {
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 800px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  font-size: 1.3rem;
  color: #000;
  margin-bottom: 10px;
}

.card .desc {
  font-weight: 500;
  color: #666;
  margin-bottom: 15px;
}

.card ul {
  list-style: disc;
  padding-left: 20px;
  color: #333;
}

.cta {
  text-align: center;
  margin-top: 60px;
}

.cta h4 {
  font-size: 1.5rem;
  color: #000;
}

.cta p {
  margin: 10px 0 20px;
  font-size: 1rem;
  color: #444;
}

.btn {
  display: inline-block;
  background-color: var(--green);
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}


.about-page {
  font-family: 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #222;
  padding: 60px 20px;
  line-height: 1.7;
}

.container {
  max-width: 960px;
  margin: 0 auto;
}

.page-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
  text-align: left;
}

section h2 {
  font-size: 1.8rem;
  color: #000;
  margin-top: 40px;
  margin-bottom: 10px;
}

section p {
  font-size: 1.05rem;
  color: #444;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.value-item {
  background: #f9f9f9;
  padding: 20px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
}

.value-item h3 {
  margin-bottom: 10px;
  color: #000;
  font-size: 1.2rem;
}

.cta {
  text-align: center;
  margin-top: 60px;
  background: #f1fce8;
  padding: 40px;
  border-radius: 12px;
}

.cta-btn {
  margin-top: 20px;
  display: inline-block;
  background: var(--green);
  color: #000;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}


.section-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #f9f9f9;
  padding: 60px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.story-text, .story-image {
  flex: 1 1 50%;
  padding: 20px;
}

.story-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}

.story-text p {
  font-size: 1.1rem;
  color: #444;
}

.story-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Mission Highlight Section */
.mission-highlight {
  background-color: #e9f6d6;
  padding: 60px 30px;
  border-left: 10px solid #a3cd39;
  margin-bottom: 40px;
  border-radius: 8px;
}

.mission-inner {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.mission-inner h2 {
  font-size: 1.9rem;
  color: #000;
  margin-bottom: 15px;
}

.mission-inner p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}
@media(max-width:500px){
  
section.story.section-split {
    display: flex;
    flex-direction: column !important;
}
}

.hero-slideshow {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 1rem;
}

/* Ensure text and button are visible */
.hero-slideshow::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.5); */
  z-index: 5;
}

@media (max-width:500px){
  .hero {
    height: 240px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.59), rgba(255, 215, 200, 0.8)),
              url('https://astonishing-duckanoo-29ed1e.netlify.app/5.jpg') center/cover;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    margin-top: 76px;
    background-size: cover;
}
.hero-slideshow {
    position: relative;
    height: 250px;
      margin-top: 76px;
    overflow: hidden;
}
.slide1{
  background-image: url('https://i.imgur.com/E2zAEHd.jpeg') !important;
}
}
img.logoicon {
    width: 50px;
}