/* ==================== COLOR VARIABLES ==================== */
:root {
    --primary-blue: #003d99;
    --light-blue: #e6f2ff;
    --dark-blue: #001a4d;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --dark-gray: #1a1a1a;
    --text-dark: #2d3748;
    --text-light: #1a1a1a;
    --border-color: #e2e8f0;
    --success-green: #10b981;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lora', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== ALTERNATING SECTION BACKGROUNDS ==================== */

/* White sections with blue content */
.trust-section,
.before-after-section,
.services-features-section,
.ai-process-section,
.faq-section {
    background: var(--white);
    color: var(--text-dark);
}

.trust-section .section-title,
.before-after-section .section-title,
.services-features-section .section-title,
.ai-process-section .section-title,
.faq-section .section-title {
    color: var(--primary-blue);
}

/* Blue sections with white content */
.story-section,
.benefits-section,
.testimonials-slider-section,
.ai-features-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

.story-section .section-title,
.benefits-section .section-title,
.testimonials-slider-section .section-title,
.ai-features-section .section-title {
    color: var(--white);
}

.ai-features-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, var(--white) 0%, rgba(224, 242, 254, 0.5) 100%);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.12);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    gap: 0.8rem;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-image {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2.2rem;
    margin-right: 0.8rem;
    display: inline-block;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.2) rotate(10deg);
}

.logo-text {
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #003d99 0%, #001a4d 100%);
    border-radius: 2px;
}

.nav-menu a:hover::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #003d99 0%, #001a4d 100%);
    border-radius: 2px;
    opacity: 0.5;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #003d99;
    margin: 5px 0;
    transition: 0.3s;
}

/* ==================== HERO SECTIONS ==================== */
.contact-hero,
.service-hero,
.about-hero {
    background: linear-gradient(135deg, #003d99 0%, #001a4d 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s infinite ease-in-out;
}

.hero-blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.2);
    top: -100px;
    right: -100px;
}

.hero-blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    bottom: -50px;
    left: -50px;
    animation: float 10s infinite ease-in-out reverse;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content {
    animation: slideUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.hero-content p a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.hero-content p a:hover {
    opacity: 0.8;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: slideDown 0.8s ease-out 0.1s both;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: center;
    position: relative;
    z-index: 3;
    visibility: visible;
    opacity: 1;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: slideUp 0.8s ease-out 0.2s both;
    line-height: 1.7;
    font-weight: 300;
}

.hero-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    margin: 0 auto;
    border-radius: 2px;
    animation: slideUp 0.8s ease-out 0.3s both;
}

/* Floating creative elements in hero */
.floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    font-size: 2.5rem;
}

.element-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 2s;
    font-size: 2rem;
}

.element-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 1.5s;
    font-size: 2.8rem;
}

/* Hero stats section for about page */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    min-width: 100px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero CTA buttons for services page */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    animation: slideInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
    flex-wrap: wrap;
}

/* New Creative About Hero Section */
/* ==================== ABOUT HERO - HIGHLY ANIMATED ==================== */
.about-hero-animated {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

/* Animated Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(90px);
}

.blob-large {
    width: 600px;
    height: 600px;
}

.blob-medium {
    width: 400px;
    height: 400px;
}

.blob-small {
    width: 250px;
    height: 250px;
}

.blob-1 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    animation: blob-float-1 20s ease-in-out infinite;
}

.blob-2 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    bottom: -100px;
    left: 5%;
    animation: blob-float-2 25s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.blob-3 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    top: 20%;
    left: -80px;
    animation: blob-float-3 22s ease-in-out infinite;
    animation-delay: 4s;
}

.blob-4 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
    bottom: 10%;
    right: 5%;
    animation: blob-float-4 24s ease-in-out infinite;
    animation-delay: 6s;
}

.blob-5 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    top: 40%;
    right: 8%;
    animation: blob-float-1 18s ease-in-out infinite;
    animation-delay: 3s;
}

.blob-6 {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    bottom: 30%;
    left: 10%;
    animation: blob-float-3 20s ease-in-out infinite;
    animation-delay: 5s;
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0.5;
}

.particle-1 { top: 15%; left: 10%; animation: particle-float 8s ease-in-out infinite; }
.particle-2 { top: 25%; right: 15%; animation: particle-float 10s ease-in-out infinite; animation-delay: 1s; }
.particle-3 { top: 45%; left: 20%; animation: particle-float 12s ease-in-out infinite; animation-delay: 2s; }
.particle-4 { bottom: 30%; right: 10%; animation: particle-float 9s ease-in-out infinite; animation-delay: 3s; }
.particle-5 { top: 60%; right: 25%; animation: particle-float 11s ease-in-out infinite; animation-delay: 4s; }
.particle-6 { bottom: 20%; left: 30%; animation: particle-float 13s ease-in-out infinite; animation-delay: 5s; }
.particle-7 { top: 35%; right: 40%; animation: particle-float 7s ease-in-out infinite; animation-delay: 2.5s; }
.particle-8 { bottom: 40%; left: 5%; animation: particle-float 14s ease-in-out infinite; animation-delay: 1.5s; }

/* Floating Icons */
.float-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.6;
    animation: icon-float 6s ease-in-out infinite;
}

.icon-1 { top: 10%; left: 8%; animation-delay: 0s; animation-duration: 7s; }
.icon-2 { top: 20%; right: 12%; animation-delay: 1s; animation-duration: 8s; }
.icon-3 { bottom: 20%; right: 8%; animation-delay: 2s; animation-duration: 9s; }
.icon-4 { bottom: 15%; left: 10%; animation-delay: 3s; animation-duration: 6.5s; }
.icon-5 { top: 50%; left: 5%; animation-delay: 1.5s; animation-duration: 7.5s; }
.icon-6 { top: 40%; right: 5%; animation-delay: 2.5s; animation-duration: 8.5s; }

/* Animated Rings */
.ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring-pulse 3s ease-in-out infinite;
}

.ring-1 {
    width: 300px;
    height: 300px;
    animation-delay: 0s;
}

.ring-2 {
    width: 450px;
    height: 450px;
    animation-delay: 0.8s;
}

.ring-3 {
    width: 600px;
    height: 600px;
    animation-delay: 1.6s;
}

/* Hero Content */
.hero-animated-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge-animated {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    animation: slideDown 0.8s ease-out;
}

.hero-title-animated {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: slideDown 0.8s ease-out 0.15s both;
    color: var(--white);
}

.hero-title-animated .highlight-text {
    background: linear-gradient(120deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 50%, var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: color-shift 4s ease-in-out infinite;
    color: var(--white);
}

.hero-subtitle-animated {
    font-size: 1.3rem;
    opacity: 0.92;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
    font-weight: 300;
    animation: slideUp 0.8s ease-out 0.2s both;
}

/* Stats Section */
.hero-stats-animated {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3.5rem 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    flex-wrap: wrap;
}

.stat-animated {
    text-align: center;
    padding: 1.5rem;
    animation: stat-bounce 3s ease-in-out infinite;
}

.stat-animated-1 { animation-delay: 0s; }
.stat-animated-2 { animation-delay: 0.3s; }
.stat-animated-3 { animation-delay: 0.6s; }

.stat-animated .stat-value {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    background-clip: unset !important;
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: -1px;
}

.stat-text {
    font-size: 0.95rem;
    color: var(--white) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Buttons */
.hero-buttons-animated {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    animation: slideInUp 0.8s ease-out 0.4s both;
    flex-wrap: wrap;
}

.btn-animated {
    padding: 1.2rem 3.2rem;
    font-size: 1rem;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary-animated {
    background: var(--white);
    color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.btn-primary-animated:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.95);
}

.btn-secondary-animated {
    background: transparent;
    color: var(--white);
    border: 2.5px solid rgba(255, 255, 255, 0.6);
}

.btn-secondary-animated:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
}

/* Animations */
@keyframes blob-float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -40px) rotate(90deg); }
    50% { transform: translate(-20px, 30px) rotate(180deg); }
    75% { transform: translate(-40px, -20px) rotate(270deg); }
}

@keyframes blob-float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-40px, 30px) rotate(90deg); }
    50% { transform: translate(30px, -20px) rotate(180deg); }
    75% { transform: translate(20px, 40px) rotate(270deg); }
}

@keyframes blob-float-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(35px, 25px) rotate(120deg); }
    66% { transform: translate(-25px, -35px) rotate(240deg); }
}

@keyframes blob-float-4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-35px, -25px) rotate(120deg); }
    66% { transform: translate(25px, 35px) rotate(240deg); }
}

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(40px, -40px) scale(1.3); opacity: 0.8; }
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 0.9; }
}

@keyframes ring-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

@keyframes stat-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes color-shift {
    0%, 100% { 
        background-position: 0% center;
    }
    50% { 
        background-position: 100% center;
    }
}

/* ==================== STORY SECTION ==================== */
.story-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.story-section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 4rem;
    letter-spacing: -0.5px;
}

.story-content-new {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
}

/* Floating Boxes Container */
.floating-boxes-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-center {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.3);
    animation: pulse-center 3s ease-in-out infinite;
}

@keyframes pulse-center {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(96, 165, 250, 0.2);
}

.orbit-ring-1 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-orbit 30s linear infinite;
}

.orbit-ring-2 {
    width: 380px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-orbit 40s linear infinite reverse;
}

.orbit-ring-3 {
    width: 480px;
    height: 480px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(96, 165, 250, 0.1);
    animation: rotate-orbit 50s linear infinite;
}

@keyframes rotate-orbit {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ==================== WHAT WE DO SECTION - NEW DESIGN ==================== */
.what-we-do-section-new {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 8rem 2rem;
    position: relative;
    overflow: visible;
}

.section-header-new {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-title-new {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle-new {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.capabilities-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 3rem auto 0;
    width: 100%;
    align-items: stretch;
    grid-auto-rows: 1fr;
}

/* Floating background elements for What We Do */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(80px);
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.bg-blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.3);
    top: -100px;
    right: -50px;
}

.bg-blob-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.25);
    bottom: -100px;
    left: 10%;
}

.bg-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 1;
}

.particle-1 { top: 20%; left: 15%; }
.particle-2 { top: 40%; right: 20%; }
.particle-3 { bottom: 25%; left: 10%; }

.capability-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

.capability-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    transform: none !important;
}

.capability-card:hover::before {
    transform: scaleX(1);
}

.card-icon-new {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.capability-card h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 800;
}

.capability-card p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ==================== FEATURES CREATIVE SECTION ==================== */
.features-creative-section {
    background: linear-gradient(135deg, #003d99 0%, #001a4d 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
}

.features-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-item {
    background: linear-gradient(135deg, #003d99 0%, #001a4d 100%) !important;
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    background: linear-gradient(135deg, #001a4d 0%, #000d26 100%) !important;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-content h3 {
    font-size: 1.3rem;
    color: white !important;
    margin-bottom: 0.8rem;
    font-weight: 800;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-content h3 {
    color: #fff !important;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.6;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-content p {
    color: white !important;
}

.feature-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f);
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-item:hover .feature-border {
    width: 100%;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .features-creative-section {
        padding: 3rem 1.5rem;
    }
    
    .features-header h2 {
        font-size: 2rem;
    }
    
    .features-header p {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 2rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
}

/* ==================== VISION SECTION - NEW DESIGN ==================== */
.vision-section-new {
    background: var(--white);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.vision-title {
    color: var(--primary-blue) !important;
}

.vision-section-new .section-subtitle-new {
    color: #666 !important;
    font-size: 1.15rem;
}

.vision-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Floating background elements for Vision */
.bg-blob-light {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    filter: blur(80px);
    z-index: 1;
    top: 0;
    left: 0;
}

.bg-blob-light-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-blue);
    top: -100px;
    right: -50px;
    animation: blob-float-1 22s ease-in-out infinite;
}

.bg-blob-light-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    bottom: -100px;
    left: 5%;
    animation: blob-float-2 26s ease-in-out infinite reverse;
    animation-delay: 3s;
}

.bg-particle-light {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.particle-light-1 { top: 15%; left: 20%; animation: particle-float 9s ease-in-out infinite; }
.particle-light-2 { top: 50%; right: 15%; animation: particle-float 11s ease-in-out infinite; animation-delay: 1.5s; }
.particle-light-3 { bottom: 20%; left: 8%; animation: particle-float 13s ease-in-out infinite; animation-delay: 3s; }

.vision-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 16px;
    padding: 2.2rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.vision-card-1 { animation-delay: 0.2s; }
.vision-card-2 { animation-delay: 0.4s; }
.vision-card-3 { animation-delay: 0.6s; }
.vision-card-4 { animation-delay: 0.8s; }
.vision-card-5 { animation-delay: 1s; }
.vision-card-6 { animation-delay: 1.2s; }

.vision-card:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 30px 80px rgba(0, 102, 204, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
    background: linear-gradient(135deg, #0052a3 0%, #003399 100%);
}

.vision-icon-badge {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.2rem;
    animation: icon-float 6s ease-in-out infinite;
}

.vision-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}

.vision-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* ==================== MISSION CREATIVE SECTION ==================== */
.mission-creative-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

.mission-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.mission-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.mission-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.mission-main-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 3.5rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.mission-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.18);
}

.mission-card-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.08), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.mission-text-content {
    position: relative;
    z-index: 2;
}

