/* Modern Introduction Page Styles */
/* Color Palette: White, Ocean Blue, Gray, Navy Blue */

:root {
    --primary-blue: #0EA5E9;
    --ocean-blue: #0284C7;
    --navy-blue: #0C4A6E;
    --light-blue: #E0F2FE;
    --accent-orange: #F97316;
    --accent-purple: #8B5CF6;
    --accent-green: #10B981;
    --accent-pink: #EC4899;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-600: #475569;
    --gray-800: #1E293B;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    --gradient-secondary: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
    --gradient-tertiary: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
    --gradient-quaternary: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --shadow-light: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 20px 40px rgba(14, 165, 233, 0.4);
    --border-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Touch-friendly styles */
@media (hover: none) and (pointer: coarse) {
    .stat-card:hover,
    .value-card:hover,
    .mission-card:hover {
        transform: none;
        box-shadow: var(--shadow-light);
    }
    
    .contact-item-full:hover {
        transform: none;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    }
    
    .value-icon:hover,
    .card-icon:hover {
        transform: none;
    }
    
    /* Increase touch targets */
    .contact-item-full {
        min-height: 60px;
        padding: 24px;
    }
    
    .scroll-indicator {
        padding: 20px;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: 
        radial-gradient(circle at 20% 80%, rgba(14, 165, 233, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Full width sections */
.container-xxl {
    max-width: 1400px !important;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 1600px) {
    .container-xxl {
        max-width: 1600px !important;
    }
}

/* Global Background Effects */
.global-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(14, 165, 233, 0.4), rgba(6, 182, 212, 0.4));
    animation: floatParticle 15s ease-in-out infinite;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.particle-2 {
    width: 12px;
    height: 12px;
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle-3 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    bottom: 30%;
    right: 25%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.particle-5 {
    width: 14px;
    height: 14px;
    top: 40%;
    left: 70%;
    animation-delay: 3s;
    animation-duration: 19s;
}

.particle-6 {
    width: 7px;
    height: 7px;
    bottom: 20%;
    left: 30%;
    animation-delay: 5s;
    animation-duration: 21s;
}

.particle-7 {
    width: 9px;
    height: 9px;
    top: 70%;
    right: 40%;
    animation-delay: 2.5s;
    animation-duration: 17s;
}

.particle-8 {
    width: 11px;
    height: 11px;
    bottom: 50%;
    left: 60%;
    animation-delay: 4.5s;
    animation-duration: 23s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-100px) translateX(50px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) translateX(-30px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-150px) translateX(80px) rotate(270deg);
        opacity: 0.9;
    }
}

/* Typography */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    text-shadow: none;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: var(--light-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-800);
    margin-bottom: 24px;
}

/* Modern Hero Section */
.modern-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(14, 165, 233, 0.9) 0%, rgba(6, 182, 212, 0.8) 100%),
        url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&h=1080&fit=crop') center/cover;
    overflow: hidden;
    background-size: cover, 400% 400%;
    background-attachment: fixed;
    animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.element-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.element-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.element-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.badge-text {
    background: var(--white);
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--light-blue);
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 32px;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        2px 2px 8px rgba(0, 0, 0, 0.4),
        4px 4px 16px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 650px;
    line-height: 1.7;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.4),
        0 0 10px rgba(255, 255, 255, 0.1);
    font-weight: 500;
}

.hero-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.hero-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
}

.hero-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
}

.hero-breadcrumb .breadcrumb-item a:hover {
    color: var(--white);
}

.hero-visual {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.hero-gallery {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 400px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-colored);
    transition: var(--transition);
}

.main-image {
    grid-row: 1 / 3;
}

.secondary-image {
    grid-column: 2;
    grid-row: 1;
}

.tertiary-image {
    grid-column: 2;
    grid-row: 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.overlay-content h4,
.overlay-content h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.8;
}

.circle-1 {
    width: 60px;
    height: 60px;
    top: -30px;
    right: -30px;
    animation: pulse 3s ease-in-out infinite;
}

.circle-2 {
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: -20px;
    animation: pulse 3s ease-in-out infinite 1.5s;
}

.decoration-square {
    position: absolute;
    background: var(--ocean-blue);
    opacity: 0.6;
    border-radius: 8px;
}

.square-1 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: -40px;
    transform: rotate(45deg);
    animation: rotate 10s linear infinite;
}

/* Section Dividers */
.section-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    animation: gentleWave 8s ease-in-out infinite;
}

