/* Global Styles */
:root {
    --navy: #16283D;
    --burgundy: #A72E2E;
    --text-color: #343434;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #343434;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--burgundy);
}

.nav-links .nav-cta a {
    color: var(--white);
}

.nav-links .nav-cta a:hover {
    color: var(--white);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn.active i {
    transform: rotate(90deg);
}

.mobile-menu-btn i {
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/modern-urban-buildings-view.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 5%;
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Button Styles */
.cta-button {
    background-color: var(--burgundy);
    color: var(--white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #8b1d1d;
}

.secondary-button {
    background-color: transparent;
    color: var(--white);
    padding: 0.8rem 2rem;
    border: 2px solid var(--white);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.secondary-button:hover {
    background-color: var(--white);
    color: var(--navy);
}

/* Services Section */
.services-section {
    background-color: var(--light-gray);
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-header h2 {
    color: var(--navy);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

/* Industries Section */
.industries-section {
    background-color: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.industry-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-icon {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.industry-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.industry-card ul {
    list-style: none;
    padding-left: 0;
}

.industry-card ul li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Contact Section */
.contact-section {
    background-color: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--burgundy);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.contact-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

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

/* Footer */
footer {
    background:#16283D;
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ccc;
}

.footer-certification-logo {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.footer-certification-logo .sba-logo {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.footer-bottom {
    margin-top: 2rem;
    padding: 1rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-certification-logo {
        justify-content: center;
        margin-top: 2rem;
    }

    .footer-certification-logo .sba-logo {
        height: 100px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        padding: 2rem;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links .nav-cta {
        margin-top: 1rem;
    }

    .nav-links .nav-cta a {
        display: inline-block;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .section-container {
        padding: 3rem 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-certification-logo .sba-logo {
        margin-left: 0;
        height: 60px;
    }
}

/* Alert Messages */
.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--light-gray);
    padding: 4rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-item h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-item p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.benefit-item ul {
    list-style: none;
    padding-left: 0;
}

.benefit-item ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-item ul li:before {
    content: "✓";
    color: var(--burgundy);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
}

/* About Page Styles */
.about-hero-section {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.about-hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.our-story-section {
    padding: 5rem 0;
    background-color: var(--white);
}

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

.story-content h2 {
    color: var(--navy);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.story-content p {
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item {
    text-align: center;
}

.achievement-item h3 {
    color: var(--burgundy);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.our-belief-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

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

.belief-content h2 {
    color: var(--navy);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.manufacturing-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.capability-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
}

.capability-card i {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.capability-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.partners-section {
    background-color: var(--light-gray);
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.partner-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
}

.partner-card img {
    max-width: 150px;
    margin-bottom: 1.5rem;
}

.partner-card h3 {
    color: var(--navy);
    margin-bottom: 1rem;
}

.team-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.member-bio {
    margin-top: 1rem;
    font-style: italic;
}

.about-cta-section {
    background-color: var(--navy);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.about-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-cta-section p {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .achievement-grid,
    .capabilities-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .achievement-item h3 {
        font-size: 2rem;
    }

    .member-image {
        width: 150px;
        height: 150px;
    }
} 