/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #ffffff;
}

.container {
    width: 80%;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    font-size: 20px;
    font-weight: 700;
}

.header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.header nav ul li a {
    font-weight: 600;
    color: #333;
}

.header nav ul li .cta {
    background-color: #007B35;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
}


/* Hero Section */
.hero {
    background-color: #020402;
    color: white;
    padding: 60px 20px;
}

.hero .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.hero .hero-text {
    flex: 1;
    text-align: left;
}

.hero h2 {
    font-size: 3.875rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero .button {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: 600;
    text-align: left;
    display: inline-block;
}

.hero .hero-video {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 560px;
    height: 315px; /* Ensures the height matches the iframe */
}

.hero .hero-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}


/* Places Spoken Section */
.places-spoken {
    background-color: #ffffff;
    padding: 50px 20px;
}

.places-spoken .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.places-spoken h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four items per row */
    gap: 20px; /* Space between items */
    text-align: center;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-item img {
    max-width: 100px; /* Adjust icon size */
    margin-bottom: 10px;
    border-radius: 8px; /* Optional: Rounded corners for icons */
}

.icon-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}


/* Services Section */
.services {
    background-color: #f4f4f4;
    text-align: center;
    padding: 50px 20px;
}

.services h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.cards {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    width: 45%; /* Adjust box width to fit two per row */
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left; /* Left-align text inside the boxes */
}

.card img {
    width: 200px; /* Fixed width for the image */
    height: 200px; /* Fixed height for the image */
    object-fit: cover; /* Ensures proportional scaling */
    border-radius: 5px; /* Rounded corners */
    margin-bottom: 15px;
    float: right; /* Floats the image to the right */
    margin-left: 15px; /* Adds spacing between the image and the text */
}



.card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #007B35;
    margin-bottom: 15px;
}

.card ul {
    list-style-type: disc; /* Bullet points */
    padding-left: 20px; /* Indentation for the bullets */
    margin: 0;
}

.card ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.card ul li strong {
    color: #333;
    font-weight: 600;
}

/* Contact Button in Card */
.contact-button {
    display: inline-block;
    margin-top: 15px; /* Space between the button and the content */
    padding: 10px 15px;
    background-color: #007B35; /* Green background for the button */
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 5px;
    text-decoration: none; /* Removes underline for link buttons */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #005a26; /* Darker green on hover */
}


/* Contact Section */
.contact {
    /*background-color: #f4f4f4; /* Matches the light background */

    padding: 50px 20px;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

/* Form Section */
form {
    flex: 1;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #007B35;
}

form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

form input,
form textarea {
    width: calc(100% - 20px); /* Adjust width to allow for left and right padding */
    padding: 10px 15px; /* Increased padding for left and right */
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

form textarea {
    resize: none;
    height: 100px;
}

form .checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

form .checkbox input {
    margin-right: 10px;
}

form button {
    display: block;
    width: calc(100% - 20px); /* Matches adjusted input width */
    margin: 0 auto; /* Centers the button horizontally */
    background-color: #28a745;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 15px; /* Added matching left and right padding */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #218838;
}

/* Bio Section */
.bio-section {
    flex: 1;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.bio-section img {
    max-width: 150px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.bio-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #007B35;
}

.bio-text blockquote {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    border-left: 3px solid #007B35;
    padding-left: 10px;
}

.bio-text p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info p {
    font-size: 14px;
    color: #333;
    margin-top: 10px;
}

.contact-info a {
    color: #007B35;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}



/* Media Queries */

@media (max-width: 1024px) {
    
    .header h1 {
        font-size: 14px;
        font-weight: 700;
        padding-left: 5px;
    }
    
    .header nav ul {
        flex-direction: column; /* Stack nav items */
        gap: 10px;
    }

    .container {
        width: 100%;
        margin: 0 auto;
    }

    .hero .hero-content {
        flex-direction: column; /* Stack items vertically */
        text-align: center; /* Center align content */
    }

    .hero .hero-text {
        text-align: center; /* Center align text */
    }
    .hero h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }
    
    .hero p {
        font-size: .9rem;
        margin-bottom: 20px;
    }

    .hero .hero-video {
        margin-top: 20px; /* Add spacing between text and video */
        justify-content: center; /* Center the video */
    }


    .icon-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Four items per row */
        gap: 20px; /* Space between items */
        text-align: center;
    }
    
    
    .cards {
        flex-direction: column; /* Stack cards vertically */
        align-items: center; /* Center cards horizontally */
    }

    .card {
        width: 95%; /* Make cards take up 95% of the screen width */
        margin-bottom: 20px; /* Add spacing between stacked cards */
    }

    .card img {
        float: none; /* Remove floating for images */
        margin: 0 auto 15px auto; /* Center images and add spacing below */
        display: block; /* Ensure block-level for proper centering */
    }

    .contact-content {
        flex-direction: column; /* Stack the form and bio vertically */
        align-items: center; /* Center-align them horizontally */
    }

    form, 
    .bio-section {
        width: 95%; /* Make both take up 95% of the screen width */
        margin-bottom: 20px; /* Add spacing between form and bio */
    }

    form button {
        width: 100%; /* Full width button */
    }
}
