:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --accent-color: #fbbc05;
    --text-color: #202124;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --card-radius: 16px;
    --card-shadow: 0 4px 16px rgba(26, 115, 232, 0.07);
    --transition: 0.3s cubic-bezier(.4,0,.2,1);
    --font-main: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-color);
    background: #f5f5f5;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    margin-bottom: 0.7em;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

p, li {
    font-weight: 400;
    color: var(--text-color);
}

/* Navigation */
nav.navbar,
.navbar,
nav {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%) !important;
    background-color: #1a73e8 !important;
    color: white !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s, box-shadow 0.3s;
    padding: 1.2rem 0;
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
}

.navbar *,
nav.navbar *,
nav * {
    color: white !important;
}

.navbar.scroll-down {
    transform: translateY(-100%);
}

.navbar.scroll-up {
    transform: translateY(0);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.7rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.logo:hover {
    transform: scale(1.07);
}



.logo img {
    height: 40px;
    max-width: 100%;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    margin-left: 2rem;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.2rem;
    position: relative;
    transition: all 0.4s ease;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.4);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero, .portfolio-hero, .services-hero, .about-hero, .blog-hero {
    padding: 2rem 2rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.8) 0%, rgba(59, 130, 246, 0.7) 25%, rgba(6, 182, 212, 0.6) 50%, rgba(16, 185, 129, 0.7) 75%, rgba(5, 150, 105, 0.8) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}





/* Color changing overlay without movement */
.hero::after, .portfolio-hero::after, .services-hero::after, .about-hero::after, .blog-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    animation: colorFadeTransition 15s ease-in-out infinite;
}



/* Color fade transition animation - no movement, just color changes */
@keyframes colorFadeTransition {
    0% {
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.0) 0%, rgba(59, 130, 246, 0.0) 25%, rgba(6, 182, 212, 0.0) 50%, rgba(8, 145, 178, 0.0) 75%, rgba(3, 105, 161, 0.0) 100%);
        opacity: 0;
    }
    15% {
        background: linear-gradient(135deg, rgba(5, 150, 105, 0.4) 0%, rgba(16, 185, 129, 0.5) 25%, rgba(34, 197, 94, 0.3) 50%, rgba(52, 211, 153, 0.4) 75%, rgba(110, 231, 183, 0.3) 100%);
        opacity: 0.7;
    }
    30% {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.5) 0%, rgba(34, 197, 94, 0.6) 25%, rgba(52, 211, 153, 0.4) 50%, rgba(110, 231, 183, 0.5) 75%, rgba(6, 182, 212, 0.4) 100%);
        opacity: 0.9;
    }
    45% {
        background: linear-gradient(135deg, rgba(6, 182, 212, 0.6) 0%, rgba(8, 145, 178, 0.7) 25%, rgba(14, 116, 144, 0.5) 50%, rgba(21, 94, 117, 0.6) 75%, rgba(30, 64, 175, 0.5) 100%);
        opacity: 1;
    }
    60% {
        background: linear-gradient(135deg, rgba(8, 145, 178, 0.5) 0%, rgba(14, 116, 144, 0.6) 25%, rgba(21, 94, 117, 0.4) 50%, rgba(30, 64, 175, 0.5) 75%, rgba(59, 130, 246, 0.4) 100%);
        opacity: 0.8;
    }
    75% {
        background: linear-gradient(135deg, rgba(21, 94, 117, 0.4) 0%, rgba(30, 64, 175, 0.5) 25%, rgba(59, 130, 246, 0.3) 50%, rgba(6, 182, 212, 0.4) 75%, rgba(16, 185, 129, 0.3) 100%);
        opacity: 0.6;
    }
    90% {
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.3) 0%, rgba(59, 130, 246, 0.4) 25%, rgba(6, 182, 212, 0.2) 50%, rgba(8, 145, 178, 0.3) 75%, rgba(5, 150, 105, 0.2) 100%);
        opacity: 0.4;
    }
    100% {
        background: linear-gradient(135deg, rgba(30, 64, 175, 0.0) 0%, rgba(59, 130, 246, 0.0) 25%, rgba(6, 182, 212, 0.0) 50%, rgba(8, 145, 178, 0.0) 75%, rgba(3, 105, 161, 0.0) 100%);
        opacity: 0;
    }
}







