/* Macrocam styles */

:root {
    --primary-yellow: #FFD700;
    --yellow-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --dark-gradient: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-blue: #00d4ff;
    --success-green: #00ff88;
    --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
    font-weight: 400;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-yellow);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 0.5rem 0;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 200px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background: var(--yellow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent;
}

.toggler-line {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-yellow);
    margin: 5px auto;
    transition: 0.3s;
    border-radius: 2px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-item {
    margin: 0.75rem 0;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 1rem 1.5rem !important;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.nav-link:hover {
    color: var(--primary-yellow) !important;
    background: rgba(255, 215, 0, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 1.5rem;
    width: 0;
    height: 2px;
    background: var(--yellow-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: calc(100% - 3rem);
}

.cta-nav {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 25px !important;
    padding: 0.75rem 1.5rem !important;
    margin-left: 1rem !important;
    backdrop-filter: blur(10px);
    font-weight: 600 !important;
}

.cta-nav:hover {
    background: var(--yellow-gradient) !important;
    color: #000 !important;
    border-color: var(--primary-yellow) !important;
}

.cta-nav::after {
    display: none;
}

/* Mobile Menu Improvements */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item {
        margin: 1rem 0;
    }
    
    .nav-link {
        padding: 1.25rem 1.5rem !important;
        font-size: 1.1rem;
        border-radius: 12px;
    }
    
    .cta-nav {
        margin-left: 0 !important;
        margin-top: 1.5rem !important;
        text-align: center;
    }
}

/* Hero Section */
#home {
  position: relative;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
  z-index: 0;
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    animation: particleFloat 15s ease-in-out infinite;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--primary-yellow);
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.0rem);
    font-weight: 700;
    font-family: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.highlight-text {
    position: relative;
    color: var(--accent-blue);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--yellow-gradient);
    border-radius: 2px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-slide{
  background-size: cover;
  background-position: 50% 50%;
}

@media (max-width: 991px){
  .hero-slide.bg3,
  .hero-slide.bg3.active{
    background-position: 65% 50% !important;  
  }
}

.btn-primary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--yellow-gradient);
    color: #000;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
    color: #000;
}

.btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: var(--text-primary);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    background: var(--yellow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.25rem;
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 220px;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    left: 0;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 4s;
}

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

.card-icon {
    width: 45px;
    height: 45px;
    background: var(--yellow-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.card-content h6 {
    margin: 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
}

.card-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.hero-device {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.device-mockup {
    max-width: 320px;
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
}

.device-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: var(--yellow-gradient);
    border-radius: 30px;
    opacity: 0.2;
    filter: blur(20px);
    z-index: -1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: var(--yellow-gradient);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Section Styles */
.services-section,
.technology-section,
.solutions-section,
.contact-section {
    padding: 6rem 0;
    position: relative;
}

.services-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

.technology-section {
    background: #0a0a0a;
}

.solutions-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.contact-section {
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.section-badge i {
    color: var(--primary-yellow);
}

.section-title {
    font-size: clamp(2.05rem, 5vw, 3rem);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card.modern {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card.modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--yellow-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card.modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    border: 1px solid var(--primary-yellow);
    box-shadow: var(--shadow-glow);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--yellow-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.75rem;
}

.service-badge {
    background: var(--yellow-gradient);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.service-features i {
    color: var(--success-green);
    font-size: 0.9rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-btn:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

  .feature-item-hero {
      align-items: center;
      margin-bottom: 10px;
    }
    .feature-item-hero i {
      margin-right: 8px;
      color: #ffc107;
    }

/* Technology Section */
.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    position: relative;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 500px;
}

.tech-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-yellow);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.tech-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.tech-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.tech-features {
    margin-top: 3rem;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    font-size: 1.25rem;
}

.feature-content h5 {
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Solutions Tabs */
.solutions-tabs {
    margin-top: 4rem;
}
.solution-content{
    padding:35px;
    border-radius: 25px;
    border: 1px solid var(--primary-yellow);
    opacity: 1;
    transform: translateY(0px);
    transition: 0.6s;
    background: rgba(255, 215, 0, 0.05)
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--yellow-gradient);
    color: #000;
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
}

/* Flecha debajo del botón activo */
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 25%;
    transform: translateX(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: #ffcc00 transparent transparent transparent;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeInUp 0.5s ease;
}

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

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

.solution-content h3 {
    font-size: 2.25rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.solution-content p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.solution-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.solution-features i {
    color: var(--success-green);
    font-size: 1rem;
}

.solution-visual img {
    border-radius: 20px;
    box-shadow: var(--shadow-primary);
}

/* Contact Form */
.contact-form-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1.25rem 0;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-yellow);
}

.form-group label {
    position: absolute;
    top: 1.25rem;
    left: 0;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 1.05rem;
    font-weight: 400;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -0.5rem;
    font-size: 0.9rem;
    color: var(--primary-yellow);
    font-weight: 500;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--text-primary);
    padding: 0.5rem;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow-gradient);
    transition: width 0.3s ease;
}

.form-group input:focus ~ .form-line,
.form-group select:focus ~ .form-line,
.form-group textarea:focus ~ .form-line {
    width: 100%;
}

.btn-submit-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--yellow-gradient);
    color: #000;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
    font-family: 'Poppins', sans-serif;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.contact-info {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    font-size: 1rem;
}

/* Footer */
.footer-modern {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.25rem;
}

.social-link:hover {
    background: var(--yellow-gradient);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 1rem;
}

/* WhatsApp Float */
.whatsapp-float-modern {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    cursor: pointer;
}

.whatsapp-icon {
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.8); }
    100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.whatsapp-float-modern:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Reviews Google */
  
    .reviews-section {
      max-width: 900px;
      margin: 50px auto;
      padding: 20px;
      text-align: center;
    }

    .slider {
      position: relative;
      overflow: hidden;
      height: 200px;
    }

    .review-card {
      display: none;
      padding: 20px;
      background-color: #111;
      border-radius: 10px;
      box-shadow: 0 0 10px #222;
      transition: all 0.5s ease;
    }

    .review-card.active {
      display: block;
    }

    .review-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .review-header img {
      width: 24px;
      height: 24px;
    }

    .review-name {
      font-weight: bold;
      font-size: 18px;
    }

    .stars {
      color: #fbc02d;
      margin-bottom: 10px;
    }

    .review-text {
      font-size: 16px;
      line-height: 1.4;
      color: #ccc;
    }

    .more-btn {
      margin-top: 5px;
      padding: 12px 24px;
      background-color: #fbc02d;
      border: none;
      border-radius: 25px;
      font-size: 16px;
      font-weight: bold;
      color: #000;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .more-btn:hover {
      background-color: #ffd54f;
    }
  
