body{
    text-decoration: none;
   
}
.efgs-about-wrapper {
  padding: 60px 20px;
  background: #f9f9f9;
}

.efgs-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.efgs-about-text {
  flex: 1 1 500px;
}

.efgs-about-text h4 {
  color: #ff6600;
  font-size: 16px;
  margin-bottom: 10px;
}

.efgs-about-text h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.efgs-about-text h2 {
 font-size: 49px;
  margin-bottom: 30px;
  font-weight: 800;
}

.efgs-about-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.efgs-about-image {
  flex: 1 1 400px;
  text-align: center;
}

.efgs-about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  height: 402px;
}

/* Responsive */
@media (max-width: 768px) {
  .efgs-container {
    flex-direction: column;
    text-align: center;
  }

  .efgs-about-text h2 {
    font-size: 26px;
  }
}


.efgs-mission-wrapper {
  padding: 60px 20px;
  background: #ffffff;
}

.efgs-mission-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.efgs-mission-image {
  flex: 1 1 400px;
  text-align: center;
}

.efgs-mission-image img {
  width: 100%;
  max-width: 371px;
  border-radius: 10px;
  height: auto;
}

.efgs-mission-text {
  flex: 1 1 500px;
}

.efgs-mission-text h4 {
  color: #ff6600;
  font-size: 16px;
  margin-bottom: 10px;
}

.efgs-mission-text h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.efgs-mission-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
}

.efgs-mission-text p {
  font-size: 18px;
  line-height: 1.4;
  color: #555;
  margin-bottom: 15px;
}

.efgs-mission-text ul {
  padding-left: 20px;
}

.efgs-mission-text ul li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
}
.efgs-mission-text,
.efgs-about-text {
  /*text-transform: lowercase;*/
}
/* Responsive */
@media (max-width: 768px) {
  .efgs-mission-container {
    flex-direction: column;
    text-align: center;
  }

  .efgs-mission-text h2 {
    font-size: 26px;
  }

  .efgs-mission-text ul {
    padding-left: 0;
    list-style-position: inside;
  }
}

.efgs-vision-heading {
  margin-top: 30px;
  font-size: 28px;
  font-weight: bold;
  color: #111;
}

/** {*/
/*  margin: 0;*/
/*  padding: 0;*/
/*  box-sizing: border-box;*/
/*  font-family: Arial, sans-serif;*/
/*}*/

body {
  background: #f4f4f4;
}

.term-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 20px;
}

.term-card {
  background: #ffa0f94f;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.alt-card {
  background: #f2d98c;
}

.term-title {
  text-align: center;
  background: #000;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}

.term-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.tag {
  padding: 10px 15px;
  border-radius: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}

.red {
  background: #e53935;
}

.green {
  background: #43a047;
}

.purple {
  background: #8e24aa;
}

.term-list {
  list-style: none;
}

.term-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
}

.term-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .term-tags {
    flex-direction: column;
    align-items: center;
  }

  .term-title {
    font-size: 18px;
  }

  .tag {
    font-size: 12px;
    padding: 8px 12px;
  }

  .term-list li {
    font-size: 13px;
  }
}


.prod-section {
  background: #f4f4f4;
  padding: 50px 20px;
}

.prod-container {
  max-width: 1100px;
  margin: auto;
}

.prod-heading {
  text-align: center;
  color: #e53935;
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
}

.prod-heading::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #333;
  display: block;
  margin: 10px auto 0;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.prod-item {
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
}

.prod-item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.prod-item h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.prod-item p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }

  .prod-heading {
    font-size: 20px;
  }
}


/* Section */
.products {
  padding: 50px 20px;
  background: #f5f5f5;
}

/* Container Grid */
.container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.product-card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 15px;
  transition: 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* Image */
.product-card img {
  width: 100%;
  border-radius: 10px;
  height: 300px;
}

/* Title */
.product-card h3 {
  margin: 15px 0 10px;
  font-size: 18px;
}

/* Button */
.product-card a {
  display: inline-block;
  padding: 8px 18px;
  background: #ff5722;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

.product-card a:hover {
  background: #e64a19;
}

/* Tablet */
@media (max-width: 992px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .container {
    grid-template-columns: 1fr;
  }
}