.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-flex-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 0.5rem;
    position: relative;
    z-index: 2;
}

.hero-logo {
    flex-shrink: 0;
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    justify-self: start;
    margin-left: -1rem;
}

.hero-text {
    text-align: left;
    flex-grow: 1;
}

.main-logo {
    width: 260px;
    height: auto;
    transition: transform 0.5s ease;
}

.main-logo:hover {
    transform: scale(1.05);
}

.hero-buttons {
    margin-top: 2.5rem;
    position: relative;
    z-index: 10;
    clear: both;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.hero-buttons .btn {
    flex-shrink: 0;
}

.hero h1, .hero h2, .portfolio-hero h1, .portfolio-hero h2, .services-hero h1, .services-hero h2, .about-hero h1, .about-hero h2, .blog-hero h1, .blog-hero h2 {
    color: var(--white);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .hero-text p {
    color: var(--white) !important;
}

/* Hero Slides Animation */
.hero-slides-container {
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 1.5rem;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
    text-align: left;
}

.hero-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide h1 {
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out;
}

.hero-slide p {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Indicators */
.hero-indicators {
    display: flex;
    justify-content: flex-start;
    gap: 0.8rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Hero CEO Section */
.hero-ceo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 350px;
    min-width: 350px;
    width: 350px;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--card-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    justify-self: end;
    margin-right: -1rem;
    flex-shrink: 0;
    box-sizing: border-box;
}

.hero-ceo-photo-container {
    display: flex;
    justify-content: center;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.hero-ceo-photo {
    width: 200px !important;
    height: 200px !important;
    max-width: 200px;
    max-height: 200px;
    min-width: 200px;
    min-height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    display: block;
}

.hero-ceo-photo:hover {
    transform: scale(1.05);
}

.hero-ceo-info {
    text-align: center;
    color: white;
}

.hero-ceo-info h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-ceo-info blockquote {
    border: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    background: none;
}

.hero-ceo-info blockquote p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0.6rem;
    font-style: italic;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.hero-ceo-signature {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
}

.hero-ceo-signature p {
    margin: 0.2rem 0;
    font-size: 0.8rem;
}

.hero-ceo-signature strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Buttons */
.btn {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.08);
    font-weight: 600;
    padding: 0.9rem 2.2rem;
    font-size: 1.08rem;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26, 115, 232, 0.13);
    border: none;
}

.btn-primary:hover {
    background: #b3d4fc;
    color: var(--primary-color);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 18px rgba(52, 168, 83, 0.13);
    filter: none;
    backdrop-filter: none;
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* CEO Section */
.ceo-section {
    padding: 4.5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.ceo-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: var(--light-bg);
    border-radius: var(--card-radius);
    padding: 3rem;
    box-shadow: var(--card-shadow);
    transition: box-shadow var(--transition), transform var(--transition);
    flex-direction: row-reverse;
}

.ceo-content:hover {
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.13);
    transform: translateY(-2px);
}

.ceo-image {
    flex-shrink: 0;
}

.ceo-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(26, 115, 232, 0.15);
    border: 4px solid var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(26, 115, 232, 0.2);
}

.ceo-text {
    flex-grow: 1;
    text-align: left;
}

.ceo-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.ceo-text blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 2rem;
    margin: 0 0 2rem 0;
    background: none;
}

.ceo-text blockquote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-style: italic;
}

.ceo-text blockquote p:last-child {
    margin-bottom: 0;
}

.ceo-signature {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(26, 115, 232, 0.1);
}

