:root {
    --primary-teal: #00a896;
    --dark-teal: #006b5b;
    --navy: #0c2340;
    --light-navy: #1a3a52;
    --accent-orange: #f18f01;
    --light-gray: #f5f7fa;
    --medium-gray: #e1e8ed;
    --dark-gray: #333;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
    --gradient-accent: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Bootstrap color overrides */
    --bs-primary: var(--primary-teal);
    --bs-primary-rgb: 0, 168, 150;
    --bs-secondary: var(--accent-orange);
    --bs-secondary-rgb: 241, 143, 1;
    --bs-light: var(--light-gray);
    --bs-light-rgb: 245, 247, 250;
    --bs-dark: var(--navy);
    --bs-dark-rgb: 12, 35, 64;
    --bs-white: var(--white);
    --bs-gray: var(--medium-gray);
    --bs-gray-rgb: 225, 232, 237;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container now handled by Bootstrap */

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.logo i {
    margin-right: 10px;
    color: var(--primary-teal);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--navy);
    position: relative;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-teal);
}

.cta-button {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile menu toggle removed, using Bootstrap navbar */

/* Modern Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0c2340 0%, #1a3a52 50%, #00a896 100%);
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 100vh;
}

.hero-content {
    color: white;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-main {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #00a896, #f18f01);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.3);
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 168, 150, 0.4);
}

.hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 16px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    display: block;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #00a896, #f18f01);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1) 0%, rgba(241, 143, 1, 0.1) 100%);
    pointer-events: none;
}

/* Floating Cards */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-1 {
    top: 10%;
    right: -20%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    left: -20%;
    animation-delay: 2s;
}

.card-3 {
    top: 60%;
    right: -15%;
    animation-delay: 4s;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 2px;
}

.card-content p {
    font-size: 0.8rem;
    color: var(--dark-gray);
    margin: 0;
}

/* Animated Shapes */
.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(241, 143, 1, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s ease-out 2s both;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin: 0 auto;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(8px);
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--dark-gray);
}

/* About grid now handled by Bootstrap */

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    background: var(--gradient-primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

/* Services grid now handled by Bootstrap */

/* 3D Service Cards - Adapted from Uiverse.io */
.service-parent {
    width: 290px;
    height: 380px;
    perspective: 1000px;
    margin: 0 auto;
}

.service-card-3d {
    height: 100%;
    min-height: 150px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-orange) 50%, var(--dark-teal) 100%);
    transition: all 0.5s ease-in-out;
    transform-style: preserve-3d;
    transform: rotate3d(1, 1, 0, 30deg);
    box-shadow: rgba(0, 168, 150, 0.3) 0px 25px 50px -12px, rgba(241, 143, 1, 0.2) 0px 0px 0px 1px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-glass {
    transform-style: preserve-3d;
    position: absolute;
    inset: 8px;
    border-radius: 55px;
    border-top-right-radius: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(0, 168, 150, 0.1) 100%);
    backdrop-filter: blur(20px);
    transform: translate3d(0px, 0px, 25px);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(0, 168, 150, 0.2);
    transition: all 0.5s ease-in-out;
}

.service-content {
    padding: 100px 60px 0px 30px;
    transform: translate3d(0, 0, 26px);
}

.service-content .service-title {
    display: block;
    color: var(--navy);
    font-weight: 800;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.01em;
}

.service-content .service-text {
    display: block;
    color: var(--dark-gray);
    font-size: 14px;
    margin-top: 0;
    line-height: 1.5;
    font-weight: 400;
    opacity: 0.9;
    text-align: left;
}

.service-bottom {
    padding: 10px 12px;
    transform-style: preserve-3d;
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translate3d(0, 0, 26px);
}

.service-bottom .service-view-more {
    display: flex;
    align-items: center;
    width: 40%;
    justify-content: flex-end;
    transition: all 0.2s ease-in-out;
}

.service-bottom .service-view-more:hover {
    transform: translate3d(0, 0, 10px);
}

.service-bottom .service-view-more .service-view-more-button:hover {
    color: var(--primary-teal);
    text-shadow: 0 0 8px rgba(241, 143, 1, 0.5);
}

