/* ---------- Variables ---------- */
:root {
  --primary: #0b6cff;
  --primary-dark: #0854c9;
  --secondary: #6c757d;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  --light: #f8f9fa;
  --dark: #343a40;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --bg: #0b1220;
  --accent: #7c5cff;
  --muted: rgba(255,255,255,0.85);
  --muted-2: rgba(255,255,255,0.8);
  --glass: rgba(255,255,255,0.06);
  --max-width: 1200px;
  --font-family: 'Inter', sans-serif;
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --border-radius: 0.375rem;
  --border-radius-lg: 0.5rem;
  --border-radius-xl: 1rem;
  --transition: all 0.3s ease;
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

img.brand-logo {
    width: 120px;
    height: auto;
}
/* ---------- Containers ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: none;
  transition: var(--transition), transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 30px rgba(12, 20, 30, 0.5);
}

.btn-primary {
  color: var(--primary);
  background: var(--white);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background: var(--gray-100);
}

.btn-secondary {
  color: var(--white);
  background: var(--secondary);
  border: 1px solid var(--secondary);
}

.btn-secondary:hover {
  background: #5a6268;
  border-color: #545b62;
}

.btn-ghost {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.03);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  top: 0;
  z-index: 1000;
  padding:12px 32px 24px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}


.brand-logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-icon {
    height: auto;
    width: 200px;
}

.brand-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}

.brand-text .gps {
  color: #1a5dab; /* corporate blue for GPS */
}

.brand-text .i-dot {
  color: #1a5dab; /* blue dot of the i */
}






/* ---------- Navigation ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  z-index: 1001;
  position: relative;
}

.hamburger,
.close-icon {
  width: 24px;
  height: 24px;
  display: block;
  transition: var(--transition);
}

.hamburger {
  height: 3px;
  background: var(--gray-800);
  position: relative;
  border-radius: 3px;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 3px;
  background: var(--gray-800);
  border-radius: 3px;
  transition: var(--transition);
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.close-icon {
  font-size: 24px;
  color: var(--gray-800);
  line-height: 1;
  text-align: center;
  display: none;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  display: none;
}

.nav-toggle[aria-expanded="true"] .close-icon {
  display: block;
}

.nav-list {
  display: flex;
  gap: 1.5rem;
}

.nav-list a {
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.nav-list a:hover,
.nav-list a:focus {
  background: var(--gray-100);
  color: var(--primary);
}

/* ---------- Language Switch ---------- */
/* Dropdown container */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

/* Toggle button */
.lang-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* Hidden menu by default */
.lang-menu {
  display: none;
  position: absolute;
  top: 100%; 
  right: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 0;
  padding: 5px 0;
  list-style: none;
  z-index: 999;
  min-width: 120px;
}

/* Show menu on hover */
.lang-dropdown:hover .lang-menu {
  display: block;
}

/* Language option style */
.lang-option {
  display: block;
  width: 100%;
  padding: 8px 12px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
}

.lang-option:hover {
  background: #f0f0f0;
}



/* ---------- Section Header Effects ---------- */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section-header.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.4s ease;
}

.section-header.fade-in h2::after {
  width: 100%;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--gray-700);
}

