/* Modern ERP Website - Fylfot Software */

/* CSS Variables & Reset */
:root {
    --primary: #00172F;
    --primary-dark: #00172F;
    --secondary: #4DA8DA;
    --accent: #E8505B;
    --dark: #0A1628;
    --navy: #1A2332;
    --gray-900: #1E293B;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748B;
    --gray-500: #94A3B8;
    --gray-400: #CBD5E1;
    --gray-300: #E2E8F0;
    --gray-200: #F1F5F9;
    --gray-100: #F8FAFC;
    --white: #FFFFFF;
    --success: #10B981;
    
    --font-display: 'Roboto', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--gray-800);
    background: #F8FAFC;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Prevent iOS from auto-detecting and styling phone numbers */
a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary);
    z-index: 1000;
    border-bottom: none;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    min-height: 140px;
}

.logo {
    display: flex;
    align-items: center;
    /* background: #FFFFFF; */
    padding: 0;
    margin: 0;
} 

.logo-img {
    height: 160px;
    width: auto;
    object-fit: contain;
    display: block;
    padding: 6px 0;
}

.logo-full {
    display: inline;
}

.logo-medium,
.logo-short {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    height: 160px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:not(.btn-contact):hover {
    color: var(--secondary);
}

.nav-menu a:not(.btn-contact)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-contact):hover::after {
    width: 100%;
}

.btn-contact {
    background: var(--accent);
    color: var(--white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    /* line-height: 1; */
}

.btn-contact svg {
    flex-shrink: 0;
    /* display: block; */
    vertical-align: middle;
}

.btn-contact:hover {
    background: #d43f4a;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* WhatsApp icon styles */
.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    /* margin-left: 0.5rem;  */
}

.whatsapp-icon:hover {
    background: #128C7E;
    transform: scale(1.1);
}

.whatsapp-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    position: relative;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    padding: 220px 0 200px;
    overflow: visible;
}

/* Hero Wave SVG */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 230px;
    z-index: 1;
    pointer-events: none;
    display: block;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 2;
}

.orb-1 {
    width: 100px;
    height: 150px;
    background: var(--accent);
    top: 35%;
    left: 12%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-25deg);
}

.orb-2 {
    width: 80px;
    height: 120px;
    background: var(--accent);
    top: 40%;
    left: 8%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(15deg);
}

.orb-3 {
    width: 60px;
    height: 90px;
    background: var(--accent);
    top: 45%;
    left: 10%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-10deg);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1024px;
    margin: 0 auto;
    text-align: cente
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem 1.75rem 0.4rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 500;
    /* margin-bottom: 1rem; */
    animation: fadeInUp 0.8s ease;
    box-shadow: 0 4px 15px rgba(0, 82, 204, 0.4);
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-family: 'Saira Stencil One', cursive;
    font-size: 50px;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: 0%;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-transform: uppercase;
    text-align: center;
    color: var(--white);
}

.gradient-text {
    color: var(--white);
}

.hero-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Phone Badge */
.hero-phone-badge {
    position: absolute;
    top: 120px;
    right: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-phone-badge svg {
    color: var(--accent);
}

/* Hero Chat Button */
.hero-chat-button {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF9966 0%, #FF5E62 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 94, 98, 0.4);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(255, 94, 98, 0.6);
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-slider-dots .slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider-dots .slider-dot.active {
    background: var(--accent);
    border-color: var(--white);
}

.hero-slider-dots .slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(232, 80, 91, 0.4);
}

.btn-primary:hover {
    background: #d43f4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 80, 91, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Submit button specific styling - no animation, only hover */
button[type="submit"].btn-primary {
    transition: background-color 0.3s ease, color 0.3s ease;
    transform: none !important;
    box-shadow: none;
}

button[type="submit"].btn-primary:hover {
    background: #d43f4a;
    transform: none !important;
    box-shadow: none;
}

/* Success state for submit button */
button[type="submit"].btn-primary.success {
    background: var(--success);
    color: var(--white);
}

button[type="submit"].btn-primary.success:hover {
    background: var(--success);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.95rem;
    color: var(--gray-300);
}

/* Hero Metrics Bar */
.hero-metrics-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 3rem 0 ;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    backdrop-filter: blur(4px);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.metric-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(14, 165, 233, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    flex-shrink: 0;
    
}

.metric-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.metric-value-first {
    font-size: 2.5rem;
    font-weight: 800;
    /* color: var(--white); */
    font-family: var(--font-display);
    line-height: 1;
    margin: 0;
    display: block;
}
.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    line-height: 1;
    margin: 0;
    display: block;
}

.metric-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Metrics Section Mobile - Hidden by default */
.metrics-section-mobile {
    display: none;
    padding: 3rem 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 41, 59, 0.65) 100%), 
                url('assests/hero.jpg') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.metrics-section-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 30%, rgba(0, 0, 0, 0.15) 70%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 0;
}

.metrics-section-mobile .container {
    position: relative;
    z-index: 1;
}

.metrics-section-mobile .metrics-grid {
    display: grid;
    gap: 1.5rem;
}

