@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
/* Google Font */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

/* Navigation Bar */
header {
    background-color: #3a5a40;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
}

nav ul li a:hover {
    color: #a3b18a;
}

/* Home Section */
.home {
    background: url('https://i.ibb.co/SwV44W7W/bg-image.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

/* Dark overlay */
.home .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
}

.home h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.home p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.report-btn {
    text-decoration: none;
    background-color: #588157;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
}

.report-btn:hover {
    background-color: #3a5a40;
}
/* About Us Section */
.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    background-color: #dad7cd;
}

.about-content {
    flex: 1;
    max-width: 50%;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #344e41;
    margin-bottom: 10px;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #3a5a40;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 90%; /* Makes the image larger */
    max-width: 500px; /* Ensures it doesn’t become too large */
  .about-image img {
    width: 100%;  /* Ensure it doesn’t stretch */
    max-width: 450px; /* Keeps quality */
    height: auto;
    object-fit: cover; /* Ensures clarity */
}

    height: auto;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}
.pp-2ECDDLSJES7XY {
  text-align: center;
  border: none;
  border-radius: 0.25rem;
  min-width: 11.625rem;
  padding: 0 2rem;
  height: 2.625rem;
  font-weight: bold;
  background-color: #FFD140;
  color: #000000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  cursor: pointer;
  transition: 0.3s;
}
.info-cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    padding: 40px;
}

.card {
    flex: 1;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card h2 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

.card p {
    font-size: 16px;
    line-height: 1.6;
}

/* Colors */
.orange {
    background: linear-gradient(to right, #FF6200, #FF7B00);
    color: white;
}

.gray {
    background: #F2F2F2;
    color: #333;
}

/* Hover Effect */
.card:hover {
    transform: translateY(-5px);
}

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




.pp-2ECDDLSJES7XY:hover {
  background-color: #FFC107;
}
.founder-container {
  max-width: 600px;
  margin: auto;
}

.founder-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #588157; /* Your brand color */
}

.founder-quote {
  font-style: italic;
  font-size: 1.2rem;
  color: #344e41;
  margin: 20px 0;
}

.founder-name {
  font-size: 1rem;
  font-weight: bold;
  color: #3a5a40;
.
}
#gallery {
    text-align: center;
    padding: 40px 20px;
    background-color: #f5f5f5;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #344e41;
}
/* FontAwesome Fix */


.info-section {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}

.info-box {
    background-color: #90a955;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

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

.highlight-box {
    background: linear-gradient(to right, #132a13, #31572c);
}

h3 {
    font-size: 20px;
    margin: 15px 0;
    font-weight: bold;
}

p {
    font-size: 14px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: white;
    color: #31572c;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #ecf39e;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    text-decoration: none;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link i {
    font-size: 20px;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 14px;
}

form textarea {
    resize: none;
    height: 80px;
}

button {
    width: 100%;
    border: none;
    background: white;
    color: #31572c;
    padding: 10px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #ecf39e;
}

/* Icons */
.info-box i {
    font-size: 40px;
    margin-bottom: 10px;
}
