/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    background-color: #2563eb;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    background-color: transparent;
    color: #2563eb;
    padding: 10px 20px;
    border: 1px solid #2563eb;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.badge {
    background-color: #2563eb;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    text-transform: uppercase;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.top-bar {
    background-color: #f8f8f8;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    color: #666;
}

.top-bar .contact-info span {
    margin-right: 20px;
}

.main-nav {
    padding: 15px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #1a2b4c, #0a1b3c);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-us h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

.about-us .content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-us .image-placeholder {
    flex: 1;
    background-color: #ddd;
    min-height: 300px;
    border-radius: 10px;
}

.about-us .text-content {
    flex: 1;
}

.about-us ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-us ul li {
    margin-bottom: 10px;
}

.about-us ul li i {
    color: #28a745;
    margin-right: 10px;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services h2 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
}

.services .subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
}

.services .service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.services .card {
    background-color: white;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.services .card:hover {
    transform: translateY(-10px);
}

.services .card .icon-placeholder {
    background-color: #e0e7ff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.why-choose-us .content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.why-choose-us .text-content {
    flex: 1;
}

.why-choose-us .image-placeholder {
    flex: 1;
    background-color: #ddd;
    min-height: 300px;
    border-radius: 50%;
}

.why-choose-us ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.why-choose-us ul li i {
    color: #28a745;
    margin-right: 10px;
}

.why-choose-us .call-to-action {
    text-align: center;
    padding: 50px;
    background-color: #e0e7ff;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #1a2b4c;
    color: white;
    padding: 50px 0;
}

footer .footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

footer .col {
    flex: 1;
    min-width: 250px;
}

footer .footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

footer h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #fff;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    text-decoration: none;
    color: #bbb;
}

footer address p {
    margin-bottom: 10px;
    color: #bbb;
}

footer address i {
    margin-right: 10px;
}

.copyright {
    border-top: 1px solid #334a6d;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9em;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar .container,
    .main-nav .container,
    .about-us .content,
    .why-choose-us .content,
    footer .footer-columns {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .about-us .image-placeholder,
    .why-choose-us .image-placeholder {
        min-height: 200px;
        width: 100%;
    }

    .services .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .services .card {
        width: 90%;
    }

    .why-choose-us ul {
        grid-template-columns: 1fr;
    }
}




.content-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.service-icon {
    font-size: 3em;
    color: #2563eb;
    margin-bottom: 20px;
}

.services .card .icon-placeholder {
    display: none; /* Hide the placeholder as we are using actual icons */
}

.about-us .image-placeholder,
.why-choose-us .image-placeholder {
    display: none; /* Hide the placeholder as we are using actual images */
}



/* Page Header Styles */
.page-header {
    background: linear-gradient(to bottom right, #1a2b4c, #0a1b3c);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
}

.about-content .content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content .text-content {
    flex: 1;
}

.mission-vision {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mission, .vision, .values {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mission h3, .vision h3, .values h3 {
    color: #2563eb;
    margin-bottom: 15px;
}

.mission h3 i, .vision h3 i, .values h3 i {
    margin-right: 10px;
}

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

.feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 3em;
    color: #2563eb;
    margin-bottom: 20px;
}

.team-section {
    padding: 80px 0;
}

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

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.team-member .title {
    color: #2563eb;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Services Page Styles */
.services-overview {
    padding: 80px 0;
    text-align: center;
}

.services-grid {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.service-icon {
    text-align: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 3em;
    color: #2563eb;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-card ul li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.industries-served {
    padding: 80px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.industry {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.industry i {
    font-size: 3em;
    color: #2563eb;
    margin-bottom: 20px;
}

.process-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-methods {
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 15px;
}

.contact-method i {
    font-size: 1.5em;
    color: #2563eb;
    margin-top: 5px;
}

.contact-form {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

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

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

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

.office-locations {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

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

.location h4 {
    color: #2563eb;
    margin-bottom: 15px;
}

.location p {
    margin-bottom: 10px;
}

.location i {
    color: #2563eb;
    margin-right: 10px;
}

.quick-contact {
    padding: 80px 0;
    background: linear-gradient(to bottom right, #1a2b4c, #0a1b3c);
    color: white;
    text-align: center;
}

.quick-contact-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-contact-buttons .btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.quick-contact-buttons .btn-outline:hover {
    background: white;
    color: #1a2b4c;
}

/* Active navigation link */
nav a.active {
    color: #2563eb;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content .content {
        flex-direction: column;
    }
}

