/* Global Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #0a192f;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
}

.logo-img {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* Header */
.header {
    background-color: #081c34;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.navigation ul {
    display: flex;
    gap: 1.5rem;
}

.navigation a {
    color: #ffffff;
    font-weight: 500;
    transition: color 0.2s ease;
}

.navigation a:hover,
.navigation a.active {
    color: #00bfa6;
}

/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: -1;
}

.hero-content {
    position: relative;
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #00bfa6;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #009e8a;
}

.btn-secondary {
    background-color: #081c34;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #0c2855;
}

/* Scale Section */
.scale-section {
    padding: 4rem 0;
    background-color: #f8f9fb;
}

.scale-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.scale-text {
    flex: 1 1 500px;
}

.scale-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #081c34;
}

.scale-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #334e68;
    max-width: 600px;
}

.scale-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.scale-image img {
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
}

/* Services Overview */
.services-overview {
    padding: 4rem 0;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #081c34;
}

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

.service-item {
    padding: 2rem;
    background-color: #f8f9fb;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.service-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: #081c34;
}

.service-item p {
    font-size: 0.95rem;
    color: #334e68;
}

/* Industries Overview */
.industries-overview {
    padding: 4rem 0;
    background-color: #ffffff;
}

.industries-overview h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #081c34;
}

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

.industry-item {
    padding: 2rem;
    background-color: #f8f9fb;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.industry-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: #081c34;
}

.industry-item p {
    font-size: 0.95rem;
    color: #334e68;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
    background-color: #f8f9fb;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #081c34;
}

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

.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial p {
    font-style: italic;
    color: #334e68;
    margin-bottom: 1rem;
}

.testimonial .author {
    font-weight: 600;
    color: #081c34;
}

/* Call To Action */
.cta {
    padding: 4rem 0;
    background-color: #081c34;
    color: #ffffff;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Footer */
.footer {
    background-color: #081c34;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
}

.footer a {
    color: #00bfa6;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .scale-container {
        flex-direction: column;
    }
    .scale-image {
        order: -1;
    }
}

/* Mission & Vision */
.mission-vision-section {
    padding: 4rem 0;
}

.mission-vision-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.mission-vision-text {
    flex: 1 1 500px;
}

.mission-vision-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.mission-vision-image img {
    max-width: 500px;
    border-radius: 8px;
}

/* Values */
.values-section {
    padding: 4rem 0;
    background-color: #f8f9fb;
}

.values-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #081c34;
}

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

.value-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.value-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: #081c34;
}

.value-item p {
    font-size: 0.95rem;
    color: #334e68;
}

/* Approach */
.approach-section {
    padding: 4rem 0;
}

.approach-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #081c34;
}

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

.approach-step {
    background-color: #f8f9fb;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    text-align: center;
}

.approach-step h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: #081c34;
}

.approach-step p {
    font-size: 0.95rem;
    color: #334e68;
}

/* Service Details */
.service-details-section {
    padding: 4rem 0;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.service-row.reverse-row {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1 1 500px;
}

.service-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #081c34;
}

.service-info p {
    margin-bottom: 1rem;
    color: #334e68;
}

.service-list {
    margin-left: 1.5rem;
    color: #334e68;
}

.service-list li {
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.service-photo {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.service-photo img {
    border-radius: 8px;
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
    }
    .service-row.reverse-row {
        flex-direction: column;
    }
    .service-photo {
        order: -1;
    }
}

/* Industries Detail */
.industries-detail-section {
    padding: 4rem 0;
}

.industry-detail {
    margin-bottom: 4rem;
}

.industry-detail h2 {
    font-size: 1.75rem;
    color: #081c34;
    margin-bottom: 1rem;
}

.industry-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.industry-text {
    flex: 1 1 500px;
    color: #334e68;
}

.industry-text h3 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #081c34;
}

.industry-text ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.industry-text li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
}

.industry-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.industry-image img {
    border-radius: 8px;
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .industry-grid {
        flex-direction: column;
    }
    .industry-image {
        order: -1;
    }
}

/* Services grid cards */
.services-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #081c34;
    margin: 1rem 1rem 0.5rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #334e68;
    margin: 0 1rem 1.5rem;
    flex-grow: 1;
}

/* Industries grid cards */
.industries-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industry-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.industry-card h3 {
    font-size: 1.25rem;
    color: #081c34;
    margin: 1rem 1rem 0.5rem;
}

.industry-card p {
    font-size: 0.95rem;
    color: #334e68;
    margin: 0 1rem 1.5rem;
    flex-grow: 1;
}

/* Contact */
.contact-section {
    padding: 4rem 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1 1 350px;
}

.contact-details h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #081c34;
}

.contact-details ul {
    margin-left: 0;
    margin-top: 1rem;
}

.contact-details li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #334e68;
}

.contact-details a {
    color: #00bfa6;
}

.contact-form-wrapper {
    flex: 1 1 500px;
    background-color: #f8f9fb;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #081c34;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
}

.form-group textarea {
    resize: vertical;
}

.contact-image-section {
    padding: 2rem 0;
    background-color: #ffffff;
    text-align: center;
}

.contact-photo {
    max-width: 500px;
    border-radius: 8px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}