* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #4caf50;
  height: 100px;
}
.navbar a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar img {
  width: 40px;
}

.navbar-brand {
  font-weight: bold;
  color: #2e7d32; /* Dark green */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-link {
  color: #388e3c; /* Medium green */
  font-weight: 500;
  position: relative; /* For positioning the pseudo-element */
  display: inline-block; /* Ensures we can use transform */
  transition: color 0.3s ease, transform 0.3s ease; /* Smooth color and transform transition */
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px; /* Slightly below text */
  left: 0;
  width: 0;
  height: 3px;
  background-color: #1b5e20; /* Green underline color */
  transition: width 0.4s ease-in-out; /* Smooth expand of the underline */
}

.nav-link:hover {
  color: #1b5e20; /* Darker green on hover */
  transform: translateY(-4px) scale(1.05); /* Subtle upward movement and slight scale */
}

.nav-link:hover::after {
  width: 100%; /* Underline expands smoothly */
}

.nav-link:active {
  transform: translateY(-1px) scale(1); /* Slight reduction in effect on click for better feel */
}


.navbar-toggler {
  border: 2px solid #4caf50;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.btn-certificate {
  background-color: #4caf50; /* Primary green */
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 3px solid green !important;
}

.btn-certificate:hover {
  background-color: #ffffff;
  color: #4caf50;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(76, 175, 80, 0.2);
  border-color: #1b5e20;
}


/* Collapsed navbar styling */
.navbar-collapse {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: center; /* Center items horizontally */
  justify-content: center; /* Center items vertically */
  background-color: #fff; /* White background */
  width: 100%; /* Full width on mobile */
  border-radius: 10px; /* Rounded corners for smooth design */
  display: none; /* Hidden by default, shown when toggled */
}

.navbar-collapse.show {
  display: flex;
  align-items: self-start;
  padding: 24px;
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.98);
  }

  .btn-certificate {
    margin-top: 1rem;
    width: 100%;
    text-align: center;
    background-color: #4caf50;
    color: white;
  }

  .btn-certificate:hover {
    background-color: #388e3c;
    color: white;
  }
}

/* INDEX.PHP */
/* Section Styling */
section {
  margin: 0;
  padding: 0;
  position: relative;
}

/* Carousel Styling */

.carousel-inner img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

.carousel-caption {
  color: white;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  border-radius: 18px;
  right: unset;
  bottom: unset !important;
  width: 40%;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  padding: 24px;
}
.carousel-caption h5 {
  font-weight: bold;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
@media (max-width: 991px) {
  .carousel-caption{
    width: 100%;
    right: unset !important;
    left: unset !important;
  }
  .carousel-inner img{
    height: 50vh;
  }
}
/* CERTIFICATION SECTION  */
.certificate-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  color: #2e7d32;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.content-box {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.english-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #555;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.divider {
  height: 2px;
  background-color: #4caf50;
  width: 200px;
  margin: 2rem auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .english-text {
    font-size: 1.1rem;
  }
}

.info-section {
  padding: 5rem 0;
  background-color: #f8fdf8;
}

.section-title {
  color: #2e7d32;
  margin-bottom: 3rem;
}

.info-card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease;
  height: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-card:hover {
  transform: translateY(-5px);
}

