/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 80px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 10px 15px;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: #0066cc;
}

/* Hero Section with Slideshow */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #000;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px 40px;
    border-radius: 5px;
}

.slide-caption h2 {
    font-size: 2em;
    font-weight: 700;
    text-align: center;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2em;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slide-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slide-btn.prev {
    left: 20px;
}

.slide-btn.next {
    right: 20px;
}

/* Main Content */
main {
    background-color: #fff;
}

/* Section Switching */
.section-content {
    display: none;
}

.section-content.active {
    display: block;
}

.content {
    padding: 60px 0;
}

.content h1 {
    font-size: 2.5em;
    color: #0066cc;
    margin-bottom: 30px;
    text-align: center;
}

.content h2 {
    font-size: 2em;
    color: #333;
    margin: 40px 0 20px;
}

.intro {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1em;
}

.intro p {
    margin-bottom: 15px;
}

.intro ul {
    margin: 20px 0 20px 40px;
}

.intro li {
    margin-bottom: 10px;
}

/* Founders Section */
.founders {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.founder {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.founder img {
    flex-shrink: 0;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.founder-info h3 {
    font-size: 1.3em;
    color: #0066cc;
    margin-bottom: 10px;
}

.founder-info p {
    line-height: 1.6;
}

/* Map Container */
.map-container {
    margin: 30px 0;
    text-align: center;
}

.map-container iframe {
    max-width: 100%;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-section h1 {
    text-align: center;
    color: #0066cc;
    margin-bottom: 30px;
}

.contact-info {
    text-align: center;
    font-size: 1.2em;
}

.contact-info p {
    margin-bottom: 20px;
}

.email-contact {
    margin-top: 30px;
}

.email-contact a {
    color: #0066cc;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: 600;
}

.email-contact a:hover {
    text-decoration: underline;
}

/* Contact Form (commented out) */
.contact-section h2 {
    text-align: center;
    color: #0066cc;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label input[type="checkbox"] {
    margin-right: 8px;
}

.submit-btn {
    background-color: #0066cc;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0052a3;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0066cc;
}

.social-links img {
    vertical-align: middle;
}

.copyright {
    font-size: 0.9em;
    color: #aaa;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero {
        height: 300px;
    }

    .slide-caption h2 {
        font-size: 1.3em;
    }

    .slide-btn {
        font-size: 1.5em;
        padding: 5px 15px;
    }

    .content h1 {
        font-size: 2em;
    }

    .founder {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        gap: 15px;
    }
}