/* Responsive Design */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
    
    /* Hero Section Mobile */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.0rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 2rem;
    }
    
    .floating-card {
        min-width: 180px;
        padding: 1rem;
    }
    
    .card-content h6 {
        font-size: 0.9rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
    }
    
    /* Sections Mobile */
    .services-section,
    .technology-section,
    .solutions-section,
    .contact-section {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card.modern {
        padding: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-visual {
        height: auto;
        margin-bottom: 3rem;
    }
    
    .tech-features {
        margin-top: 2rem;
    }
    
    .tech-feature {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .tab-navigation {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 2rem;
    }
    
    .solution-content h3 {
        font-size: 1.75rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float-modern {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .whatsapp-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .solution-content h3 {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

/* Focus States for Accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-yellow);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-float-modern,
    .hero-particles,
    .hero-grid {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}


        /* Hero Slider Styles */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .slider-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: #ffc107;
            transform: scale(1.2);
        }
        
        /* Stats Counter Section */
        .stats-counter-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: 80px 0;
            color: white;
        }
        
        .counter-item {
            text-align: center;
            padding: 20px;
        }
        
        .counter-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: #ffc107;
            margin-bottom: 10px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .counter-label {
            font-size: 1.1rem;
            color: #cccccc;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .counter-icon {
            font-size: 2.5rem;
            color: #ffc107;
            margin-bottom: 20px;
        }
        
       /* Solutions Section Dark Theme */
.solutions-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 100px 0;
    color: white;
}

.solutions-section .section-badge {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.solutions-section .section-title {
    color: white;
}

.solutions-section .section-description {
    color: #cccccc;
}

.solutions-container {
    margin-top: 60px;
}

/* Solution Cards Grid */
.solution-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.solution-card-modern {
  position: relative;
  background-color: #212529;
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: #fff;
  border: 1px solid transparent;
}

.solution-card-modern.active,
.solution-card-modern:hover {
  background-color: #343a40;
  border-color: #ffc107;
}

.solution-card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.solution-icon {
  font-size: 1.4rem;
  color: #ffc107;
  flex-shrink: 0;
}

.solution-card-content h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.solution-card-content p {
  margin: 0;
  font-size: 0.85rem;
  color: #adb5bd;
}

.solution-arrow {
  margin-left: auto;
  color: #aaa;
}

.solution-details {
  background-color: #343a40;
  border: 1px solid #ffc107;
  border-radius: 10px;
  padding: 20px;
}

.solution-detail {
  display: none;
}

.solution-detail.active {
  display: block;
}

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

.detail-content {
    padding-right: 40px;
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.detail-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.detail-content p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1rem;
}

.feature-text p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Button */
.btn-solution-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    color: #333;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-solution-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.4);
    color: #333;
}

.btn-solution-cta i {
    transition: transform 0.3s ease;
}

.btn-solution-cta:hover i {
    transform: translateX(5px);
}

/* Visual Element */
.detail-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.visual-content {
    position: relative;
    z-index: 2;
    font-size: 8rem;
    color: rgba(255, 193, 7, 0.3);
    animation: float 4s ease-in-out infinite;
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .solution-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-details {
        padding: 30px 20px;
    }
    
    .detail-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .detail-content h3 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item-modern {
        padding: 15px;
    }
    
    .visual-content {
        font-size: 4rem;
    }
    
    .visual-bg {
        width: 200px;
        height: 200px;
    }
    
    .detail-visual {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .solution-card-modern {
        padding: 30px 20px;
        min-height: 180px;
    }
    
    .solution-icon {
        font-size: 2.5rem;
    }
    
    .solution-card-modern h3 {
        font-size: 1.3rem;
    }
}
        
        .feature-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
        }
        
        .feature-item i {
            color: #ffc107;
            font-size: 1.2rem;
        }
        
        /* Instagram Section */
        .instagram-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }
        
        .instagram-post {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .instagram-post:hover {
            transform: translateY(-5px);
        }
        
        .instagram-image {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
        }
        
        .instagram-content {
            padding: 20px;
        }
        
        .instagram-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .instagram-icon {
            color: #E4405F;
            font-size: 1.5rem;
        }
        
        /* CTA Section */
        .cta-section {
            
            padding: 60px 0;
            text-align: center;
            color: #333;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.8;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .cta-btn {
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .cta-btn-primary {
            background: #333;
            color: white;
        }
        
        .cta-btn-secondary {
            background: white;
            color: #333;
        }
        
        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        @media (max-width: 768px) {
            
            .instagram-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
             .carousel-item .col-4,
             .carousel-item .col-sm-2 {
             height: 100px;
             }

        }


        .insta-more {
            position: relative;
            margin-top: -45px;
            z-index: 99999;
            display: flex;
            justify-content: center;
            width: 100%;
        }