.metrics-section-mobile .metric-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.metrics-section-mobile .metric-icon {
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(14, 165, 233, 0.2) 100%);
    color: #00D9FF;
}

.metrics-section-mobile .metric-value,
.metrics-section-mobile .metric-value-first {
    color: var(--white);
}

.metrics-section-mobile .metric-title {
    color: rgba(255, 255, 255, 0.85);
}

/* Hero Trust Badges */
.hero-trust-badges {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 4rem 0 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
}

.trust-badges-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.badge-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00D9FF 0%, #0EA5E9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.badge-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.badge-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-display);
    line-height: 1;
}

/* Trust Showcase Section */
.trust-showcase {
    padding: 4rem 0 8rem;
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.trust-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.trust-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.trust-showcase-visual {
    position: relative;
}

.showcase-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.showcase-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
}

.floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.floating-badge-text {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-display);
    line-height: 1;
}

.badge-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.decorative-elements {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    z-index: -1;
}

.deco-circle {
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

.deco-dots {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
}

.trust-showcase-content {
    padding: 2rem 0;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.trust-showcase-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.trust-showcase-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 90%;
}

.trust-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.trust-feature-card {
    padding: 1.75rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.25rem;
}

.trust-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.trust-feature-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Core Overview Section */
.core-overview-section {
    background: white;
    /* padding-top: 4rem ; */
    position: relative;
    overflow: hidden;
}



.core-overview-section .container {
    position: relative;
    z-index: 1;
}

.core-overview-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.core-overview-image {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding-top: 40px; */
    /* gap: 1.5rem; */
}

.core-overview-image .core-main-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.core-overview-image .core-partner-badge {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.core-overview-image .core-partner-badge:hover {
    transform: scale(1.05);
}

.overview-badge {
    position: absolute;
    bottom: 20px;
    left: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.overview-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.overview-badge .badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(14, 165, 233, 0.2) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00D9FF;
    flex-shrink: 0;
}

.overview-badge .badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.overview-badge .badge-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-display);
    line-height: 1;
    margin: 0;
}

.overview-badge .badge-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.overview-team-icons {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: -10px;
}

.team-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E0F2FE 0%, #DBEAFE 100%);
    border: 3px solid white;
    margin-left: -10px;
}

.team-icon:first-child {
    margin-left: 0;
}

.team-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid white;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.core-overview-text {
    color: var(--black);
}

.core-overview-text .section-tag {
    background: rgba(0, 184, 212, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(0, 184, 212, 0.3);
}

.core-overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: black;
    line-height: 1.2;
}

.core-overview-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: black;
    margin-bottom: 2rem;
}

.core-highlights {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.core-highlights .metric-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.core-highlights .metric-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.core-highlights .metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.core-highlights .metric-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.core-highlights .metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    font-family: var(--font-display);
    line-height: 1;
    margin: 0;
}

.core-highlights .metric-title {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 250px;
}

.highlight-item:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.highlight-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Core Metrics Bar */
.core-metrics-bar {
        margin-top:20px;

    padding: 3rem 0 0;
    border-top: 1px solid var(--gray-200);
}

.core-metrics-bar .metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.core-metrics-bar .metric-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.core-metrics-bar .metric-card:hover {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.core-metrics-bar .metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.core-metrics-bar .metric-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.core-metrics-bar .metric-value-first,
.core-metrics-bar .metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    font-family: var(--font-display);
    line-height: 1;
    margin: 0;
}

