
/* =====================================================================
   Global Styles & Variables
   ===================================================================== */
:root {
    --primary-color: #424bd0;
    --primary-dark: #3a42b8;
    --secondary-color: #2a8dff;
    --text-dark: #282943;
    --text-light: #555;
    --bg-light: #f8fafd;
    --bg-white: #ffffff;
    --border-color: #e6f0fa;
}

body {
    font-family: 'Satoshi', sans-serif;
    color: var(--text-light);
}

/* =====================================================================
   Reusable Components
   ===================================================================== */
.page-banner {
    background: linear-gradient(90deg, var(--bg-light) 0%, var(--border-color) 100%);
    padding: 80px 0;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.page-banner .breadcrumb {
    background: none;
    padding: 0;
}

.page-banner .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    color: var(--text-light);
}

.service-card-new {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-card-new .service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card-new .service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card-new .service-description {
    font-size: 1rem;
    line-height: 1.7;
}

/* =====================================================================
   Testimonials Section
   ===================================================================== */
.testimonials-section-new {
    background: var(--primary-color);
    padding: 80px 0;
    color: var(--bg-white);
}

.testimonials-section-new .section-title, .testimonials-section-new .section-subtitle {
    color: var(--bg-white);
}

.testimonial-card-new {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.testimonial-card-new .quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.testimonial-card-new .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-card-new .client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-card-new .client-company {
    font-size: 0.9rem;
    color: var(--text-light);
}


/* =====================================================================
   Animations
   ===================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