.service-bottom .service-view-more:hover .service-svg {
    stroke: var(--primary-teal);
    transform: translateX(3px);
}

.service-bottom .service-view-more .service-view-more-button {
    background: none;
    border: none;
    color: var(--accent-orange);
    font-weight: bolder;
    font-size: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-bottom .service-view-more .service-svg {
    fill: none;
    stroke: var(--accent-orange);
    stroke-width: 3px;
    max-height: 15px;
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-bottom .service-social-buttons {
    display: flex;
    gap: 10px;
    transform-style: preserve-3d;
}

.service-bottom .service-social-buttons .service-social-button {
    width: 30px;
    aspect-ratio: 1;
    padding: 5px;
    background: rgb(255, 255, 255);
    border-radius: 50%;
    border: none;
    display: grid;
    place-content: center;
    box-shadow: rgba(5, 71, 17, 0.5) 0px 7px 5px -5px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #00894d;
    font-size: 12px;
}

.service-bottom .service-social-buttons .service-social-button:first-child {
    transition: transform 0.2s ease-in-out 0.4s, box-shadow 0.2s ease-in-out 0.4s;
}

.service-bottom .service-social-buttons .service-social-button:nth-child(2) {
    transition: transform 0.2s ease-in-out 0.6s, box-shadow 0.2s ease-in-out 0.6s;
}

.service-bottom .service-social-buttons .service-social-button:nth-child(3) {
    transition: transform 0.2s ease-in-out 0.8s, box-shadow 0.2s ease-in-out 0.8s;
}

.service-bottom .service-social-buttons .service-social-button:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-3px);
}

.service-logo {
    position: absolute;
    right: 0;
    top: 0;
    transform-style: preserve-3d;
}

.service-logo .service-circle {
    display: block;
    position: absolute;
    aspect-ratio: 1;
    border-radius: 50%;
    top: 0;
    right: 0;
    box-shadow: rgba(100, 100, 111, 0.2) -10px 10px 20px 0px;
    backdrop-filter: blur(5px);
    background: rgba(0, 168, 150, 0.2);
    transition: all 0.5s ease-in-out;
}

.service-logo .service-circle1 {
    width: 170px;
    transform: translate3d(0, 0, 20px);
    top: 8px;
    right: 8px;
}

.service-logo .service-circle2 {
    width: 140px;
    transform: translate3d(0, 0, 40px);
    top: 10px;
    right: 10px;
    backdrop-filter: blur(1px);
    transition-delay: 0.4s;
}

.service-logo .service-circle3 {
    width: 110px;
    transform: translate3d(0, 0, 60px);
    top: 17px;
    right: 17px;
    transition-delay: 0.8s;
}

.service-logo .service-circle4 {
    width: 80px;
    transform: translate3d(0, 0, 80px);
    top: 23px;
    right: 23px;
    transition-delay: 1.2s;
}

.service-logo .service-circle5 {
    width: 50px;
    transform: translate3d(0, 0, 100px);
    top: 30px;
    right: 30px;
    display: grid;
    place-content: center;
    transition-delay: 1.6s;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-teal);
}

.service-logo .service-circle5 .service-icon-3d {
    color: var(--primary-teal);
    font-size: 20px;
}

/* Reverse hover effect - card rotates back to normal on hover */
.service-parent:hover .service-card-3d {
    transform: rotate3d(1, 1, 0, 0deg);
    box-shadow: rgba(5, 71, 17, 0.3) 30px 50px 25px -40px, rgba(5, 71, 17, 0.1) 0px 25px 30px 0px;
}

.service-parent:hover .service-card-3d .service-bottom .service-social-buttons .service-social-button {
    transform: translate3d(0, 0, 50px);
    box-shadow: rgba(5, 71, 17, 0.2) -5px 20px 10px 0px;
}

.service-parent:hover .service-card-3d .service-logo .service-circle2 {
    transform: translate3d(0, 0, 60px);
}

.service-parent:hover .service-card-3d .service-logo .service-circle3 {
    transform: translate3d(0, 0, 80px);
}

.service-parent:hover .service-card-3d .service-logo .service-circle4 {
    transform: translate3d(0, 0, 100px);
}