/* ---------- Hero Section ---------- */
.hero-gradient {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 48px 20px;
  background: linear-gradient(180deg, #07101a 0%, #08131a 60%);
  color: var(--white);
  border-radius: 80px;
  margin:0 32px;
}

.hero-inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-inner h1 {
  font-size: clamp(28px, 4.5vw, 64px);
  margin: 0 0 18px 0;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.01em;
  transform: translateY(8px);
  opacity: 0;
  color:#fff;
  animation: slideUp 0.8s ease-out 0.1s forwards;
  line-height: 1.2em;
}

.features .lead {
  font-size: clamp(16px, 2vw, 22px);
  margin: 10px 0;
  color: var(--muted);
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.35s forwards;
}

.cta-wrap {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
  opacity: 0;
  animation: fadeIn 0.6s ease-out 0.9s forwards;
}

/* Blurred blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  transform: translate3d(0, 0, 0);
  opacity: 0.9;
  z-index: 1;
}

.blob-1 {
  width: 260px;
  height: 260px;
  left: 8%;
  top: 18%;
  background: linear-gradient(180deg, var(--primary), rgba(110, 231, 183, 0.15));
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  width: 380px;
  height: 380px;
  right: 6%;
  bottom: 14%;
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.5), rgba(124, 92, 255, 0.12));
  animation: float 7s ease-in-out infinite 2s;
}

.blob-center {
  width: 120px;
  height: 120px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, rgba(110, 231, 183, 0.28), rgba(124, 92, 255, 0.12));
  filter: blur(18px);
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0.95;
  animation: bounce 2s infinite;
}

.mouse {
  width: 28px;
  height: 46px;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
  box-sizing: border-box;
}

.mouse-dot {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  animation: mouseDot 1.5s infinite;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}

@keyframes slideUp {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.9; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.9; }
}

@keyframes mouseDot {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.35; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}



/* === Services Section === */


.services-section {
            position: relative;
            padding: 100px 0;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(108, 117, 125, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(52, 152, 219, 0.2) 0%, transparent 50%);
            animation: gradientShift 8s ease-in-out infinite;
            pointer-events: none;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #3498db 0%, #6c757d 50%, #3498db 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            animation: titleGlow 3s ease-in-out infinite alternate;
            position: relative;
        }

        @keyframes titleGlow {
            0% { filter: drop-shadow(0 0 20px rgba(52, 152, 219, 0.5)); }
            100% { filter: drop-shadow(0 0 40px rgba(52, 152, 219, 0.8)); }
        }

        .section-intro {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.5s forwards;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.8;
        }

        .section-intro strong {
            background: linear-gradient(135deg, #3498db, #6c757d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 100px;
        }

        .card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: cardSlideIn 0.8s ease-out forwards;
        }

        .card:nth-child(1) { animation-delay: 0.2s; }
        .card:nth-child(2) { animation-delay: 0.4s; }
        .card:nth-child(3) { animation-delay: 0.6s; }
        .card:nth-child(4) { animation-delay: 0.8s; }
        .card:nth-child(5) { animation-delay: 1s; }
        .card:nth-child(6) { animation-delay: 1.2s; }

        @keyframes cardSlideIn {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(108, 117, 125, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .card:hover::before {
            opacity: 1;
        }

        .card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
            position: relative;
            z-index: 2;
        }

        .card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            position: relative;
            z-index: 2;
        }

        .analysis, .machine-learning {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 0px;
            opacity: 0;
            animation: fadeInUp 1s ease-out forwards;
        }

        .analysis { animation-delay: 1.5s; }
        .machine-learning { animation-delay: 2s; }

        .analysis-left, .machine-learning-right {
            padding: 40px;
        }

        .analysis-right, .machine-learning-left {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .analysis h3, .machine-learning h3 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #3498db, #6c757d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .analysis p, .machine-learning p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 20px;
        }

        .analysis ul, .machine-learning ul {
            list-style: none;
            padding: 0;
        }

        .analysis li, .machine-learning li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            color: rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }

        .analysis li:before, .machine-learning li:before {
            content: '→';
            position: absolute;
            left: 0;
            color: #3498db;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .analysis li:hover, .machine-learning li:hover {
            color: #fff;
            transform: translateX(10px);
        }

        .analysis li:hover:before, .machine-learning li:hover:before {
            color: #6c757d;
            transform: translateX(5px);
        }

        .analysis img, .machine-learning img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            transition: all 0.4s ease;
            filter: brightness(1.1) contrast(1.1);
        }

        .analysis img:hover, .machine-learning img:hover {
            transform: scale(1.05);
            filter: brightness(1.2) contrast(1.2);
        }

        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
            animation-duration: 8s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            left: 80%;
            animation-delay: 2s;
            animation-duration: 6s;
        }

        .floating-element:nth-child(3) {
            top: 60%;
            left: 20%;
            animation-delay: 4s;
            animation-duration: 7s;
        }

        .floating-element:nth-child(4) {
            top: 80%;
            left: 70%;
            animation-delay: 1s;
            animation-duration: 9s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) translateX(0px);
                opacity: 0.5;
            }
            50% {
                transform: translateY(-20px) translateX(10px);
                opacity: 1;
            }
        }

        @media (max-width: 768px) {
            .analysis, .machine-learning {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            
            .grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .card {
                padding: 30px 20px;
            }
            
            .analysis-left, .machine-learning-right {
                padding: 20px;
            }
        }

        .glow-effect {
            position: relative;
        }

        .glow-effect::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #3498db, #6c757d, #3498db, #6c757d, #3498db, #6c757d);
            border-radius: 22px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
            animation: borderRotate 4s linear infinite;
        }

        .card:hover.glow-effect::after {
            opacity: 1;
        }

        @keyframes borderRotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Logo Section */
        .logo-section {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            animation: fadeInUp 1s ease-out 0.2s forwards;
        }

        .logo-section img {
            max-height: 80px;
            width: auto;
            filter: drop-shadow(0 5px 15px rgba(52, 152, 219, 0.3));
        }
        
        
        
