/* Contact Page Specific Styles */
.contact-hero {
    padding: 5rem 6rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a3a 100%);
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 20px;
}

.contact-hero .left {
    flex: 1;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.contact-hero .highlight {
    color: var(--primary-color);
}

.contact-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.7;
}

.contact-hero .right {
    flex: 1;
    position: relative;
}

.contact-hero-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}


        /* Contact Hero CTA Buttons */
        .cta-group {
            display: flex;
            gap: 1.2rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .cta {
            color: #fff;
            padding: 0.8rem 1.8rem;
            font-size: 1rem;
            border-radius: 4px;
            background-color: var(--primary-color);
            transition: all 0.3s ease-in-out;
            transform: scale(1);
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            cursor: pointer;
        }

        .cta:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: var(--primary-hover-color);
            color: var(--primary-color);
            outline: 1.5px solid var(--primary-color);
        }

        .cta.secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 1.5px solid var(--primary-color);
        }

        .cta.secondary:hover {
            background-color: var(--primary-color);
            color: #fff;
            outline: none;
        }

        .cta i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .cta-group {
                flex-direction: column;
                gap: 1rem;
            }

            .cta,
            .cta.secondary {
                width: 100%;
                padding: 0.8rem;
            }
        }













                /* CTA Section */
        .cta-section {
            padding: 5rem 6rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, #e63535 100%);
            color: white;
            text-align: center;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-heading {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .cta-text {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.7;
        }

        .book-a-call {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.8rem;
            background-color: white;
            color: var(--primary-color);
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .book-a-call:hover {
            background-color: var(--dark-bg);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Clients Section */
        .clients-section {
            padding: 5rem 6rem;
            background-color: var(--light-bg);
            text-align: center;
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .section-subtitle {
            display: block;
            font-size: 1rem;
            letter-spacing: 3px;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        .section-description {
            color: #666;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        .client-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .client-logo {
            height: 60px;
            filter: grayscale(100%) contrast(40%);
            opacity: 0.7;
            transition: all 0.3s ease;
            object-fit: contain;
        }

        .client-logo:hover {
            filter: grayscale(0) contrast(100%);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {

            .contact-hero,
            .form-container {
                flex-direction: column;
            }

            .contact-hero .right {
                order: -1;
                margin-bottom: 2rem;
            }

            .form-graphic {
                display: none;
            }
        }

        @media (max-width: 768px) {

            .contact-hero,
            .contact-methods,
            .contact-form-section,
            .cta-section,
            .clients-section {
                padding: 3rem 2rem;
            }

            .contact-hero h1 {
                font-size: 2.2rem;
            }

            .cta-heading {
                font-size: 2rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .client-logos {
                gap: 1.5rem;
            }

            .client-logo {
                height: 40px;
                max-width: 120px;
            }
        }









.services-grid {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 60, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

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

.service-features {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: #e63535;
    gap: 0.8rem;
}

/* Process Section */
.process-section {
    padding: 5rem 2rem;
    background: var(--dark-bg);
    color: white;
    text-align: center;
}

.process-section .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-section .section-header h2 span {
    color: var(--primary-color);
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    position: relative;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.step-circle span {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 2;
}

.circle-animation {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
    opacity: 0;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.1);
        opacity: 0;
    }

    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.process-step p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* CTA Section */
.service-cta {
    padding: 5rem 2rem;
    background: linear-gradient(to right, var(--primary-color) 0%, #e63535 100%);
    color: white;
    text-align: center;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }

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

    .service-cta h2 {
        font-size: 2rem;
    }
}



.services-grid {
    padding: 5rem 2rem;
    background: var(--light-bg);
    position: relative;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    /* Modern border effect */
    border-bottom: 4px solid transparent;
    background-clip: padding-box;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Alternative Modern Border Effect (choose one) */
/*
.service-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #e63535);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}
*/

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 60, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
}

.service-card:hover .service-icon i {
    color: white;
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

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

.service-features {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    transition: color 0.3s ease;
}

.service-card:hover .service-features li {
    color: var(--text-color);
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .learn-more {
    color: #e63535;
    gap: 0.8rem;
}