.service-parent:hover .service-card-3d .service-logo .service-circle5 {
    transform: translate3d(0, 0, 120px);
}

/* Interactive Process Section */
.interactive-process {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(255, 255, 255, 0.8) 50%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.interactive-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(0, 168, 150, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(241, 143, 1, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-interactive-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

/* Central Hub */
.process-hub {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-core {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-teal) 0%, var(--dark-teal) 70%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(0, 168, 150, 0.6);
    animation: hubPulse 3s ease-in-out infinite;
}

.hub-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.3) 0%, transparent 70%);
    animation: hubGlow 4s ease-in-out infinite alternate;
}

.hub-center {
    position: relative;
    z-index: 2;
}

.hub-icon {
    font-size: 2.5rem;
    color: white;
    animation: hubRotate 8s linear infinite;
}

.hub-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: hubPulseRing 2s ease-in-out infinite;
}

@keyframes hubPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes hubGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.2); }
}

@keyframes hubRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes hubPulseRing {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Interactive Process Nodes */
.process-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.process-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(
        calc(var(--distance) * cos(var(--angle))),
        calc(var(--distance) * sin(var(--angle)))
    );
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-node:hover {
    transform: translate(-50%, -50%) translate(
        calc(var(--distance) * cos(var(--angle))),
        calc(var(--distance) * sin(var(--angle)))
    ) scale(1.2);
}

.process-node.active {
    transform: translate(-50%, -50%) translate(
        calc(var(--distance) * cos(var(--angle))),
        calc(var(--distance) * sin(var(--angle)))
    ) scale(1.3);
}

.node-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
}

.process-node:hover .node-glow,
.process-node.active .node-glow {
    opacity: 1;
    animation: nodeGlow 2s ease-in-out infinite alternate;
}

@keyframes nodeGlow {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0.8; }
}

.node-core {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--accent-orange) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.4);
    transition: all 0.4s ease;
    overflow: hidden;
}

.process-node.active .node-core {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--primary-teal) 100%);
    box-shadow: 0 12px 35px rgba(241, 143, 1, 0.6);
    animation: nodeActive 0.6s ease-out;
}

@keyframes nodeActive {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.node-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
    z-index: 2;
}

.node-icon {
    font-size: 1.4rem;
    color: white;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-node.active .node-icon {
    animation: iconBounce 0.8s ease-out;
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.node-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.node-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.node-particles span:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.node-particles span:nth-child(2) { top: 80%; left: 80%; animation-delay: 0.5s; }
.node-particles span:nth-child(3) { top: 40%; left: 70%; animation-delay: 1s; }
.node-particles span:nth-child(4) { top: 60%; left: 30%; animation-delay: 1.5s; }
.node-particles span:nth-child(5) { top: 10%; left: 90%; animation-delay: 2s; }

.process-node.active .node-particles span {
    animation: particleBurst 1.5s ease-out forwards;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-10px) scale(1.2); opacity: 1; }
}

@keyframes particleBurst {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.node-label {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.node-label span {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.process-node:hover .node-label,
.process-node.active .node-label {
    opacity: 1;
    transform: translateX(-50%) translateY(5px);
}

/* Process Display */
.process-display {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.display-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-orange), var(--primary-teal));
    animation: displayGlow 3s ease-in-out infinite;
}

@keyframes displayGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.display-content {
    position: relative;
    z-index: 2;
}

.display-header {
    text-align: center;
    margin-bottom: 30px;
}

.step-counter {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 15px;
}

.current-step {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.total-steps {
    font-size: 1.2rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.display-title {
    font-size: 2rem;
    color: var(--navy);
    margin: 0;
    font-weight: 700;
}

.display-visual {
    margin: 30px 0;
}

.visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.display-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1) 0%, rgba(241, 143, 1, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.visual-container:hover .image-overlay {
    opacity: 1;
}

.floating-elements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.floating-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: floatingIcon 3s ease-in-out infinite;
}

@keyframes floatingIcon {
    0%, 100% { transform: translate(-50%, -50%) translateY(0) rotate(0deg); }
    50% { transform: translate(-50%, -50%) translateY(-10px) rotate(5deg); }
}

.display-description {
    margin: 30px 0;
}

.display-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 0;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.display-progress {
    margin-top: 40px;
}

.progress-track {
    width: 100%;
    height: 8px;
    background: var(--medium-gray);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-teal), var(--accent-orange));
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 20%;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Interactive Controls */
.process-controls-interactive {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.control-interactive {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--medium-gray);
    border-radius: 25px;
    color: var(--navy);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.control-interactive:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-teal);
}

