@charset "UTF-8";
/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* Variables */
.shade {
  background-color: #f3780e;
  border-radius: 20px;
  padding: 10px;
}

.newbg {
  display: inline-block;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 50%);
}

.med-shade {
  box-shadow: 0 16px 32px -8px rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  background: rgba(203, 240, 204, 0.5);
  padding: 0px;
  transition: box-shadow 0.3s;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  width: 100%;
  min-height: 95vh;
  background: url("./../../images/cover.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  padding: 0 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 75vh;
  }
}
@media screen and (max-width: 480px) {
  .hero {
    min-height: 60vh;
    background-size: 100%;
    height: auto;
    background: url("./../../images/back.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 376px) {
  .hero {
    min-height: 55vh;
  }
}
@media screen and (max-width: 320px) {
  .hero {
    min-height: 45vh;
    background-size: 100%;
    height: auto;
    background-color: rgba(203, 240, 204, 0.5);
    margin-top: 1.6rem;
    padding-bottom: 0.8rem;
  }
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  padding: 0 2.5rem;
  text-align: left;
  top: 6rem;
}
@media screen and (max-width: 1024px) {
  .hero .hero-content {
    top: 6.2rem;
    padding: 0 1rem;
  }
}
@media screen and (max-width: 768px) {
  .hero .hero-content {
    top: 5.6rem;
  }
}
@media screen and (max-width: 480px) {
  .hero .hero-content {
    top: 2.5rem;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 320px) {
  .hero .hero-content {
    top: 3rem;
    padding: 0 1rem;
  }
}
.hero .hero-content img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 1024px) {
  .hero .hero-content img {
    max-width: 550px;
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .hero .hero-content img {
    max-width: 350px;
  }
}
@media screen and (max-width: 480px) {
  .hero .hero-content img {
    max-width: 360px;
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 376px) {
  .hero .hero-content img {
    max-width: 360px;
    width: 250px;
    margin-bottom: 0.2rem;
  }
}
@media screen and (max-width: 320px) {
  .hero .hero-content img {
    max-width: 190px;
    margin: auto 2rem;
  }
}
.hero .hero-content h3 {
  color: #f3780e;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero .hero-content h3 {
    font-size: 1.3rem;
    text-align: left;
    padding-left: 30px;
    margin-top: -12px;
  }
}
@media screen and (max-width: 480px) {
  .hero .hero-content h3 {
    font-size: 1.3rem;
    text-align: left;
    padding: 0 20px;
  }
}
@media screen and (max-width: 376px) {
  .hero .hero-content h3 {
    font-size: 1rem;
    text-align: left;
    padding-left: 20px;
  }
}
@media screen and (max-width: 320px) {
  .hero .hero-content h3 {
    font-size: 0.9rem;
    text-align: center;
  }
}
.hero .hero-content h4 {
  color: #0072b1;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .hero .hero-content h4 {
    font-size: 1.3rem;
    text-align: left;
    padding-left: 30px;
    width: 60%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .hero .hero-content h4 {
    font-size: 1.2rem;
    text-align: left;
    padding: 0 20px;
    width: 90%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 376px) {
  .hero .hero-content h4 {
    font-size: 1.1rem;
    text-align: left;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 320px) {
  .hero .hero-content h4 {
    font-size: 0.9rem;
    text-align: center;
    width: 100%;
    margin-bottom: 1px;
  }
}
.hero .hero-content .btn.primary {
  background: #0072b1;
  border: none;
  padding: 10px 20px;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
  margin-left: 29rem;
}
@media screen and (max-width: 768px) {
  .hero .hero-content .btn.primary {
    margin-left: 17.5rem;
    display: inline;
    padding: 8px 15px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .hero .hero-content .btn.primary {
    margin-left: 11rem;
    display: inline;
    padding: 8px 15px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 376px) {
  .hero .hero-content .btn.primary {
    margin-left: 9rem;
    display: inline;
    padding: 8px 15px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 320px) {
  .hero .hero-content .btn.primary {
    margin-left: 7rem;
    display: inline;
    padding: 4px 6px;
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
}
.hero .hero-content .btn.primary:hover {
  background: #f3780e;
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 0.9rem;
  }
}
.info-section {
  background: #f9f9f9;
  padding: 2rem 3rem 4rem;
  text-align: center;
}
@media screen and (max-width: 320px) {
  .info-section {
    padding: 2rem 1.5rem 4rem;
  }
}
.info-section .info-section .container {
  padding: 0 5px;
}
.info-section .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #f3780e;
}
@media screen and (max-width: 768px) {
  .info-section .section-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 426px) {
  .info-section .section-title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 320px) {
  .info-section .section-title {
    font-size: 1.5rem;
    width: 100%;
    margin: auto;
  }
}
.info-section .section-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: #0072b1;
  width: 42%;
  margin: auto;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .info-section .section-subtitle {
    width: 70%;
  }
}
@media screen and (max-width: 480px) {
  .info-section .section-subtitle {
    width: 100%;
    font-size: 0.93rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 320px) {
  .info-section .section-subtitle {
    font-size: 0.8rem;
    text-align: center;
    width: 215px;
  }
}
.info-section .info-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .info-section .info-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media screen and (max-width: 480px) {
  .info-section .info-container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 320px) {
  .info-section .info-container {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.info-section .info-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 320px) {
  .info-section .info-card {
    width: 100%;
    height: 260px;
    padding: 15px;
  }
}
.info-section .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.info-section .info-card .info-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 320px) {
  .info-section .info-card .info-top {
    margin-bottom: 10px;
  }
}
.info-section .info-card .info-top .info-number {
  margin-right: 15px;
}
.info-section .info-card .info-top img {
  width: 80px;
  margin-left: 4rem;
  background-color: rgba(203, 240, 204, 0.5);
  border-radius: 50%;
  padding: 10px;
}
@media screen and (max-width: 320px) {
  .info-section .info-card .info-top img {
    width: 55px;
    margin-left: 1.8rem;
    margin-top: 5px;
  }
}
.info-section .info-card h2 {
  font-size: 2rem;
  font-weight: bold;
  color: rgb(165.625, 240.375, 48.625);
  margin-bottom: 10px;
}
@media screen and (max-width: 320px) {
  .info-section .info-card h2 {
    font-size: 1.6rem;
  }
}
.info-section .info-card h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #517f09;
  margin-bottom: 10px;
}
@media screen and (max-width: 320px) {
  .info-section .info-card h3 {
    font-size: 1.1rem;
  }
}
.info-section .info-card p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 320px) {
  .info-section .info-card p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
}
.info-section .info-card a {
  color: #0072b1;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 320px) {
  .info-section .info-card a {
    font-size: 0.77rem;
  }
}
.info-section .info-card a:hover {
  color: #517f09;
}

/* Responsive */
@media (max-width: 600px) {
  .info-section .info-container {
    grid-template-columns: 1fr;
  }
  .info-section .card {
    text-align: center;
  }
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 6%;
  align-items: center;
}

/* Left side text */
.about-text h3 {
  text-transform: uppercase;
  font-size: 14px;
  color: #f3780e;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-text h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #517f09;
  margin-bottom: 20px;
}
@media screen and (max-width: 460px) {
  .about-text h1 {
    font-size: 1.8rem;
  }
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}
@media screen and (max-width: 460px) {
  .about-text p {
    font-size: 0.92rem;
    text-align: justify;
    padding: 0px 20px;
  }
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid #517f09;
  border-radius: 6px;
  text-decoration: none;
  color: #517f09;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #517f09;
  color: #fff;
}

/* Right side images */
.about-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 150px);
  gap: 20px;
}
.about-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.about-images .image1 {
  grid-column: span 1;
  grid-row: span 2;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-images {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
@media (max-width: 600px) {
  .about-images {
    grid-template-columns: 1fr;
  }
}
.products {
  padding: 4rem 3rem;
  text-align: center;
  background-image: url("./../../images/leaves.png");
  background-size: cover;
  background-position: center;
  /* ✅ Responsive design */
}
@media screen and (max-width: 426px) {
  .products {
    padding: 0rem 1rem 3rem;
    margin-top: -6rem;
  }
}
@media screen and (max-width: 320px) {
  .products {
    padding: 1rem 0.5rem 3rem;
  }
}
.products .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #f3780e;
}
@media screen and (max-width: 460px) {
  .products .section-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 320px) {
  .products .section-title {
    font-size: 1.6rem;
  }
}
.products .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
}
.products .product-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.products .product-cards .product-card {
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem 1rem 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 320px) {
  .products .product-cards .product-card {
    padding: 0.5rem 0.5rem 1rem;
  }
}
.products .product-cards .product-card:hover {
  transform: translateY(-5px);
}
.products .product-cards .product-card img {
  width: 150px;
  height: 160px;
  margin-bottom: 1rem;
  border-radius: 15%;
}
.products .product-cards .product-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #f3780e;
  margin-bottom: 0.8rem;
}
.products .product-cards .product-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}
.products .product-cards .product-card .btn {
  background: #0072b1;
  color: #fff;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.products .product-cards .product-card .btn:hover {
  background: #517f09;
}
@media (max-width: 1024px) {
  .products .product-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .products .product-cards {
    grid-template-columns: 1fr;
  }
}

.impact-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .impact-section {
    padding: 60px 40px;
    gap: 20px;
  }
}
.impact-section .impact-text {
  flex: 1 1 45%;
}
.impact-section .impact-text h3 {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: #f3780e;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .impact-section .impact-text h3 {
    margin-bottom: 0px;
  }
}
.impact-section .impact-text h1 {
  font-size: 2.5rem;
  line-height: 1.3;
  color: #517f09;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .impact-section .impact-text h1 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .impact-section .impact-text h1 {
    font-size: 2rem;
    padding: 10px 20px;
    width: 80%;
    margin: auto;
  }
}
@media screen and (max-width: 460px) {
  .impact-section .impact-text h1 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 320px) {
  .impact-section .impact-text h1 {
    font-size: 1.5rem;
    width: 100%;
  }
}
.impact-section .impact-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}
@media screen and (max-width: 1024px) {
  .impact-section .impact-text p {
    font-size: 1rem;
    text-align: justify;
  }
}
@media screen and (max-width: 768px) {
  .impact-section .impact-text p {
    font-size: 1.1rem;
    text-align: justify;
    padding: 5px 25px;
  }
}
@media screen and (max-width: 460px) {
  .impact-section .impact-text p {
    font-size: 0.92rem;
    text-align: justify;
    padding: 0px 20px;
  }
}
.impact-section .impact-image {
  flex: 1 1 45%;
  text-align: center;
}
.impact-section .impact-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .impact-section .impact-image img {
    width: 90%;
  }
}
@media screen and (max-width: 460px) {
  .impact-section .impact-image img {
    width: 90%;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .impact-section {
    flex-direction: column;
    text-align: center;
  }
  .impact-text, .impact-image {
    flex: 1 1 100%;
  }
  .impact-text h1 {
    font-size: 2rem;
  }
  .impact-text p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .impact-section {
    padding: 40px 15px;
  }
}
.services {
  width: 100%;
  background-image: url("./../../images/leaves.png");
  background-size: auto;
  background-position: center;
}
.services h2 {
  font-size: 2.5rem;
  text-align: center;
  color: #f3780e;
  padding-top: 20px;
}
@media screen and (max-width: 320px) {
  .services h2 {
    font-size: 1.8rem;
  }
}
.services p {
  font-size: 1rem;
  color: #555;
  text-align: center;
  padding-bottom: 1rem;
}
@media screen and (max-width: 480px) {
  .services p {
    font-size: 1rem;
    padding: 0 3rem;
  }
}
@media screen and (max-width: 320px) {
  .services p {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}
.services .service-hr {
  color: #f3780e;
  border: 2px solid #f3780e;
  width: 20%;
}
.services .service-body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}
.services .service-body .grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, auto);
  gap: 10px;
  width: 75vw;
  max-width: 900px;
  margin: 15px auto;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .services .service-body .grid-container {
    width: 90vw;
  }
}
.services .service-body .grid-container .grid-item {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 525px) {
  .services .service-body .grid-container .grid-item {
    width: 90%;
    height: 90%;
  }
}
.services .service-body .grid-container .grid-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  background: rgba(0, 128, 0, 0.3411764706);
}
@media screen and (max-width: 480px) {
  .services .service-body .grid-container .grid-item img {
    width: 90%;
    height: 90%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 320px) {
  .services .service-body .grid-container .grid-item img {
    width: 90%;
    height: 90%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.services .service-body .grid-container .item1 {
  grid-column: span 2;
  grid-row: span 3;
}
@media screen and (max-width: 525px) {
  .services .service-body .grid-container .item1 {
    grid-column: span 5;
    grid-row: span 5;
    margin: auto 3rem;
  }
}
.services .service-body .grid-container .item2 {
  grid-column: span 1;
  grid-row: span 1;
}
@media screen and (max-width: 525px) {
  .services .service-body .grid-container .item2 {
    grid-column: span 5;
    grid-row: span 5;
    margin: auto 3rem;
    margin-top: -4rem;
  }
}
.services .service-body .grid-container .item3 {
  grid-column: span 1;
  grid-row: span 2;
}
@media screen and (max-width: 525px) {
  .services .service-body .grid-container .item3 {
    grid-column: span 5;
    grid-row: span 5;
    margin: auto 3rem;
    margin-top: -4rem;
  }
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: rgb(246.1446640316, 155.3774703557, 77.1553359684);
  text-align: center;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
@media screen and (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

.certification-section {
  padding: 4rem 2rem;
  text-align: center;
  background: rgb(246.1446640316, 155.3774703557, 77.1553359684);
}
.certification-section .subtitle {
  color: #517f09;
  letter-spacing: 2px;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.certification-section .title {
  color: #fff;
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 2rem;
  font-family: "Georgia", serif;
}
.certification-section .certifications {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .certification-section .certifications {
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .certification-section .certifications {
    gap: 2rem;
  }
}
.certification-section .certification-card {
  background: #fff;
  padding: 1rem;
  border-radius: 16px;
  max-width: 260px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.certification-section .certification-card img {
  width: 150px;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 1.2rem;
  border-radius: 10%;
}
.certification-section .certification-card h4 {
  font-size: 1.15rem;
  color: #0072b1;
  margin: 0.5rem 0;
  font-weight: bold;
}
.certification-section .certification-card p {
  color: #444;
  font-size: 1rem;
  margin: 0;
}
.certification-section .certification-card:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
}

@media (max-width: 1024px) {
  .certification-card {
    max-width: 210px;
    padding: 1rem;
  }
  .certification-card img {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 768px) {
  .certifications {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .title {
    font-size: 1.7rem;
  }
  .subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .certification-section {
    padding: 1rem 0.5rem;
  }
  .title {
    font-size: 1.3rem;
  }
  .certification-card img {
    width: 64px;
    height: 64px;
  }
}
.inspiring {
  padding: 40px 20px;
  text-align: center;
  border-top: 4px solid rgba(203, 240, 204, 0.5);
}
.inspiring .inspiring-container {
  max-width: 900px;
  margin: 0 auto;
}
.inspiring .inspiring-container h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #517f09;
  margin-bottom: 10px;
}
.inspiring .inspiring-container p {
  font-size: 1.2rem;
  line-height: 1.6;
  width: 70%;
  text-align: center;
  margin: 0 auto;
  color: #444;
}

@media (max-width: 992px) {
  .inspiring {
    padding: 60px 15px;
  }
  .inspiring .inspiring-container {
    max-width: 700px;
  }
  .inspiring .inspiring-container h1 {
    font-size: 2.4rem;
  }
  .inspiring .inspiring-container p {
    font-size: 1.05rem;
  }
}
@media (max-width: 525px) {
  .inspiring {
    padding: 30px 15px;
  }
  .inspiring .inspiring-container {
    max-width: 700px;
  }
  .inspiring .inspiring-container h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }
  .inspiring .inspiring-container p {
    font-size: 1rem;
    width: 85%;
  }
}
.stories {
  padding: 0px 20px 60px;
}
.stories .stories-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.stories .story-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.stories .story-card:hover {
  transform: translateY(-6px);
}
.stories .story-card .text {
  box-shadow: none;
  background: rgb(242, 155, 155);
  border-radius: 0px;
  box-shadow: none;
}
.stories .story-card img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.stories .story-card .story-content {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .stories .story-card .story-content {
    padding: 2rem 4rem;
  }
}
@media screen and (max-width: 426px) {
  .stories .story-card .story-content {
    padding: 2rem;
  }
}
.stories .story-card .story-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  line-height: 1.2;
  color: #f3780e;
}
@media screen and (max-width: 426px) {
  .stories .story-card .story-content h2 {
    font-size: 1.5rem;
  }
}
.stories .story-card .story-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #517f09;
  margin-bottom: 12px;
}
.stories .story-card .story-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}
.stories .story-card .story-content .story-description {
  height: 150px;
  overflow: hidden;
  font-size: 1.1rem;
  text-align: justify;
  padding: 0px 10px;
  color: #555;
  text-overflow: ellipsis;
}
@media screen and (max-width: 320px) {
  .stories .story-card .story-content .story-description {
    font-size: 0.95rem;
  }
}
.stories .story-card .story-content .legacy {
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .stories .story-card .story-content .legacy {
    height: 250px;
    margin: auto;
    margin-top: -50px;
  }
}
@media screen and (max-width: 320px) {
  .stories .story-card .story-content .legacy {
    height: 150px;
    margin: auto;
    margin-top: -20px;
  }
}
.stories .story-card .story-content .read-more {
  font-weight: 600;
  color: #0072b1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.stories .story-card .story-content .read-more:hover {
  color: #f3780e;
}

@media (max-width: 992px) {
  .stories .stories-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .stories .story-card img {
    height: 200px;
    width: 70%;
    margin: auto 7rem;
  }
  .stories .story-card .story-content h3 {
    font-size: 1.6rem;
  }
  .stories .story-card .story-content p {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  .stories .story-card img {
    height: 270px;
  }
  .stories .story-card .story-content h3 {
    font-size: 1.4rem;
  }
  .stories .story-card .story-content p {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .stories {
    padding: 10px 15px;
  }
  .stories .stories-container {
    grid-template-columns: 1fr;
  }
  .stories .story-card img {
    height: 270px;
    margin: auto 4rem;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
  }
  .stories .story-card .story-content h3 {
    font-size: 1.2rem;
  }
  .stories .story-card .story-content p {
    font-size: 0.95rem;
  }
}
@media (max-width: 320px) {
  .stories {
    padding: 10px 15px;
  }
  .stories .stories-container {
    grid-template-columns: 1fr;
  }
  .stories .story-card img {
    height: 220px;
    width: 260px;
    margin: auto 1rem;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
  }
  .stories .story-card .story-content h3 {
    font-size: 1.2rem;
  }
  .stories .story-card .story-content p {
    font-size: 0.95rem;
  }
}/*# sourceMappingURL=style.css.map */