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

:root {
    /* Colors - Blue & Green Theme */
    --primary-color: #10B981;
    --primary-dark: #059669;
    --secondary-color: #3B82F6;
    --secondary-dark: #2563EB;
    --accent-color: #06B6D4;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-primary: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    
    /* Text Colors */
    --text-primary: #1a1a2e;
    --text-secondary: #555;
    --text-light: #777;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-dark: #1a1a2e;
    --bg-light: #f0f4f8;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    
    /* border */
    --border: #e5e7eb;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 60px 0;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
}

.logo img {
    height: 100px;
    width: auto;
}

/* .logo img {
    display: block;
    width: auto;
    max-height: 80px;  keeps visual size but allows high-DPI rendering
    height: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast; improve sharpness on WebKit
    image-rendering: crisp-edges;
    backface-visibility: hidden; */
    /* transform: translateZ(0);  trigger GPU compositing for smoother rendering */
    /* will-change: transform;
    max-width: 100%;
} */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   DROPDOWN MENU
   ============================================ */

.nav-item {
    position: relative;
}

.nav-item.dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* .nav-item.dropdown .nav-link::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    transition: var(--transition);
}

.nav-item.dropdown:hover .nav-link::after {
    transform: rotate(180deg);
} */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
    padding: 10px 0;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu .dropdown-item {
    display: block;
    padding: 12px 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.dropdown-menu .dropdown-item:hover {
    background: rgba(16, 185, 129, 0.05);
    color: var(--primary-color);
    padding-left: 30px;
}

.dropdown-menu .dropdown-item:hover::before {
    height: 100%;
}

/* Mobile dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        margin-left: 20px;
        background: rgba(16, 185, 129, 0.05);
        display: none;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }
    
    .nav-menu.active .dropdown-menu {
        display: block;
    }
}

@media (max-width: 350px) {
    .dropdown-menu {
        max-height: 300px;
        overflow-y: auto;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   BADGES
   ============================================ */

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background-image: url(../imgs/bg1.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.404);
  z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-container-section {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #F0F4F8;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-subtitle-section {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-buttons-section {
    /* display: flex; */
    display: initial;
    gap: 20px;
    margin-bottom: 50px;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
    font-size: 24px;
}

.stat-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0;
}

.stat-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.hero-image {
    position: relative;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    /* box-shadow: var(--shadow-xl); */
}

.floating-badges {
    /* position: absolute; */
    margin-top: 250px;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Service badges */

.badge-card-primary {
    /* background: white; */
    padding: 15px;
    /* border-radius: 15px; */
    /* box-shadow: var(--shadow-lg); */
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.badge-card-primary:nth-child(2) {
    animation-delay: 0.5s;
}

.badge-card-primary:nth-child(3) {
    animation-delay: 1s;
}

.badge-card-primary:hover {
    transform: translateY(-10px) scale(1.05);
}

.badge-card-primary img {
    width: 200px;
    /* width: 180px; */
    height: auto;
    /* height: 80px; */
}

/* partner badges */

.badge-card {
    /* background: white; */
    padding: 15px;
    /* border-radius: 15px; */
    /* box-shadow: var(--shadow-lg); */
    transition: var(--transition);
    /* animation: float 3s ease-in-out infinite; */
}

/* .badge-card:nth-child(2) {
    animation-delay: 0.5s;
}

.badge-card:nth-child(3) {
    animation-delay: 1s;
} */

.badge-card:hover img {
    /* animation: pulse 1.6s ease-in-out infinite; */
    transform: translateY(-8px) scale(1.02);
    /* will-change: transform, box-shadow, opacity; */
    /* transform: translateY(-10px) scale(1.05) */
}

.badge-card img {
    width: 200px;
    /* width: 180px; */
    height: auto;
    /* height: 80px; */
}

.partner-badge img {
    width: 180px;
    /* width: 200px; */
    height: auto;
}

.partner-badge:hover img {
    /* animation: pulse 1.6s ease-in-out infinite; */
    transform: translateY(-8px) scale(1.02);
    /* opacity: 0.9; */
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ============================================
   POLICY STYLES
   ============================================ */
.last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.privacy-content {
    padding: 4rem 0;
}

.privacy-sections {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.privacy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 1rem;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-section a:hover {
    text-decoration: underline;
}

/* .contact-details {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details p:last-child {
    margin-bottom: 0;
} */

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.section-subtitle a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    /* background: white; */
    padding: 40px; /**/
    border-radius: 20px; /**/
    box-shadow: var(--shadow-md);
    transition: var(--transition); /**/
    position: relative; /**/
    overflow: hidden; /**/
} 

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

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
}

.service-features i {
    color: var(--primary-color);
}

/* ============================================
   CASE STUDIES SECTION
   ============================================ */

.case-studies {
    padding: var(--section-padding);
    background: white;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    background: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

.case-study-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 50px;
    align-items: center;
    background: var(--bg-light);
    padding: 50px;
    border-radius: 20px;
}

.case-study-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* gap: 50px; */
    /* text-align: center; */
    /* background: var(--bg-light); */
    background-image: url('../imgs/about-service-7.jpg');
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    padding: 50px;
    border-radius: 20px;
}

/* .contact-section {
  background: var(--bg-dark);
  background-image: url(../images/photo.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
} */

/* .case-study-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
} */

.case-study-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.case-study-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.case-study-image:hover img {
    transform: scale(1.05);
}

.case-study-image-service {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.case-study-image-service img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    transition: var(--transition);
}

.case-study-image-service:hover img {
    transform: scale(1.05);
}

.case-study-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
}