/* Analysis & Machine Learning Sections */
.analysis, .machine-learning {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 0px;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.analysis { animation-delay: 1.5s; }
.machine-learning { animation-delay: 2s; }

.analysis-left, .machine-learning-right { padding: 40px; }
.analysis-right, .machine-learning-left {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.analysis h3, .machine-learning h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #3498db, #6c757d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.analysis p, .machine-learning p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.analysis ul, .machine-learning ul { list-style: none; padding: 0; }
.analysis li, .machine-learning li {
    padding: 12px 0; padding-left: 30px; position: relative;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}
.analysis li:before, .machine-learning li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.analysis li:hover, .machine-learning li:hover { color: #fff; transform: translateX(10px); }
.analysis li:hover:before, .machine-learning li:hover:before { color: #6c757d; transform: translateX(5px); }

.analysis img, .machine-learning img {
    width: 100%; height: auto; border-radius: 20px;
    transition: all 0.4s ease;
    filter: brightness(1.1) contrast(1.1);
}
.analysis img:hover, .machine-learning img:hover { transform: scale(1.05); filter: brightness(1.2) contrast(1.2); }

/* Floating Elements */
.floating-elements {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; overflow: hidden;
}

.floating-element {
    position: absolute; width: 4px; height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}
.floating-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; animation-duration: 8s; }
.floating-element:nth-child(2) { top: 20%; left: 80%; animation-delay: 2s; animation-duration: 6s; }
.floating-element:nth-child(3) { top: 60%; left: 20%; animation-delay: 4s; animation-duration: 7s; }
.floating-element:nth-child(4) { top: 80%; left: 70%; animation-delay: 1s; animation-duration: 9s; }

@keyframes float {
    0%,100% { transform: translateY(0px) translateX(0px); opacity: 0.5; }
    50% { transform: translateY(-20px) translateX(10px); opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .analysis, .machine-learning { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .grid { grid-template-columns: 1fr; gap: 20px; }
    .card { padding: 30px 20px; }
    .analysis-left, .machine-learning-right { padding: 20px; text-align: left; }
}

/* Glow Effect */
.glow-effect { position: relative; }
.glow-effect::after {
    content: '';
    position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(45deg, #3498db, #6c757d, #3498db, #6c757d, #3498db, #6c757d);
    border-radius: 22px; z-index: -1; opacity: 0;
    transition: opacity 0.3s ease;
    animation: borderRotate 4s linear infinite;
}
.card:hover.glow-effect::after { opacity: 1; }
@keyframes borderRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Logo Section */
.logo-section { text-align: center; margin-bottom: 60px; opacity: 0; animation: fadeInUp 1s ease-out 0.2s forwards; }
.logo-section img { max-height: 80px; width: auto; filter: drop-shadow(0 5px 15px rgba(52, 152, 219, 0.3)); }




.services-section {
  padding: 5rem 1rem;
  /*background: linear-gradient(135deg, #0f172a, #1e293b);*/
  color: #fff;
}

.services-section .container {
  max-width: 1440px;
  margin: 0 auto;
}


.services-section .cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.services-section {
  view-timeline-name: --servicesTimeline;
  view-timeline-axis: block;
}

.services-section .card {
  opacity: 0;
  transform: translateY(100px) scale(0.9);
  animation: smoothSlideUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-timeline: --servicesTimeline;
  animation-range: entry 35% cover 55%; /* starts later, smoother trigger */
}

/* Optional stagger for cascade effect */
.services-section .card:nth-child(1) { animation-delay: 0.1s; }
.services-section .card:nth-child(2) { animation-delay: 0.3s; }
.services-section .card:nth-child(3) { animation-delay: 0.5s; }

@keyframes smoothSlideUp {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03); /* soft overshoot */
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


@media (min-width: 768px) {
  .services-section .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #38bdf8;
}

.card p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.6;
}

/* === Icon Wrapper === */
.icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.card:hover .icon-wrapper {
  transform: scale(1.1);
}

.icon {
  width: 32px;
  height: 32px;
  stroke: #fff;
}

/* === Color Variants === */
.bg-blue {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.bg-green {
  background: linear-gradient(135deg, #22c55e, #10b981);
}

.bg-purple {
  background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

/* ---------- Features Section ---------- */
/* === ERP Section === */
:root {
  /* Colors */
  --color-dark-background: #0f172a;
  --color-card-background: #1e293b;
  --color-text-light: #e2e8f0; /* Main text color for readability */
  --color-text-secondary: #cbd5e1; /* Lighter color for descriptions */
  --color-accent-primary: #38bdf8;
  --color-accent-secondary: #fcd34d;
  /* Fonts */
  --font-family-primary: 'Inter', sans-serif;
 
  /* Spacing & Sizing */
  --spacing-section-padding: 6rem 1rem;
  --spacing-container-max-width: 1200px;
  --spacing-card-padding: 2.5rem;
  --spacing-gap: 3rem;
  --border-radius-card: 1rem;
  --border-radius-image: 1.5rem;
}
 
/* ============================= */
/* 2. Base & Typography Styles   */
/* ============================= */
 
/* Global box-sizing */
.erp-section * {
  box-sizing: border-box;
}
 
/* Base section styles */
.erp-section {
  font-family: var(--font-family-primary);
  padding: var(--spacing-section-padding);
  background-color: var(--color-dark-background);
  color: var(--color-text-light);
}
 
.container {
  max-width: var(--spacing-container-max-width);
  margin: 0 auto;
}
 
/* Section-specific typography */
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 1rem;
}
 
.accent-text {
  color: var(--color-accent-primary);
}
 
.intro {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}
 
/* ============================= */
/* 3. Layout                     */
/* ============================= */
 
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
 
.erp-left {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.5rem; /* Increased gap to accommodate stacked cards */
}
 
.erp-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
 
/* ============================= */
/* 4. Components                 */
/* ============================= */
 
/* Layered Card Container */
.erp-card {
  position: relative;
  padding: var(--spacing-card-padding);
  background-color: var(--color-card-background);
  border-radius: var(--border-radius-card);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
/* Second 'layered' background for the card */
.erp-card::after {
  content: '';
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent-primary);
  border-radius: var(--border-radius-card);
  z-index: -1;
  transition: transform 0.3s ease;
}
 
/* Hover effect on both layers */
.erp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
 
.erp-card:hover::after {
  transform: translate(-0.5rem, -0.5rem);
}
 
.card-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    /* Increased visibility for the number */
    color: rgba(255, 255, 255, 0.3); 
    transition: color 0.3s ease;
    z-index: 2;
}
 
.erp-card:hover .card-number {
    /* Increased visibility on hover */
    color: rgba(255, 255, 255, 0.5);
}
 
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent-secondary);
  margin-bottom: 0.75rem;
  position: relative; /* Ensure title is on top */
  z-index: 3;
}
 
.card-description {
  /* This color variable is now brighter for better readability */
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  position: relative;
  z-index: 3;
}
 
/* Image */
.erp-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-image);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
 
.erp-image:hover {
  transform: scale(1.03);
}
 
/* ============================= */
/* 5. Responsive Design          */
/* ============================= */
 
@media (max-width: 992px) {
  .row {
    flex-direction: column;
    text-align: center;
  }
  .erp-right {
    margin-top: 2rem;
  }
  .erp-card {
    text-align: left;
  }
}
 
@media (max-width: 576px) {
  .section-title {
    font-size: 2.25rem;
  }
}
/* ---------- Services Section ---------- */
/* === Servicios Detalle === */
.services-detail {
  padding: 5rem 1rem;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}

.services-detail .container {
  max-width: 1440px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #38bdf8;
  text-align: center;
  margin-bottom: 1rem;
}

section#services .section-intro {
    text-align: center;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* === Grid de bloques === */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #facc15;
}

.card p {
  font-size: 1rem;
  color: #e2e8f0;
  line-height: 1.6;
}

/* === Secciones largas (análisis / ML) === */
.analysis, .machine-learning {
  padding: 2rem;
  
}

.analysis {
    display: flex;
    gap: 20px;
}
.analysis h3, .machine-learning h3 {
  color: #f472b6;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}


.analysis-right.col {
    width: 100%;
}
.analysis-right img {
  opacity: 0;
  transform: translateX(150px);
  animation: slowSlideInRight 2.2s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 35% cover 55%;
}

@keyframes slowSlideInRight {
  from {
    opacity: 0;
    transform: translateX(150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.analysis p, .machine-learning p {
  color: #000;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.analysis ul, .machine-learning ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.analysis li, .machine-learning li {
  margin-bottom: 0.5rem;
  color: #000;
}


.machine-learning {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.machine-learning-left.col {
    width: 100%;
}
.machine-learning-left img {
  opacity: 0;
  transform: translateX(-150px);
  animation: slowSlideInLeft 2.2s ease-out forwards;
  animation-timeline: view();
  animation-range: entry 35% cover 55%;
}

@keyframes slowSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-150px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- Documents Section ---------- */
/* ==== DOCUMENTOS SECTION ==== */


.container {
    max-width: 1440px;
    margin: 0 auto;
}

/* --- Typography & Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--heading-color);
    margin: 0;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--primary-color);
    font-weight: 400;
    margin-top: 10px;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* --- Layout & Components --- */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .content-grid {
        grid-template-columns: 1.5fr 1fr;
        grid-template-areas:
            "features-card features-image"
            "analysis-card analysis-card";
    }

    .features-card {
        grid-area: features-card;
    }

    .features-image-container {
        grid-area: features-image;
    }

    .analysis-card {
        grid-area: analysis-card;
    }
}

.features-card,
.analysis-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card:hover,
.analysis-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.features-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #e9ecef, #f1f3f5);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.features-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.features-image:hover {
    transform: scale(1.05);
}

.features-list,
.analysis-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li,
.analysis-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.features-list li .icon,
.analysis-list li::before {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.features-list li .icon {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.analysis-list li::before {
    content: '→';
    font-weight: bold;
    color: var(--accent-color);
    font-size: 1.5rem;
}

/* ---------- Geolocation Section ---------- */
/* ==== GEOLOCALIZACIÓN SECTION ==== */
.geolocalizacion-section {
  padding: 80px 20px;
  background: #eef6fb;
  color: #333;
}

.geolocalizacion-section .container {
  max-width: 1440px;
  margin: 0 auto;
}

.section-title {
  font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ef960c 0%, #0a92ec 50%, #ec0c0c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: textShimmer 3s 
ease-in-out infinite alternate;
}

/* Optional shimmer animation */
@keyframes textShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}


.intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
}
.intro-text {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000;
}
.geo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.geo-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.geo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.geo-card h3 {
  font-size: 1.3rem;
  color: #1d3557;
  margin-bottom: 8px;
}

.geo-card h4 {
  font-size: 1.1rem;
  color: #457b9d;
  margin-bottom: 10px;
}

.geo-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.geo-block {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.geo-block h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1d3557;
}

.geo-block ul {
  list-style: disc;
  padding-left: 20px;
}

.geo-block ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #444;
}


/* ---------- CTA Section ---------- */
/* ==== CTA Section ==== */
.cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #fff;
  border-radius: 16px;
  margin: 60px auto;
  max-width: 1100px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.cta-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-title span {
  color: #facc15;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 35px;
  color: #e2e8f0;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  background: #facc15;
  color: #1e293b;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-cta:hover {
  background: #fbbf24;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}


/* ---------- Contact Section ---------- */
/* ==== Contact Section ==== */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  text-align: center;
}

.contact-section .container {
  max-width: 1440px;
  margin: 0 auto;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #38bdf8;
}

.contact-intro {
  font-size: 1.2rem;
  color: #cbd5e1;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.contact-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.contact-card .icon {
    border: 1px solid;
    padding: 32px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.contact-card .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #facc15;
}

.contact-card p {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-card a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card .detail {
  display: block;
  font-size: 0.95rem;
  color: #94a3b8;
}


.map-section h2 {
    color: #fff;
    font-size: 40px;
}

.map-section {
    padding: 100px 0px;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Legal Section ---------- */
/* ===== LEGAL SECTION ===== */
.legal-section {
  background: #fff;
  padding: 0px;
}

.legalTitle-container {
    text-align: center;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #07101a 0%, #0f172a 60%);
    margin-top: 0px;
}

.legalTitle-container h1 {
    color: #fff;
    font-size: 45px;
}
.legal-container {
  max-width: 960px;
  margin: 0 auto;
  color: #333;
  padding:100px 20px;
}

.legal-container h1 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: #0a3d62;
 
}

.legal-container h2 {
  font-size: 1.4rem;
  margin-top: 30px;
  margin-bottom: 12px;
  color: #145374;
}

.legal-container h3 {
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 8px;
  color: #1d2d50;
}

.legal-container p {
  margin-bottom: 15px;
  text-align: justify;
}

.legal-container ul {
  margin: 10px 0 20px 40px;
  padding-left: 10px;
}

.legal-container ul li {
  list-style: disc;
  margin-bottom: 8px;
}

.legal-container a {
  color: #0066cc;
  text-decoration: underline;
}

.legal-container a:hover {
  color: #004080;
}


/* ---------- Footer ---------- */
.site-footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gray-300);
}

.footer-brand p.small {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.footer-links h4,
.footer-contact h4,
.footer-legal h4 {
  color: var(--white);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
  color: var(--gray-300);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
  color: var(--primary);
}

.footer-contact p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--gray-300);
}

.footer-link {
  color: var(--gray-300);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  text-align: center;
}

.footer-bottom small {
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ---------- Utility Classes ---------- */
.text-center {
  text-align: center;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-2 {
  margin-top: 2rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .service-content,
  .doc-content,
  .geo-content {
    flex-direction: column;
    text-align: center;
  }

  .service-list li,
  .doc-feature h4,
  .geo-feature h3 {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--white);
    transform: translateY(-100%);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    padding: 5rem 2rem;
    gap: 1.5rem;
    z-index: 1000;
  }

  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list a {
    font-size: 1.2rem;
    padding: 1rem;
    text-align: center;
    display: block;
  }

  .header-actions {
    z-index: 1001;
  }

  .features,
  .services,
  .documents,
  .geolocation,
  .cta,
  .contact,
  .legal {
    padding-bottom: 36px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-wrap {
    flex-direction: column;
    align-items: center;
    margin-top: -21px;
  }

  .cta-wrap .btn {
    width: 100%;
    max-width: 300px;
  }

  .blob-1, .blob-2 {
    display: none;
  }
}

@media (max-width: 480px) {
    
    .site-header {
        padding:10px;
        
    }
  .container {
    padding: 0 1rem;
  }
  
  nav.main-nav {
    position: absolute;
    right: 10px;
}

.header-actions {
    position: absolute;
    right: 74px;
}

  .brand-logo {
    width: 120px;
  }

      .hero-inner h1 {
        font-size: 43px;
        line-height: 1.3em;
    }

  .features .lead {
    font-size: 1rem;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .lang-switch {
    position: static;
  }
  
      .hero-gradient {
        min-height: auto;
        margin: 15px;
        border-radius: 20px;
    }
  
  .erp-section .row {
      display:block;
  }
/*  .erp-right .col {*/
/*    margin: 60px 0px 0px 0px;*/
/*}*/
.erp-image {
    margin:60px 0px 0px 0px ;
}
  .erp-left.col {
      grid-template-columns: 1fr;
  }
  
  .analysis {
    display: block;
   
}

.machine-learning {
            display: flex;
        flex-direction: column-reverse;
    
}

 .geo-grid {
        grid-template-columns: 1fr; /* stack items vertically */
        grid-template-rows: auto;
    }
    
    .Características {
    display: block;
   
}
  
  .Características-right {
    width: 100%;
}
.scroll-indicator {
    bottom: -6px;
}

}

.doc-mgmt-section {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
    position: relative;
}

.doc-mgmt-section *,
.doc-mgmt-section *::before,
.doc-mgmt-section *::after {
    box-sizing: border-box;
}

.doc-mgmt-section .doc-mgmt-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}

/* Animated Background Particles */
.doc-mgmt-section .floating-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.doc-mgmt-section .bg-floating-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float-particles 8s linear infinite;
}

.doc-mgmt-section .bg-floating-dot:nth-child(1) { left: 10%; animation-delay: 0s; }
.doc-mgmt-section .bg-floating-dot:nth-child(2) { left: 20%; animation-delay: 2s; }
.doc-mgmt-section .bg-floating-dot:nth-child(3) { left: 30%; animation-delay: 4s; }
.doc-mgmt-section .bg-floating-dot:nth-child(4) { left: 40%; animation-delay: 1s; }
.doc-mgmt-section .bg-floating-dot:nth-child(5) { left: 50%; animation-delay: 3s; }
.doc-mgmt-section .bg-floating-dot:nth-child(6) { left: 60%; animation-delay: 5s; }
.doc-mgmt-section .bg-floating-dot:nth-child(7) { left: 70%; animation-delay: 2.5s; }
.doc-mgmt-section .bg-floating-dot:nth-child(8) { left: 80%; animation-delay: 4.5s; }

/* Header Section */
.doc-mgmt-section .doc-mgmt-hero {
    text-align: center;
    margin-bottom: 120px;
    opacity: 0;
    animation: slideInFromTop 1s ease-out 0.3s forwards;
}

.doc-mgmt-section .doc-mgmt-brand {
    display: inline-block;
    position: relative;
    margin-bottom: 40px;
}

.doc-mgmt-section .doc-mgmt-logo-orb {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
    position: relative;
    animation: rotate 10s linear infinite;
    box-shadow: 0 0 50px rgba(255, 107, 107, 0.3);
}

.doc-mgmt-section .doc-mgmt-logo-orb::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

.doc-mgmt-section .doc-mgmt-logo-orb::after {
    content: "📄";
}

.doc-mgmt-section .doc-mgmt-brand-label {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #4ecdc4;
    margin-bottom: 30px;
}

.doc-mgmt-section .doc-mgmt-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ef960c 0%, #0a92ec 50%, #ec0c0c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: textShimmer 3s ease-in-out infinite alternate;
}

.doc-mgmt-section .doc-mgmt-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto;
    font-weight: 300;
}

/* Features Section */
.doc-mgmt-section .doc-mgmt-features-area {
    position: relative;
    margin-top: 100px;
}

.doc-mgmt-section .doc-mgmt-feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInFromSide 0.8s ease-out forwards;
    position: relative;
}

