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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a237e;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1a237e;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #283593;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.btn-primary {
    background: #1a237e;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #283593;
}

.btn-primary i {
    font-size: 14px;
    margin-left: 8px;
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 700;
    color: #1a237e;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-text .btn-primary {
    margin-bottom: 30px;
}

.hero-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.hero-illustration img {
    width: 100%;
    height: auto;
}

/* About Section */
.about {
    background: #1a237e;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: #2196f3;
    border-radius: 50% 30% 50% 30%;
    opacity: 0.3;
    z-index: 0;
}

.about::before {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: #4caf50;
    border-radius: 30% 50% 30% 50%;
    opacity: 0.3;
    z-index: 0;
}

.about-image img {
    width: 100%;
    height: auto;
}

.about-text {
    color: #fff;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.value-text {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.value-icon {
    color: #4caf50;
    font-size: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Services Section */
.services {
    background: #fff;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 20px;
    color: #64b5f6;
    font-weight: 400;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-card {
    padding: 30px;
    border-radius: 12px;
    background: #fff9c4;
}

.service-card:nth-child(2) {
    background: #f8bbd0;
}

.service-card:nth-child(3) {
    background: #ffccbc;
}

.service-card:nth-child(4) {
    background: #e1bee7;
}

.card-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #1a237e;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #1a237e;
    background: transparent;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.services-illustration img {
    width: 100%;
    height: auto;
}

/* Working Process Section */
.working-process {
    background: #fff;
    padding: 100px 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #1a237e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.step-card .card-icon {
    margin: 0 auto 15px;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
}

/* Case Studies Section */
.case-studies {
    background: #fff;
    padding: 100px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.case-study-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.case-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-category {
    font-size: 12px;
    color: #64b5f6;
    text-transform: uppercase;
    padding: 15px;
    padding-bottom: 5px;
}

.case-study-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a237e;
    padding: 0 15px 15px;
}

/* CTA Form Section */
.cta-form {
    background: #1a237e;
    padding: 100px 0;
}

.cta-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-form-text {
    color: #fff;
}

.cta-form-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-form-text .subtitle {
    color: #64b5f6;
    margin-bottom: 20px;
    font-size: 20px;
}

.cta-form-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.stats {
    margin-top: 40px;
}

.stat-number {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 20px;
    color: #fff;
    margin-top: 10px;
}

.consultation-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.consultation-form h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 5px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.consultation-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    background: #f9f9f9;
    color: #333;
}

.consultation-form input::placeholder {
    color: #999;
}

.consultation-form .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Blog Section */
.blog {
    background: #fff;
    padding: 100px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: #1a237e;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more i {
    font-size: 12px;
    margin-left: 5px;
}

/* Final CTA Section */
.final-cta {
    background: #1a237e;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background: #2196f3;
    border-radius: 50% 30% 50% 30%;
    opacity: 0.3;
    z-index: 0;
}

.final-cta::before {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: #4caf50;
    border-radius: 30% 50% 30% 50%;
    opacity: 0.3;
    z-index: 0;
}

.final-cta-text {
    color: #fff;
}

.final-cta-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.final-cta-text > p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: #fff;
}

.cta-icon {
    width: 12px;
    height: 12px;
    background: #ff9800;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    margin-right: 10px;
}

.final-cta-illustration img {
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background: #fff;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
}

.footer-column p {
    color: #1a237e;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-column a {
    color: #1a237e;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #1a237e;
    text-decoration: none;
    font-size: 16px;
}