.case-study-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.case-study-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.case-study-metrics {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.metric h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-secondary);
    margin: 0;
}
/* service cards */

.process-list {
    margin-bottom: 40px;
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 28px;
    padding: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.process-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.process-item:hover::before {
    transform: scaleY(1);
}

.number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-right: 20px;
    min-width: 32px;
}

.process-content {
    flex: 1;
}

.process-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 6px;
}

.process-description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.benefits {
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.benefits-service {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    animation: slideIn 0.5s ease-out backwards;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.checkmark {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(17, 153, 142, 0.3);
}

.checkmark::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.benefit-label {
    font-weight: 700;
    color: #2d3748;
    margin-right: 8px;
    font-size: 15px;
}

.benefit-text {
    color: #4a5568;
    font-size: 15px;
    /* text-wrap: inherit; */
    /* text-align: justify; */
}

.quote {
    border-left: 4px solid #11998e;
    padding: 24px 24px 24px 28px;
    background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 100%);
    border-radius: 12px;
    font-style: italic;
    color: #2d3748;
    line-height: 1.7;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(17, 153, 142, 0.1);
}

/* mobile responsiveness */
@media (max-width: 768px) {
    .process-item {
        padding: 16px;
        margin-bottom: 20px;
    }

    .number {
        font-size: 20px;
        margin-right: 12px;
        min-width: 28px;
    }

    .process-title {
        font-size: 16px;
    }

    .process-description {
        font-size: 14px;
    }

    .benefits {
        padding: 24px;
    }

    .benefits-service {
        padding: 24px;
    }

    .benefit-item {
        margin-bottom: 16px;
    }

    .benefit-label,
    .benefit-text {
        font-size: 14px;
    }

    .quote {
        font-size: 14px;
        padding: 20px 20px 20px 24px;
    }

}

@media (max-width: 480px) {
    .process-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .number {
        margin-bottom: 8px;
    }
}

/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
    padding: var(--section-padding);
    background: var(--bg-dark);
    color: white;
}

.process .section-title,
.process .section-subtitle {
    color: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 62px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
}

.process-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 15px;
    font-size: 32px;
    margin-bottom: 25px;
}

.process-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.process-features {
    list-style: none;
}

.process-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.process-features i {
    color: var(--primary-color);
}

.why-choose-us {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
}

.why-choose-us h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ============================================
   ROADMAP SECTION
   ============================================ */

.flowchart-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    padding: 40px 0;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-width: min-content;
    padding: 20px;
}

.services-grid-flow {
    display: contents;
}

/* Top Row Container */
.flow-row-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 0;
}

/* Bottom Row Container */
.flow-row-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 0;
    flex-direction: row-reverse;
}

.node {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out backwards;
    width: 320px;
    min-height: 280px;
    flex-shrink: 0;
}

.node:nth-child(1) { animation-delay: 0.1s; }
.node:nth-child(3) { animation-delay: 0.2s; }
.node:nth-child(5) { animation-delay: 0.3s; }
.node:nth-child(8) { animation-delay: 0.4s; }
.node:nth-child(10) { animation-delay: 0.5s; }
.node:nth-child(12) { animation-delay: 0.6s; }

.node::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.node:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.node:hover::before {
    opacity: 1;
}