.core-metrics-bar .metric-title {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Customer Logos Section */
.customer-logos-section {
    padding: 5rem 0 2rem;
    background: var(--white);
    overflow: hidden;
}

.customer-logos-section .section-header {
    text-align: center;
    margin-bottom: 0.6rem;
}

.customer-logos-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

/* Wrapper for infinite scroll */
.logos-scroll-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.logos-scroll-wrapper:hover .logos-grid {
    animation-play-state: paused;
}

.logos-grid {
    display: flex;
    gap: 2rem;
    padding: 3rem 0;
    animation: scroll-logos 60s linear infinite;
    width: fit-content;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2.5rem;
    min-width: 220px;
    min-height: 140px;
    flex-shrink: 0;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
      border-radius: 16px;
    border: 1px solid var(--gray-200);
    border-color: var(--primary);
}

.logo-item:hover::before {
    opacity: 1;
}

.logo-item img {
    max-width: 180px;
    max-height: 100px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* Responsive Logos Grid */
@media (max-width: 768px) {
    .customer-logos-section {
        padding: 3rem 0;
    }
    
    .customer-logos-section .section-header h2 {
        font-size: 2rem;
    }
    
    .logos-scroll-wrapper {
        mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    }
    
    .logos-grid {
        gap: 2rem;
        padding: 2rem 0;
        animation: scroll-logos 35s linear infinite;
    }
    
    .logo-item {
        min-width: 180px;
        min-height: 120px;
        padding: 1.5rem 2rem;
    }
    
    .logo-item img {
        max-width: 140px;
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        gap: 1.5rem;
        padding: 1.5rem 0;
        animation: scroll-logos 30s linear infinite;
    }
    
    .logo-item {
        padding: 1.25rem 1.5rem;
        min-height: 100px;
        min-width: 160px;
        border-radius: 12px;
    }
    
    .logo-item img {
        max-width: 120px;
        max-height: 80px;
    }
}

/* Core Principle Standalone Section */
.core-principle-section-standalone {
    padding: 4rem 0;
    background: var(--white);
}

/* Trust Banner */
.trust-banner {
    background: linear-gradient(180deg, #E0F2FE 0%, #F0F9FF 100%);
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-content {
    text-align: center;
}

/* Core Principle Section */
.core-principle-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.core-principle-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.core-principle-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.core-principle-banner {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(14, 165, 233, 0.03) 100%);
    padding: 3.5rem 4rem;
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.15);
    text-align: left;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.core-principle-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.core-principle-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.principle-icon-large {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
    position: relative;
    z-index: 1;
}

.principle-icon-large::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #3B82F6, #0EA5E9);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.core-principle-banner:hover .principle-icon-large::before {
    opacity: 0.6;
}

.principle-text {
    flex: 1;
}

.principle-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
}

.principle-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin: 0;
    font-weight: 400;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.trust-label::before,
.trust-label::after {
    content: '';
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.trust-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: center;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.trust-item h4 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.industry-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.6rem 1.25rem;
    background: var(--white);
    border-radius: 50px;
    border: 1px solid var(--gray-300);
    transition: all 0.3s ease;
}

.industry-badge svg {
    color: var(--primary);
}

.industry-badge:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.industry-badge:hover svg {
    color: var(--white);
}

/* Section Styles */
section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 82, 204, 0.1);
    border-radius: 50px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: #3B82F6;
    z-index: 10;
}

.service-card.featured {
    background: var(--white);
    color: inherit;
    border: 1px solid var(--gray-200);
}

.service-card.featured h3,
.service-card.featured p {
    color: inherit;
}

.service-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-200);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-family: var(--font-display);
}

.service-card.featured .service-number {
    color: var(--gray-200);
    opacity: 0.3;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.service-card.featured .service-icon {
    background: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 100%);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--gray-600);
    padding-left: 1.5rem;
    position: relative;
}

.service-card.featured .service-features li {
    color: var(--gray-600);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* Solutions Section - Slider Design */
.solutions {
    background: var(--white);
    padding: 80px 0;
    position: relative;
}

.solutions-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

.solutions-slider {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.solution-slide {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: fadeIn 0.6s ease;
}

.solution-slide.active {
    display: grid;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.solution-content h2 {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.solution-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.solution-details {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
}

.solution-details h3 {
    font-size: 1.75rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.solution-details p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.btn-know-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-know-more:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateX(5px);
}

.solution-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 184, 212, 0.2);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.image-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--secondary);
}

.slider-nav:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-slide {
    left: 0;
}

.next-slide {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.slider-dots::before {
    content: '';
    display: block;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--secondary);
    width: 40px;
    border-radius: 6px;
}

.solution-features span {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: #3B82F6;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.solution-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.solution-link:hover {
    gap: 12px;
}

/* Expertise Section */
.expertise {
    background: var(--white);
    padding: 100px 0;
}

.expertise-overview {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
    margin-bottom: 5rem;
    align-items: stretch;
}

.overview-image {
    position: relative;
    z-index: 1;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
}

.image-frame-border {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--secondary);
    pointer-events: none;
    z-index: 2;
}

.overview-content {
    background: var(--white);
    border: 3px solid var(--secondary);
    padding: 3rem 3.5rem;
    position: relative;
    margin-left: -40px;
    z-index: 3;
}

.overview-content h2 {
    font-size: 2rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.overview-content h3 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.overview-intro {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 500;
}

.overview-detail {
    font-size: 0.975rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-principle {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--secondary);
    margin-bottom: 2rem;
}

.overview-principle h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.overview-principle p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.overview-stats {
    display: flex;
    gap: 3rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.stat-item-inline {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 1.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.expertise-content {
    display: block;
}

.expertise-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.expertise-text > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.principle-highlight {
    display: flex;
    gap: 1.25rem;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 184, 212, 0.1);
    transition: all 0.3s ease;
}

.principle-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 184, 212, 0.15);
}

.principle-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary) 0%, #00A5C0 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 184, 212, 0.3);
}

.principle-content h4 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.principle-content p {
    font-size: 0.975rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.expertise-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.expertise-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 100%);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.expertise-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.expertise-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.expertise-visual {
    position: relative;
}

.expertise-image-wrapper {
    position: relative;
    animation: float-gentle 6s ease-in-out infinite;
}

.expertise-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.expertise-image::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.expertise-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 2rem;
}

.overlay-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.stat-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-display);
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    animation: float-badge 3s ease-in-out infinite;
}

.floating-badge svg {
    color: var(--secondary);
}