.mission-text-content h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.mission-text-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-cta {
    display: inline-block;
}

.mission-btn {
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mission-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.35);
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pillar-item {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.pillar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--dark-blue), var(--primary-blue));
    transition: left 0.5s ease;
}

.pillar-item:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 30px 80px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.18);
}

.pillar-item:hover::before {
    left: 100%;
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.pillar-item:hover .pillar-icon {
    transform: scale(1.2) rotate(-10deg);
}

.pillar-item h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.pillar-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.mission-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-box {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(0, 102, 204, 0.15);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: #555;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .mission-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-creative-section {
        padding: 3rem 1.5rem;
    }
    
    .mission-header h2 {
        font-size: 2rem;
    }
    
    .mission-main-card {
        padding: 2rem;
    }
    
    .mission-text-content h3 {
        font-size: 1.5rem;
    }
    
    .mission-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==================== MISSION SECTION - NEW DESIGN ==================== */
.mission-section-new {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.mission-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Floating background elements for Mission */
.bg-blob-mission {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(90px);
    z-index: 1;
}

.bg-blob-mission-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.3);
    top: -150px;
    right: -100px;
    animation: blob-float-1 24s ease-in-out infinite;
}

.bg-blob-mission-2 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.2);
    bottom: -150px;
    left: -100px;
    animation: blob-float-2 28s ease-in-out infinite;
    animation-delay: 4s;
}

.bg-particle-mission {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    z-index: 1;
}

.particle-mission-1 { top: 20%; right: 10%; animation: particle-float 10s ease-in-out infinite; }
.particle-mission-2 { bottom: 25%; left: 15%; animation: particle-float 12s ease-in-out infinite; animation-delay: 2s; }

.mission-content-new {
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
    animation: slideUp 0.8s ease-out;
}

.mission-badge-new {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 2rem;
    animation: slideDown 0.8s ease-out 0.1s both;
}

.mission-title-new {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
    animation: slideDown 0.8s ease-out 0.2s both;
}

.mission-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.mission-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.feature-icon {
    font-size: 2.5rem;
    animation: icon-float 6s ease-in-out infinite;
}

.mission-feature span {
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0.95;
}

.mission-stats-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: slideInUp 0.8s ease-out 0.5s both;
}

.mission-stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.mission-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
}

.mission-stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.mission-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive for What We Do Section */
@media (max-width: 1024px) {
    .capabilities-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .what-we-do-section-new {
        padding: 4rem 1.5rem;
    }
    
    .section-title-new {
        font-size: 2.2rem;
    }
    
    .section-subtitle-new {
        font-size: 1rem;
    }
    
    .capabilities-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .capability-card {
        padding: 2rem;
    }
    
    .card-icon-new {
        font-size: 2.5rem;
    }
}

/* Responsive for Vision Section */
@media (max-width: 768px) {
    .vision-section-new {
        padding: 4rem 1.5rem;
    }
    
    .vision-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .vision-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Responsive for Mission Section */
@media (max-width: 768px) {
    .mission-section-new {
        padding: 4rem 1.5rem;
    }
    
    .mission-title-new {
        font-size: 2.2rem;
    }
    
    .mission-description {
        font-size: 1rem;
    }
    
    .mission-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .mission-stats-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Floating Boxes */
.floating-box-wrapper {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.floating-box {
    position: relative;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(96, 165, 250, 0.5);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
}

.floating-box:hover {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.5) 0%, rgba(59, 130, 246, 0.4) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 35px rgba(96, 165, 250, 0.5);
    transform: scale(1.15);
}

.box-icon {
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.box-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.floating-box-wrapper:hover .box-label {
    color: #e0f2ff;
}

/* Position each box in circle - 6 boxes arranged in circle */
.floating-box-wrapper.box-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: orbit-box-1 20s linear infinite;
}

.floating-box-wrapper.box-2 {
    top: 12.5%;
    right: 6%;
    animation: orbit-box-2 20s linear infinite;
    animation-delay: -3.33s;
}

.floating-box-wrapper.box-3 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: orbit-box-3 20s linear infinite;
    animation-delay: -6.66s;
}

.floating-box-wrapper.box-4 {
    bottom: 12.5%;
    right: 6%;
    animation: orbit-box-4 20s linear infinite;
    animation-delay: -10s;
}

.floating-box-wrapper.box-5 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: orbit-box-5 20s linear infinite;
    animation-delay: -13.33s;
}

.floating-box-wrapper.box-6 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: orbit-box-6 20s linear infinite;
    animation-delay: -16.66s;
}

@keyframes orbit-box-1 {
    0% { top: 0; left: 50%; transform: translateX(-50%); }
    16.66% { top: 12.5%; right: 6%; left: auto; }
    33.33% { top: 50%; right: 0; transform: translateY(-50%); left: auto; }
    50% { bottom: 12.5%; right: 6%; top: auto; }
    66.66% { bottom: 0; left: 50%; transform: translateX(-50%); }
    83.33% { top: 50%; left: 0; transform: translateY(-50%); }
    100% { top: 0; left: 50%; transform: translateX(-50%); }
}

@keyframes orbit-box-2 {
    0% { top: 12.5%; right: 6%; }
    16.66% { top: 50%; right: 0; transform: translateY(-50%); }
    33.33% { bottom: 12.5%; right: 6%; top: auto; }
    50% { bottom: 0; left: 50%; transform: translateX(-50%); right: auto; }
    66.66% { top: 50%; left: 0; transform: translateY(-50%); }
    83.33% { top: 0; left: 50%; transform: translateX(-50%); }
    100% { top: 12.5%; right: 6%; }
}

@keyframes orbit-box-3 {
    0% { top: 50%; right: 0; transform: translateY(-50%); }
    16.66% { bottom: 12.5%; right: 6%; top: auto; }
    33.33% { bottom: 0; left: 50%; transform: translateX(-50%); right: auto; }
    50% { top: 50%; left: 0; transform: translateY(-50%); }
    66.66% { top: 0; left: 50%; transform: translateX(-50%); }
    83.33% { top: 12.5%; right: 6%; left: auto; }
    100% { top: 50%; right: 0; transform: translateY(-50%); }
}

@keyframes orbit-box-4 {
    0% { bottom: 12.5%; right: 6%; }
    16.66% { bottom: 0; left: 50%; transform: translateX(-50%); right: auto; }
    33.33% { top: 50%; left: 0; transform: translateY(-50%); }
    50% { top: 0; left: 50%; transform: translateX(-50%); }
    66.66% { top: 12.5%; right: 6%; left: auto; }
    83.33% { top: 50%; right: 0; transform: translateY(-50%); left: auto; }
    100% { bottom: 12.5%; right: 6%; }
}

@keyframes orbit-box-5 {
    0% { bottom: 0; left: 50%; transform: translateX(-50%); }
    16.66% { top: 50%; left: 0; transform: translateY(-50%); }
    33.33% { top: 0; left: 50%; transform: translateX(-50%); }
    50% { top: 12.5%; right: 6%; left: auto; }
    66.66% { top: 50%; right: 0; transform: translateY(-50%); left: auto; }
    83.33% { bottom: 12.5%; right: 6%; top: auto; }
    100% { bottom: 0; left: 50%; transform: translateX(-50%); }
}

@keyframes orbit-box-6 {
    0% { top: 50%; left: 0; transform: translateY(-50%); }
    16.66% { top: 0; left: 50%; transform: translateX(-50%); }
    33.33% { top: 12.5%; right: 6%; left: auto; }
    50% { top: 50%; right: 0; transform: translateY(-50%); left: auto; }
    66.66% { bottom: 12.5%; right: 6%; top: auto; }
    83.33% { bottom: 0; left: 50%; transform: translateX(-50%); right: auto; }
    100% { top: 50%; left: 0; transform: translateY(-50%); }
}

/* Story Text */
.story-text-new {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-subtitle {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
    animation: slideInRight 0.8s ease-out;
}

.story-paragraph {
    animation: fadeInUp 0.8s ease-out forwards;
}

.story-paragraph:nth-child(2) { animation-delay: 0.1s; }
.story-paragraph:nth-child(3) { animation-delay: 0.2s; }
.story-paragraph:nth-child(4) { animation-delay: 0.3s; }

.story-paragraph p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.story-intro-new {
    font-size: 1.1rem !important;
    color: #e0f2ff !important;
    font-weight: 600 !important;
    background: rgba(255, 255, 255, 0.12);
    padding: 1.5rem;
    border-left: 4px solid #60a5fa;
    border-radius: 8px;
    margin: 0 !important;
    backdrop-filter: blur(10px);
}

.story-paragraph a {
    color: #e0f2ff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.story-paragraph a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Story Stats */
.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 102, 204, 0.1);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 102, 204, 0.02) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out forwards;
}

.stat-item:nth-child(1) { animation-delay: 0.3s; opacity: 0; }
.stat-item:nth-child(2) { animation-delay: 0.4s; opacity: 0; }
.stat-item:nth-child(3) { animation-delay: 0.5s; opacity: 0; }

.stat-item:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15) 0%, rgba(0, 102, 204, 0.08) 100%);
    border-color: rgba(0, 102, 204, 0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ==================== PROBLEM & SOLUTION SECTION ==================== */
/* ==================== WHAT WE DO SECTION ==================== */
.what-we-do-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    text-align: center;
}

.what-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.what-text {
    text-align: left;
}

.what-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
    font-weight: 500;
}

.what-text h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    font-weight: 700;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.capability {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.08);
    transition: all 0.3s ease;
    text-align: left;
    display: flex;
    gap: 1.5rem;
}

.capability:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-blue);
}

.capability-icon {
    font-size: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(0, 102, 204, 0.05) 100%);
    border-radius: 10px;
}

.capability h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.capability p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.what-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    border-top: 4px solid var(--primary-blue);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.2);
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    display: block;
}

.stat-card .stat-value {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.ps-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-list,
.solution-list {
    list-style: none;
    padding: 0;
}

.problem-list li,
.solution-list li {
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.problem-list li::before {
    content: '• ';
    color: #ff6b6b;
    font-weight: bold;
    margin-right: 0.5rem;
}

.solution-list li::before {
    content: '• ';
    color: #10b981;
    font-weight: bold;
    margin-right: 0.5rem;
}

.ps-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
}

/* ==================== VISION SECTION ==================== */
.vision-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.vision-content {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-text h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
    text-align: center;
}

.vision-text > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.vision-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.vision-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.vision-list li:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.vision-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    display: block;
}

.vision-list strong {
    color: var(--white);
    font-size: 1.1rem;
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vision-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.vision-stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.vision-stat h4 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.stat-value {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-light);
    font-size: 0.95rem;
}
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #003d99 50%, #001f4d 100%);
    color: var(--white);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Background Animation Elements */
.hero-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.floating-sphere {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    filter: blur(40px);
}

.sphere-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float-sphere-1 12s ease-in-out infinite;
}

.sphere-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 10%;
    animation: float-sphere-2 15s ease-in-out infinite;
    animation-delay: 2s;
}

.sphere-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: 5%;
    animation: float-sphere-3 18s ease-in-out infinite;
    animation-delay: 4s;
}

.gradient-blob {
    position: absolute;
    opacity: 0.15;
    filter: blur(80px);
}

.blob-top-left {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    animation: float-blob-1 20s ease-in-out infinite;
}

.blob-bottom-right {
    width: 600px;
    height: 600px;
    bottom: -300px;
    right: -300px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.5), transparent);
    animation: float-blob-2 25s ease-in-out infinite;
}

@keyframes float-sphere-1 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-30px) translateX(-20px) scale(1.1); }
}

@keyframes float-sphere-2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(40px) translateX(30px); }
}

@keyframes float-sphere-3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-50px) scale(1.15); }
}

@keyframes float-blob-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -50px); }
}

@keyframes float-blob-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

@keyframes float-blob-custom {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(-40px, -20px) scale(1.08); }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: slideInLeft 0.8s ease-out;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin: 0;
    text-align: left;
    color: var(--white);
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; opacity: 0; }

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    animation: slideUp 0.6s ease-out 0.4s both;
}

/* Illustration Container */
.illustration-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AI Bot */
.ai-bot-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    animation: float 4s ease-in-out infinite;
}