@keyframes gentleWave {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-10px);
    }
}

.wave-1 {
    color: var(--white);
}

.wave-2 {
    color: #f0f9ff;
}

.wave-3 {
    color: #fafafa;
}

.wave-4 {
    color: #fafafa;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    cursor: pointer;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    position: relative;
    margin: 0 auto 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 500;
}

/* Company Overview Section */
.company-overview {
    padding: 120px 0 200px 0;
    background: 
        linear-gradient(135deg, rgba(67, 233, 123, 0.05) 0%, rgba(56, 249, 215, 0.05) 100%),
        url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    position: relative;
}

.company-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.company-overview > .container-xxl {
    position: relative;
    z-index: 2;
}

.content-block {
    max-width: 600px;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    font-weight: 500;
}

.content-highlight {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--gradient-primary);
    padding: 24px;
    border-radius: var(--border-radius);
    margin-bottom: 32px;
    box-shadow: var(--shadow-colored);
}

.highlight-image {
    flex-shrink: 0;
}

.highlight-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.highlight-quote {
    flex: 1;
}

.quote-text {
    color: var(--white);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.quote-author {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-list {
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    color: var(--ocean-blue);
    font-size: 18px;
}

.visual-content {
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.stat-card:nth-child(1)::before {
    background: var(--gradient-primary);
}

.stat-card:nth-child(2)::before {
    background: var(--gradient-secondary);
}

.stat-card:nth-child(3)::before {
    background: var(--gradient-tertiary);
}

.stat-card:nth-child(4)::before {
    background: var(--gradient-quaternary);
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-colored);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: var(--transition);
}

.stat-card:nth-child(1) .stat-icon {
    background: var(--gradient-primary);
}

.stat-card:nth-child(2) .stat-icon {
    background: var(--gradient-secondary);
}

.stat-card:nth-child(3) .stat-icon {
    background: var(--gradient-tertiary);
}

.stat-card:nth-child(4) .stat-icon {
    background: var(--gradient-quaternary);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 120px 0 200px 0;
    position: relative;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.mission-vision > .container-xxl {
    position: relative;
    z-index: 2;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, rgba(14, 165, 233, 0.1) 2px, transparent 2px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.mission-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    z-index: 2;
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.mission-card.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mission-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        var(--shadow-heavy),
        0 0 30px rgba(14, 165, 233, 0.2);
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.mission-card:hover::before {
    left: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.mission-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.mission-card:hover .card-icon::after {
    width: 100%;
    height: 100%;
}

.vision-icon {
    background: linear-gradient(135deg, #1E88E5 0%, #0066CC 100%);
}

.mission-icon {
    background: linear-gradient(135deg, #0066CC 0%, #1565C0 100%);
}

.commitment-icon {
    background: linear-gradient(135deg, #1565C0 0%, #1E88E5 100%);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    margin: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 400;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.mission-card:hover .card-title {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.mission-card:hover .card-content p {
    color: var(--gray-700);
    transform: translateY(-1px);
}

.commitment-section {
    position: relative;
    z-index: 2;
}

.commitment-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.commitment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.commitment.value-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Core Values Section */
.core-values {
    padding: 120px 0 200px 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #fafafa 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.core-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.core-values > .container-xxl {
    position: relative;
    z-index: 2;
}

.values-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    animation: floatCircle 12s ease-in-out infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 12%;
    animation-delay: 3s;
    animation-duration: 12s;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 15%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.floating-triangle {
    position: absolute;
    width: 0;
    height: 0;
    animation: floatTriangle 10s ease-in-out infinite;
}

.triangle-1 {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(236, 72, 153, 0.1);
    top: 25%;
    right: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.triangle-2 {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(139, 92, 246, 0.1);
    bottom: 35%;
    right: 8%;
    animation-delay: 4s;
    animation-duration: 16s;
}

@keyframes floatCircle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) translateX(-25px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-40px) translateX(30px) rotate(270deg);
        opacity: 0.7;
    }
}

@keyframes floatTriangle {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.5;
    }
    33% {
        transform: translateY(-25px) translateX(15px) rotate(120deg);
        opacity: 0.7;
    }
    66% {
        transform: translateY(-10px) translateX(-20px) rotate(240deg);
        opacity: 0.3;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Asymmetric layout */
.values-grid .value-card:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.values-grid .value-card:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.values-grid .value-card:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.values-grid .value-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.values-grid .value-card:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.values-grid .value-card:nth-child(6) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.value-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    padding: 48px 36px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 1px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.value-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon::before {
    width: 120%;
    height: 120%;
}

.people-icon { background: var(--gradient-primary); }
.quality-icon { background: var(--gradient-secondary); }
.innovation-icon { background: var(--gradient-tertiary); }
.fairness-icon { background: linear-gradient(135deg, #F97316 0%, #EA580C 100%); }
.dedication-icon { background: linear-gradient(135deg, #EC4899 0%, #DB2777 100%); }
.growth-icon { background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%); }

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.value-description {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Team & Achievements Section */
.team-achievements {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, rgba(79, 172, 254, 0.05) 0%, rgba(0, 242, 254, 0.05) 100%),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    position: relative;
}

.team-achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.team-achievements > .container-xxl {
    position: relative;
    z-index: 2;
}

.team-card {
    height: 100%;
}

.team-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    opacity: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.team-image:hover .team-overlay {
    opacity: 1;
}

.team-image:hover .team-img {
    transform: scale(1.1);
}

.team-overlay h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.team-overlay p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.achievement-item {
    background: var(--white);
    padding: 40px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.achievement-item:nth-child(2)::before {
    background: var(--gradient-secondary);
}

.achievement-item:nth-child(3)::before {
    background: var(--gradient-tertiary);
}

.achievement-item:nth-child(4)::before {
    background: var(--gradient-quaternary);
}

.achievement-item:hover::before {
    transform: scaleX(1);
}

.achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-colored);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
}

.achievement-item:nth-child(1) .achievement-icon {
    background: var(--gradient-primary);
}

.achievement-item:nth-child(2) .achievement-icon {
    background: var(--gradient-secondary);
}

.achievement-item:nth-child(3) .achievement-icon {
    background: var(--gradient-tertiary);
}

.achievement-item:nth-child(4) .achievement-icon {
    background: var(--gradient-quaternary);
}

.achievement-item:hover .achievement-icon {
    transform: scale(1.1) rotate(10deg);
}

.achievement-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.achievement-item p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    margin: 60px 40px;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(14, 165, 233, 0.95) 0%, rgba(59, 130, 246, 0.95) 50%, rgba(99, 102, 241, 0.95) 100%),
        url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&h=1080&fit=crop') center/cover;
    color: var(--white);
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 
        0 25px 50px rgba(14, 165, 233, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30,136,229,0.9) 0%, rgba(0,102,204,0.9) 100%);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 75% 25%, rgba(255,255,255,0.05) 2px, transparent 2px);
    background-size: 60px 60px;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.shape-4 {
    width: 40px;
    height: 40px;
    top: 40%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 8s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(20px) rotate(270deg);
        opacity: 0.5;
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.cta-content-wrapper {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        2px 2px 8px rgba(0,0,0,0.4);
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.contact-info-wrapper {
    margin-top: 32px;
}

.contact-item-full {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    padding: 28px 36px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-item-full::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.6s;
}

.contact-item-full:hover::before {
    left: 100%;
}

.contact-item-full:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    animation: pulse 3s infinite;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-text {
    flex: 1;
    text-align: left;
    margin-left: 28px;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-number {
    display: block;
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.contact-arrow {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-item-full:hover .contact-arrow {
    transform: translateX(4px);
}

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

.cta-action {
    position: relative;
    z-index: 2;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30,136,229,0.1), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    color: var(--navy-blue);
}

.btn-text {
    margin-right: 12px;
}

.btn-icon {
    transition: var(--transition);
}

.btn-modern:hover .btn-icon {
    transform: translateX(4px);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.5; transform: translateX(-50%) translateY(8px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* React Bits Inspired Animations */

/* Fade In Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Bounce Animation */
.bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Slide and Scale */
.slide-scale {
    opacity: 0;
    transform: translateX(-50px) scale(0.8);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-scale.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Rotate In */
.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Blur In */
.blur-in {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blur-in.visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* Elastic Scale */
.elastic-scale {
    opacity: 0;
    transform: scale(0.1);
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.elastic-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Flip Animation */
.flip-in {
    opacity: 0;
    transform: rotateY(-90deg);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.flip-in.visible {
    opacity: 1;
    transform: rotateY(0deg);
}

/* Advanced React Bits Animations */

/* Morphing Button */
.morphing-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.morphing-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;
}

.morphing-btn:hover::before {
    left: 100%;
}

/* Magnetic Effect */
.magnetic {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.magnetic:hover {
    transform: scale(1.05) translateY(-2px);
}

/* Liquid Animation */
.liquid-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: liquidMorph 8s ease-in-out infinite;
}

@keyframes liquidMorph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 70% 30% 40% 60% / 40% 70% 60% 30%; }
    75% { border-radius: 40% 70% 60% 30% / 70% 40% 50% 60%; }
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    margin: 0 auto;
    animation: typing 4s steps(40, end), blink-caret 1s step-end infinite;
    display: inline-block;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: rgba(255, 255, 255, 0.9); }
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitch 2s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s infinite;
    color: #ff0000;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s infinite;
    color: #00ff00;
    z-index: -2;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(-2px, -2px); }
}

/* Neon Glow */
.neon-glow {
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(14, 165, 233, 0.6),
        0 0 30px rgba(14, 165, 233, 0.4),
        0 0 40px rgba(14, 165, 233, 0.2),
        2px 2px 8px rgba(0, 0, 0, 0.4);
    animation: neonFlicker 3s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Particle Trail */
.particle-trail {
    position: relative;
}

.particle-trail::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: particleTrail 2s infinite;
}

@keyframes particleTrail {
    0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* Wobble Animation */
.wobble {
    animation: wobble 2s ease-in-out infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    15% { transform: rotate(-5deg); }
    30% { transform: rotate(3deg); }
    45% { transform: rotate(-3deg); }
    60% { transform: rotate(2deg); }
    75% { transform: rotate(-1deg); }
}

/* Pulse Ring */
.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Responsive Design */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        max-width: 900px;
        gap: 50px;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .gallery-grid {
        height: 500px;
        gap: 30px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .mission-card {
        padding: 28px 20px;
        min-height: 300px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .container-xxl {
        max-width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 32px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .value-card {
        padding: 40px 28px;
    }
    
    .floating-circle,
    .floating-triangle {
        opacity: 0.5;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-hero {
        min-height: 100vh;
        text-align: center;
        padding: 80px 0 40px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .hero-content,
    .hero-visual {
        margin-bottom: 40px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        max-width: 100%;
        gap: 20px;
    }
    
    .stat-card {
        padding: 24px 20px;
        min-height: 160px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .value-card {
        padding: 32px 24px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .value-title {
        font-size: 1.3rem;
    }
    
    .value-description {
        font-size: 0.95rem;
    }
    
    .mission-card {
        padding: 24px 20px;
        min-height: auto;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 16px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-label {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .company-overview,
    .mission-vision,
    .core-values {
        padding: 80px 0 120px 0;
    }
    
    .cta-section {
        margin: 20px 15px;
        border-radius: 20px;
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    
    .contact-item-full {
        padding: 20px 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
        max-width: 100%;
    }
    
    .contact-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
    
    .contact-text {
        margin-left: 0;
        text-align: center;
    }
    
    .contact-number {
        font-size: 1.3rem;
    }
    
    .contact-arrow {
        width: 40px;
        height: 40px;
    }
    
    .container-xxl {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .particle,
    .floating-circle,
    .floating-triangle,
    .shape {
        display: none;
    }
    
    .section-divider svg {
        height: 40px;
        animation: none;
    }
    
    .feature-list {
        margin-top: 24px;
    }
    
    .feature-item {
        padding: 12px 0;
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .container-xxl {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .modern-hero {
        padding: 60px 0 30px 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .section-label {
        font-size: 11px;
        padding: 5px 12px;
    }

    .company-overview,
    .mission-vision,
    .core-values {
        padding: 60px 0 80px 0;
    }

    .stat-card {
        padding: 20px 16px;
        min-height: 140px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 12px;
    }

    .value-card {
        padding: 24px 20px;
    }

    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }

    .value-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .value-description {
        font-size: 0.9rem;
    }

    .mission-card {
        padding: 20px 16px;
    }

    .card-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-right: 12px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .cta-section {
        padding: 50px 0;
        margin: 15px 10px;
        border-radius: 16px;
    }

    .cta-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .contact-item-full {
        padding: 18px 20px;
        gap: 12px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-label {
        font-size: 0.8rem;
    }

    .contact-number {
        font-size: 1.2rem;
    }

    .contact-arrow {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .feature-item {
        padding: 10px 0;
        font-size: 0.85rem;
    }

    .feature-icon {
        width: 18px;
        height: 18px;
        font-size: 10px;
        margin-right: 10px;
    }

    .section-divider svg {
        height: 30px;
    }
}