.control-interactive.prev {
    background: linear-gradient(135deg, var(--primary-teal), var(--dark-teal));
    color: white;
    border-color: var(--primary-teal);
}

.control-interactive.next {
    background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
    color: white;
    border-color: var(--accent-orange);
}

.control-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.control-play {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-orange));
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 168, 150, 0.3);
}

.control-play:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 168, 150, 0.4);
}

.control-play i {
    font-size: 1.1rem;
}

.control-indicator {
    display: flex;
    gap: 8px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--medium-gray);
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: var(--primary-teal);
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(0, 168, 150, 0.5);
}

/* Testimonials Section - Image Showcase */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(255, 255, 255, 0.8) 50%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 168, 150, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(241, 143, 1, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.testimonial-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.05);
}

.testimonial-rating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 12px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.testimonial-content {
    padding: 30px 25px;
    text-align: center;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin: 0 0 20px 0;
    font-style: italic;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-teal);
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-text::after {
    content: '"';
    font-size: 3rem;
    color: var(--primary-teal);
    position: absolute;
    bottom: -30px;
    right: -15px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    border-top: 2px solid var(--light-gray);
    padding-top: 20px;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin: 0 0 5px 0;
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--primary-teal);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .testimonial-card {
        max-width: 100%;
    }

    .testimonial-image-container {
        height: 200px;
    }

    .testimonial-content {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .testimonial-rating {
        top: 15px;
        right: 15px;
        padding: 6px 10px;
    }

    .testimonial-rating i {
        font-size: 0.8rem;
    }
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.partner-logo {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

/* Contact grid now handled by Bootstrap */

.contact-info {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--navy);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--dark-gray);
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

/* Form styles now handled by Bootstrap */

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
}

/* Footer grid now handled by Bootstrap */

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 10px;
    color: var(--primary-teal);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-teal);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-teal);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-teal);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 2000;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast.success .toast-icon {
    background: #2ecc71;
    color: var(--white);
}

.toast.error .toast-icon {
    background: #e74c3c;
    color: var(--white);
}

.toast-message h4 {
    margin-bottom: 5px;
    color: var(--navy);
}

.toast-message p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .step-indicator {
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .how-it-works {
        padding: 60px 0;
    }

    .process-visual {
        padding: 20px;
    }

    .process-image-wrapper {
        height: 250px;
    }

    .process-step-title {
        font-size: 1.8rem;
    }

    .process-steps {
        flex-direction: column;
        gap: 15px;
    }

    .step-indicator {
        min-width: 100%;
    }

    .process-controls {
        flex-wrap: wrap;
        gap: 15px;
    }

    .progress-bar {
        max-width: 100%;
        order: -1;
    }

    .footer-content {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid var(--medium-gray);
    border-top-color: var(--primary-teal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 168, 150, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 168, 150, 0.6);
    }
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Enhanced Hover Effects */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    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;
}

.service-card:hover::after {
    left: 100%;
}

.service-icon {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    animation: pulse 2s infinite;
}

/* Floating Elements */
.floating-badge {
    animation: float 3s ease-in-out infinite;
}

.floating-badge-1 {
    animation-delay: 0s;
}

.floating-badge-2 {
    animation-delay: 1.5s;
}

/* Enhanced Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Enhanced Navigation */
.nav-links a {
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 150, 0.1), transparent);
    transition: left 0.3s;
}

.nav-links a:hover::before {
    left: 100%;
}

/* Parallax Effect */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="50" r="2" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

/* Typing Animation for Hero */
.hero-text h1 {
    overflow: hidden;
    border-right: 3px solid var(--primary-teal);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink 0.75s step-end infinite;
}

/* Stagger Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Enhanced Loading Animation */
.loader-circle {
    animation: spin 1s linear infinite, pulse 2s ease-in-out infinite;
}