.ai-bot {
    font-size: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: pulse-bot 3s ease-in-out infinite;
}

.bot-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.4), transparent);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
    filter: blur(20px);
}

@keyframes pulse-bot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.floating-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
}

.card-icon {
    font-size: 2rem;
}

.card-1 {
    top: 20px;
    left: 30px;
    animation: float-card-1 5s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    animation: float-card-2 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 40px;
    left: 50px;
    animation: float-card-3 5.5s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes float-card-1 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-20px) translateX(15px); }
}

@keyframes float-card-2 {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-80%) translateX(20px); }
}

@keyframes float-card-3 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(20px) translateX(-15px); }
}

/* Floating Badges Alt */
.floating-badge-alt {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.floating-badge-alt:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.25);
}

.badge-alt-1 {
    top: 15%;
    right: 15%;
    animation: float-badge-alt-1 4s ease-in-out infinite;
}

.badge-alt-2 {
    bottom: 30%;
    left: 10%;
    animation: float-badge-alt-2 5s ease-in-out infinite;
    animation-delay: 0.8s;
}

.badge-alt-3 {
    top: 60%;
    right: 5%;
    animation: float-badge-alt-3 4.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes float-badge-alt-1 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-15px) translateX(10px); }
}

@keyframes float-badge-alt-2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(15px) translateX(-10px); }
}

@keyframes float-badge-alt-3 {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-12px) translateX(8px); }
}

/* Floating Dots */
.floating-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float-dot 3s ease-in-out infinite;
}

.dot-1 {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.dot-2 {
    top: 35%;
    right: 20%;
    width: 8px;
    height: 8px;
    animation-delay: 0.5s;
}

.dot-3 {
    bottom: 20%;
    right: 30%;
    width: 6px;
    height: 6px;
    animation-delay: 1s;
}

.dot-4 {
    bottom: 30%;
    left: 25%;
    width: 9px;
    height: 9px;
    animation-delay: 1.5s;
}

.dot-5 {
    top: 50%;
    right: 5%;
    width: 7px;
    height: 7px;
    animation-delay: 2s;
}

@keyframes float-dot {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-25px) scale(1.2); opacity: 0.8; }
}

/* Orbit Ring */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: rotate-orbit 20s linear infinite;
}

@keyframes rotate-orbit {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    z-index: 2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 0;
    line-height: 1.1;
    animation: slideDown 0.6s ease-out;
    font-weight: 800;
    letter-spacing: -1px;
    text-align: center;
    position: relative;
    z-index: 3;
    visibility: visible;
    opacity: 1;
}

.hero-subtitle-main {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: slideUp 0.6s ease-out 0.2s both;
    line-height: 1.8;
    font-weight: 300;
}

.hero-highlights {
    list-style: none;
    margin-bottom: 2.5rem;
    animation: slideUp 0.6s ease-out 0.3s both;
}

.hero-highlights li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.95;
    font-weight: 500;
}

.icon-check {
    font-size: 1.3rem;
    font-weight: bold;
    color: #10b981;
    background-color: rgba(255, 255, 255, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2rem;
    animation: slideUp 0.6s ease-out 0.5s both;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-large-hero {
    padding: 1.1rem 2.5rem !important;
    font-size: 1.05rem !important;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideUp 0.6s ease-out 0.4s both;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.hero-illustration {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blobAnimation 8s infinite ease-in-out;
    filter: blur(40px);
}

.blob:nth-child(2) {
    animation-delay: 2s;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
}

.blob-1 {
    animation-delay: 0s;
}

.blob-2 {
    animation-delay: 4s;
}

@keyframes blobAnimation {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.briefcase-icon {
    font-size: 6rem;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1));
}

.icon-box {
    font-size: 6rem;
    z-index: 10;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.1));
}

.glow-ring {
    position: absolute;
    width: 350px;
    height: 350px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse-ring 3s infinite ease-out;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.floating-badge {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float-badge 4s infinite ease-in-out;
}

.badge-1 {
    top: 20px;
    right: 40px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 60px;
    left: 40px;
    animation-delay: 2s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-15px) translateX(10px); }
}

/* Floating Icons Animation */
.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.8;
    z-index: 8;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.icon-1 {
    top: 15%;
    right: 15%;
    animation: float-icon-1 4s ease-in-out infinite;
}

.icon-2 {
    top: 60%;
    right: 10%;
    animation: float-icon-2 5s ease-in-out infinite;
    animation-delay: 0.5s;
    font-size: 2rem;
}

.icon-3 {
    bottom: 25%;
    left: 12%;
    animation: float-icon-3 4.5s ease-in-out infinite;
    animation-delay: 1s;
    font-size: 2.2rem;
}

.icon-4 {
    top: 45%;
    left: 8%;
    animation: float-icon-4 5.5s ease-in-out infinite;
    animation-delay: 1.5s;
    font-size: 2.3rem;
}

/* Floating Particles */
.floating-particle {
    position: absolute;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: 5;
}

.particle-1 {
    top: 25%;
    right: 25%;
    animation: float-particle-1 6s ease-in-out infinite;
}

.particle-2 {
    bottom: 30%;
    right: 18%;
    animation: float-particle-2 5.5s ease-in-out infinite;
    animation-delay: 0.8s;
    background: rgba(255, 255, 255, 0.3);
}

.particle-3 {
    top: 55%;
    left: 15%;
    animation: float-particle-3 4.8s ease-in-out infinite;
    animation-delay: 1.2s;
    background: rgba(255, 255, 255, 0.35);
}

/* Icon Float Animations - Different Paths */
@keyframes float-icon-1 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    25% { transform: translateY(-30px) translateX(15px) rotate(5deg); }
    50% { transform: translateY(0) translateX(25px) rotate(0deg); }
    75% { transform: translateY(-20px) translateX(10px) rotate(-5deg); }
}

@keyframes float-icon-2 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    33% { transform: translateY(25px) translateX(-20px) rotate(-8deg); }
    66% { transform: translateY(-15px) translateX(-10px) rotate(8deg); }
}

@keyframes float-icon-3 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    25% { transform: translateY(-25px) translateX(-15px) rotate(6deg); }
    50% { transform: translateY(10px) translateX(-25px) rotate(0deg); }
    75% { transform: translateY(-10px) translateX(-18px) rotate(-6deg); }
}

@keyframes float-icon-4 {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
    35% { transform: translateY(30px) translateX(20px) rotate(7deg); }
    70% { transform: translateY(-20px) translateX(15px) rotate(-7deg); }
}

/* Particle Float Animations */
@keyframes float-particle-1 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-40px) translateX(30px) scale(0.8); }
}

@keyframes float-particle-2 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(35px) translateX(-35px) scale(0.7); }
}

@keyframes float-particle-3 {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-35px) translateX(-30px) scale(0.75); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

a.btn {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

/* Hero CTA links styling */
.cta-link {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.cta-link:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-link.secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-link.secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
}

/* Hero CTA container for spacing */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Paragraph links styling */
p a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

p a:hover {
    opacity: 0.7;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 10px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-blue);
}

.btn-white:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

/* ==================== TRUST/SOCIAL PROOF SECTION ==================== */
.trust-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 50%, var(--light-gray) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.trust-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
}

.trust-blob.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    top: -150px;
    right: -100px;
    animation: float-blob 8s ease-in-out infinite;
}

.trust-blob.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    bottom: -100px;
    left: -100px;
    animation: float-blob 10s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.trust-section .container {
    position: relative;
    z-index: 2;
}

.trust-header {
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease-out;
}

.trust-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 500;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.trust-stat {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(224, 242, 254, 0.5) 100%);
    border-radius: 20px;
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease-out forwards;
}

.trust-stat:nth-child(1) { animation-delay: 0.1s; opacity: 0; }
.trust-stat:nth-child(2) { animation-delay: 0.2s; opacity: 0; }
.trust-stat:nth-child(3) { animation-delay: 0.3s; opacity: 0; }
.trust-stat:nth-child(4) { animation-delay: 0.4s; opacity: 0; }

.trust-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-stat:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary-blue);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
}

.trust-stat:hover::before {
    opacity: 1;
}

.trust-stat:hover .stat-bar {
    width: 100%;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: bounce 2s ease-in-out infinite;
}

.trust-stat:nth-child(1) .stat-icon { animation-delay: 0s; }
.trust-stat:nth-child(2) .stat-icon { animation-delay: 0.3s; }
.trust-stat:nth-child(3) .stat-icon { animation-delay: 0.6s; }
.trust-stat:nth-child(4) .stat-icon { animation-delay: 0.9s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ==================== CREATIVE TRUST SECTION ==================== */
.trust-section-creative {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, #f0f8ff 50%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.trust-creative-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.floating-circle.circle-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    top: -200px;
    right: -100px;
    animation: float 10s ease-in-out infinite;
}

.floating-circle.circle-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    bottom: -150px;
    left: -50px;
    animation: float 12s ease-in-out infinite reverse;
}

.floating-circle.circle-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    top: 50%;
    right: 10%;
    animation: float 15s ease-in-out infinite;
    animation-delay: 2s;
}

.geometric-shape {
    position: absolute;
    opacity: 0.05;
}

.geometric-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-blue), var(--dark-blue));
    top: 20%;
    left: 5%;
    animation: rotate 20s linear infinite;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.geometric-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    bottom: 15%;
    right: 8%;
    animation: rotate 25s linear infinite reverse;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.trust-creative-header {
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
    animation: slideDown 0.8s ease-out;
}

.trust-creative-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.trust-creative-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Creative Stats Cards */
.trust-creative-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 4rem auto;
    max-width: 1400px;
    position: relative;
    z-index: 2;
}

.stat-card {
    position: relative;
    padding: 3rem 2rem;
    border-radius: 20px;
    background: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    animation: slideInUp 0.6s ease-out backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 201, 167, 0.05) 0%, rgba(0, 102, 204, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: var(--dark-blue);
    box-shadow: 0 25px 60px rgba(0, 102, 204, 0.2);
}

.stat-card:hover .stat-card-bg {
    opacity: 1;
}

.stat-icon-box {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
    animation: float 3s ease-in-out infinite;
}

.stat-card:nth-child(1) .stat-icon-box { animation-delay: 0s; }
.stat-card:nth-child(2) .stat-icon-box { animation-delay: 0.3s; }
.stat-card:nth-child(3) .stat-icon-box { animation-delay: 0.6s; }
.stat-card:nth-child(4) .stat-icon-box { animation-delay: 0.9s; }

.stat-icon-large {
    font-size: 2.8rem;
    position: relative;
    z-index: 2;
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.stat-progress-bar {
    height: 6px;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 10px;
    animation: fillBar 1s ease-out forwards;
    width: 0;
}

.stat-card:nth-child(1) .progress-fill { animation-delay: 0.2s; }
.stat-card:nth-child(2) .progress-fill { animation-delay: 0.4s; }
.stat-card:nth-child(3) .progress-fill { animation-delay: 0.6s; }
.stat-card:nth-child(4) .progress-fill { animation-delay: 0.8s; }

@keyframes fillBar {
    to {
        width: 100%;
    }
}

/* Achievement Badges */
.achievement-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.achievement-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.12);
    transition: all 0.4s ease;
    animation: slideInUp 0.6s ease-out backwards;
}

.achievement-badge:nth-child(1) { animation-delay: 0.5s; }
.achievement-badge:nth-child(2) { animation-delay: 0.6s; }
.achievement-badge:nth-child(3) { animation-delay: 0.7s; }

.achievement-badge:hover {
    transform: translateY(-8px) scale(1.1);
    border-color: var(--dark-blue);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.25);
}

.badge-emoji {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.95rem;
}

.achievement-badge:hover .badge-text {
    color: var(--dark-blue);
}

.stat-big {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    margin: 1rem 0;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.trust-stat p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    margin-top: 0.75rem;
}

.stat-bar {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 2px;
    margin-top: 1.5rem;
    transition: width 0.4s ease;
    position: relative;
    z-index: 2;
}

/* Floating stat badges */
.trust-decorations {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.floating-stat-badge {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 102, 204, 0.2);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
}

.badge-1 { animation-delay: 0s; }
.badge-2 { animation-delay: 0.5s; }
.badge-3 { animation-delay: 1s; }

.floating-stat-badge:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(0, 102, 204, 0.1) 100%);
    border-color: var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.2);
}

.trust-brands {
    margin-top: 3rem;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 500;
}

.company-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.logo-item {
    background-color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.logo-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

/* ==================== BEFORE & AFTER SECTION ==================== */
.before-after-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 50%, var(--light-blue) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.before-after-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.ba-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.08;
}

.ba-blob.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    top: -100px;
    right: -100px;
    animation: float-blob 10s ease-in-out infinite;
}

