body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

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

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    letter-spacing: 1px;
}

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

nav ul li {
    margin-left: 2rem;
}

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

nav ul li a:hover {
    color: #007bff;
}

main {
    padding-top: 4rem; /* Space for sticky header */
}

section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #fff;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
}

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

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}

.trust-anchors {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.trust-anchors p {
    margin: 0.5rem 0;
}

.services-overview h2,
.company-story h2,
.why-choose-us h2,
.case-studies-preview h2,
.contact-hero h2,
.contact-form-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.service-cards,
.differentiators,
.case-study-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card,
.differentiator,
.case-study-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.service-card:hover,
.differentiator:hover,
.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3,
.differentiator h3,
.case-study-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.service-card p,
.differentiator p,
.case-study-card p {
    font-size: 1rem;
    color: #555;
}

.why-dreamlabs {
    background-color: #ffffff;
}

.why-choose-us {
    background-color: #f4f7f6;
}

.company-story {
    background-color: #ffffff;
    text-align: left;
}

.company-story p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.case-studies-preview {
    background-color: #ffffff;
}

.cta-section {
    background: linear-gradient(135deg, #24243e 0%, #302b63 100%);
    color: #fff;
    padding: 4rem 2rem;
    margin-top: 3rem;
    border-radius: 8px;
}

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

.contact-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #7f8c8d 100%);
    color: #fff;
    min-height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.contact-form-section {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
    background-color: #ffffff;
    padding-top: 2rem;
    padding-bottom: 5rem;
}

.contact-form-wrapper {
    flex: 1;
    min-width: 350px;
    max-width: 500px;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
}

.contact-details {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: left;
    padding-top: 1rem;
}

.contact-details h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.contact-details a {
    color: #007bff;
    text-decoration: none;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    display: none;
}

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

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

.footer-nav ul li {
    margin-bottom: 0.8rem;
}

.footer-nav ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: #3498db;
}

.legal-info {
    text-align: right;
}

.legal-info p {
    margin: 0.5rem 0;
}

.legal-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-info a:hover {
    color: #3498db;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-secondary {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
    background-color: #007bff;
    color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
    }
    nav ul li {
        margin: 0.5rem 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    section {
        padding: 3rem 1rem;
    }
    .services-overview h2,
    .company-story h2,
    .why-choose-us h2,
    .case-studies-preview h2,
    .contact-hero h2,
    .contact-form-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    .service-card,
    .differentiator,
    .case-study-card {
        padding: 1.5rem;
    }
    .contact-form-section {
        flex-direction: column;
        align-items: center;
    }
    .contact-form-wrapper,
    .contact-details {
        max-width: 90%;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo {
        margin-bottom: 1.5rem;
    }
    .footer-nav ul {
        margin-bottom: 1.5rem;
    }
    .legal-info {
        text-align: center;
    }
}