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

body {
    font-family: 'Helvetica', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-bg {
    background-color: #000;
    color: white;
    padding: 40px 0;
    text-align: center;
    align-items: center;
}

.site-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.main-content {
    padding: 60px 0;
}

.vision-heading {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.logo-image {
max-width: 100%;
height: auto;

}
.content-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sub-heading {
    font-size: 1.5em;
    margin-bottom: 15px;
}

.content-text {
    margin-bottom: 20px;
}

.footer-bg {
    background-color: #2a4871;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer-text {
    font-size: 1em;
}

/* Section Headings */
.section-heading {
    font-size: 2em;
    text-align: center;
    margin-bottom: 30px;
    color: #2a4871;
}

/* Projects Showcase */
.projects-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.projects-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.project-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 400px;
    width: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.project-content {
    padding: 25px;
}

.project-title {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #2a4871;
}

.project-description {
    margin-bottom: 15px;
    color: #555;
}

.project-link {
    display: inline-block;
    color: #2a4871;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #1a3050;
}

/* Contact Form */
.contact-section {
    padding: 60px 0;
    max-width: 600px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.required {
    color: #e74c3c;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #2a4871;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1a3050;
}

.form-status {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
}

.form-status.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
}