.ba-blob.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    bottom: -50px;
    left: -50px;
    animation: float-blob 12s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.ba-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    animation: fadeInDown 0.8s ease-out;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ba-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideUp 0.6s ease-out forwards;
    overflow: hidden;
}

.before-card {
    animation-delay: 0.1s;
    opacity: 0;
}

.after-card {
    animation-delay: 0.3s;
    opacity: 0;
}

.ba-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.before-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.before-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.3);
}

.before-card:hover .card-glow {
    opacity: 1;
    transform: scale(1.2);
}

.after-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.after-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
}

.after-card:hover .card-glow {
    opacity: 1;
    transform: scale(1.2);
}

.card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.before-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent);
}

.after-glow {
    background: radial-gradient(circle, rgba(96, 165, 250, 0.5), transparent);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.before-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.after-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.card-icon {
    font-size: 2.2rem;
    animation: bounce 2s ease-in-out infinite;
}

.before-card .card-icon {
    animation-delay: 0s;
}

.after-card .card-icon {
    animation-delay: 0.3s;
}

.card-header h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 700;
    position: relative;
    z-index: 2;
    color: var(--white);
}

.before-card h3 {
    color: var(--white);
}

.after-card h3 {
    color: var(--white);
}

.comparison-list {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.comparison-list li {
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-list li:last-child {
    border-bottom: none;
}

.ba-card:hover .comparison-list li {
    transform: translateX(8px);
}

.list-icon {
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.before-card .list-icon {
    color: #e0f2ff;
}

.after-card .list-icon {
    color: #e0f2ff;
}

.divider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.divider {
    width: 3px;
    height: 400px;
    background: linear-gradient(180deg, transparent, var(--primary-blue), var(--primary-blue), var(--primary-blue), transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 102, 204, 0.3);
    animation: slideDown 0.8s ease-out 0.2s both;
}

.divider-icon {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

/* ==================== KEY BENEFITS SECTION ==================== */
.benefits-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.benefits-section .section-title {
    color: var(--white);
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-blob 15s ease-in-out infinite;
    filter: blur(50px);
    box-shadow: 0 0 100px rgba(0, 102, 204, 0.1);
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-blob 12s ease-in-out infinite reverse;
    filter: blur(40px);
    box-shadow: 0 0 80px rgba(0, 102, 204, 0.08);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease-out forwards, float-card 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    color: var(--white);
}

.benefit-item:nth-child(1) { animation-delay: 0.1s, 0.5s; opacity: 0; }
.benefit-item:nth-child(2) { animation-delay: 0.2s, 0.7s; opacity: 0; }
.benefit-item:nth-child(3) { animation-delay: 0.3s, 0.9s; opacity: 0; }
.benefit-item:nth-child(4) { animation-delay: 0.4s, 1.1s; opacity: 0; }
.benefit-item:nth-child(5) { animation-delay: 0.5s, 1.3s; opacity: 0; }
.benefit-item:nth-child(6) { animation-delay: 0.6s, 1.5s; opacity: 0; }

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 20px;
}

.benefit-item::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.4), transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    animation: rotate-glow 8s linear infinite;
}

.benefit-item:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 28px 80px rgba(255, 255, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.18);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item:hover::after {
    opacity: 1;
    top: 10%;
    right: 5%;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(0, 102, 204, 0.08) 100%);
    padding: 1.2rem;
    border-radius: 16px;
    width: fit-content;
    border: 2px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(0, 102, 204, 0.1));
    position: relative;
    z-index: 2;
}

.benefit-item:nth-child(1) .benefit-icon { animation-delay: 0s; }
.benefit-item:nth-child(2) .benefit-icon { animation-delay: 0.2s; }
.benefit-item:nth-child(3) .benefit-icon { animation-delay: 0.4s; }
.benefit-item:nth-child(4) .benefit-icon { animation-delay: 0.6s; }
.benefit-item:nth-child(5) .benefit-icon { animation-delay: 0.8s; }
.benefit-item:nth-child(6) .benefit-icon { animation-delay: 1s; }

.benefit-item:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(0, 102, 204, 0.3);
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.benefit-link {
    color: #e0f2ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.benefit-link:hover {
    color: var(--dark-blue);
    transform: translateX(5px);
}

/* ==================== SERVICES FEATURES SECTION ==================== */
.services-features-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.services-features-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.12), transparent 70%);
    border-radius: 50%;
    animation: float-blob-1 25s infinite ease-in-out;
    z-index: 0;
    filter: blur(60px);
    box-shadow: 0 0 120px rgba(0, 102, 204, 0.08);
}

.services-features-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -8%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1), transparent 70%);
    border-radius: 50%;
    animation: float-blob-2 20s infinite ease-in-out;
    z-index: 0;
    filter: blur(50px);
    box-shadow: 0 0 100px rgba(0, 102, 204, 0.06);
}

.services-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.service-feature-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: slideUp 0.6s ease-out forwards, float-card 3.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    color: var(--white);
}

.service-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 204, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 20px;
}

.service-feature-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -20%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.5), transparent 65%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 0;
    filter: blur(35px);
    pointer-events: none;
}

.service-feature-card:nth-child(1) { animation-delay: 0.1s, 0.6s; opacity: 0; }
.service-feature-card:nth-child(2) { animation-delay: 0.2s, 0.8s; opacity: 0; }
.service-feature-card:nth-child(3) { animation-delay: 0.3s, 1s; opacity: 0; }
.service-feature-card:nth-child(4) { animation-delay: 0.4s, 1.2s; opacity: 0; }
.service-feature-card:nth-child(5) { animation-delay: 0.5s, 1.4s; opacity: 0; }
.service-feature-card:nth-child(6) { animation-delay: 0.6s, 1.6s; opacity: 0; }

.service-feature-card:hover {
    transform: translateY(-20px) scale(1.06);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    box-shadow: 0 28px 80px rgba(0, 102, 204, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-feature-card:hover::before {
    opacity: 1;
}

.service-feature-card:hover::after {
    opacity: 1;
    transform: translateY(-15px);
}

.service-feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bounce 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.service-feature-card:nth-child(1) .service-feature-icon { animation-delay: 0s; }
.service-feature-card:nth-child(2) .service-feature-icon { animation-delay: 0.2s; }
.service-feature-card:nth-child(3) .service-feature-icon { animation-delay: 0.4s; }
.service-feature-card:nth-child(4) .service-feature-icon { animation-delay: 0.6s; }
.service-feature-card:nth-child(5) .service-feature-icon { animation-delay: 0.8s; }
.service-feature-card:nth-child(6) .service-feature-icon { animation-delay: 1s; }

.service-feature-card:hover .service-feature-icon {
    transform: scale(1.2) rotate(15deg);
}

.service-feature-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.service-feature-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: left;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
    border-left: 4px solid var(--primary-blue);
    padding-left: 1rem;
}

.testimonial-author {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 600;
}
.features {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
    font-weight: 700;
    position: relative;
    z-index: 10;
    visibility: visible;
    opacity: 1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transition: width 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== PROCESS SECTION ==================== */
.process-section,
.how-it-works {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.process-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step,
.step-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 1px solid var(--light-blue);
    transition: all 0.3s ease;
}

.process-step:hover,
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.process-step::after,
.step-card::after {
    content: '→';
    position: absolute;
    right: -2.5rem;
    top: 50%;
    font-size: 2rem;
    color: var(--primary-blue);
    transform: translateY(-50%);
    font-weight: bold;
}

.process-step:last-child::after,
.step-card:last-child::after {
    display: none;
}

.step-number {
    font-size: 3rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
}

.process-step h3,
.step-card h3 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.process-step p,
.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== VALUES GRID ==================== */
/* ==================== CORE VALUES CREATIVE SECTION ==================== */
.core-values-section {
    background: linear-gradient(135deg, #0052b3 0%, #003d99 100%);
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Floating circles */
.float-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(50px);
    z-index: 1;
}

.float-circle-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.3);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.float-circle-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.25);
    bottom: -50px;
    left: -100px;
    animation: float-reverse 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.values-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.values-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.values-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.value-card-creative {
    background: white;
    border-radius: 18px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(0, 102, 204, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-card-creative::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card-creative:hover {
    transform: translateY(-18px) scale(1.1);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.25);
    border-color: rgba(0, 102, 204, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
}

.value-card-creative:hover::before {
    opacity: 1;
}

.value-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 3s ease-in-out infinite;
}

.value-card-1 .value-card-icon { animation-delay: 0s; }
.value-card-2 .value-card-icon { animation-delay: 0.3s; }
.value-card-3 .value-card-icon { animation-delay: 0.6s; }
.value-card-4 .value-card-icon { animation-delay: 0.9s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.value-card-creative:hover .value-card-icon {
    transform: scale(1.3) rotate(15deg);
    animation: none;
}

.value-card-creative h3 {
    font-size: 1.4rem;
    color: #0066cc;
    margin-bottom: 1rem;
    font-weight: 800;
    transition: color 0.3s ease;
}

.value-card-creative:hover h3 {
    color: #0052a3;
}

.value-card-creative p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.value-card-creative:hover p {
    color: #555;
}

.card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f);
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-card-creative:hover .card-accent {
    width: 100%;
}

@media (max-width: 1024px) {
    .values-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .core-values-section {
        padding: 3rem 1.5rem;
    }
    
    .values-header h2 {
        font-size: 2rem;
    }
    
    .values-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card-creative {
        padding: 2rem;
    }
    
    .value-card-icon {
        font-size: 3rem;
    }
}

.values-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, rgba(0, 102, 204, 0.03) 100%);
    text-align: center;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
}

.value-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

/* ==================== TEAM SECTION ==================== */
.team-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.team-member {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.08);
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-blue);
}

.member-avatar {
    font-size: 5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.member-content {
    padding: 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-member h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.member-role {
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    color: var(--white);
    margin-left: auto;
    margin-right: auto;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.member-socials {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
}

.member-socials a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
}

.member-socials a:hover {
    background: rgba(0, 102, 204, 0.1);
    color: var(--dark-blue);
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-icon {
    font-size: 4.5rem;
    text-align: center;
    animation: float 3s infinite ease-in-out;
}

.service-content h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    padding-left: 2.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.3rem;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-works {
    position: relative;
    padding: 5rem 0;
    background: #ffffff;
    overflow: hidden;
}

.how-works-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: #0066cc;
    top: -150px;
    right: 10%;
    animation: float 15s ease-in-out infinite;
}

.glow-2 {
    width: 250px;
    height: 250px;
    background: #6bcf7f;
    bottom: -100px;
    left: 5%;
    animation: float-reverse 18s ease-in-out infinite;
}

.section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3.5rem;
    animation: slideUp 0.8s ease-out;
}

.section-h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0052b3;
    margin-bottom: 0.8rem;
}

.section-p {
    font-size: 1.1rem;
    color: #666;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.step-card {
    background: linear-gradient(135deg, #0066cc, #0052b3);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideUp 0.8s ease-out backwards;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.step-1 { animation-delay: 0.1s; }
.step-2 { animation-delay: 0.2s; }
.step-3 { animation-delay: 0.3s; }
.step-4 { animation-delay: 0.4s; }

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffeb3b, #6bcf7f, #ffeb3b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 102, 204, 0.3);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.step-2 .step-icon { animation-delay: 0.3s; }
.step-3 .step-icon { animation-delay: 0.6s; }
.step-4 .step-icon { animation-delay: 0.9s; }

.step-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.step-card:hover h3 {
    color: #ffeb3b;
}

.step-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-number {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 235, 59, 0.4);
}

.step-card:hover .step-number {
    transform: scale(1.15) rotate(10deg);
    background: rgba(255, 235, 59, 0.3);
    border-color: #ffeb3b;
}

.how-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.btn-start,
.btn-demo {
    padding: 0.9rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideUp 0.8s ease-out 0.5s backwards;
}

.btn-start {
    background: linear-gradient(135deg, #0066cc, #0052b3);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.btn-start:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.5);
}

.btn-demo {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-demo:hover {
    background: rgba(0, 102, 204, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .section-h2 {
        font-size: 2.2rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .step-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .how-works {
        padding: 3rem 0;
    }

    .section-h2 {
        font-size: 1.8rem;
    }

    .section-p {
        font-size: 0.95rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .step-card {
        padding: 1.2rem;
    }

    .step-icon {
        font-size: 2.2rem;
    }

    .step-card h3 {
        font-size: 1.1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 1rem;
        right: 1rem;
    }

    .how-cta {
        gap: 1rem;
    }

    .btn-start,
    .btn-demo {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 140px;
    }
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    font-weight: 700;
}

.pricing-price {
    font-size: 3rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.pricing-period {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding-left: 2rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.stat-number {
    font-size: 2.8rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 1rem;
}

/* ==================== MISSION SECTION ==================== */
.mission-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-text {
    text-align: left;
}

.mission-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(0, 102, 204, 0.1) 100%);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.mission-text p {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.mission-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(0, 102, 204, 0.1);
    transform: translateX(5px);
}

.highlight-icon {
    font-size: 1.5rem;
    display: inline-block;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-blue);
}

.stat-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.2rem;
    color: var(--primary-blue);
    font-weight: 800;
    display: block;
}

.stat-label {
    color: var(--text-light);
    margin-top: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ==================== JOURNEY TIMELINE SECTION ==================== */
.journey-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--white) 100%);
}

.timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue) 0%, var(--light-blue) 100%);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-left: 50%;
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 0;
    padding-right: 50%;
}