.ceo-signature p {
    margin: 0.25rem 0;
    color: var(--primary-color);
}

.ceo-signature strong {
    color: var(--secondary-color);
}

/* Features Section */
.features {
    padding: 4.5rem 2rem;
    background: #f5f5f5;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card, .portfolio-item, .service-item, .case-study, .category-card, .post-card, .value-item, .stat-item {
    border: none;
    background: #e3f2fd;
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.18), 0 1.5px 6px 0 rgba(60,60,60,0.08);
    border-radius: var(--card-radius);
    transition: all 0.6s cubic-bezier(.4,0,.2,1);
    padding: 2.2rem 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.35), 0 0 30px rgba(26, 115, 232, 0.25), 0 5px 15px rgba(60,60,60,0.15);
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, #bbdefb 0%, #e3f2fd 50%, #e8f5e8 100%) !important;
    border: 2px solid rgba(26, 115, 232, 0.3);
}

.feature-card:hover h3 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(26, 115, 232, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.feature-card:hover i {
    color: var(--primary-color);
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 15px rgba(26, 115, 232, 0.6);
    transition: all 0.4s ease;
}

.feature-card h3 {
    margin: 1.2rem 0 0.7rem 0;
    position: relative;
    z-index: 2;
}

.feature-card p {
    position: relative;
    z-index: 2;
}

.feature-card i {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.feature-card p {
    margin-bottom: 0;
}

/* Animation Classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

.animate-delay-6 {
    transition-delay: 0.6s;
}

/* Stagger animation for cards */
.stagger-animation .feature-card:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation .feature-card:nth-child(2) { transition-delay: 0.2s; }
.stagger-animation .feature-card:nth-child(3) { transition-delay: 0.3s; }
.stagger-animation .feature-card:nth-child(4) { transition-delay: 0.4s; }
.stagger-animation .feature-card:nth-child(5) { transition-delay: 0.5s; }
.stagger-animation .feature-card:nth-child(6) { transition-delay: 0.6s; }

.stagger-animation .portfolio-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-animation .portfolio-item:nth-child(2) { transition-delay: 0.3s; }
.stagger-animation .portfolio-item:nth-child(3) { transition-delay: 0.5s; }

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

/* About Section */
.about {
    padding: 4.5rem 2rem;
    background: var(--white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.about-text {
    max-width: 600px;
    text-align: left;
}

.about-text ul {
    list-style: none;
    margin-top: 1rem;
}

.about-text li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.about-text li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    padding: 4.5rem 2rem;
    background: var(--light-bg);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    color: #1a73e8 !important;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    color: #202124 !important;
    border-radius: 5px;
    font-size: 1rem;
    padding: 1rem;
    border: 1px solid #ddd;
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form textarea {
    color: #202124 !important;
    background: var(--white) !important;
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.contact-container h2,
.contact-form input,
.contact-form button {
    color: var(--white) !important;
}

.contact-form input[type="text"] {
    color: #202124 !important;
}

.contact-form input[type="email"] {
    color: #202124 !important;
}

.contact-form button {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

/* Footer */
.footer {
    background: #e3f0fc;
    color: var(--primary-color);
    padding: 2.5rem 2rem 1.2rem;
    font-size: 1rem;
    border-top: 4px solid var(--primary-color);
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-section img.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-right: 0.7rem;
    transition: color var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.95rem;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    /* Hero section mobile responsive */
    .hero {
        padding: 1.5rem 2rem 2rem;
    }
    
    /* Hero slides mobile responsive */
    .hero-slides-container {
        min-height: 160px;
        margin-bottom: 1rem;
    }
    
    .hero-buttons {
        margin-top: 0.5rem;
    }
    
    .hero-indicators {
        margin-top: 1rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* CEO Section Mobile Responsive */
    .ceo-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem;
    }
    
    .ceo-photo {
        width: 180px;
        height: 180px;
    }
    
    .ceo-text {
        text-align: center;
    }
    
    .ceo-text blockquote {
        padding-left: 1rem;
        border-left: 2px solid var(--primary-color);
    }
    
    .ceo-text h2 {
        font-size: 1.5rem;
    }
    

}

/* Services Page Styles */
.services-detailed {
    padding: 4.5rem 2rem;
    background: #f5f5f5;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: all 0.6s cubic-bezier(.4,0,.2,1);
    text-align: left !important;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    box-shadow: 0 20px 60px rgba(26, 115, 232, 0.35), 0 0 30px rgba(26, 115, 232, 0.25), 0 5px 15px rgba(60,60,60,0.15);
    transform: translateY(-10px) scale(1.05);
    background: linear-gradient(135deg, #bbdefb 0%, #e3f2fd 50%, #e8f5e8 100%) !important;
    border: 2px solid rgba(26, 115, 232, 0.3);
}

.service-item:hover h2 {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(26, 115, 232, 0.4);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.service-item:hover i {
    color: var(--primary-color);
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 15px rgba(26, 115, 232, 0.6);
    transition: all 0.4s ease;
}

.service-item.animate-in:hover {
    transform: translateY(-8px) scale(1.02);
}

.service-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-content {
    flex-grow: 1;
    text-align: left !important;
    position: relative;
    z-index: 2;
}

.service-content h2 {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-content p {
    position: relative;
    z-index: 2;
}

.service-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    margin: 1rem 0;
}

.service-content li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-content li:before {
    content: "→";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* Process Section */
.process {
    padding: 4.5rem 2rem;
    background: var(--light-bg);
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    position: relative;
    transition: box-shadow var(--transition), transform var(--transition);
}

.step:hover {
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.13);
    transform: translateY(-4px) scale(1.01);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto;
    }

    .service-content li {
        text-align: left;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%) !important;
    z-index: 1001;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-header .logo {
    color: white !important;
    font-size: 1.8rem;
    font-weight: 700;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white !important;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: white !important;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin: 0.5rem 0;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--primary-color);
    color: white !important;
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

/* Update Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    /* ... existing mobile styles ... */
}

/* Portfolio Styles */
.portfolio-grid {
    padding: 4.5rem 2rem;
    background: #f5f5f5;
}

.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    text-align: left !important;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: var(--light-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
    text-align: left !important;
}

.portfolio-item:hover {
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.13);
    transform: translateY(-4px) scale(1.01);
    background-color: #f4f4f4 !important;
}

.portfolio-item.animate-in {
    animation: slideInFromLeft 0.8s ease-out;
}

.portfolio-item:nth-child(even).animate-in {
    animation: slideInFromRight 0.8s ease-out;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

.portfolio-image {
    width: 100%;
    height: 100%;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: var(--card-radius);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.07);
    background: #f4f8fd;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-image::after, .portfolio-image .overlay-icon {
    display: none !important;
}

.portfolio-content {
    padding: 2rem;
    text-align: left !important;
}

.portfolio-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.portfolio-category {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.portfolio-description {
    margin-bottom: 1.5rem;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: var(--white);
    border-radius: 5px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Testimonials */
.testimonials {
    padding: 4.5rem 2rem;
    background: var(--light-bg);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    text-align: left;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Update Responsive Design for Portfolio */
@media (max-width: 768px) {
    .portfolio-item {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        min-height: 200px;
    }

    .portfolio-stats {
        grid-template-columns: 1fr;
    }

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

/* About Page Styles */
.about-hero {
    padding: 6rem 2rem 4rem;
    background: var(--white);
    color: var(--primary-color);
}

/* Mission Section */
.mission {
    padding: 4.5rem 2rem;
    background: var(--white);
}

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

.mission-content {
    text-align: center;
}

.mission-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-content > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

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

.value-item {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}

.value-item:hover {
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.13);
    transform: translateY(-4px) scale(1.01);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team {
    padding: 4.5rem 2rem;
    background: var(--light-bg);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.team-member {
    background: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.team-member:hover {
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.13);
    transform: translateY(-4px) scale(1.01);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
    text-align: left;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color var(--transition);
}

.member-social a:hover {
    color: var(--primary-color);
}

/* Stats Section */
.stats {
    padding: 4.5rem 2rem;
    background: var(--white);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}

.stat-item:hover {
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.13);
    transform: translateY(-4px) scale(1.01);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-color);
    font-weight: 500;
}

/* Update Responsive Design for About Page */
@media (max-width: 768px) {
    .mission-values {
        grid-template-columns: 1fr;
    }

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

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Styles */
.blog-hero {
    padding: 6rem 2rem 4rem;
    background: var(--white);
    color: var(--primary-color);
}

/* Featured Post */
.featured-post {
    padding: 4.5rem 2rem;
    background: var(--white);
}

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

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

.featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--card-radius);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: var(--card-radius);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.07);
    background: #f4f8fd;
}

.featured-image:hover img {
    transform: scale(1.05);
}

.featured-text {
    padding: 2rem;
}

.post-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.featured-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.post-excerpt {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Blog Categories */
.blog-categories {
    padding: 4.5rem 2rem;
    background: var(--light-bg);
}

.categories-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.categories-container h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition);
    text-decoration: none;
    color: var(--text-color);
}

.category-card:hover {
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.13);
    transform: translateY(-4px) scale(1.01);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Recent Posts */
.recent-posts {
    padding: 4.5rem 2rem;
    background: var(--white);
}

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

.posts-container h2 {
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

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

.post-card {
    background: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.post-card:hover {
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.13);
    transform: translateY(-4px) scale(1.01);
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: var(--card-radius);
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.07);
    background: #f4f8fd;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    color: var(--primary-color);
    margin: 1rem 0;
    font-size: 1.2rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Newsletter */
.newsletter {
    padding: 4.5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-bg);
    border-radius: 5px;
    font-size: 1rem;
}

/* Update Responsive Design for Blog Page */
@media (max-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 300px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Blog Search */
.blog-search {
    position: relative;
    max-width: 500px;
    margin: 2rem auto 0;
}

.blog-search input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.blog-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.blog-search i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
}

/* Category Filter */
.category-filter {
    padding: 2rem;
    background: var(--white);
    border-bottom: 1px solid var(--light-bg);
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category-filter button {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    background: transparent;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter button:hover,
.category-filter button.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.dark-mode-toggle:hover {
    transform: scale(1.1);
}

.dark-mode-toggle .fa-sun {
    display: none;
}

/* Dark Mode Styles */
body.dark-mode {
    background: #1a1a1a;
    color: #ffffff;
}

body.dark-mode .navbar,
body.dark-mode .mobile-menu,
body.dark-mode .featured-post,
body.dark-mode .recent-posts,
body.dark-mode .post-card,
body.dark-mode .category-filter {
    background: #2d2d2d;
}

body.dark-mode .nav-links a,
body.dark-mode .mobile-nav-links a,
body.dark-mode .post-content h3,
body.dark-mode .featured-text h2 {
    color: #ffffff;
}

body.dark-mode .post-card,
body.dark-mode .category-card,
body.dark-mode .value-item {
    background: #2d2d2d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

body.dark-mode .category-filter button {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

body.dark-mode .category-filter button:hover,
body.dark-mode .category-filter button.active {
    background: var(--primary-color);
    color: #ffffff;
}

body.dark-mode .dark-mode-toggle .fa-moon {
    display: none;
}

body.dark-mode .dark-mode-toggle .fa-sun {
    display: block;
}

/* Update Responsive Design */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .category-filter button {
        width: 100%;
    }

    .dark-mode-toggle {
        bottom: 1rem;
        right: 1rem;
    }
}

/* Responsive adjustments for hero section */
@media (max-width: 992px) {
    .hero-flex-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-ceo {
        max-width: 100%;
        order: 3;
    }
    
    .hero-logo {
        order: 1;
    }
    
    .hero-text {
        order: 2;
    }
}

/* Case Studies Section */
.case-studies-section {
    margin: 3rem 0;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 10px;
}

.case-studies-section h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

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

.case-study {
    background: var(--white);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition);
}

.case-study:hover {
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.13);
    transform: translateY(-4px) scale(1.01);
}

.case-study-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    position: relative;
}

.case-study-header h4 {
    margin: 0;
    font-size: 1.4rem;
}

.industry-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.case-study-content {
    padding: 1.5rem;
}

.case-study-content p {
    margin-bottom: 1rem;
}

.results-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.results-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: baseline;
}

.results-list li:before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.metric {
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

blockquote footer {
    margin-top: 0.5rem;
    font-weight: 500;
    font-style: normal;
    color: #888;
}

/* Responsive adjustments for case studies */
@media (max-width: 768px) {
    .case-studies-container {
        grid-template-columns: 1fr;
    }
}

.footer, .footer * {
    color: var(--primary-color) !important;
}
.footer-bottom {
    color: var(--primary-color) !important;
}
.social-links a {
    color: var(--primary-color) !important;
}

/* Section Dividers */
.section-divider {
    display: none;
}

/* Ensure heading contrast on light backgrounds */
.about h1, .about h2, .about h3, .about h4, .about h5, .about h6,
.services-detailed h1, .services-detailed h2, .services-detailed h3, .services-detailed h4, .services-detailed h5, .services-detailed h6,
.portfolio-grid h1, .portfolio-grid h2, .portfolio-grid h3, .portfolio-grid h4, .portfolio-grid h5, .portfolio-grid h6,
.stats h1, .stats h2, .stats h3, .stats h4, .stats h5, .stats h6,
.blog-hero h1, .blog-hero h2, .blog-hero h3, .blog-hero h4, .blog-hero h5, .blog-hero h6 {
    color: var(--primary-color) !important;
}

/* Ensure heading contrast on dark/gradient backgrounds */
.hero h1, .hero h2, .hero h3, .hero h4, .hero h5, .hero h6,
.portfolio-hero h1, .portfolio-hero h2, .portfolio-hero h3, .portfolio-hero h4, .portfolio-hero h5, .portfolio-hero h6,
.services-hero h1, .services-hero h2, .services-hero h3, .services-hero h4, .services-hero h5, .services-hero h6,
.about-hero h1, .about-hero h2, .about-hero h3, .about-hero h4, .about-hero h5, .about-hero h6 {
    color: var(--white) !important;
}

/* Portfolio content headings on light backgrounds */
.portfolio-content h3 {
    color: var(--primary-color) !important;
}

/* White text for portfolio items with dark backgrounds */
.portfolio-item.dark-bg .portfolio-content h3,
.portfolio-item.dark-bg .portfolio-category {
    color: var(--white) !important;
}

.case-study.dark-bg .case-study-header h4,
.case-study.dark-bg .industry-tag {
    color: var(--white) !important;
}

.expand-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background-color 0.3s, color 0.3s;
}

.expand-btn:hover {
    background: #b3d4fc !important;
    color: var(--primary-color) !important;
}

.services-hero .hero-text p {
    color: var(--white) !important;
}

.section-title + p,
.section-subtitle,
.pricing-hero .hero-text p {
    color: var(--white) !important;
}

.pricing-container, .pricing-item, .pricing-content, .pricing-content h2, .pricing-content p, .pricing-content ul {
    text-align: left !important;
}

.portfolio-container, .portfolio-item, .portfolio-content, .portfolio-content h2, .portfolio-content p, .portfolio-content ul {
    text-align: left !important;
} 