.why-choose-us-p {
  text-align: justify;
}

.what-we-offer-text {
  text-align: justify;
}
.grocery-store {
  width: 100vw;
  height: 46vh;
}
.future-plan-image {
  height: 6rem;
}
.top-contact {
  margin-left: 5rem;
}
.top-address {
  width: 25rem;
}
.header-top-row {
  padding-top: 16px !important ;
  padding-bottom: 10px !important ;
  padding-left: 50px;
}
.logo-image {
  max-width: 65%;
  height: auto;
}
.testimonial-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-heading {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 6rem;
}

.testimonial-heading h2 {
  font-size: 36px;
  color: #2c3e50;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.testimonial-heading h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2f8700, black);
  border-radius: 2px;
}

.testimonial-heading p {
  color: #7f8c8d;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: calc(33.333% - 20px);
  padding: 20px;
  transition: all 0.4s ease;
}

@media (max-width: 992px) {
  .testimonial-slide {
    min-width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .testimonial-slide {
    min-width: calc(100% - 20px);
  }
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #2f8700, black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card:hover:before {
  transform: scaleX(1);
}

.quote-icon {
  font-size: 60px;
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.1;
  color: #3498db;
  transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon {
  opacity: 0.2;
  transform: rotate(10deg);
}

.testimonial-content {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #555;
  font-size: 16px;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover .author-image {
  transform: scale(1.1);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  margin: 0;
  color: #2c3e50;
  font-weight: 600;
  font-size: 18px;
}

.author-info p {
  margin: 5px 0 0;
  color: #7f8c8d;
  font-size: 14px;
}

.navigation {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 15px;
}

.nav-btn {
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: linear-gradient(90deg, #2f8700, black);
  color: white;
  transform: translateY(-3px);
}

.nav-btn:active {
  transform: translateY(0);
}

.indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 8px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: linear-gradient(90deg, #2f8700, black);
  width: 30px;
  border-radius: 5px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

.testimonial-card.active {
  animation: pulse 2s infinite;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}


.phone-top{
  margin-top: 10px;
}
@media (max-width:479px) {
  .custom-contact{
margin: -19px 101px -40px;
  }
  
}

        .about-section {
            margin-bottom: 80px;
        }

        .about-row {
            display: flex;
            flex-direction: row;
            align-items: center;
            margin-bottom: 60px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 15px;
            overflow: hidden;
            background-color: #fff;
        }

        .about-row.reverse {
            flex-direction: row-reverse;
        }

        .about-image {
            flex: 1;
            overflow: hidden;
            min-height: 350px;
            position: relative;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
            z-index: 1;
        }

        .about-content {
            flex: 1;
            padding: 40px;
        }

        .about-content h2 {
            margin-bottom: 20px;
            color: #2c5e1a;
            font-size: 1.8rem;
        }

        .about-content p {
            margin-bottom: 15px;
            font-size: 1rem;
            color: #555;
        }

        .highlight {
            color: #2c5e1a;
            font-weight: bold;
        }

        .about-badge {
            display: inline-block;
            padding: 5px 15px;
            background-color: #2c5e1a;
            color: white;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-top: 20px;
        }

        /* Shape divider for visual appeal */
        .shape-divider {
            height: 50px;
            width: 100%;
            position: relative;
            margin: 40px 0;
        }

        .shape-divider svg {
            width: 100%;
            height: 100%;
            fill: #2c5e1a;
        }

        /* Responsive adjustments */
        @media screen and (max-width: 768px) {
            .about-row, .about-row.reverse {
                flex-direction: column;
            }

            .about-image {
                min-height: 250px;
            }

            .about-content {
                padding: 30px 20px;
            }

            h1 {
                font-size: 2rem;
            }

            .about-content h2 {
                font-size: 1.5rem;
            }
        }

 @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .illustration {
            width: 300px;
            height: 300px;
            margin-bottom: 2rem;
            background-color: #e0e7ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4f46e5;
            font-size: 5rem;
        }

        .farmer-illustration {
            background-color: #dcfce7;
            color: #16a34a;
        }

        .audit-illustration {
            background-color: #fef3c7;
            color: #d97706;
        }

        .banking-illustration {
            background-color: #dbeafe;
            color: #2563eb;
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        p {
            font-size: 1.1rem;
            max-width: 600px;
            margin-bottom: 2rem;
            color: #64748b;
            line-height: 1.6;
        }

        .countdown {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .countdown-value {
            font-size: 2.5rem;
            font-weight: bold;
            background-color: #fff;
            border-radius: 8px;
            padding: 0.5rem 1rem;
            min-width: 80px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .countdown-label {
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: #64748b;
        }

        .email-form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            width: 100%;
            max-width: 500px;
        }

        input {
            width: 100%;
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            font-size: 1rem;
        }

        button {
            background-color: #3b82f6;
            color: white;
            border: none;
            border-radius: 8px;
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: #2563eb;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .social-link:hover {
            transform: translateY(-5px);
        }

        .notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #10b981;
            color: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transform: translateX(200%);
            transition: transform 0.5s ease;
        }

        .notification.show {
            transform: translateX(0);
        }

        @media (max-width: 768px) {
            .countdown {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .illustration {
                width: 200px;
                height: 200px;
                font-size: 3.5rem;
            }
        }
    