/* Full viewport hero section with pattern background */
.full-viewport-hero {
    position: relative;
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
}

.hero-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-svg {
    width: 100vw;
    height: 100vh;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 900px) {
    .hero-bg-svg {
        width: 100vw;
        height: 60vh;
    }
    .hero-content {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #18181b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: -5px;
}

.nav-logo .tagline {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link.cta-button {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link.cta-button:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

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

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.hero-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.hero-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.hero-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.hero-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Trusted By Section */
.trusted-by {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.trusted-text {
    text-align: center;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

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

.service-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card ul li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.learn-more {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.learn-more:hover {
    color: #1d4ed8;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #374151;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #64748b;
    font-weight: 500;
}

/* Impact Section */
.impact {
    padding: 80px 0;
    background: white;
}

.impact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.impact-card {
    text-align: center;
    padding: 2rem;
}

.impact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.impact-icon i {
    font-size: 2rem;
    color: white;
}

.impact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.impact-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background: #f8fafc;
}

.expertise h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.expertise-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.expertise-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: #e0e7ff;
    color: #3730a3;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

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

.contact-info h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #2563eb;
    font-size: 1.2rem;
}

.contact-item span {
    color: #374151;
    font-weight: 500;
}

.contact-details-horizontal {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: nowrap;
    width: 100%;
}

.contact-details-horizontal .contact-item {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .contact-details-horizontal {
        flex-wrap: wrap;
        gap: 1.2rem;
        justify-content: flex-start;
    }
    .contact-details-horizontal .contact-item {
        flex: unset;
        min-width: unset;
        white-space: normal;
    }
}

.contact-form {
    background: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #64748b;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.5rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.8rem;
    color: #2563eb;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials .recognition {
    margin-top: 1rem;
}

.testimonials .recognition h3 {
    font-size: 1.3rem;
    color: #2563eb;
    font-weight: 600;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 4rem;
    color: #e5e7eb;
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Blog/Insights Section */
.insights {
    padding: 80px 0;
    background: white;
}

.insights h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

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

.insight-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.insight-image {
    height: 200px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.insight-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.insight-card p {
    padding: 0 1.5rem 1rem;
    color: #64748b;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1d4ed8;
}

.newsletter-cta {
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 2rem;
}

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

.newsletter-cta .btn-primary {
    background: white;
    color: #2563eb;
}

.newsletter-cta .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background: #1e293b;
    color: white;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    color: #1e293b;
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form .btn-primary {
    white-space: nowrap;
    background: #2563eb;
    border: 2px solid #2563eb;
}

.newsletter-form .btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #2563eb;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* --- Disruptive Edge Inspired Styles --- */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #18181b;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #18181b;
    letter-spacing: -1px;
    text-align: center;
}

/* Hero */
.de-hero {
    background: #fff;
    padding: 120px 0 80px;
    text-align: center;
}
.de-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #18181b;
    letter-spacing: -2px;
}
.de-hero-subtitle {
    font-size: 1.3rem;
    color: #52525b;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.de-hero-cta {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s;
}
.de-hero-cta:hover {
    background: #1d4ed8;
}

/* Clients */
.clients {
    background: #f8fafc;
    padding: 60px 0 40px;
    text-align: center;
}
.clients-title {
    font-size: 1.3rem;
    color: #52525b;
    margin-bottom: 2rem;
}
.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.clients-logos img {
    height: 120px;
    max-width: 260px;
    opacity: 1;
    filter: none;
    transition: opacity 0.2s, filter 0.2s;
    margin: 0 2rem;
    object-fit: contain;
}
.clients-logos img:hover {
    opacity: 0.9;
}

/* Services */
.de-services {
    background: #fff;
    padding: 80px 0;
}
.de-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}
.de-service-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    text-align: left;
    transition: box-shadow 0.2s, transform 0.2s;
}
.de-service-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.08);
    transform: translateY(-4px);
}
.de-service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #18181b;
}
.de-service-card p {
    color: #52525b;
    margin-bottom: 1.5rem;
}
.de-service-card .learn-more {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}
.de-service-card .learn-more:hover {
    text-decoration: underline;
}