.timeline-date {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-blue);
    transform: scale(1.02);
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline circle markers */
.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: var(--primary-blue);
    border: 4px solid var(--white);
    border-radius: 50%;
    top: 1.5rem;
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.2);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-floating-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float-blob-custom 15s infinite ease-in-out;
    opacity: 0.15;
}

.cta-floating-blob.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4), transparent);
    top: -100px;
    right: -100px;
    animation: float-blob-custom 20s infinite ease-in-out;
}

.cta-floating-blob.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.3), transparent);
    bottom: -80px;
    left: -80px;
    animation: float-blob-custom 18s infinite ease-in-out reverse;
}

.cta-floating-blob.blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    top: 50%;
    right: 10%;
    animation: float-blob-custom 22s infinite ease-in-out 3s;
}

.cta-glow-orb {
    position: absolute;
    border-radius: 50%;
    animation: pulse-glow 4s infinite ease-in-out;
    opacity: 0.2;
}

.cta-glow-orb.glow-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent);
    top: 20%;
    left: 10%;
    filter: blur(30px);
    animation: pulse-glow 3.5s infinite ease-in-out;
}

.cta-glow-orb.glow-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.8), transparent);
    bottom: 15%;
    right: 15%;
    filter: blur(25px);
    animation: pulse-glow 4.5s infinite ease-in-out 1.5s;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float-blob-1 25s infinite ease-in-out;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    animation: float-blob-2 20s infinite ease-in-out reverse;
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 5;
    max-width: 800px;
}

.cta-content {
    animation: slideInUp 0.8s ease-out;
    backdrop-filter: blur(5px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
    animation: slideInDown 0.8s ease-out;
    color: var(--white) !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    position: relative;
    z-index: 3;
}

.cta-section h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6, transparent);
    margin: 1.5rem auto 0;
    border-radius: 2px;
    animation: slideInRight 0.8s ease-out 0.2s forwards;
    opacity: 0;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.6);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--white) !important;
    line-height: 1.9;
    animation: slideInUp 0.8s ease-out 0.1s forwards;
    opacity: 1;
    position: relative;
    z-index: 3;
}

.cta-button {
    position: relative;
    z-index: 3;
    animation: slideInUp 0.8s ease-out 0.2s forwards;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white) !important;
    color: var(--primary-blue) !important;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    opacity: 1;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.3) !important;
    background: #f0f9ff !important;
}

/* ==================== RESPONSIVE - CTA SECTION ==================== */
@media (max-width: 1024px) {
    .cta-section {
        padding: 6rem 2rem;
        min-height: 500px;
    }

    .cta-section h2 {
        font-size: 2.4rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .cta-floating-blob.blob-1 {
        width: 350px;
        height: 350px;
    }

    .cta-floating-blob.blob-2 {
        width: 300px;
        height: 300px;
    }

    .cta-floating-blob.blob-3 {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 1.5rem;
        min-height: 450px;
    }

    .cta-content {
        padding: 2rem;
        border-radius: 16px;
    }

    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .cta-section h2::after {
        width: 80px;
    }

    .cta-section p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .cta-floating-blob.blob-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        right: -50px;
    }

    .cta-floating-blob.blob-2 {
        width: 200px;
        height: 200px;
        bottom: -40px;
        left: -40px;
    }

    .cta-floating-blob.blob-3 {
        display: none;
    }

    .cta-glow-orb.glow-1 {
        width: 150px;
        height: 150px;
    }

    .cta-glow-orb.glow-2 {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 1rem;
        min-height: 400px;
    }

    .cta-content {
        padding: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .cta-section p {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }

    .cta-floating-blob {
        opacity: 0.08;
    }

    .cta-glow-orb {
        opacity: 0.1;
    }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-box,
.contact-info-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-box h2,
.contact-info-box h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px var(--light-blue);
}

.info-card {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.info-card:last-child {
    border-bottom: none;
}

.info-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--dark-blue);
    text-decoration: underline;
}

.social-links h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 5%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.06), transparent);
    border-radius: 50%;
    animation: float-blob-2 25s infinite ease-in-out;
    z-index: 0;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05), transparent);
    border-radius: 50%;
    animation: float-blob-1 20s infinite ease-in-out;
    z-index: 0;
}

.faq-container {
    max-width: 100%;
    width: 100%;
    margin: 3rem auto 0;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

.faq-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.accordion-item {
    background-color: var(--white);
    border: 2px solid rgba(0, 102, 204, 0.1);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.08);
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
    position: relative;
}

.accordion-item:nth-child(1) { animation-delay: 0.1s; }
.accordion-item:nth-child(2) { animation-delay: 0.2s; }
.accordion-item:nth-child(3) { animation-delay: 0.3s; }
.accordion-item:nth-child(4) { animation-delay: 0.4s; }
.accordion-item:nth-child(5) { animation-delay: 0.5s; }
.accordion-item:nth-child(6) { animation-delay: 0.6s; }

.accordion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.accordion-item:hover {
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
    transform: translateY(-4px);
}

.accordion-item:hover::before {
    transform: scaleX(1);
}

.accordion-header {
    width: 100%;
    padding: 1.8rem;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.3rem;
    transition: all 0.4s ease;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Lora', serif;
    position: relative;
    z-index: 5;
}

.accordion-header:hover {
    background-color: rgba(0, 102, 204, 0.03);
}

.accordion-item.active .accordion-header {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.06) 0%, var(--white) 100%);
    color: var(--primary-blue);
}

.faq-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    min-width: 50px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(0, 102, 204, 0.05));
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accordion-item:hover .faq-number {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2), rgba(0, 102, 204, 0.1));
    transform: scale(1.1);
}

.faq-question {
    flex: 1;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
}

.accordion-icon {
    font-size: 1.8rem;
    color: var(--primary-blue);
    font-weight: 700;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 30px;
    text-align: center;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg) scale(1.2);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: var(--white);
    border-top: 2px solid rgba(0, 102, 204, 0.1);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 2rem 2rem 2rem;
    animation: slideInDown 0.4s ease-out;
}

.accordion-content p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 0.95rem;
    margin: 0;
    padding-top: 0.5rem;
    animation: slideInUp 0.4s ease-out 0.1s both;
}

/* ==================== FAQ RESPONSIVE ==================== */
/* Desktop - 2 Column Layout */
@media (min-width: 1025px) {
    .faq-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .faq-container {
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .accordion-header {
        padding: 1.6rem;
        gap: 1rem;
    }

    .accordion-item.active .accordion-content {
        max-height: 600px;
    }
}

/* Tablet - Switch to 1 Column */
@media (max-width: 768px) {
    .faq-section {
        padding: 6rem 0;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .accordion-header {
        padding: 1.5rem;
        font-size: 0.95rem;
    }

    .faq-number {
        font-size: 1.2rem;
        width: 45px;
        height: 45px;
    }

    .faq-question {
        font-size: 1rem;
    }

    .accordion-icon {
        font-size: 1.6rem;
    }

    .accordion-item.active .accordion-content {
        max-height: 600px;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.8rem;
        margin-top: 2rem;
    }

    .accordion-header {
        padding: 1.3rem 1rem;
        font-size: 0.9rem;
        gap: 0.8rem;
    }

    .faq-number {
        font-size: 1rem;
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .faq-question {
        font-size: 0.95rem;
        font-weight: 500;
    }

    .accordion-icon {
        font-size: 1.4rem;
    }

    .accordion-item.active .accordion-content {
        max-height: 600px;
        padding: 0 1rem 1rem 1rem;
    }

    .accordion-content p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* ==================== OLD FAQ GRID - DEPRECATED - USE FAQ-CONTAINER INSTEAD ==================== */
/* .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: var(--white);
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.08);
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
    position: relative;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}

.faq-item:hover {
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
    transform: translateY(-4px);
}

.faq-item:hover::before {
    transform: scaleX(1);
}
*/

/* ==================== FOOTER ==================== */
/* ==================== CREATIVE FOOTER ==================== */
.footer-creative {
    background: linear-gradient(135deg, #0a1f3f 0%, #1a2f5a 50%, #0d2747 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Background animation elements */
.footer-bg-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(60px);
    z-index: 0;
}

.footer-bg-1 {
    width: 300px;
    height: 300px;
    background: #0066cc;
    top: -100px;
    right: 10%;
    animation: float 10s ease-in-out infinite;
}

.footer-bg-2 {
    width: 200px;
    height: 200px;
    background: #6bcf7f;
    bottom: -50px;
    left: 5%;
    animation: float-reverse 12s ease-in-out infinite;
}

.footer-creative-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section-creative {
    animation: slideUp 0.8s ease-out;
}

.footer-section-creative h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.footer-section-creative h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcf7f);
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-section-creative:hover h4::after {
    width: 100%;
}

.footer-brand-creative {
    max-width: 300px;
}

.footer-logo-wrapper {
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
}

.footer-logo {
    height: 75px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-logo-wrapper:hover .footer-logo {
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(0, 102, 204, 0.5));
    transform: scale(1.1) rotate(5deg);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3) 0%, rgba(107, 207, 127, 0.2) 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: linear-gradient(135deg, #0066cc 0%, #6bcf7f 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #6bcf7f;
    padding-left: 20px;
}

.footer-link:hover::before {
    opacity: 1;
    left: 0;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-creative {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.footer-bottom-creative p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-badge {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3) 0%, rgba(107, 207, 127, 0.2) 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.5) 0%, rgba(107, 207, 127, 0.3) 100%);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .footer-creative {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-creative-content {
        gap: 2rem;
    }
    
    .footer-bottom-creative {
        flex-direction: column;
        text-align: center;
    }
}

.footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(0, 0, 0, 0.95) 100%);
    color: var(--white);
    padding: 4rem 0 1rem;
    position: relative;
    border-top: 2px solid rgba(0, 102, 204, 0.3);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 75px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.footer-brand:hover .footer-logo {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-blue);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

@keyframes float-blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

@keyframes float-blob-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, 40px) scale(1.1);
    }
}