.node.active {
    border-color: rgba(59, 130, 246, 0.8);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

.node.active::before {
    opacity: 1;
}

.service-icon-map {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.node:hover .service-icon-map {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-map .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.node-content {
    position: relative;
    z-index: 1;
}

.node h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.node p {
    color: #a0aec0;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-features-flow {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.node.active .service-features-flow {
    max-height: 500px;
    margin-top: 15px;
}

.service-features-flow span {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: 8px;
    border-left: 3px solid #3b82f6;
    font-size: 13px;
    color: #cbd5e0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features-flow i {
    color: #3b82f6;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #3b82f6;
    z-index: 1;
}

/* Horizontal connector */
.connector {
    position: relative;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.6), rgba(59, 130, 246, 0.3));
    animation: flowAnimation 2s ease-in-out infinite;
    flex-shrink: 0;
    margin: 0 -2px;
}

.connector::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #3b82f6;
    font-size: 28px;
    animation: arrowPulse 2s ease-in-out infinite;
}

/* Reverse connector for bottom row */
.flow-row-bottom .connector::after {
    content: '';
    right: auto;
    left: -15px;
}

/* Vertical connector */
.connector-vertical {
    position: relative;
    width: 3px;
    height: 80px;
    left: 35%;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.6), rgba(59, 130, 246, 0.3));
    animation: flowAnimation 2s ease-in-out infinite;
    flex-shrink: 0;
    margin: -2px 0;
}

.connector-vertical::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid rgba(59, 130, 246, 0.6);
    animation: arrowPulseVertical 2s ease-in-out infinite;
}

@keyframes flowAnimation {
    0%, 100% {
        opacity: 0.6;
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
    }
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 1;
    }
}

@keyframes arrowPulseVertical {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateX(-50%) scale(1.3);
        opacity: 1;
    }
}

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Mobile responsiveness */
@media (max-width: 1200px) {
    .flow-row-top,
    .flow-row-bottom {
        flex-direction: column;
    }

    .flow-row-bottom {
        flex-direction: column;
    }

    .connector {
        transform: rotate(90deg);
        margin: 20px 0;
    }

    .connector::after {
        content: '';
        transform: translateY(-50%) rotate(-90deg);
    }

    .connector-vertical {
        left: 1%;
    }

    .flow-row-bottom .connector::after {
        content: '';
    }

    .node {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .node {
        padding: 24px;
        width: 280px;
        min-height: 250px;
    }

    .service-icon-map {
        width: 60px;
        height: 60px;
    }

    .connector {
        width: 60px;
    }

    .connector-vertical {
        height: 60px;
        left: 1%;
    }
}

/* Custom scrollbar */
.flowchart-wrapper::-webkit-scrollbar {
    height: 8px;
}

.flowchart-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.flowchart-wrapper::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 10px;
}

.flowchart-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}

/* ============================================
   TABLE SECTION
   ============================================ */
.table-wrapper {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
}

thead th {
    color: white;
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid #10B981;
}

tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
}

tbody tr:hover {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    transform: scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

tbody tr.active {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-left: 4px solid #10B981;
}

tbody td {
    padding: 24px 20px;
    vertical-align: middle;
    font-size: 15px;
    color: #4a5568;
}

.partner-cell {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.partner-logo img {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 20px;
    flex-shrink: 0;
}

/* .partner-logo.aws {
    background: #FF9900;
    color: white;
} */

/* .partner-logo.snowflake {
    background: #29B5E8;
    color: white;
} */

/* .partner-logo.informatica {
    background: #FF6B35;
    color: white;
} */

.focus-cell {
    font-weight: 500;
    color: #2d3748;
}

.enables-cell {
    color: #4a5568;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    /* Stack table as cards on mobile */
    .table-container {
        overflow-x: visible;
    }

    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tbody tr {
        margin-bottom: 20px;
        border-radius: 12px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    tbody td {
        border: none;
        position: relative;
        padding: 16px 20px;
        text-align: left;
    }

    tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 12px;
        color: #718096;
        display: block;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }

    .partner-cell {
        font-size: 18px;
    }

    tbody tr:hover {
        transform: scale(1);
    }
}

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

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

/* Animation for rows */
tbody tr {
    animation: slideIn 0.5s ease-out backwards;
}

tbody tr:nth-child(1) { animation-delay: 0.1s; }
tbody tr:nth-child(2) { animation-delay: 0.2s; }
tbody tr:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tooltip for mobile */
.tooltip {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a2e;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.tooltip.show {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
}

select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
}

select:focus, textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.info-content p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 5px;
}

.social-links {
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.social-links h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Form validation */
.error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.phone-input-container {
    position: relative;
}

.phone-input-container input {
    padding-left: 60px;
}

.iti {
    width: 100%;
}

.captcha-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.captcha-text {
    font-size: 1.8rem;
    letter-spacing: 8px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c3e50;
    background: #e9ecef;
    padding: 15px;
    border-radius: 8px;
    user-select: none;
    font-family: 'Courier New', monospace;
}

.captcha-input {
    width: 250px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    letter-spacing: 2px;
}


/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: var(--bg-dark);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    bottom: 50px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    pointer-events: none;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-left {
    text-align: center;
}

.aws-partner-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* padding: 8px 12px; */
    padding-right: 5px;
    border-radius: 12px;
    margin-bottom: 16px;
    gap: 8px;
    box-shadow: var(--shadow-md);
    transform: translateZ(0);
}

/* make sure partner image is smaller (overrides later rule) */
.aws-partner-badge img {
    width: 120px !important;
    height: auto;
    display: block;
}

/* .aws-partner-badge img {
    width: 180px;
    height: auto;
} */

.cta-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-social {
    display: flex;
    justify-content: center;
}

.cta-social a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    transition: var(--transition);
}