/* Work/Case Studies */
.de-work {
    background: #f8fafc;
    padding: 80px 0;
}
.de-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.de-work-card {
    background: #fff;
    border-radius: 14px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, transform 0.2s;
}
.de-work-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.08);
    transform: translateY(-4px);
}
.de-work-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #18181b;
}
.de-work-card p {
    color: #52525b;
    margin-bottom: 1rem;
}
.de-work-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.2rem;
}
.de-work-card ul li {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.de-work-card .read-more {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}
.de-work-card .read-more:hover {
    text-decoration: underline;
}

/* Team */
.de-team {
    background: #fff;
    padding: 80px 0 60px;
    text-align: center;
}
.de-team-intro {
    color: #52525b;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.de-team-locations {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    color: #2563eb;
    font-weight: 600;
}
.de-team-image img {
    max-width: 320px;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* Testimonials */
.de-testimonials {
    background: #f8fafc;
    padding: 80px 0;
}
.de-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.de-testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    font-size: 1.15rem;
    font-style: italic;
    color: #18181b;
    position: relative;
}
.de-testimonial-quote {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.6;
}
.de-testimonial-author {
    font-size: 1rem;
    font-style: normal;
    color: #2563eb;
    font-weight: 700;
}
.de-testimonial-author span {
    display: block;
    color: #52525b;
    font-weight: 400;
    font-size: 0.95rem;
}

/* Insights/Thoughts */
.de-insights {
    background: #fff;
    padding: 80px 0;
}
.de-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.de-insight-card {
    background: #f8fafc;
    border-radius: 14px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, transform 0.2s;
}
.de-insight-card:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.08);
    transform: translateY(-4px);
}
.de-insight-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #18181b;
}
.de-insight-card p {
    color: #52525b;
    margin-bottom: 1.2rem;
}
.de-insight-card .read-more {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}
.de-insight-card .read-more:hover {
    text-decoration: underline;
}

/* Strong CTA */
.de-cta {
    background: #2563eb;
    color: #fff;
    text-align: center;
    padding: 70px 0 60px;
}
.de-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}
.de-cta-btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    background: #fff;
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
}
.de-cta-btn:hover {
    background: #f8fafc;
    color: #1d4ed8;
}

/* Footer */
.de-footer {
    background: #18181b;
    color: #fff;
    padding: 60px 0 20px;
}
.de-footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.de-footer-brand h3 {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}
.de-footer-brand p, .de-footer-brand a {
    color: #cbd5e1;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
}
.de-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.de-footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.de-footer-links a:hover {
    color: #2563eb;
}
.de-footer-newsletter input {
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    border: none;
    margin-right: 0.5rem;
    font-size: 1rem;
}
.de-footer-newsletter button {
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    background: #2563eb;
    color: #fff;
    font-weight: 700;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.de-footer-newsletter button:hover {
    background: #1d4ed8;
}
.de-footer-bottom {
    text-align: center;
    color: #cbd5e1;
    font-size: 1rem;
    border-top: 1px solid #27272a;
    padding-top: 1.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .de-footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .de-team-locations {
        flex-direction: column;
        gap: 1rem;
    }
}
@media (max-width: 768px) {
    .de-hero-title {
        font-size: 2.1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .de-services-grid, .de-work-grid, .de-testimonials-grid, .de-insights-grid {
        grid-template-columns: 1fr;
    }
    .clients-logos {
        gap: 1.2rem;
    }
    .de-team-image img {
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .de-hero {
        padding: 80px 0 40px;
    }
    .de-cta {
        padding: 40px 0 30px;
    }
    .de-footer {
        padding: 40px 0 10px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.service-card,
.impact-card,
.expertise-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.bachpan-logo {
    height: 80px !important;
    max-width: 140px !important;
}