@keyframes float-blob-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(0.95);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
    }

    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .feature-list {
        margin-top: 1rem;
    }

    .feature-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .feature-icon {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .illustration-container {
        height: 350px;
    }

    .ai-bot {
        font-size: 5rem;
    }

    .ai-bot-wrapper {
        width: 120px;
        height: 120px;
    }

    .bot-glow {
        width: 150px;
        height: 150px;
    }

    .floating-card {
        padding: 0.8rem;
        font-size: 0.75rem;
    }

    .card-icon {
        font-size: 1.5rem;
    }

    .orbit-ring {
        width: 200px;
        height: 200px;
    }

    .floating-sphere {
        display: none;
    }

    .gradient-blob {
        display: none;
    }

    .floating-dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 1rem;
        box-shadow: var(--shadow-md);
        gap: 1rem;
    }

    .trust-section {
        padding: 4rem 0;
    }

    .trust-stats {
        gap: 1.5rem;
    }

    .trust-stat {
        padding: 2rem 1.5rem;
    }

    /* Creative Trust Section Responsive */
    .trust-section-creative {
        padding: 4rem 1rem;
    }

    .trust-creative-title {
        font-size: 2.2rem;
    }

    .trust-creative-subtitle {
        font-size: 1rem;
    }

    .trust-creative-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin: 2rem auto;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .achievement-badges {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .achievement-badge {
        width: 100%;
        justify-content: center;
    }

    .before-after-section {
        padding: 4rem 0;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .divider-container {
        display: none;
    }

    .ba-card {
        padding: 2rem 1.5rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .card-icon {
        font-size: 1.8rem;
    }

    .comparison-list li {
        padding: 0.75rem 0;
        padding-left: 1.5rem;
    }

    .stat-big {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .trust-decorations {
        gap: 1rem;
    }

    .floating-stat-badge {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
    }

    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .feature-list {
        margin-top: 1rem;
    }

    .feature-item {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .feature-icon {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .illustration-container {
        height: 350px;
    }

    .ai-bot {
        font-size: 5rem;
    }

    .ai-bot-wrapper {
        width: 120px;
        height: 120px;
    }

    .bot-glow {
        width: 150px;
        height: 150px;
    }

    .floating-card {
        padding: 0.8rem;
        font-size: 0.75rem;
    }

    .card-icon {
        font-size: 1.5rem;
    }

    .orbit-ring {
        width: 200px;
        height: 200px;
    }

    .floating-sphere {
        display: none;
    }

    .gradient-blob {
        display: none;
    }

    .floating-dot {
        width: 6px;
        height: 6px;
    }

    .story-content-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-section-title {
        font-size: 2rem;
    }

    .story-subtitle {
        font-size: 1.4rem;
    }

    .floating-boxes-container {
        height: 350px;
    }

    .floating-box {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .box-label {
        font-size: 0.8rem;
    }

    .orbit-ring-1 {
        width: 220px;
        height: 220px;
    }

    .orbit-ring-2 {
        width: 300px;
        height: 300px;
    }

    .orbit-ring-3 {
        width: 380px;
        height: 380px;
    }

    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-text {
        font-size: 0.85rem;
    }

    .contact-hero h1,
    .service-hero h1,
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero {
        padding: 4rem 0;
        min-height: 400px;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .hero-blob-1 {
        width: 250px;
        height: 250px;
    }

    .hero-blob-2 {
        width: 200px;
        height: 200px;
    }

    .mission-section {
        grid-template-columns: 1fr;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .mission-text h2 {
        font-size: 1.8rem;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 2.5rem;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item::before {
        left: 0;
    }

    .timeline-content {
        margin-left: 1rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text h2 {
        font-size: 1.8rem;
    }

    .ps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .ps-divider {
        display: none;
    }

    .what-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .what-intro {
        font-size: 1rem;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-text h2 {
        font-size: 1.8rem;
    }

    .service-item,
    .service-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-item.reverse > * {
        direction: ltr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .process-step::after,
    .step-card::after {
        display: none;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .divider {
        display: none;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features-grid,
    .values-grid,
    .team-grid,
    .pricing-grid,
    .process-grid,
    .stats-section,
    .steps-grid,
    .trust-stats,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .btn {
        display: block;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .company-logos {
        flex-direction: column;
    }
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 100%);
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: slideDown 0.8s ease-out 0.1s both;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: center;
    position: relative;
    z-index: 3;
    visibility: visible;
    opacity: 1;
}

/* Creative Blog Hero Section */
.blog-hero-creative {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.blog-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.blog-hero-content .hero-badge-creative {
    animation: slideDown 0.8s ease-out 0s both;
}

.blog-hero-creative .hero-title-creative.blog-title {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, #ffffff 0%, #e0f4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: slideDown 0.8s ease-out 0.1s both;
}

.blog-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-weight: 400;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.blog-buttons {
    animation: slideUp 0.8s ease-out 0.3s both;
}

/* Floating blog icons */
.floating-blog-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.blog-icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.blog-icon-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}

.blog-icon-3 {
    top: 60%;
    left: 8%;
    animation-delay: 2s;
}

.blog-icon-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 1.5s;
}

.blog-icon-5 {
    top: 40%;
    right: 3%;
    animation-delay: 0.5s;
}

.blog-icon-6 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2.5s;
}

.blog-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto 2rem;
    animation: slideUp 0.8s ease-out 0.2s both;
    line-height: 1.7;
    font-weight: 300;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 10;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-blue);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    font-size: 4.5rem;
    transform: scale(1.05);
}

.blog-icon-1, .blog-icon-2, .blog-icon-3, .blog-icon-4, .blog-icon-5, .blog-icon-6 {
    animation: float 3s ease-in-out infinite;
}

.blog-icon-2 { animation-delay: 0.5s; }
.blog-icon-3 { animation-delay: 1s; }
.blog-icon-4 { animation-delay: 1.5s; }
.blog-icon-5 { animation-delay: 2s; }
.blog-icon-6 { animation-delay: 2.5s; }

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.blog-category {
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(0, 102, 204, 0.1) 100%);
    color: var(--primary-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-category {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

.blog-date {
    color: var(--text-light);
    font-weight: 500;
}

.blog-card .blog-title {
    font-size: 1.4rem;
    color: var(--text-dark) !important;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
    -webkit-text-fill-color: unset;
}

.blog-card:hover .blog-title {
    color: var(--primary-blue);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 102, 204, 0.1);
}

.blog-author {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.read-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    color: var(--dark-blue);
    transform: translateX(5px);
}

/* ==================== HEADING ANIMATIONS ==================== */

/* Main heading animation - fade in with slide down effect */
@keyframes animateHeadingEntrance {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        letter-spacing: 2px;
    }
    50% {
        letter-spacing: 1px;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: inherit;
    }
}

/* Subheading animation - fade in with slide up effect */
@keyframes animateSubheadingEntrance {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations to heading classes */
.animate-heading {
    animation: animateHeadingEntrance 0.8s ease-out 0.2s both;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    visibility: visible;
    opacity: 1;
}

.animate-subheading {
    animation: animateSubheadingEntrance 0.8s ease-out 0.3s both;
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    visibility: visible;
    opacity: 1;
}

/* Optional: Add a subtle underline animation on hover for headings */
.animate-heading::after,
.animate-subheading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transition: width 0.4s ease;
}

.animate-heading:hover::after,
.animate-subheading:hover::after {
    width: 100%;
}

/* ==================== NEWSLETTER SECTION ==================== */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

.newsletter-content {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.newsletter-form button {
    padding: 1rem 2rem !important;
    white-space: nowrap;
}

/* ==================== BLOG RESPONSIVE ==================== */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 1.2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }

    .newsletter-content h2 {
        font-size: 1.5rem;
    }
}
/* ==================== TESTIMONIALS SLIDER SECTION ==================== */

.testimonials-slider-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-slider-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-blob-1 25s infinite ease-in-out;
}

.testimonials-slider-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-blob-2 20s infinite ease-in-out;
}

.testimonials-title {
    font-size: 3.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 900;
    position: relative;
    z-index: 2;
    visibility: visible;
    opacity: 1;
    display: block;
    animation: slideInDown 0.8s ease-out;
}

.testimonials-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
    animation: slideInUp 0.8s ease-out 0.1s forwards;
    opacity: 0;
}

.testimonials-slider-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    z-index: 3;
}

.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-slider {
    display: flex;
    width: 100%;
    gap: 2rem;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 1.33rem);
    opacity: 1;
    visibility: visible;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
    animation: slideUp 0.6s ease-out forwards;
}

.testimonial-slide:nth-child(1) { animation-delay: 0s; }
.testimonial-slide:nth-child(2) { animation-delay: 0.1s; }
.testimonial-slide:nth-child(3) { animation-delay: 0.2s; }
.testimonial-slide:nth-child(4) { animation-delay: 0.3s; }

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--white);
    box-shadow: 0 8px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    font-size: 2rem;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.3);
    transition: all 0.4s ease;
    animation: scaleIn 0.6s ease-out;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 40px rgba(74, 222, 128, 0.5);
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.5px;
    animation: slideInLeft 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.testimonial-role {
    font-size: 0.8rem;
    color: #93c5fd;
    font-weight: 600;
    margin-bottom: 0.2rem;
    animation: slideInLeft 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.testimonial-company {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
    animation: slideInLeft 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

.testimonial-rating {
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #fbbf24;
    font-weight: 700;
    animation: scaleIn 0.6s ease-out 0.4s forwards;
    opacity: 0;
}

.testimonial-quote {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    border-left: 3px solid #60a5fa;
    padding-left: 1rem;
    position: relative;
    animation: slideInRight 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -0.8rem;
    font-size: 2rem;
    color: rgba(96, 165, 250, 0.2);
    font-style: normal;
}

.testimonial-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

.detail-item:nth-child(1) { animation-delay: 0.3s; }
.detail-item:nth-child(2) { animation-delay: 0.4s; }
.detail-item:nth-child(3) { animation-delay: 0.5s; }

.detail-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.4rem;
    font-weight: 700;
    opacity: 0.9;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 4;
    animation: slideUp 0.6s ease-out 0.6s forwards;
    opacity: 0;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.slider-arrow:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 4;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.3) translateY(-4px);
}

.dot.active {
    background: var(--white);
    border-color: var(--white);
    width: 16px;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

/* ==================== TESTIMONIALS RESPONSIVE ==================== */

@media (max-width: 1200px) {
    .testimonial-slide {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testimonials-slider-section {
        padding: 4rem 0;
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .testimonials-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .testimonials-slider-container {
        max-width: 100%;
    }

    .testimonials-slider {
        gap: 1rem;
        padding: 0 1rem;
    }

    .testimonial-slide {
        flex: 0 0 calc(100% - 1rem);
    }

    .testimonial-card {
        padding: 2rem;
        min-height: auto;
        aspect-ratio: auto;
    }

    .testimonial-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .testimonial-quote {
        font-size: 0.85rem;
        padding-left: 1rem;
        margin-bottom: 1.2rem;
    }

    .testimonial-details {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 1rem;
    }

    .detail-label {
        font-size: 0.6rem;
        margin-bottom: 0.3rem;
    }

    .detail-value {
        font-size: 0.85rem;
    }

    .slider-controls {
        gap: 1.5rem;
    }

    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .slider-dots {
        gap: 0.8rem;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}

/* ==================== SERVICES PAGE STYLING ==================== */

/* ==================== SERVICES HERO CREATIVE ==================== */
.services-hero-creative {
    padding: 7rem 0;
    background: linear-gradient(135deg, #0066cc 0%, #003d99 50%, #001f4d 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background floating circles */
.hero-float-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    filter: blur(80px);
    z-index: 0;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: #ffffff;
    top: -100px;
    right: 5%;
    animation: float 12s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: #6bcf7f;
    bottom: -50px;
    left: 10%;
    animation: float-reverse 14s ease-in-out infinite;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: #ffd93d;
    top: 50%;
    right: 15%;
    animation: float 16s ease-in-out infinite 2s;
}

/* Floating icon elements */
.hero-floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.15;
    z-index: 0;
    animation: float-icon 6s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    font-size: 2.5rem;
}

.icon-2 {
    top: 20%;
    right: 8%;
    animation-delay: 0.5s;
    font-size: 2rem;
}

.icon-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 1s;
    font-size: 2.2rem;
}

.icon-4 {
    top: 50%;
    right: 5%;
    animation-delay: 1.5s;
    font-size: 2rem;
}

.icon-5 {
    bottom: 20%;
    right: 12%;
    animation-delay: 2s;
    font-size: 2.3rem;
}

.icon-6 {
    top: 30%;
    left: 2%;
    animation-delay: 2.5s;
    font-size: 2.1rem;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(20px) rotate(10deg);
    }
}

/* Hero content */
.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

.hero-badge-creative {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.2) 0%, rgba(107, 207, 127, 0.15) 100%);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.hero-badge-creative:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.3) 0%, rgba(107, 207, 127, 0.25) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.3);
}