.cta-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.cta-right {
    color: white;
}

.cta-right h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-right p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cta-stat-item {
    text-align: center;
}

.cta-stat-item h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.cta-stat-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    /* background: var(--bg-dark); */
    background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 100%);
    color: white;
    padding: 50px 0 30px;
}

/* .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
} */

.footer-container {
    /* max-width: 1800px; */
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.footer-content {
    /* display: grid; */
    display:flex;
    justify-content: center;
    /* grid-template-columns: 1.5fr 2fr; */
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo img {
    /* background: white; */
    /* height: 80px;
    margin-bottom: 20px; */
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-columns {
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    /* border-right: 1px solid rgba(255, 255, 255, 0.1); */
    padding-top: 30px;
    /* display: grid; */
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    /* margin-bottom: 3rem; */
}

.footer-column {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-column:nth-child(5) { animation-delay: 0.5s; }
.footer-column:nth-child(6) { animation-delay: 0.6s; }

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

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.9rem;
}

.footer-column ul li a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-column ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.footer-column ul li a:hover {
    color: white;
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-column ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-stat {
    text-align: center;
}

.footer-stat h4 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.footer-stat p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ============================================
   CHATBOT
   ============================================ */

.chatbot-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow-x: hidden; */
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #ff3838;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.chatbot-container {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: none;
    flex-direction: column;
    z-index: 999;
    animation: slideInUp 0.3s ease-out;
}

.chatbot-container.active {
    display: flex;
}

.chatbot-header {
    background: var(--gradient-primary);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.chatbot-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.chatbot-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    margin: 5px 0 0;
    opacity: 0.9;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    max-height: 450px;
    background: #f8f9fa;
}

.message {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease-out;
}

.message-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-content p {
    background: white;
    padding: 12px 15px;
    border-radius: 12px;
    margin: 0 0 10px;
    box-shadow: var(--shadow-sm);
    line-height: 1.6;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-avatar {
    background: var(--secondary-color);
}

.user-message .message-content p {
    background: var(--gradient-primary);
    color: white;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-reply {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.quick-reply:hover {
    background: var(--primary-color);
    color: white;
}

.chatbot-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    background: white;
    border-radius: 0 0 20px 20px;
}

.chatbot-input input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
}

.chatbot-input input:focus {
    border-color: var(--primary-color);
}

.chatbot-input button {
    width: 45px;
    height: 45px;
    margin-left: 10px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.chatbot-input button:hover {
    transform: scale(1.1);
}

/* ============================================
   SCROLL TO TOP
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow-x: hidden; */
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* ============================================
Cookie Consent Banner
============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.cookie-banner h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cookie-banner p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

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

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}
/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        z-index: 999;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-container-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons-section {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        order: -1;
    }
    
    .floating-badges {
        position: static;
        transform: none;
        margin-top: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study-card {
        grid-template-columns: 1fr;
    }
    
    .case-study-metrics {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .chatbot-container {
        width: calc(100% - 40px);
        right: 20px;
        left: 20px;
    }
    
    .scroll-to-top {
        right: 20px;
        bottom: 100px;
    }
    
    .tabs {
        gap: 10px;
    }
    
    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .cta-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-right h2 {
        font-size: 32px;
    }
}

@media (max-width: 760px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .badge-card img {
        width: 100px;
    }

    .badge-card-primary img {
        width: 100px;
    }
    
    .partner-badge img {
        width: 100px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .case-study-card {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}