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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #3986C7;
    background: linear-gradient(to bottom, #4a9dd9 0%, #3986c7 50%, #2f7ab7 100%);
}

.main-wrapper {
    max-width: 980px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    min-height: 100vh;
}

.container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.navbar {
    padding: 20px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #0066cc;
}

/* Hero Section */
.hero {
    position: relative;
    margin-bottom: 0;
    padding: 20px 0;
    background-color: #f5f5f5;
}

.hero-slider {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}

.hero-text {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 40px;
    border-radius: 5px;
    max-width: 90%;
}

.hero-text h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #fff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Services Preview Section */
.services-preview {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.tagline {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0066cc;
}

.card p {
    margin-bottom: 15px;
    color: #666;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #0052a3;
}

/* Certified Section */
.certified-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.certified-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0066cc;
}

.certified-section p {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 15px;
}

/* Strategic Section */
.strategic-section {
    padding: 60px 0;
    background-color: #f0f0f0;
    text-align: center;
}

.strategic-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

/* Page Header */
.page-header {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: left;
}

.page-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: left;
}

.subtitle {
    text-align: left;
    font-size: 16px;
    color: #666;
    max-width: 900px;
    margin: 0;
    line-height: 1.8;
}

/* Content Section */
.content-section {
    padding: 60px 0;
}

.content-section .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-detail {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 5px;
}

.service-detail h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0066cc;
}

.service-detail p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.service-detail.focused {
    grid-column: 1 / -1;
    background-color: #0066cc;
    color: #fff;
}

.service-detail.focused h3 {
    color: #fff;
}

.service-detail.focused p {
    color: #fff;
}

/* Clients Section */
.clients-section {
    padding: 60px 0;
    background-color: #fff;
}

.clients-section h3,
.technology-section h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #0066cc;
}

.clients-grid,
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.client-card,
.tech-card {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    transition: transform 0.3s;
}

.client-card:hover,
.tech-card:hover {
    transform: translateY(-5px);
}

.client-card img,
.tech-card img {
    width: auto;
    max-width: 100%;
    height: 120px;
    object-fit: scale-down;
    margin: 0 auto 15px;
    display: block;
}

.tech-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.tech-card p {
    font-size: 14px;
    color: #666;
}

/* Technology Section */
.technology-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: #fff;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 30px;
    background: #f9f9f9;
    border-left: 4px solid #0066cc;
    border-radius: 5px;
}

.testimonial p {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

.testimonial .author {
    font-style: normal;
    font-weight: bold;
    color: #333;
    text-align: right;
}

/* Team Section */
.team-section {
    padding: 60px 0;
    background-color: #fff;
}

.team-section .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.team-member {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 5px;
}

.team-member h3 {
    font-size: 28px;
    color: #0066cc;
    margin-bottom: 5px;
}

.team-member h4 {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.team-member p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

/* Quote Section */
.quote-section {
    padding: 60px 0;
    background-color: #0066cc;
    color: #fff;
}

.quote-section blockquote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    font-style: italic;
    text-align: center;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0066cc;
}

/* Contact Page */
.contact-info-section {
    padding: 60px 0;
    background-color: #fff;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 5px;
    height: fit-content;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0066cc;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.8;
}

.contact-info .phone {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 5px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

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

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

/* Job Listing */
.job-listing {
    padding: 60px 0;
    background-color: #fff;
}

.job-listing h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #0066cc;
}

.job-description {
    margin-bottom: 40px;
}

.job-description p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.job-description ul {
    margin-left: 20px;
    color: #666;
    line-height: 2;
}

.job-description li {
    margin-bottom: 10px;
}

/* Job Form */
.job-form {
    max-width: 600px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 5px;
}

.job-form h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

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

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

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

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

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #0066cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .content-section .container {
        grid-template-columns: 1fr;
    }

    .team-section .container {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
        gap: 20px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}