body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Navigation Styles */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
}

.web-logo {
    width: 100%;
    max-width: 350px;
    min-width: 280px;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-size: large;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #006400;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #006400;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Training dropdown */
.training-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.training-dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: #333;
    padding: 10px 20px;
    display: block;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: #006400;
    padding-left: 25px;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s;
}

.training-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Section Styles */
.section {
    display: flex;
    padding: 60px 10%;
    align-items: center;
}

.section-text {
    flex: 1;
    padding: 0 40px;
}

.section-image {
    flex: 1;
    text-align: center;
}

.section-image img {
    max-width: 100%;
    border-radius: 8px;
}

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

.heading {
    color: #006400;
    font-size: 32px;
    margin-bottom: 20px;
}

.sect {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Founder Section Styles */
.founder-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
    margin: auto;
}

.founder-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 5px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.underline {
    width: 40px;
    height: 4px;
    background-color: steelblue;
    margin: 15px auto;
    border-radius: 2px;
}

.founder-name {
    color: #006400;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 10px;
}

.founder-title {
    color: #999;
    font-size: 18px;
    margin-bottom: 25px;
}

.quote {
    font-size: 40px;
    color: #ccc;
    margin-bottom: 15px;
}

.founder-desc {
    color: #555;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Training Cards Section */
.training-section {
    padding: 60px 10%;
    text-align: center;
}

.training-heading {
    color: #006400;
    font-size: 40px;
    margin-bottom: 40px;
}

.card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.card-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    width: 380px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
}

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

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.card-title {
    padding: 25px;
    font-weight: bold;
    font-size: 20px;
    color: #333;
    text-align: center;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 10%;
    text-align: center;
}

.gallery-heading {
    color: #006400;
    font-size: 40px;
    margin-bottom: 40px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery img {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Contact Form Section */
.contact-section {
    padding: 60px 10%;
    display: flex;
    justify-content: center;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    border: none;
}

.contact-form h2 {
    color: #006400;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group label span {
    color: red;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #006400;
    outline: none;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #006400;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #004d00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 100, 0, 0.2);
}

/* Footer Styles */
footer {
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    width: 100%;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 50px 10% 30px;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-logo-column {
    display: flex;
    align-items: flex-end;
    padding-bottom: 30px;
}

.footer-logo {
    max-width: 220px;
    height: auto;
}

.footer-column h3 {
    color: #27ae60;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
}

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

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

.footer-links a {
    color: #333;
    text-decoration: none;
    display: block;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #27ae60;
    padding-left: 5px;
}

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

.contact-info li {
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: #27ae60;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 18px;
}

.contact-text {
    flex: 1;
}

/* Footer Bottom Box */
.footer-bottom-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background-color: rgba(39, 174, 96, 0.2);
    backdrop-filter: blur(5px);
    width: 100%;
    box-sizing: border-box;
}

.copyright {
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

/* Social Icons */
.social-icons {
    display: flex;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    margin-left: 12px;
    color: #27ae60;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    background-color: #27ae60;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .card {
        width: 320px;
    }
}

@media (max-width: 992px) {
    .card-row {
        flex-wrap: wrap;
    }

    .card {
        width: 45%;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-column {
        flex: 1 1 45%;
    }

    .footer-logo {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .web-logo {
        margin: 0 auto 15px;
    }

    .nav-links {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section {
        flex-direction: column;
        padding: 40px 20px;
    }

    .section.reverse {
        flex-direction: column;
    }

    .section-text {
        padding: 20px 0;
    }

    .card {
        width: 100%;
        max-width: 400px;
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .footer-column {
        flex: 1 1 100%;
        text-align: center;
    }

    .footer-logo-column {
        justify-content: center;
        padding-bottom: 20px;
    }

    .footer-column h3 {
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info li {
        justify-content: center;
    }

    .footer-bottom-box {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }

    .social-icons a {
        margin: 0 8px;
    }
}