/* Alternate Left / Right Rows */
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(even) {
    flex-direction: row-reverse;
    transform: translateX(100px);
}

/* Animation delays */
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(1) { animation-delay: 0.5s; }
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(2) { animation-delay: 0.8s; }
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(3) { animation-delay: 1.1s; }
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(4) { animation-delay: 1.4s; }

.doc-mgmt-section .doc-mgmt-feature-graphic {
    flex: 1;
    position: relative;
    margin: 0 60px;
}

.doc-mgmt-section .doc-mgmt-geometric-shape {
    width: 400px;
    height: 300px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.doc-mgmt-geometric-shape img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Different Shape Per Row */
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(1) .doc-mgmt-geometric-shape {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 80%);
}
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(2) .doc-mgmt-geometric-shape {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    clip-path: polygon(0 0%, 100% 20%, 80% 100%, 0% 100%);
}
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(3) .doc-mgmt-geometric-shape {
    background: linear-gradient(135deg, #45b7d1, #96c93d);
    clip-path: polygon(20% 0%, 100% 0%, 100% 80%, 0% 100%);
}
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(4) .doc-mgmt-geometric-shape {
    background: linear-gradient(135deg, #f7971e, #ffd200);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}

.doc-mgmt-section .doc-mgmt-geometric-shape:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.doc-mgmt-section .doc-mgmt-feature-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    animation: bounce 2s ease-in-out infinite;
}

.doc-mgmt-section .doc-mgmt-feature-row:nth-child(1) .doc-mgmt-feature-emoji::before { content: "🎨"; }
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(2) .doc-mgmt-feature-emoji::before { content: "📚"; }
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(3) .doc-mgmt-feature-emoji::before { content: "🧠"; }
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(4) .doc-mgmt-feature-emoji::before { content: "⚡"; }

.doc-mgmt-section .doc-mgmt-feature-text {
    flex: 1;
    padding: 40px;
}

.doc-mgmt-section .doc-mgmt-feature-counter {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    line-height: 0.8;
    margin-bottom: 20px;
}

.doc-mgmt-section .doc-mgmt-feature-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
}

.doc-mgmt-section .doc-mgmt-feature-heading::after {
    content: '';
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.doc-mgmt-section .doc-mgmt-feature-details {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Connector Lines */
.doc-mgmt-section .doc-mgmt-connector-line {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, transparent, #4ecdc4, transparent);
    right: 50%;
    top: -100px;
    animation: lineGlow 2s ease-in-out infinite alternate;
}
.doc-mgmt-section .doc-mgmt-feature-row:nth-child(even) .doc-mgmt-connector-line {
    left: 50%;
    right: auto;
}

/* Animations */
@keyframes slideInFromTop {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInFromSide {
    from { opacity: 0; }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1.2); opacity: 0; }
}
@keyframes textShimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
@keyframes bounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}
@keyframes float-particles {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
@keyframes lineGlow {
    0% { box-shadow: 0 0 5px #4ecdc4; }
    100% { box-shadow: 0 0 20px #4ecdc4, 0 0 30px #4ecdc4; }
}

/* Remove clip-path from all geometric shapes */
.doc-mgmt-section .doc-mgmt-geometric-shape {
    clip-path: none !important;
    border-radius: 20px; /* optional: add rounded corners */
}
/* Responsive */
@media (max-width: 1024px) {
    .doc-mgmt-section .doc-mgmt-feature-row {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 80px;
    }
    .doc-mgmt-section .doc-mgmt-feature-graphic {
        margin: 0 0 40px 0;
    }
    .doc-mgmt-section .doc-mgmt-geometric-shape {
        width: 300px;
        height: 200px;
        margin: 0 auto;
    }
    .doc-mgmt-section .doc-mgmt-connector-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .doc-mgmt-section .doc-mgmt-title { font-size: 2.5rem; }
    .doc-mgmt-section .doc-mgmt-geometric-shape { width: 250px; height: 180px; }
    .doc-mgmt-section .doc-mgmt-feature-heading { font-size: 1.8rem; }
    .doc-mgmt-section .doc-mgmt-wrapper { padding: 60px 15px; }
    .doc-mgmt-section .doc-mgmt-brand-label { font-size: 1.8rem; }
}