/* Interactive Elements */
.contact-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    animation: bounceIn 0.6s ease;
}

/* Enhanced Testimonials */
.testimonial-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Enhanced Partner Logos */
.partner-logo {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partner-logo:hover {
    transform: translateY(-10px) rotate(2deg) scale(1.05);
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Social Media Card Component */
.social-card {
    position: relative;
    width: 200px;
    height: 200px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--primary-teal);
}

.social-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.9;
}

.social-logo {
    position: absolute;
    right: 50%;
    bottom: 50%;
    transform: translate(50%, 50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1em;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 2px;
    z-index: 2;
}

.social-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.social-icon .social-svg {
    fill: rgba(255, 255, 255, 0.8);
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-box {
    position: absolute;
    padding: 12px;
    text-align: right;
    background: rgba(255, 255, 255, 0.3);
    border-top: 2px solid var(--white);
    border-right: 1px solid var(--white);
    border-radius: 10% 13% 42% 0%/10% 12% 75% 0%;
    box-shadow: var(--shadow-md);
    transform-origin: bottom left;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 3;
}

.social-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-box:hover .social-svg {
    fill: var(--white);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    transform: scale(1.1);
}

.social-box1 {
    width: 70%;
    height: 70%;
    bottom: -70%;
    left: -70%;
}

.social-box1::before {
    background: radial-gradient(circle at 30% 107%, var(--primary-teal) 0%, var(--dark-teal) 90%);
}

.social-box1:hover::before {
    opacity: 1;
}

.social-box2 {
    width: 50%;
    height: 50%;
    bottom: -50%;
    left: -50%;
    transition-delay: 0.1s;
}

.social-box2::before {
    background: radial-gradient(circle at 30% 107%, #1DA1F2 0%, #0d95e8 90%);
}

.social-box2:hover::before {
    opacity: 1;
}

.social-box3 {
    width: 30%;
    height: 30%;
    bottom: -30%;
    left: -30%;
    transition-delay: 0.2s;
}

.social-box3::before {
    background: radial-gradient(circle at 30% 107%, #5865F2 0%, #4752c4 90%);
}

.social-box3:hover::before {
    opacity: 1;
}

.social-box4 {
    width: 10%;
    height: 10%;
    bottom: -10%;
    left: -10%;
    transition-delay: 0.3s;
}

.social-box4::before {
    background: radial-gradient(circle at 30% 107%, #E4405F 0%, #d6336c 90%);
}

.social-box4:hover::before {
    opacity: 1;
}

.social-box5 {
    width: 5%;
    height: 5%;
    bottom: -5%;
    left: -5%;
    transition-delay: 0.4s;
}

.social-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 168, 150, 0.3);
}

.social-card:hover .social-box {
    bottom: 0;
    left: 0;
}

.social-card:hover .social-logo {
    transform: translate(70px, -52px);
    letter-spacing: 0px;
    font-size: 0.9em;
}

/* Enhanced Mobile Animations */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 15px;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        margin-bottom: 40px;
    }

    .hero-cta, .hero-secondary {
        justify-content: center;
        text-align: center;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-image-container {
        max-width: 100%;
    }

    .floating-card {
        display: none; /* Hide floating cards on mobile for cleaner look */
    }

    .scroll-indicator {
        display: none; /* Hide scroll indicator on mobile */
    }

    /* Interactive Process Mobile */
    .interactive-process {
        padding: 80px 0;
    }

    .process-interactive-container {
        gap: 40px;
    }

    .process-hub {
        width: 250px;
        height: 250px;
    }

    .hub-core {
        width: 100px;
        height: 100px;
    }

    .hub-icon {
        font-size: 2rem;
    }

    .process-node {
        width: 60px;
        height: 60px;
        --distance: 140px;
    }

    .process-node.active {
        transform: translate(-50%, -50%) translate(
            calc(var(--distance) * cos(var(--angle))),
            calc(var(--distance) * sin(var(--angle)))
        ) scale(1.1);
    }

    .node-core {
        width: 100%;
        height: 100%;
    }

    .node-number {
        font-size: 1rem;
    }

    .node-icon {
        font-size: 1.2rem;
    }

    .node-label span {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    .process-display {
        padding: 30px 20px;
    }

    .current-step {
        font-size: 2.5rem;
    }

    .display-title {
        font-size: 1.6rem;
    }

    .display-image {
        height: 200px;
    }

    .display-description p {
        font-size: 1rem;
    }

    .process-controls-interactive {
        flex-direction: column;
        gap: 20px;
    }

    .control-interactive {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .control-center {
        order: -1;
    }

    /* 3D Service Cards Mobile */
    .service-parent {
        width: 100%;
        max-width: 320px;
        height: 340px;
        margin: 0 auto 30px;
    }

    .service-card-3d {
        transform: rotate3d(1, 1, 0, 15deg); /* Less rotation on mobile */
    }

    .service-content {
        padding: 80px 40px 0px 20px;
    }

    .service-content .service-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-content .service-text {
        font-size: 13px;
        margin-top: 0;
        line-height: 1.4;
    }

    .service-bottom {
        padding: 8px 10px;
        bottom: 15px;
        left: 15px;
        right: 15px;
    }

    .service-bottom .service-social-buttons .service-social-button {
        width: 28px;
        font-size: 11px;
    }

    .service-bottom .service-view-more .service-view-more-button {
        font-size: 11px;
    }

    .service-logo .service-circle1 {
        width: 140px;
        top: 6px;
        right: 6px;
    }

    .service-logo .service-circle2 {
        width: 115px;
        top: 8px;
        right: 8px;
    }

    .service-logo .service-circle3 {
        width: 90px;
        top: 13px;
        right: 13px;
    }

    .service-logo .service-circle4 {
        width: 65px;
        top: 18px;
        right: 18px;
    }

    .service-logo .service-circle5 {
        width: 42px;
        top: 24px;
        right: 24px;
    }

    .service-logo .service-circle5 .service-icon-3d {
        font-size: 16px;
    }

    .service-parent:hover .service-card-3d {
        transform: rotate3d(1, 1, 0, 5deg); /* Less rotation on hover for mobile */
    }

    .floating-badge {
        animation-duration: 4s;
    }

    .social-card {
        width: 150px;
        height: 150px;
    }

    .social-logo {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .hero-container {
        gap: 40px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}



/* Testimonial Glass Cards */
.testimonials-glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial-glass-card {
  position: relative;
  min-height: 280px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.9) 50%, rgba(10, 10, 10, 0.95) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(139, 92, 246, 0.1);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 25px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.testimonial-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B5CF6, #3B82F6, #8B5CF6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-glass-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.5);
}

.testimonial-glass-card:hover::before {
  opacity: 1;
}

.testimonial-glass-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  width: 100%;
}

.testimonial-rating {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonial-rating i {
  color: #ffd700;
  font-size: 16px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
  transition: transform 0.2s ease;
}

.testimonial-rating i:hover {
  transform: scale(1.2);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -15px;
  font-size: 40px;
  color: rgba(139, 92, 246, 0.3);
  font-family: serif;
}

.testimonial-text::after {
  content: '"';
  position: absolute;
  bottom: -25px;
  right: -15px;
  font-size: 40px;
  color: rgba(139, 92, 246, 0.3);
  font-family: serif;
}

.testimonial-author {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.testimonial-author h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.testimonial-role {
  font-size: 13px;
  color: rgba(139, 92, 246, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

/* Floating particles effect */
.testimonial-glass-card::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 20%;
  width: 4px;
  height: 4px;
  background: rgba(139, 92, 246, 0.6);
  border-radius: 50%;
  animation: floatParticle 6s ease-in-out infinite;
}

.testimonial-glass-card:nth-child(2)::after {
  top: 70%;
  left: 80%;
  animation-delay: 2s;
}

.testimonial-glass-card:nth-child(3)::after {
  top: 50%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.5);
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials-glass-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .testimonial-glass-card {
    min-height: 250px;
    padding: 25px 20px;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .testimonial-author h4 {
    font-size: 16px;
  }

  .testimonial-role {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .testimonial-glass-card {
    padding: 20px 15px;
    min-height: 220px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .testimonial-rating i {
    font-size: 14px;
  }
}