.badge-icon {
    font-size: 1.1rem;
    display: inline-block;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-title-creative {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, #ffffff 0%, #e0f4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle-creative {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Creative buttons */
.hero-buttons-creative {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.btn-primary-creative {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.btn-primary-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-creative:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary-creative:hover::before {
    left: 100%;
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.btn-primary-creative:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary-creative {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary-creative:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .services-hero-creative {
        padding: 4rem 0;
        min-height: 400px;
    }

    .hero-title-creative {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle-creative {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons-creative {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary-creative,
    .btn-secondary-creative {
        width: 100%;
        justify-content: center;
    }

    .circle-1 {
        width: 250px;
        height: 250px;
    }

    .circle-2 {
        width: 200px;
        height: 200px;
    }

    .circle-3 {
        width: 150px;
        height: 150px;
    }
}

.services-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-hero .hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.services-hero .hero-content {
    text-align: center;
}

.services-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-align: center;
    position: relative;
    z-index: 3;
    visibility: visible;
    opacity: 1;
    display: block;
}

.services-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* ==================== SERVICES GRID SECTION CREATIVE ==================== */
.services-grid-section-creative {
    padding: 7rem 0;
    background: linear-gradient(180deg, #f5f5f5 0%, #e8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.section-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(80px);
}

.section-circle-1 {
    width: 400px;
    height: 400px;
    background: #0066cc;
    top: -100px;
    right: 10%;
    animation: float 15s ease-in-out infinite;
}

.section-circle-2 {
    width: 350px;
    height: 350px;
    background: #6bcf7f;
    bottom: -50px;
    left: 5%;
    animation: float-reverse 18s ease-in-out infinite;
}

.section-header-creative {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 4rem;
}

.section-title-creative {
    font-size: 3rem;
    font-weight: 900;
    color: #003d99;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle-creative {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-subtitle-creative a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.section-subtitle-creative a:hover {
    border-bottom-color: #0066cc;
    color: #003d99;
}

/* Services Grid */
.services-grid-creative {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Service Card Creative */
.service-card-creative {
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 25px rgba(0, 102, 204, 0.2);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(107, 207, 127, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card-creative:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #0066cc 0%, #004aa3 100%);
}

.service-card-creative:hover .service-card-bg {
    opacity: 1;
}

.service-icon-circle {
    font-size: 3rem;
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-card-creative:hover .service-icon-circle {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.service-number-creative {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    transition: all 0.4s ease;
}

.service-card-creative:hover .service-number-creative {
    color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.service-title-creative {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin: 1rem 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card-creative:hover .service-title-creative {
    color: #e0f0ff;
}

.service-description-creative {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.service-description-creative a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-description-creative a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.service-features-creative {
    list-style: none;
    margin: 1.5rem 0 0;
    position: relative;
    z-index: 2;
}

.service-features-creative li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.service-card-creative:hover .feature-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.4);
}

.service-card-creative:hover .service-features-creative li {
    padding-left: 8px;
}

/* Service hover line */
.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #ffeb3b, #ffffff);
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.service-card-creative:hover .service-hover-line {
    width: 100%;
}

@media (max-width: 768px) {
    .services-grid-section-creative {
        padding: 4rem 0;
    }

    .section-title-creative {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle-creative {
        font-size: 1rem;
    }

    .services-grid-creative {
        gap: 1.5rem;
    }

    .service-card-creative {
        padding: 2rem;
    }

    .service-icon-circle {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .service-number-creative {
        font-size: 2.5rem;
    }
}

/* ==================== SERVICES GRID SECTION ==================== */
.services-grid-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-blue) 100%);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.2);
    border-color: var(--primary-blue);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(0, 102, 204, 0.08);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.service-icon-box {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, rgba(0, 102, 204, 0.05) 100%);
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Service Benefits Section */
.service-benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
}

.service-benefits-section .section-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 10;
    visibility: visible;
    opacity: 1;
    text-align: center;
}

.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-8px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Services Responsive */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-number {
        font-size: 2.5rem;
    }

    .benefits-showcase {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

/* ==================== TESTIMONIALS RESPONSIVE ==================== */

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-avatar {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .testimonial-name {
        font-size: 1.1rem;
    }

    .testimonial-quote {
        font-size: 0.9rem;
        padding-left: 1rem;
    }

    .testimonial-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Blog Card Link Styling */
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-link:hover {
    transform: translateY(-5px);
}

.blog-card-link:hover .blog-card {
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

/* ==================== Blog Post Pages Styling ==================== */

/* Blog Post Hero Section */
.blog-post-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #003d99 0%, #0066cc 50%, #1a4d99 100%);
    overflow: hidden;
    padding: 4rem 2rem;
    margin-top: 60px;
    width: 100%;
}

.blog-post-hero .container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.blog-post-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224, 242, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.blog-post-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(224, 242, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite 1s;
}

.blog-post-header {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 100%;
    width: 100%;
    animation: fadeInDown 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blog-post-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
}

.blog-post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-post-meta span::before {
    content: '•';
    margin-right: 0.5rem;
}

.blog-post-meta span:first-child::before {
    content: '';
    margin-right: 0;
}

/* Blog Post Content Section */
.blog-post-content {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.post-article {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-featured-image {
    width: 100%;
    margin: 0 0 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15);
}

.featured-image-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.post-article p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.post-article h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #003d99;
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0066cc;
    animation: slideDown 0.6s ease-out;
}

.post-article h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0066cc;
    margin: 2rem 0 1rem;
}

.post-article ul,
.post-article ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-article li {
    margin-bottom: 0.8rem;
    color: #555;
}

.post-article li strong {
    color: #003d99;
}

/* Related Blog Posts Section */
.related-posts {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #e0f2ff 0%, #f0f7ff 100%);
}

.related-posts .container {
    max-width: 1200px;
}

.related-posts h2 {
    font-size: 2.5rem;
    text-align: center;
    color: #003d99;
    margin-bottom: 3rem;
    font-weight: 800;
    animation: fadeInUp 0.8s ease-out;
}

.related-posts .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-posts .blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #0066cc;
}

.related-posts .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2);
}

.related-posts .blog-image {
    height: 200px;
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: all 0.3s ease;
}

.related-posts .blog-card:hover .blog-image {
    background: linear-gradient(135deg, #003d99 0%, #0066cc 100%);
}

.related-posts .blog-content {
    padding: 1.5rem;
}

.related-posts .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.related-posts .blog-category {
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
}

.related-posts .blog-date {
    color: #0066cc;
    font-weight: 600;
}

.related-posts .blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #003d99;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-posts .blog-card:hover .blog-title {
    color: #0066cc;
}

.related-posts .blog-excerpt {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.related-posts .read-more {
    color: #0066cc;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.related-posts .read-more:hover {
    color: #003d99;
    transform: translateX(5px);
}



/* Responsive Design for Blog Post Pages */
@media (max-width: 768px) {
    .blog-post-hero {
        min-height: 300px;
        padding: 3rem 1.5rem;
    }

    .blog-post-header h1 {
        font-size: 2rem;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 1rem;
        font-size: 0.9rem;
    }

    .post-article {
        font-size: 1rem;
    }

    .post-article h2 {
        font-size: 1.5rem;
    }

    .post-article h3 {
        font-size: 1.2rem;
    }

    .related-posts h2 {
        font-size: 1.8rem;
    }

    .related-posts .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-post-hero {
        padding: 2rem 1rem;
    }

    .blog-post-header h1 {
        font-size: 1.5rem;
    }

    .blog-post-content {
        padding: 2rem 1rem;
    }

    .related-posts {
        padding: 2rem 1rem;
    }

    .post-article {
        font-size: 0.95rem;
    }

    .post-article h2 {
        font-size: 1.3rem;
    }
}

/* ==================== Contact Page Creative Styling ==================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    overflow: hidden;
    padding: 4rem 2rem;
    margin-top: 60px;
}

.contact-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contact-hero .hero-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.contact-hero .hero-blob-1 {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: white;
    animation: float 6s ease-in-out infinite;
}

.contact-hero .hero-blob-2 {
    bottom: -20%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: white;
    animation: float 8s ease-in-out infinite 1s;
}

.contact-hero .floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.6;
    animation: float 5s ease-in-out infinite;
    z-index: 1;
}

.contact-hero .element-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.contact-hero .element-2 {
    top: 20%;
    right: 15%;
    font-size: 2.5rem;
    animation-delay: 1s;
}

.contact-hero .element-3 {
    bottom: 20%;
    left: 5%;
    font-size: 2.8rem;
    animation-delay: 2s;
}

.contact-hero .element-4 {
    bottom: 15%;
    right: 10%;
    font-size: 2.5rem;
    animation-delay: 1.5s;
}

.contact-hero .hero-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
}

.contact-hero .hero-content {
    animation: fadeInDown 0.8s ease-out;
}

.contact-hero .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.contact-hero .hero-divider {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Contact Section */
.contact-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Contact Form Box */
.contact-form-box {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.1);
    border-top: 4px solid #0066cc;
    animation: slideUp 0.6s ease-out;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 1.8rem;
    color: #003d99;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 700;
    color: #003d99;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 2.5rem 0.9rem 1rem;
    border: 2px solid #e0f2ff;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    padding: 1rem 2.5rem 1rem 1rem;
    resize: vertical;
    min-height: 120px;
}

.form-icon {
    position: absolute;
    right: 1rem;
    top: 2.3rem;
    font-size: 1.2rem;
    opacity: 0.6;
}

.form-icon-large {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    font-size: 1.5rem;
    opacity: 0.6;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.form-note {
    text-align: center;
    color: #0066cc;
    font-size: 0.85rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Contact Info Box */
.contact-info-box {
    animation: slideUp 0.6s ease-out 0.1s backwards;
}

.info-header {
    margin-bottom: 2rem;
}

.info-header h2 {
    font-size: 1.8rem;
    color: #003d99;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.info-header p {
    color: #666;
    font-size: 0.95rem;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #0066cc;
    display: flex;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.info-icon {
    font-size: 2rem;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-content h3 {
    color: #003d99;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-content a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #003d99;
}

.quick-response-box {
    background: linear-gradient(135deg, #e0f2ff 0%, #f0f7ff 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid #0066cc;
    text-align: center;
}

.quick-response-box h3 {
    color: #003d99;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.quick-response-box p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.quick-response-box .btn-secondary {
    background: #0066cc;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.quick-response-box .btn-secondary:hover {
    background: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

/* Social Links */
.social-links {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.08);
}

.social-links h3 {
    color: #003d99;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.social-links p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #003d99;
    margin-bottom: 0.8rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* ==================== OLD FAQ GRID FOR CONTACT - DEPRECATED ==================== */
/* .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid #0066cc;
    text-align: center;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.faq-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #003d99;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

*/

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        min-height: 350px;
        padding: 3rem 1.5rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* ==================== BLOG NAVIGATION ==================== */
.blog-nav {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
}

.blog-nav a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.blog-nav a:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.blog-nav a:nth-child(2) {
    background-color: transparent;
    color: var(--primary-blue);
}

.blog-nav a:nth-child(2):hover {
    background-color: var(--light-blue);
    color: var(--dark-blue);
}

.blog-nav-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.blog-nav-links .nav-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-blue);
}

.blog-nav-links .nav-link:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.blog-nav-links .nav-link:nth-child(2) {
    background-color: transparent;
    color: var(--primary-blue);
}

.blog-nav-links .nav-link:nth-child(2):hover {
    background-color: var(--light-blue);
    color: var(--dark-blue);
}

@media (max-width: 480px) {
    .contact-hero {
        min-height: 300px;
        padding: 2rem 1rem;
        margin-top: 70px;
    }

    .contact-hero h1 {
        font-size: 1.5rem;
    }

    .contact-hero p {
        font-size: 0.9rem;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 1.5rem;
    }

    .form-header h2 {
        font-size: 1.4rem;
    }

    .info-header h2 {
        font-size: 1.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .blog-nav-links {
        flex-direction: column;
    }

    .blog-nav-links .nav-link {
        width: 100%;
        text-align: center;
    }
}

/* ==================== AI FEATURES SECTION - CREATIVE ==================== */

.ai-features-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.ai-features-section .section-title {
    color: var(--white);
}

.ai-features-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.15), transparent 70%);
    border-radius: 50%;
    animation: float-blob 20s infinite ease-in-out;
    filter: blur(60px);
    z-index: 0;
}

.ai-features-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.12), transparent 70%);
    border-radius: 50%;
    animation: float-blob 18s infinite ease-in-out reverse;
    filter: blur(50px);
    z-index: 0;
}

.ai-features-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.ai-feature-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    animation: slideUp 0.6s ease-out forwards, float-card 3.2s ease-in-out infinite;
    color: var(--white);
}

.ai-feature-item:nth-child(1) { animation-delay: 0.1s, 0.4s; opacity: 0; }
.ai-feature-item:nth-child(2) { animation-delay: 0.2s, 0.6s; opacity: 0; }
.ai-feature-item:nth-child(3) { animation-delay: 0.3s, 0.8s; opacity: 0; }
.ai-feature-item:nth-child(4) { animation-delay: 0.4s, 1s; opacity: 0; }
.ai-feature-item:nth-child(5) { animation-delay: 0.5s, 1.2s; opacity: 0; }
.ai-feature-item:nth-child(6) { animation-delay: 0.6s, 1.4s; opacity: 0; }

.ai-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.15), transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.feature-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
    position: absolute;
    top: -20px;
    right: 20px;
    z-index: 0;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0;
}

.feature-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.4), transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 0;
    animation: rotate-glow 8s linear infinite;
}

.ai-feature-item:hover {
    transform: translateY(-15px) scale(1.04);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.95) 0%, rgba(0, 102, 204, 0.1) 100%);
    box-shadow: 0 24px 60px rgba(0, 102, 204, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ai-feature-item:hover::before {
    opacity: 1;
}

.ai-feature-item:hover .feature-glow {
    opacity: 1;
    top: 20%;
    right: 10%;
}

/* ==================== AI PROCESS SECTION - CREATIVE ==================== */

.ai-process-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 50%, var(--light-blue) 100%);
    position: relative;
    overflow: hidden;
}

.ai-process-section::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1), transparent 70%);
    border-radius: 50%;
    animation: float-blob-1 25s infinite ease-in-out;
    filter: blur(60px);
    z-index: 0;
}

.ai-process-section::after {
    content: '';
    position: absolute;
    bottom: 5%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.08), transparent 70%);
    border-radius: 50%;
    animation: float-blob-2 22s infinite ease-in-out;
    filter: blur(50px);
    z-index: 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    padding: 0 1.5rem;
    width: 100%;
}

