 @import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
:root {
    --primary-color: #4e6bff;
    --secondary-color: #ff9c00;
    --hybrid-color: #6c5ce7;
    --text-color: #4a5568;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --dark-blue: #1a237e;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}
body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}
/* Improved Hero Section */
.digital-marketing-hero-app {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 70px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

 
.hero-content-app { 
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content-app h1 {
  font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--space-lg);
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero-content-app p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

 
.mobile-dev-section {
     line-height: 1.6;
    color: var(--text-color);
}

.container {
   width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.dev-container {
    padding: 3rem 0;
    position: relative;
}

.dev-container:nth-child(odd) {
    background-color: var(--white);
}

.dev-container:nth-child(even) {
    background-color: var(--light-bg);
}

/* Add subtle background patterns */
.dev-container:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 107, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.dev-container:nth-child(even)::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 156, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.dev-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.dev-content-wrapper.reverse {
    flex-direction: row-reverse;
}

.dev-text {
    flex: 1;
    min-width: 300px;
}

.dev-image {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.dev-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.dev-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.dev-image:hover img {
    transform: scale(1.05);
}

.dev-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.native-app .dev-badge {
    background: linear-gradient(135deg, var(--primary-color), #3a56e0);
}

.cross-platform .dev-badge {
    background: linear-gradient(135deg, var(--secondary-color), #e68a00);
}

.hybrid-app .dev-badge {
    background: linear-gradient(135deg, var(--hybrid-color), #5a4bc2);
}

.dev-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
    line-height: 1.2;
    position: relative;
}

.dev-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.native-app .dev-text h2::after {
    background-color: var(--primary-color);
}

.cross-platform .dev-text h2::after {
    background-color: var(--secondary-color);
}

.hybrid-app .dev-text h2::after {
    background-color: var(--hybrid-color);
}

.dev-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.dev-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
    background: rgba(78, 107, 255, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.native-app .feature-item i {
    color: var(--primary-color);
    background: rgba(78, 107, 255, 0.1);
}

.cross-platform .feature-item i {
    color: var(--secondary-color);
    background: rgba(255, 156, 0, 0.1);
}

.hybrid-app .feature-item i {
    color: var(--hybrid-color);
    background: rgba(108, 92, 231, 0.1);
}

.feature-item-content {
    flex: 1;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark-blue);
}

.feature-item p {
    font-size: 1rem;
    margin: 0;
    color: var(--text-color);
}

/* Call-to-Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .dev-content-wrapper {
        gap: 40px;
    }
    
    .dev-text h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .digital-marketing-hero-app {
        height: 50vh;
    }
    
    .hero-content-app h1 {
        font-size: 2.2rem;
    }
    
    .dev-container {
        padding: 60px 0;
    }
    
    .dev-content-wrapper {
        gap: 30px;
    }
    
    .dev-text h2 {
        font-size: 1.8rem;
    }
    
    .dev-text, .dev-image {
        min-width: 100%;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .digital-marketing-hero-app {
        height: 40vh;
    }
    
    .hero-content-app h1 {
        font-size: 1.8rem;
    }
    
    .dev-container {
        padding: 40px 0;
    }
    
    .dev-text h2 {
        font-size: 1.6rem;
    }
    
    .dev-text p {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .feature-item i {
        align-self: center;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}