:root {
    --primary-teal: #005751;
    --teal-dark: #003d39;
    --teal-light: #007a71;
    --accent-mint: #20c997;
    --text-dark: #1a1a1a;
    --text-gray: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    
    /* Service-specific colors */
    --service-blue: #4361ee;
    --service-purple: #7209b7;
    --service-orange: #f3722c;
    --service-pink: #f72585;
    --service-cyan: #00b4d8;
    --service-green: #4caf50;
    --service-red: #e63946; /* New digital marketing color */
}

/* Service-specific color classes */
.service-blue {
    background: linear-gradient(135deg, var(--service-blue), #3a56d4) !important;
}

.service-purple {
    background: linear-gradient(135deg, var(--service-purple), #5a08a3) !important;
}

.service-orange {
    background: linear-gradient(135deg, var(--service-orange), #d45a1c) !important;
}

.service-pink {
    background: linear-gradient(135deg, var(--service-pink), #d41c6f) !important;
}

.service-cyan {
    background: linear-gradient(135deg, var(--service-cyan), #0099b8) !important;
}

.service-green {
    background: linear-gradient(135deg, var(--service-green), #3d8c40) !important;
}

.service-red {
    background: linear-gradient(135deg, var(--service-red), #c1121f) !important;
}

/* Update service cards to use new colors */
.offering-card:nth-child(1) .symbol-container {
    background: linear-gradient(135deg, var(--service-blue), #3a56d4);
}

.offering-card:nth-child(2) .symbol-container {
    background: linear-gradient(135deg, var(--service-purple), #5a08a3);
}

.offering-card:nth-child(3) .symbol-container {
    background: linear-gradient(135deg, var(--service-orange), #d45a1c);
}

.offering-card:nth-child(4) .symbol-container {
    background: linear-gradient(135deg, var(--service-pink), #d41c6f);
}

.offering-card:nth-child(5) .symbol-container {
    background: linear-gradient(135deg, var(--service-cyan), #0099b8);
}

.offering-card:nth-child(6) .symbol-container {
    background: linear-gradient(135deg, var(--service-green), #3d8c40);
}

.offering-card:nth-child(7) .symbol-container {
    background: linear-gradient(135deg, var(--service-red), #c1121f);
}

/* Service page specific styles */
.service-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    text-align: center;
}

.service-detail-section {
    padding: 80px 0;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 4px solid var(--primary-teal);
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.process-steps {
    counter-reset: step-counter;
}

.process-step {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.case-study-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.case-study-content {
    padding: 1.5rem;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.pricing-card.featured {
    border-color: var(--primary-teal);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin: 1rem 0;
}

.price-period {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Rest of your existing CSS remains the same */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

/* Navigation */
.top-navigation {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 87, 81, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.company-brand {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-teal);
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
}

.navigation-menu a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s;
    font-weight: 500;
}

.navigation-menu a:hover {
    color: var(--primary-teal);
}

.action-btn {
    background: var(--primary-teal);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.action-btn:hover {
    background: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 87, 81, 0.3);
}

.intro-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--teal-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.intro-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-white {
    background: var(--white);
    color: var(--primary-teal);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-teal);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 0.875rem 2rem;
    border: 2px solid var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-teal);
}

.stats-display {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* About Block */
.company-overview {
    padding: 100px 0;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.years-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--primary-teal);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 87, 81, 0.3);
}

.years-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.years-badge .text {
    display: block;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 1.5rem;
}

.overview-content .lead-text {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.skill-box {
    padding: 1.5rem;
    border-radius: 15px;
    background: var(--bg-light);
    transition: all 0.3s;
}

.skill-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.skill-box .symbol {
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.skill-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-teal);
}

.skill-box p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
}

/* Process Timeline */
.workflow-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.heading-block {
    text-align: center;
    margin-bottom: 4rem;
}

.heading-block h2 {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.heading-block .tagline {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.workflow-list {
    max-width: 900px;
    margin: 0 auto;
}

.workflow-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.workflow-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.workflow-digit {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-teal);
    opacity: 0.2;
    min-width: 80px;
}

.workflow-details h3 {
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.workflow-details p {
    color: var(--text-gray);
    margin: 0;
}

/* Services Grid */
.offerings-section {
    padding: 100px 0;
}

.offerings-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offering-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.offering-card:hover {
    border-color: var(--primary-teal);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 87, 81, 0.15);
}

.offering-card .symbol-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-light));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.offering-card h3 {
    font-size: 1.5rem;
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.offering-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--accent-mint);
}

.details-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.details-link:hover {
    gap: 1rem;
}

/* Why Choose Section */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.benefits-list {
    margin-top: 2rem;
}

.benefit-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s;
}

.benefit-row:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.benefit-symbol {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-teal), var(--teal-light));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-text h4 {
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--text-gray);
    margin: 0;
}

.metrics-panel {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.metrics-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.metric-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 15px;
}

.metric-box h3 {
    font-size: 2.5rem;
    color: var(--primary-teal);
    margin-bottom: 0.5rem;
}

.metric-box p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Testimonials */
.reviews-section {
    padding: 100px 0;
}

.reviews-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.stars-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.review-quote {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info h5 {
    margin: 0;
    color: var(--primary-teal);
    font-size: 1rem;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Contact Form */
.inquiry-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-panel {
    background: var(--primary-teal);
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    height: 100%;
}

.contact-panel h3 {
    margin-bottom: 1.5rem;
}

.contact-entry {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-entry i {
    font-size: 1.5rem;
    width: 40px;
    flex-shrink: 0;
}

.contact-entry h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-teal);
    transform: translateY(-3px);
}

.inquiry-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.inquiry-form label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.send-button {
    background: var(--primary-teal);
    color: var(--white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.send-button:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 87, 81, 0.3);
}

/* Footer */
.bottom-footer {
    background: var(--teal-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-column {
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-column p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.copyright-area {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    opacity: 0.8;
}

/* Scroll Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-teal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0, 87, 81, 0.3);
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: all;
}

.back-to-top:hover {
    background: var(--teal-dark);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .intro-text h1 {
    font-size: 2.5rem;
    }
    
    .stats-display {
    gap: 1.5rem;
    }
    
    .skills-grid {
    grid-template-columns: 1fr;
    }
    
    .metrics-layout {
    grid-template-columns: 1fr;
    }
    
    .workflow-item {
    flex-direction: column;
    text-align: center;
    }
}