.footer-logo {
    margin-top: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.footer-copyright p {
    color: #1a237e;
    font-size: 14px;
}

/* Blog Standard Page */
.blog-standard {
    background: #fff;
    padding: 80px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.blog-posts-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
}

.blog-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.blog-tag.business {
    background: #1a237e;
}

.blog-tag.marketing {
    background: #64b5f6;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.blog-author {
    font-weight: 600;
    color: #1a237e;
}

.blog-date {
    color: #999;
}

.blog-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.btn-read-more {
    background: #1a237e;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-read-more:hover {
    background: #283593;
}

.btn-read-more i {
    font-size: 12px;
    margin-left: 8px;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.consultation-widget {
    background: #1a237e;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    background: linear-gradient(180deg, #1a237e 0%, #283593 100%);
}

.consultation-widget h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.widget-subtitle {
    font-size: 16px;
    color: #fff;
    opacity: 0.9;
    margin-bottom: 25px;
}

.widget-question {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
}

.consultation-widget .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 18px;
}

/* Contact Page */
.page-header {
    background: #fff;
    padding: 60px 0 40px;
    border-bottom: 1px solid #eee;
}

.page-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a237e;
    margin: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.breadcrumb a {
    color: #64b5f6;
    text-decoration: none;
}

.breadcrumb-separator {
    color: #1a237e;
}

.breadcrumb-current {
    color: #1a237e;
    font-weight: 500;
}

.contact-details {
    background: #fff;
    padding: 80px 0;
}

.contact-details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-column h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-info-column .subtitle {
    font-size: 20px;
    color: #64b5f6;
    margin-bottom: 40px;
}

.contact-info-box {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #64b5f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #64b5f6;
    flex-shrink: 0;
    background: #f0f7ff;
}

.contact-text {
    flex: 1;
}

.contact-text strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-text a {
    color: #1a237e;
    text-decoration: none;
}

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

.contact-image-column {
    position: relative;
}

.contact-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: visible;
    border-radius: 12px;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.contact-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: #2196f3;
    border-radius: 50% 30% 50% 30%;
    opacity: 0.3;
    z-index: 0;
}

.contact-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: #4caf50;
    border-radius: 30% 50% 30% 50%;
    opacity: 0.3;
    z-index: 0;
}

.contact-form-section {
    background: #fff;
    padding: 80px 0;
}

.form-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 15px;
}

.form-section-header .subtitle {
    font-size: 20px;
    color: #64b5f6;
}

.contact-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #fff;
    color: #333;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a237e;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit .btn-primary {
    padding: 15px 40px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content,
    .about-content,
    .services-content,
    .cta-form-content,
    .final-cta-content {
        grid-template-columns: 1fr;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav .btn-primary {
        display: none;
    }

    .header .nav {
        position: relative;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .contact-details-content {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        flex-direction: column;
    }
}

/* ===== ANIMATIONS ===== */

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Scroll-triggered animation classes */
.animate {
    opacity: 0;
}

.animate.show {
    animation-duration: 0.8s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate.fade-up.show {
    animation-name: fadeInUp;
}

.animate.fade-left.show {
    animation-name: fadeInLeft;
}

.animate.fade-right.show {
    animation-name: fadeInRight;
}

.animate.scale-in.show {
    animation-name: scaleIn;
}

/* Animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Floating animation for illustrations */
.hero-illustration img,
.about-image img,
.final-cta-illustration img {
    animation: float 4s ease-in-out infinite;
}

/* Enhanced button hover */
.btn-primary {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: #283593;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 35, 126, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Card hover effects */
.service-card,
.case-study-card,
.blog-card,
.step-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover,
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-study-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Card icon animation */
.card-icon {
    transition: all 0.3s ease;
}

.service-card:hover .card-icon,
.step-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Image hover zoom */
.case-image,
.blog-image {
    overflow: hidden;
}

.case-image img,
.blog-image img {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-study-card:hover .case-image img,
.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

/* Link hover effects */
.nav-menu a {
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a237e;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

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

.read-more:hover {
    color: #283593;
    gap: 12px;
}

/* Form input focus animation */
.contact-form input,
.contact-form textarea,
.consultation-form input {
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.consultation-form input:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.15);
}

/* Logo subtle animation */
.logo img {
    transition: transform 0.3s ease;
}

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

/* Footer link hover */
.footer-column a {
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #64b5f6;
    padding-left: 5px;
}

/* Stats counter - subtle glow on hover */
.stat-number {
    transition: all 0.4s ease;
}

.stats:hover .stat-number {
    text-shadow: 0 0 30px rgba(26, 35, 126, 0.4);
    transform: scale(1.05);
}

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

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

