body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

header {
    background-color: #ffffff;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #001f3f; /* Deep Navy */
}

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

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

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff; /* Electric Blue */
}

main {
    padding-top: 60px; /* To account for sticky header */
}

section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h1, h2, h3 {
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    color: #001f3f;
}

h2 {
    font-size: 2.5rem;
    color: #001f3f;
}

h3 {
    font-size: 1.8rem;
    color: #001f3f;
}

p {
    font-size: 1.1rem;
    color: #555;
}

.hero {
    background: linear-gradient(135deg, #001f3f 0%, #003f7f 100%);
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 20px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.cta-button.primary {
    background-color: #007bff; /* Electric Blue */
    color: #fff;
    border: 2px solid #007bff;
}

.cta-button.primary:hover {
    background-color: #0056b3;
    color: #fff;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: #007bff; /* Electric Blue */
    border: 2px solid #007bff;
}

.cta-button.secondary:hover {
    background-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

.trust-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #e9ecef;
    padding: 20px;
    margin-top: 40px;
    border-radius: 8px;
}

.trust-item {
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
}

.services-overview {
    background-color: #fff;
    border-radius: 8px;
    margin-top: 40px;
}

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

.service-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    margin-top: 0;
    color: #001f3f;
    font-size: 1.6rem;
}

.why-dreamlabs {
    background-color: #e9ecef;
    border-radius: 8px;
    margin-top: 40px;
}

.why-dreamlabs p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.2rem;
}

.featured-work, .process-section, .testimonials-section {
    margin-top: 40px;
}

.work-preview-placeholder, .testimonial-placeholder {
    margin-top: 30px;
    padding: 50px;
    background-color: #e9ecef;
    border-radius: 8px;
    color: #777;
    font-style: italic;
}

.process-section h2 {
    margin-bottom: 10px;
}

.process-section p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step span {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.final-cta {
    background-color: #001f3f;
    color: #fff;
    border-radius: 8px;
    padding: 60px 20px;
}

.final-cta h2 {
    color: #fff;
    font-size: 2.8rem;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto;
}

.final-cta .cta-button.primary {
    background-color: #fff;
    color: #001f3f;
    border-color: #fff;
}

.final-cta .cta-button.primary:hover {
    background-color: #e9ecef;
    color: #001f3f;
}

footer {
    background-color: #001f3f; /* Deep Navy */
    color: #fff;
    padding: 50px 20px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-nav ul, .footer-contact p {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li, .footer-contact p {
    margin-bottom: 15px;
}

.footer-nav a, .footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover, .footer-contact a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Services Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, #003f7f 0%, #005fbf 100%);
    color: #fff;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.page-header h1 {
    color: #fff;
    font-size: 3.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

.services-detail {
    text-align: left;
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.service-item {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item h2 {
    color: #001f3f;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-item p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 25px;
}

.service-item ul {
    list-style: disc;
    padding-left: 25px;
    color: #555;
    font-size: 1.1rem;
}

.service-item ul li {
    margin-bottom: 10px;
}

.service-cta {
    background-color: #e9ecef;
    border-radius: 8px;
    padding: 50px 20px;
    margin-top: 40px;
}

.service-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* About Page Specific Styles */
.about-content {
    text-align: left;
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.about-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.about-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-section h2 {
    color: #001f3f;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 25px;
}

.about-section ul {
    list-style: disc;
    padding-left: 25px;
    color: #555;
    font-size: 1.1rem;
}

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

.team-placeholder {
    margin-top: 30px;
    padding: 40px;
    background-color: #e9ecef;
    border-radius: 8px;
    color: #777;
    font-style: italic;
    text-align: center;
}

.about-cta {
    background-color: #001f3f;
    color: #fff;
    border-radius: 8px;
    padding: 50px 20px;
    margin-top: 40px;
}

.about-cta h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.about-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* Contact Page Specific Styles */
.contact-form-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.contact-info {
    flex: 1;
    max-width: 400px;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: #001f3f;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.contact-details strong {
    color: #001f3f;
}

.contact-form {
    flex: 1;
    max-width: 500px;
}

.contact-form h3 {
    font-size: 1.8rem;
    color: #001f3f;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

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

.consultation-cta {
    background-color: #e9ecef;
    border-radius: 8px;
    padding: 50px 20px;
    margin-top: 40px;
}

.consultation-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.consultation-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px 0;
        display: none;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

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

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

    .contact-form-section {
        flex-direction: column;
        align-items: center;
    }

    .contact-info, .contact-form {
        max-width: 100%;
        width: 100%;
    }

    .contact-form {
        margin-top: 40px;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-nav ul, .footer-contact {
        margin-bottom: 30px;
    }
}

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

    h2 {
        font-size: 2rem;
    }

    .hero {
        padding: 80px 20px;
    }

    .page-header {
        padding: 60px 20px;
    }

    .page-header h1 {
        font-size: 2.8rem;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .process-step {
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    nav ul li a {
        font-size: 1rem;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .trust-bar {
        flex-direction: column;
        gap: 15px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-item h2 {
        font-size: 1.8rem;
    }

    .service-item p, .service-item ul li {
        font-size: 1rem;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section p, .about-section ul li {
        font-size: 1rem;
    }

    .contact-form h3 {
        font-size: 1.6rem;
    }
}