.card-img-top {
  height: 300px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon i {
  color: white;
  font-size: 24px;
}

.highlight-text {
  color: #2e7d32;
  font-weight: 600;
}

/*  */

.requirement-section {
  padding: 5rem 0;
  background: linear-gradient(175deg, #66b947, #262323);
  color: white;
  text-align: center;
  overflow: hidden;
}

.title-box {
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

.title {
  font-size: 2.8rem;
  font-weight: bold;
}

.subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
}

.requirements-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.requirement-card {
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: 12px;
  width: 320px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: transform 0.3s;
}

.requirement-card:hover {
  transform: scale(1.05);
}

.requirement-card .icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 1rem;
}

.requirement-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.requirement-card ul {
  list-style: none;
  padding: 0;
}

.requirement-card li {
  margin: 0.5rem 0;
}

.requirement-card i {
  margin-right: 8px;
}

.cta-box {
  margin-top: 4rem;
  background: rgba(255, 255, 255, 0.25);
  padding: 2.5rem;
  border-radius: 12px;
  opacity: 0;
  animation: bounceIn 1s ease-in forwards 1s;
}

.cta-button {
  display: inline-block;
  background: #ffd700;
  color: #1d2671;
  padding: 0.8rem 2.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.cta-button:hover {
  background: #ffc107;
  color: white;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-left {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* Apply Animations */
.requirement-card:nth-child(1) {
  animation: slide-left 1s ease-in forwards 0.5s;
}
.requirement-card:nth-child(2) {
  animation: slide-up 1s ease-in forwards 0.7s;
}
.requirement-card:nth-child(3) {
  animation: slide-right 1s ease-in forwards 0.9s;
}
/* Docs Section */
.docs-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f3f8f3 100%);
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1b5e20;
  margin-bottom: 3rem;
  text-align: center;
}

.info-container {
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-header {
  background: #1b5e20;
  color: white;
  padding: 2rem;
  position: relative;
}

.info-header::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #1b5e20;
}

.info-content {
  padding: 3rem 2rem 2rem;
}

.document-group {
  margin-bottom: 2.5rem;
}

.document-group h3 {
  color: #1b5e20;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.doc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.doc-list li {
  padding: 1rem;
  margin-bottom: 1rem;
  background: #f8faf8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.doc-list li::before {
  content: "✓";
  color: #4caf50;
  font-weight: bold;
}

.timeline {
  background: #f8faf8;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.timeline-icon {
  width: 40px;
  height: 40px;
  background: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.final-docs {
  background: #e8f5e9;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 3rem;
  background: #4caf50;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  margin-top: 2rem;
}

.cta-button:hover {
  background: #1b5e20;
  transform: translateY(-2px);
  color: white;
}

/*  */

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/hero.png");
  background-size: cover;
  color: white;
  padding: 100px 0;
}
.info-card {
  transition: transform 0.3s;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.info-card:hover {
  transform: translateY(-5px);
}
.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
.footer {
  background-color: #000000; /* Dark green */
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer h5 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #c8e6c9; /* Light green */
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #388e3c; /* Medium green */
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: #76c7c0; /* Light green */
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #388e3c; /* Medium green */
}

.contact-info-footer i {
  margin-right: 10px;
  color: #c8e6c9; /* Light green */
}
.contact-info-footer p {
  margin-right: 10px;
  color: #c8e6c9; /* Light green */
}
/* SERVICE PAGE  */
/* General Section Styles */
.farmer-certificate-section {
  background-color: #f9f9f9;
  padding: 60px 0;
  font-family: "Arial", sans-serif;
}

.farmer-certificate-section h2 {
  color: #2c3e50;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.farmer-certificate-section p {
  font-size: 18px;
  color: #34495e;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout for Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-items: center;
  margin-bottom: 60px;
}

/* Individual Service Card */
.service-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card h5 {
  font-size: 22px;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card ul li {
  font-size: 16px;
  color: #7f8c8d;
  margin: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}

.service-card ul li:hover {
  color: #16a085;
}

.service-card ul li i {
  color: #16a085;
  font-size: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service-card {
    padding: 20px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* Adding animation to each section */
.farmer-certificate-section h2,
.farmer-certificate-section p {
  animation: fadeIn 1s ease-out;
}

.service-card {
  animation: slideUp 0.8s ease-out;
}
/* ABout us Page */
/* General Styles for About Us Page */
.about-us-section {
  background-color: #fafafa;
  padding: 60px 30px;
  font-family: "Helvetica Neue", sans-serif;
  color: #333;
}

.about-us-section h2 {
  font-size: 38px;
  font-weight: bold;
  color: #1e2a47;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.about-us-section h3 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #1e2a47;
  text-transform: uppercase;
}

.about-us-section p {
  font-size: 18px;
  line-height: 1.6;
  color: #7f8c8d;
  margin-bottom: 40px;
}

/* Reason Cards Section */
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-bottom: 60px;
}

.reason-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.reason-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1e2a47;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.reason-card p {
  font-size: 16px;
  color: #7f8c8d;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .reasons {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.about-us-section h2,
.about-us-section h3,
.about-us-section p,
.reason-card {
  animation: fadeIn 1s ease-out;
}

/* General Styles for Contact Page */
.contact-page-section {
  background-color: #f9f9f9;
  padding: 60px 30px;
  font-family: "Helvetica Neue", sans-serif;
  color: #333;
}

.contact-page-section h2 {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  color: #1e2a47;
  margin-bottom: 40px;
  letter-spacing: 1px;
  animation: fadeIn 1s ease-out;
}

.contact-page-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-page-details {
  flex: 1;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  animation: slideInLeft 1s ease-out;
}

.contact-page-details h3 {
  font-size: 28px;
  font-weight: 600;
  color: #1e2a47;
  margin-bottom: 20px;
  text-align: center;
}

.contact-page-details p {
  font-size: 18px;
  line-height: 1.6;
  color: #7f8c8d;
  margin-bottom: 15px;
  text-align: center;
}

.contact-page-details a {
  color: #1e2a47;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-page-details a:hover {
  color: #28a745;
}

/* Map Embed */
.contact-page-map-container {
  flex: 1;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  animation: slideInRight 1s ease-out;
}

.contact-page-map-container h3 {
  font-size: 28px;
  font-weight: 600;
  color: #1e2a47;
  margin-bottom: 20px;
  text-align: center;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .contact-page-info {
    flex-direction: column;
  }
}
/* Contact Page  */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: #2c5530;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #4a8b3d;
  margin: 15px auto;
}

.container-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.contact-info {
  padding: 40px;
}

.office-title {
  color: #2c5530;
  font-size: 24px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e7eeef;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e7eeef;
  transform: translateX(5px);
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: #4a8b3d;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 18px;
}

.contact-item a {
  color: #2c5530;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #4a8b3d;
}

.map-section {
  padding: 40px;
  background: #f8f9fa;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.office-image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
  .container-contact {
    grid-template-columns: 1fr; /* Stack items in one column */
  }

  .contact-page-section {
    padding: 30px 15px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .contact-info,
  .map-section {
    padding: 25px;
  }

  .map-section {
    padding-top: 20px;
  }

  /* Ensure the map and the image take up full width */
  .map-container iframe,
  .office-image img {
    width: 100%;
  }

  .map-section {
    display: block; /* Ensure map section occupies full space */
  }

  .office-image {
    margin-top: 20px;
  }
}
/* FORM.PHP */
/* Form Section */
.form-section {
  display: flex;
  width: 100%;
  max-width: 500px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: fadeIn 1s ease-in-out;
  margin: 0 auto;
}

/* Heading */
.form-section h2 {
  color: #2E8B57;
  margin-bottom: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

h2 i {
  color: #2E8B57;  /* Green-colored icon */
  font-size: 1.3em;
}

/* Input Fields */
.form-section .input-group {
  margin-bottom: 15px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.form-section label {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px; /* Adds space between icon and text */
  color: #2E8B57; /* Green-colored label text */
}

.form-section label i {
  color: #2E8B57;  /* Green-colored icons */
  font-size: 16px;
}

/* Input & Textarea */
.form-section input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: inset 2px 2px 5px rgba(0,0,0,0.1);
}

/* Focus Effect */
input:focus, textarea:focus {
  border-color: #2E8B57;
  outline: none;
  box-shadow: 0px 0px 8px rgba(46, 139, 87, 0.5);
}

/* Button */
.form-section button {
  background: #2E8B57;
  color: #fff;
  padding: 12px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  width: 100%;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* Adds spacing between icon and text */
}

.form-section button i {
  font-size: 1.2em;
}

.form-section button:hover {
  background: #4CAF50;
  transform: scale(1.05);
}

/* Fade In Animation */
@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .form-section {
      width: 90%;
  }
}