/* Responsive for About Hero Animated Section */
@media (max-width: 1024px) {
    .about-hero-animated {
        min-height: 650px;
        padding: 6rem 2rem;
    }
    
    .hero-title-animated {
        font-size: 3.2rem;
    }
    
    .hero-subtitle-animated {
        font-size: 1.15rem;
    }
    
    .hero-stats-animated {
        gap: 2.5rem;
    }
    
    .stat-value {
        font-size: 2.4rem;
    }
    
    .blob-large { width: 450px; height: 450px; }
    .blob-medium { width: 320px; height: 320px; }
    
    .float-icon {
        font-size: 2rem;
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .about-hero-animated {
        min-height: 550px;
        padding: 4rem 1.5rem;
    }
    
    .hero-badge-animated {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 1.5rem;
    }
    
    .hero-title-animated {
        font-size: 2.4rem;
        margin-bottom: 1rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle-animated {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }
    
    .hero-stats-animated {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2.5rem 0;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-text {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .hero-buttons-animated {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .btn-animated {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .blob-large { width: 350px; height: 350px; opacity: 0.08; }
    .blob-medium { width: 250px; height: 250px; opacity: 0.08; }
    .blob-small { width: 150px; height: 150px; opacity: 0.06; }
    
    .float-icon {
        display: none;
    }
    
    .ring-1 { width: 200px; height: 200px; }
    .ring-2 { width: 300px; height: 300px; }
    .ring-3 { width: 400px; height: 400px; }
}

@media (max-width: 480px) {
    .about-hero-animated {
        min-height: 500px;
        padding: 2.5rem 1rem;
    }
    
    .hero-badge-animated {
        padding: 0.5rem 1rem;
        font-size: 0.65rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }
    
    .hero-title-animated {
        font-size: 1.9rem;
        margin-bottom: 0.8rem;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
    
    .hero-subtitle-animated {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .hero-stats-animated {
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .stat-text {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }
    
    .hero-buttons-animated {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-animated {
        padding: 0.9rem 1.5rem;
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .blob-large { width: 250px; height: 250px; opacity: 0.06; }
    .blob-medium { width: 180px; height: 180px; opacity: 0.05; }
    .blob-small { width: 120px; height: 120px; opacity: 0.04; }
    
    .particle {
        width: 6px;
        height: 6px;
    }
    
    .ring-1 { width: 150px; height: 150px; }
    .ring-2 { width: 220px; height: 220px; }
    .ring-3 { width: 280px; height: 280px; }
}

.timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
    animation: slideInUp 0.6s ease-out forwards;
    opacity: 0;
    align-items: flex-start;
    width: 100%;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }

.timeline-connector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 110px;
    width: 2px;
    height: calc(100% + 2.8rem);
    background: linear-gradient(180deg, var(--primary-blue) 0%, rgba(0, 102, 204, 0.3) 100%);
    z-index: 1;
    display: block;
}

.timeline-connector.final {
    display: none;
}

.process-step-number {
    width: 100px;
    height: 100px;
    min-width: 100px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
}

.timeline-item:nth-child(1) .process-step-number { animation-delay: 0s; }
.timeline-item:nth-child(2) .process-step-number { animation-delay: 0.2s; }
.timeline-item:nth-child(3) .process-step-number { animation-delay: 0.4s; }
.timeline-item:nth-child(4) .process-step-number { animation-delay: 0.6s; }



.process-card {
    display: none;
}

.timeline-item:nth-of-type(2) .image-display-wrapper,
.timeline-item:nth-of-type(4) .image-display-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding-left: 75%;
}

.timeline-item:nth-of-type(1) .image-display-wrapper,
.timeline-item:nth-of-type(3) .image-display-wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-right: 75%;
}

.image-display-wrapper::before {
    display: none;
}

.timeline-item:hover .image-display-wrapper::before {
    opacity: 0;
}

.timeline-feature-image {
    max-width: 400px;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 102, 204, 0.15));
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.timeline-item:hover .timeline-feature-image {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 20px rgba(0, 102, 204, 0.25));
}

.card-image-wrapper {
    display: none;
}

.card-feature-image {
    display: none;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 204, 0.12) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    border-radius: 18px;
}

.process-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    margin: 0;
}

.process-icon {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 3.5rem;
    opacity: 0.1;
    z-index: 0;
    transition: all 0.4s ease;
}

.process-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.98) 0%, rgba(0, 102, 204, 0.15) 100%);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover .process-icon {
    opacity: 0.3;
    font-size: 4rem;
    transform: scale(1.15);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 12px 30px rgba(0, 102, 204, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 12px 40px rgba(0, 102, 204, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE - AI PROCESS SECTION ==================== */

@media (max-width: 1024px) {
    .ai-process-section {
        padding: 6rem 0;
    }

    .process-timeline {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .timeline-item {
        gap: 1.8rem;
    }

    /* FAQ - Tablet Responsive */
    .faq-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }

    .process-step-number {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }

    .timeline-connector {
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
    }
}

@media (max-width: 768px) {
    .ai-process-section {
        padding: 4rem 0;
    }

    .ai-process-section::before,
    .ai-process-section::after {
        display: none;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .process-timeline {
        gap: 2rem;
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .timeline-item {
        gap: 1.2rem;
        align-items: flex-start;
    }

    .timeline-connector {
        display: none;
    }

    .process-step-number {
        width: 75px;
        height: 75px;
        min-width: 75px;
        font-size: 1.8rem;
        flex-shrink: 0;
        box-shadow: 0 10px 25px rgba(0, 102, 204, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .process-card {
        padding: 1.6rem;
        border-radius: 14px;
        min-height: 140px;
    }

    .process-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.7rem;
    }

    .process-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .process-icon {
        font-size: 3rem;
        bottom: 8px;
        right: 12px;
    }

    .process-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .ai-process-section {
        padding: 3rem 0;
    }

    .ai-process-section::before,
    .ai-process-section::after {
        display: none;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .process-timeline {
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 0.8rem;
    }

    .timeline-item {
        gap: 1rem;
        flex-direction: row;
    }

    .timeline-connector {
        display: none;
    }

    .process-step-number {
        width: 65px;
        height: 65px;
        min-width: 65px;
        font-size: 1.4rem;
        flex-shrink: 0;
        box-shadow: 0 8px 20px rgba(0, 102, 204, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .process-card {
        padding: 1.3rem;
        border-radius: 12px;
        min-height: auto;
    }

    .process-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .process-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .process-icon {
        font-size: 2.5rem;
        bottom: 5px;
        right: 8px;
        opacity: 0.05;
    }

    .process-card:hover {
        transform: translateY(-3px) scale(1);
    }
}

    .process-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .process-card p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .process-icon {
        font-size: 2.2rem;
        bottom: 5px;
        right: 8px;
    }

    /* FAQ Section - Mobile Responsive */
    .faq-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .accordion-header {
        padding: 1.5rem;
        font-size: 0.95rem;
        gap: 1rem;
    }

    .faq-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        min-width: 45px;
    }

    .accordion-item {
        gap: 0.8rem;
    }


/* ==================== TOOLS PAGE STYLES ==================== */

/* Tools Hero Section */
.tools-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
    padding: 3rem 0;
}

.tools-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.tools-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.tools-hero .hero-title-creative {
    background: linear-gradient(135deg, #ffffff 0%, #e0f4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--white);
}

.tools-hero .hero-subtitle-creative {
    color: rgba(255, 255, 255, 0.85);
}

/* Tools Showcase Section */
.tools-showcase-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.tools-showcase-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.tools-showcase-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 0;
}

/* Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

/* Tool Card */
.tool-card {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border: none;
    padding: 2.5rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.25);
    animation: slideInUp 0.6s ease-out backwards;
}

.tool-card:nth-child(1) { animation-delay: 0.1s; }
.tool-card:nth-child(2) { animation-delay: 0.2s; }
.tool-card:nth-child(3) { animation-delay: 0.3s; }
.tool-card:nth-child(4) { animation-delay: 0.4s; }
.tool-card:nth-child(5) { animation-delay: 0.5s; }
.tool-card:nth-child(6) { animation-delay: 0.6s; }
.tool-card:nth-child(7) { animation-delay: 0.7s; }
.tool-card:nth-child(8) { animation-delay: 0.8s; }

.tool-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top-right, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 102, 204, 0.35);
}

.tool-card:hover .tool-card-bg {
    opacity: 1;
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.tool-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon {
    font-size: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: iconPulse 2s ease-in-out infinite;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: ring-pulse 2s ease-in-out infinite;
}

.tool-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.tool-card:hover .tool-number {
    color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.tool-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.tool-card:hover .tool-title {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.tool-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tool-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tool-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.check-icon {
    color: #ffffff;
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    animation: checkBounce 0.5s ease-out backwards;
}

.tool-features li:nth-child(1) .check-icon { animation-delay: 0s; }
.tool-features li:nth-child(2) .check-icon { animation-delay: 0.1s; }
.tool-features li:nth-child(3) .check-icon { animation-delay: 0.2s; }
.tool-features li:nth-child(4) .check-icon { animation-delay: 0.3s; }

.tool-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}

.tool-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tool-hover-effect {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tool-card:hover .tool-hover-effect {
    opacity: 1;
    animation: float 6s ease-in-out infinite;
}

/* Tool Section Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.1) translateY(-8px);
    }
}

@keyframes checkBounce {
    from {
        opacity: 0;
        transform: translateX(-20px) scale(0);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Tools Features Section */
.tools-features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.tools-features-section .section-title,
.tools-features-section .section-subtitle {
    color: var(--white);
}

.features-grid-tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-box-tools {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.feature-box-tools:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-tools {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: icon-float 3s ease-in-out infinite;
}

.feature-box-tools h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.feature-box-tools p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* How to Use Section */
.how-to-use-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.use-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
    animation: stat-bounce 2s ease-in-out infinite;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tools CTA Section */
.tools-cta-section {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: blob-float-1 8s ease-in-out infinite;
}

.cta-blob.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-blue);
    top: -100px;
    left: -100px;
}

.cta-blob.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--dark-blue);
    bottom: -50px;
    right: -50px;
    animation: blob-float-2 10s ease-in-out infinite;
}

.cta-blob.blob-3 {
    width: 250px;
    height: 250px;
    background: var(--primary-blue);
    top: 50%;
    right: 10%;
    animation: blob-float-3 12s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for Tools */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tool-card {
        padding: 2rem;
    }

    .tools-hero-content {
        padding: 2rem;
    }

    .use-steps {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }

    /* Blog Hero Responsive */
    .blog-title {
        font-size: 2.5rem;
    }

    .blog-subtitle {
        font-size: 1rem;
    }

    .blog-buttons {
        flex-direction: column;
    }

    .blog-buttons a {
        width: 100%;
    }

    .floating-blog-icon {
        font-size: 1.5rem;
    }
}

/* ==================== TESTIMONIALS GRID - 6 CARDS WITH CREATIVE DESIGN ==================== */

.testimonials-grid-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0ff 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #002d7a;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    width: 100%;
    padding: 0 2rem;
    box-sizing: border-box;
}

.testimonial-card {
    background: linear-gradient(135deg, #003d99 0%, #002d7a 100%);
    border-radius: 20px;
    padding: 1.8rem;
    position: relative;
    overflow: visible;
    box-shadow: 0 10px 35px rgba(0, 61, 153, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.testimonial-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 35px 70px rgba(0, 45, 120, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #002d7a 0%, #001f52 100%);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.avatar {
    font-size: 3.5rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.testimonial-card:hover .avatar {
    transform: scale(1.25) rotate(10deg);
}

.stars {
    font-size: 1.1rem;
    letter-spacing: 3px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.testimonial-card:hover .stars {
    transform: scale(1.2);
}

.quote-mark {
    font-size: 3rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.6);
    opacity: 1;
    margin: -0.5rem 0 0.3rem -0.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: white;
    margin: 0 0 1rem 0;
    flex-grow: 1;
    position: relative;
    z-index: 2;
    max-height: 130px;
    overflow: hidden;
}

.client-info {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.3rem 0;
}

.client-name:hover {
    color: #ffffff;
}

.client-role {
    font-size: 0.85rem;
    color: white;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
}

.client-company {
    font-size: 0.8rem;
    color: white;
    margin: 0;
}

.metric {
    background: rgba(0, 102, 204, 0.2);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.metric:hover {
    background: rgba(0, 102, 204, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
}

.metric-label {
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonials-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-grid-section {
        padding: 3rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.3rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonials-subtitle {
        font-size: 0.95rem;
    }

    .avatar {
        font-size: 2.8rem;
    }

    .quote-mark {
        font-size: 2.2rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .client-name {
        font-size: 1rem;
    }

    .metric {
        padding: 0.8rem;
    }

    .metric-number {
        font-size: 1.5rem;
    }
}