.badge-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1.5s;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Process Section */
.process {
    background: linear-gradient(180deg, #E0F2FE 0%, #DBEAFE 100%);
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.process-step.animate {
    opacity: 1;
    transform: translateX(0);
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + 2rem);
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    opacity: 0.3;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
    position: relative;
    z-index: 5;
}

.step-content {
    flex: 1;
    background: var(--white);
    padding:0;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    gap: 0;
    align-items: stretch;
    margin-bottom: 1rem;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: var(--secondary);
}

.step-icon {
    flex-shrink: 0;
    width: 0;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s ease;
    opacity: 0;
    overflow: hidden;
}

.step-content:hover .step-icon {
    width: 80px;
    opacity: 1;
    display: flex;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
}

.step-text {
    flex: 1;
    padding: 2rem;
}

.step-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.step-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.step-tags {
    display: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    opacity: 0;
    transition: all 0.4s ease;
    margin-top: 0;
}

.step-tags .tag {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
}

.step-content:hover .step-tags {
    display: flex;
    opacity: 1;
    margin-top: 1rem;
}

.step-content:hover .step-tags .tag {
    background: linear-gradient(135deg, var(--secondary) 0%, #00A5C0 100%);
    color: var(--white);
    border-color: var(--secondary);
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* Desktop-specific smooth animations for process steps */
@media (min-width: 1025px) {
    .step-icon {
        display: flex;
        width: 0;
        opacity: 0;
    }
    
    .step-content:hover .step-icon {
        width: 80px;
        opacity: 1;
    }
    
    .step-tags {
        display: flex;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
    }
    
    .step-content:hover .step-tags {
        opacity: 1;
        max-height: 100px;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* Contact Section */
.contact {
    background: linear-gradient(180deg, #F8FAFC 0%, #F1F5F9 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-section > p {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.method-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B82F6;
}

.contact-method h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.contact-method p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
}

/* Stats Banner */
.stats-banner {
    background:    #00172F;

    padding: 3rem 0;
    color: var(--white);
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.stat-banner-item {
    display: flex;
    flex-direction: column;
    /* align-items: center;
    text-align: center; */
    gap: 0.6rem;
}

.stat-text {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-display);
    line-height: 1;
}

.stat-desc {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
}

.stat-line {
    width: 120px;
    height: 2px;
    background: #FF8C42;
    border-radius: 2px;
}

/* Footer */
.footer {
    background: #1C1C1C;
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}



.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
 
    width: 130px;
    height: auto;
    object-fit: contain;
}

.footer-description {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: var(--secondary);
}

.contact-number {
    color: var(--white) !important;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Prevent iOS from styling phone numbers as blue links */
.contact-number a,
.footer-contact-item a {
    color: var(--white) !important;
    text-decoration: none !important;
}

.contact-email {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.contact-desc {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0.25rem 0 0 0;
}

.contact-heading {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    /* margin: 1rem 0 0.5rem 0; */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hamburger span {
        background: var(--white);
    }
    
    .hamburger.active span {
        background: var(--primary);
    }
    
    /* Disable underline effect on tablet */
    .nav-menu a:not(.btn-contact)::after {
        display: none;
    }
    
    .hero {
        padding: 140px 0 250px;
    }
    
    .nav-wrapper {
        min-height: 100px;
    }
    
    .nav-menu {
        height: 100px;
    }
    
    .hero-title {
        font-size: 40px;
        line-height: 44px;
    }
    
    .hero-wave {
        height: 200px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    /* Keep hero metrics bar at bottom */
    .hero-metrics-bar {
        position: absolute !important;
        bottom: 0 !important;
        left: 0;
        right: 0;
        padding: 2.5rem 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
        backdrop-filter: blur(6px);

    }
    
    .hero-metrics-bar .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    /* Hide mobile metrics section */
    .metrics-section-mobile {
        display: none !important;
    }
}

@media (max-width: 920px) and (min-width: 769px) {
    .logo {
        padding-left: 0;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .stats-banner-grid {
        gap: 3rem;
    }
    
    .stat-label {
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-desc {
        font-size: 1.5rem;
    }
    
    .stat-line {
        width: 100px;
    }
      .core-metrics-bar {
        margin-top: 3rem;
        padding: 2.5rem 0 0;
    }
    
    .core-metrics-bar .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .core-metrics-bar .metric-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .core-metrics-bar .metric-icon {
        width: 52px;
        height: 52px;
    }
    
    .core-metrics-bar .metric-value-first,
    .core-metrics-bar .metric-value {
        font-size: 1.75rem;
    }
    
    .core-metrics-bar .metric-title {
        font-size: 0.875rem;
    }
}

/* Tablet view for core-highlights (480px to 769px) */
@media (max-width: 769px) and (min-width: 480px) {
    .core-highlights {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 1rem;
        overflow-x: auto;
    }
    
    .core-highlights .metric-card {
        flex: 0 0 auto;
        min-width: 220px;
        max-width: 240px;
        padding: 1.25rem 1rem;
    }
    
    .core-highlights .metric-icon {
        width: 48px;
        height: 48px;
    }
    
    .core-highlights .metric-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .core-highlights .metric-value {
        font-size: 2rem;
    }
    
    .core-highlights .metric-title {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0;
    }
    
    .nav-wrapper {
        padding: 0;
        min-height: 95px;
    }
    
    .logo {
        padding: 0;
    }
    
    .logo-img {
        height: 95px;
    }
    
    .nav-menu {
        height: auto;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-xl);
        padding: 6rem 0 4rem;
        gap: 1.5rem;
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        max-height: 100vh;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li a {
        font-size: 1.125rem;
        padding: 0.75rem 1rem;
        display: block;
        color: #000000 !important;
    }
    
    .nav-menu li a.whatsapp-icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: #25D366;
        border-radius: 50%;
        color: white !important;
        margin: 0 auto;
        padding: 0;
    }
    
    .nav-menu li a.whatsapp-icon svg {
        width: 26px;
        height: 26px;
    }
    
    /* Phone button styling in hamburger menu */
    .nav-menu li a.btn-contact {
        color: white !important;
    }
    
    .nav-menu li a.btn-contact svg {
        color: white !important;
        stroke: white !important;
    }
    
    .nav-menu li a.btn-contact span {
        color: white !important;
    }
    
    /* Disable underline effect on mobile menu */
    .nav-menu a:not(.btn-contact)::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }
    
    .hamburger span {
        background: var(--white);
    }
    
    .hamburger.active span {
        background: var(--primary);
    }
    
    /* WhatsApp icon styles for mobile */
    .whatsapp-icon {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: #25D366;
        border-radius: 50%;
        color: white !important;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .whatsapp-icon:hover {
        background: #128C7E;
        transform: scale(1.1);
    }
    
    .whatsapp-icon svg {
        width: 24px;
        height: 24px;
        fill: white;
    }
    
    /* Keep hero metrics bar at bottom */
    .hero-metrics-bar {
        position: absolute !important;
        bottom: 0 !important;
        padding: 2rem 0;
    }
    
    .hero-metrics-bar .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
        padding: 0 16px;
    }
    
    .hero-metrics-bar .metric-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem 0.875rem;
        gap: 0.75rem;
    }
    
    .hero-metrics-bar .metric-icon {
        width: 48px;
        height: 48px;
    }
    
    .hero-metrics-bar .metric-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .hero-metrics-bar .metric-value,
    .hero-metrics-bar .metric-value-first {
        font-size: 1.5rem;
    }
    
    .hero-metrics-bar .metric-title {
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 160px 0 200px;
        min-height: 90vh;
    }
    
    .hero-wave {
        height: 150px;
    }
    
    .gradient-orb {
        display: none;
    }
    
    .hero-slider-dots {
        bottom: 30px;
    }
    
    .hero-content {
        text-align: center;
        padding-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 36px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 22px;
        line-height: 28px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Core highlights mobile - only for screens below 480px */
    
    .highlight-item {
        min-width: auto;
    }
    
    .hero-phone-badge {
        top: 80px;
        right: 20px;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero-chat-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .hero-chat-button svg {
        width: 20px;
        height: 20px;
    }
    
    .gradient-orb {
        display: none;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .metric-card {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 1.5rem 1rem;
        gap: 0.875rem;
    }
    
    .metric-icon {
        width: 52px;
        height: 52px;
    }
    
    .metric-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .metric-info {
        align-items: center;
    }
    
    .metric-value-first {
        font-size: 1.75rem;
    }
    .metric-value {
        font-size: 1.75rem;
    }
    
    .metric-title {
        font-size: 0.875rem;
    }
    
    .trust-showcase {
        padding: 5rem 0;
    }
    
    .trust-showcase-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .showcase-image {
        height: 450px;
    }
    
    .floating-badge {
        bottom: 20px;
        right: 20px;
        padding: 1rem 1.25rem;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .decorative-elements {
        display: none;
    }
    
    .trust-showcase-title {
        font-size: 2.5rem;
    }
    
    .trust-showcase-subtitle {
        font-size: 1.125rem;
        max-width: 100%;
    }
    
    .trust-features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .trust-feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
    }
    
    .trust-feature-card h3 {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-slider {
        gap: 2rem;
    }
    
    .logo-item {
        width: 140px;
        height: 65px;
    }
    
    .solutions-slider-wrapper {
        padding: 0 20px;
    }
    
    .solution-slide {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }
    
    .core-principle-section {
        padding: 3rem 0;
    }
    
    .core-overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .core-overview-image img {
        max-width: 100%;
            max-width: 180px;
    padding-top: 1px;

    }
    
    .core-overview-text h2 {
        font-size: 2rem;
    }
    
    .core-overview-text p {
        font-size: 1rem;
    }
    
    .highlight-item {
        padding: 0.875rem 1.25rem;
    }
    
    .highlight-item span {
        font-size: 0.95rem;
    }
    
    .core-metrics-bar {
        margin-top: 3rem;
        padding: 2.5rem 0 0;
    }
    
    .core-metrics-bar .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .core-metrics-bar .metric-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .core-metrics-bar .metric-icon {
        width: 52px;
        height: 52px;
    }
    
    .core-metrics-bar .metric-value-first,
    .core-metrics-bar .metric-value {
        font-size: 1.75rem;
    }
    
    .core-metrics-bar .metric-title {
        font-size: 0.875rem;
    }
    
    .core-principle-banner {
        flex-direction: column;
        gap: 2rem;
        padding: 2.5rem 2rem;
        text-align: center;
    }
    
    .principle-icon-large {
        margin: 0 auto;
        width: 80px;
        height: 80px;
    }
    
    .principle-text {
        text-align: center;
    }
    
    .principle-text h3 {
        font-size: 1.5rem;
    }
    
    .principle-text p {
        font-size: 1rem;
    }
    
    .solution-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .solution-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .solution-details {
        padding: 1.5rem;
    }
    
    .solution-details h3 {
        font-size: 1.25rem;
    }
    
    .solution-details p {
        font-size: 0.95rem;
    }
    
    .image-frame {
        margin-top: 1rem;
    }
    
    .image-frame img {
        height: 300px;
    }
    
    .image-frame::before {
        display: none;
    }
    
    .slider-nav {
        display: none;
    }
    
    .slider-dots {
        margin-top: 2rem;
    }
    
    .expertise-overview {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 3rem;
    }
    
    .overview-image {
        height: 300px;
    }
    
    .image-frame-border {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
        border-width: 2px;
    }
    
    .overview-content {
        margin-left: 0;
        margin-top: -30px;
        padding: 2rem;
        border-width: 2px;
    }
    
    .overview-content h2 {
        font-size: 1.5rem;
    }
    
    .overview-content h3 {
        font-size: 1.25rem;
    }
    
    .overview-intro {
        font-size: 0.95rem;
    }
    
    .overview-detail {
        font-size: 0.9rem;
    }
    
    .overview-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .expertise-content {
        display: block;
    }
    
    .principle-highlight {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .principle-icon {
        width: 48px;
        height: 48px;
    }
    
    .principle-content h4 {
        font-size: 1rem;
    }
    
    .principle-content p {
        font-size: 0.9rem;
    }
    
    .expertise-image img {
        height: 400px;
    }
    
    .expertise-image::before {
        top: -15px;
        right: -15px;
        border-width: 2px;
    }
    
    .overlay-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .stat-badge {
        padding: 0.75rem 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .floating-badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .badge-1 {
        top: 5%;
        right: -5%;
    }
    
    .badge-2 {
        bottom: 15%;
        left: -5%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        gap: 1.5rem;
    }
    
    .step-content {
        flex-direction: column;
    }
    
    .step-icon {
        width: 100%;
        height: 80px;
    }
    
    .step-text {
        padding: 1.5rem;
    }
    
    .step-text h3 {
        font-size: 1.25rem;
    }
    
    .step-text p {
        font-size: 0.95rem;
    }
    
    .step-tags .tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .contact-form-section {
    padding: 0.5rem;
    }
}

@media (max-width: 630px) and (min-width: 481px) {
        .hero {
        padding: 130px 0 180px;
    }
    
    .hero-content {
        padding-bottom: 2rem;
    }
    
    .hero-metrics-bar {
        padding: 1.75rem 0;
    }
    
    .hero-metrics-bar .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .hero-metrics-bar .metric-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.125rem 0.75rem;
    }
    
    .hero-metrics-bar .metric-icon {
        width: 44px;
        height: 44px;
    }
    
    .hero-metrics-bar .metric-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .hero-metrics-bar .metric-value,
    .hero-metrics-bar .metric-value-first {
        font-size: 1.35rem;
    }
    
    .hero-metrics-bar .metric-title {
        font-size: 0.75rem;
    }
    
    .stats-banner {
        padding: 2.25rem 0;
    }
    
    .stats-banner-grid {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }
    
    .stat-banner-item {
        align-items: center;
        text-align: center;
    }
    
    .stat-text {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .stat-label {
        font-size: 1.05rem;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
    
    .stat-desc {
        font-size: 1.2rem;
    }
    
    .stat-line {
        width: 75px;
    }
     .hero-title {
        font-size: 28px;
        line-height: 32px;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 20px;
        line-height: 26px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-badge {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
    
    .badge-dot {
        width: 8px;
        height: 8px;
    }
    .footer{
                padding: 2.5rem 1rem 1.5rem;

    }
    .core-overview-image {

    padding-top: 0px;
    /* gap: 1.5rem; */
}

    
}

@media (max-width: 480px) {
    .logo {
        padding-left: 0;
    }
    
    .logo-img {
        height: 90px;
    }
    
    .nav-wrapper {
        min-height: 80px;
    }
    
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero-wave {
        height: 120px;
    }
    
    /* Core highlights mobile - column layout for small screens */
    .core-highlights {
        flex-direction: column;
    }
    
    .core-metrics-bar .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .core-metrics-bar .metric-card {
        padding: 1.25rem 1rem;
    }
    
    .core-metrics-bar .metric-icon {
        width: 48px;
        height: 48px;
    }
    
    .core-metrics-bar .metric-value-first,
    .core-metrics-bar .metric-value {
        font-size: 1.5rem;
    }
    
    .core-metrics-bar .metric-title {
        font-size: 0.8rem;
    }
    
    .hero-content {
        padding-bottom: 1.5rem;
    }
    
    .hero-metrics-bar {
        padding: 1.5rem 0;
    }
    
    .hero-metrics-bar .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0 16px;
    }
    
    .hero-metrics-bar .metric-card {
        padding: 1rem 0.75rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-metrics-bar .metric-icon {
        width: 42px;
        height: 42px;
    }
    
    .hero-metrics-bar .metric-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-metrics-bar .metric-value,
    .hero-metrics-bar .metric-value-first {
        font-size: 1.35rem;
    }
    
    .hero-metrics-bar .metric-title {
        font-size: 0.75rem;
    }
    
    .metric-icon {
        width: 48px;
        height: 48px;
    }
    
    .metric-value-first {
        font-size: 1.5rem;
    }
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-title {
        font-size: 0.8rem;
    }
    
    .stats-banner {
        padding: 2rem 0;
    }
    
    .stats-banner-grid {
        gap: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-desc {
        font-size: 1.1rem;
    }
    
    .stat-line {
        width: 70px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 19px;
        line-height: 24px;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-badge {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
    }
    
    .badge-dot {
        width: 8px;
        height: 8px;
    }
    
    .trust-logos {
        gap: 1rem;
    }
    
    .trust-banner {
        padding: 2.5rem 0;
    }
    
    .trust-label {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-item {
        padding: 1.5rem 1rem;
    }
    
    .trust-icon {
        width: 50px;
        height: 50px;
    }
    
    .trust-item h4 {
        font-size: 1rem;
    }
    
    .industry-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .industry-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .core-principle-banner {
        padding: 1.5rem 1.25rem;
        gap: 1.5rem;
    }
    
    .principle-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .principle-icon-large svg {
        width: 32px;
        height: 32px;
    }
    
    .principle-text h3 {
        font-size: 1.25rem;
    }
    
    .principle-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-number {
        font-size: 2rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-card h3 {
        font-size: 1.125rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .navbar .container {
        padding: 0 16px;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .case-study-card {
        padding: 1.5rem;
    }
    
    .case-study-card h3 {
        font-size: 1.125rem;
    }
    
    .case-study-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .solution-slide {
        padding: 1.5rem 1rem;
    }
    
    .btn-know-more {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
    
    .contact-form {
        padding: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 1rem;
        padding: 0.875rem;
    }
    
    .stats-banner {
        padding: 2.5rem 0;
    }
    
    .stats-banner-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .stat-banner-item {
        align-items: center;
        text-align: center;
    }
    
    .stat-text {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-desc {
        font-size: 1.3rem;
    }
    
    .stat-line {
        width: 80px;
    }
    
    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-col h4 {
        font-size: 1.2rem;
    }
    
    .footer-logo span {
        font-size: 1.4rem;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
    
    .overview-image {
        height: 250px;
    }
    
    .image-frame-border {
        display: none;
    }
    
    .overview-content {
        padding: 1.5rem;
        margin-top: -20px;
    }
    
    .overview-content h2 {
        font-size: 1.25rem;
    }
    
    .overview-content h3 {
        font-size: 1.125rem;
    }
    
    .overview-intro,
    .overview-detail {
        font-size: 0.875rem;
    }
    
    .overview-principle {
        padding: 1rem 1.25rem;
    }
    
    .overview-principle h4 {
        font-size: 0.9rem;
    }
    
    .overview-principle p {
        font-size: 0.825rem;
    }
    
    .overview-stats {
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
.solutions {
    padding: 20px 0 40px;
}

    .solutions-slider-wrapper {
        padding: 0 15px;
    }
    
    .solution-content h2 {
        font-size: 1.5rem;
    }
    
    .solution-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .solution-details {
        padding: 1.25rem;
    }
    
    .solution-details h3 {
        font-size: 1.125rem;
    }
    
    .solution-details p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .btn-know-more {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
    }
    
    .image-frame img {
        height: 250px;
    }
    
    .slider-dots {
        gap: 0.75rem;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .slider-dot.active {
        width: 30px;
    }
        .core-overview-image {

    padding-top: 0px;
    /* gap: 1.5rem; */
}
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Advanced Animations */

/* Staggered fade-in for service cards - DISABLED */
/* Service cards are now static with no animations */

/* Floating animation for solution cards */
.solution-card {
    animation: float-gentle 6s ease-in-out infinite;
}

.solution-card:nth-child(1) { animation-delay: 0s; }
.solution-card:nth-child(2) { animation-delay: 1.5s; }
.solution-card:nth-child(3) { animation-delay: 3s; }
.solution-card:nth-child(4) { animation-delay: 4.5s; }

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Pulse animation for badges */
.hero-badge {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 184, 212, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 10px rgba(0, 184, 212, 0);
    }
}

/* Slide in from left for process steps */
.process-step {
    animation: slideInLeft 0.8s ease forwards;
    opacity: 0;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }

/* Service icons - no animation */
.service-icon {
    transition: none;
}

.service-card:hover .service-icon {
    transform: none;
}

/* Metric cards - no animation */
.metric-card {
    opacity: 1;
}

/* Shimmer effect for CTA section */
.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: shimmer 8s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Bounce animation for buttons - DISABLED */
 .btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.95);
} 

/* Hero title - no typewriter effect */

/* Slide in animation for expertise items */
.expertise-item {
    animation: slideInRight 0.8s ease forwards;
    opacity: 0;
}

.expertise-item:nth-child(1) { animation-delay: 0.1s; }
.expertise-item:nth-child(2) { animation-delay: 0.2s; }
.expertise-item:nth-child(3) { animation-delay: 0.3s; }
.expertise-item:nth-child(4) { animation-delay: 0.4s; }

/* Gradient animation for section tags */
.section-tag {
    background: linear-gradient(90deg, 
        rgba(0, 82, 204, 0.1),
        rgba(0, 184, 212, 0.1),
        rgba(0, 82, 204, 0.1)
    );
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Flip animation for trust items */
.trust-item {
    animation: flipIn 0.6s ease forwards;
    opacity: 0;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes flipIn {
    from {
        opacity: 0;
        transform: rotateX(-90deg);
    }
    to {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

/* Slide in animation for industry badges */
.industry-badge {
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
}

.industry-badge:nth-child(1) { animation-delay: 0.5s; }
.industry-badge:nth-child(2) { animation-delay: 0.6s; }
.industry-badge:nth-child(3) { animation-delay: 0.7s; }
.industry-badge:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Wave animation for footer */
.footer {
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z' fill='%230A1628'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    animation: wave 15s ease-in-out infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'%3E%3Cpath d='M0,32L48,37.3C96,43,192,53,288,58.7C384,64,480,64,576,58.7C672,53,768,43,864,42.7C960,43,1056,53,1152,58.7C1248,64,1344,64,1392,64L1440,64L1440,100L1392,100C1344,100,1248,100,1152,100C1056,100,960,100,864,100C768,100,672,100,576,100C480,100,384,100,288,100C192,100,96,100,48,100L0,100Z' fill='%231A2332'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    opacity: 0.7;
    animation: wave 20s ease-in-out infinite reverse;
}

@keyframes wave {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(-25px) translateY(-5px);
    }
    50% {
        transform: translateX(0) translateY(-10px);
    }
    75% {
        transform: translateX(25px) translateY(-5px);
    }
}

/* Glow effect on form focus */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    animation: input-glow 1.5s ease-in-out infinite;
}

@keyframes input-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 82, 204, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 82, 204, 0.4);
    }
}

/* Bounce in animation for contact methods */
.contact-method {
    animation: bounceIn 0.8s ease forwards;
    opacity: 0;
}

.contact-method:nth-child(1) { animation-delay: 0.1s; }
.contact-method:nth-child(2) { animation-delay: 0.2s; }
.contact-method:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Rotate animation for step numbers */
.step-number {
    animation: rotateIn 0.8s ease forwards;
    opacity: 0;
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Hover lift effect for all cards */
.service-card,
.solution-card,
.metric-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.solution-card:hover,
.metric-card:hover {
    animation: hover-lift 0.3s ease forwards;
}

@keyframes hover-lift {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.02); }
    100% { transform: translateY(-8px) scale(1); }
}

/* Particle effect for hero background */
.hero-bg::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: particle-move 20s linear infinite;
}

@keyframes particle-move {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

/* Smooth scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation for buttons */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-badges {
        gap: 0.75rem;
    }
}

/* Service Link */
.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.service-card.featured .service-link {
    color: var(--primary);
}

.service-card.featured .service-link:hover {
    color: var(--primary-dark);
}

/* Case Studies Section */
.case-studies {
    background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
    padding: 100px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3B82F6, #0EA5E9);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.case-study-card:hover::before {
    transform: scaleY(1);
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: #3B82F6;
}

.case-study-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B82F6;
    margin-bottom: 1.5rem;
}

.case-study-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.case-study-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.industry-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    color: #3B82F6;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.result-tag {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #059669;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

.case-study-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.case-study-card p:last-child {
    margin-bottom: 0;
}

.case-study-card strong {
    color: var(--gray-800);
    font-weight: 600;
}

.problem {
    padding-left: 1rem;
    border-left: 3px solid #FCA5A5;
}

.solution {
    padding-left: 1rem;
    border-left: 3px solid #93C5FD;
}

.result {
    padding-left: 1rem;
    border-left: 3px solid #86EFAC;
}

/* Improved spacing */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.section-header p {
    font-size: 1.25rem;
    line-height: 1.7;
}

/* Enhanced button styles */
.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.05rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .section-header p {
        font-size: 1.125rem;
    }
    
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer improvements */
.footer-tagline {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-left {
    text-align: center;
    width: 100%;
}

.footer-bottom-left p {
    margin-bottom: 0.5rem;
}

.footer-certifications {
    font-size: 0.875rem;
    color: var(--secondary);
    font-weight: 500;
}

.trademark-notice {
    font-size: 1rem;
    color: var(--gray-400);
    font-weight: 400;
    opacity: 0.9;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-left {
        width: 100%;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3B82F6 0%, #0EA5E9 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.grecaptcha-badge {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 9999 !important;
}
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
