 /* ===================================================== 
    ROOT VARIABLES 
 ===================================================== */ 
 :root { 
     --primary-color: #6366f1; 
     --secondary-color: #ec4899; 
     --dark-bg: #0f172a; 
     --dark-2: #020617; 
     --glass-bg: rgba(15, 23, 42, 0.8); 
     --text-light: #94a3b8; 
 
     --gradient-vibrant: linear-gradient(135deg,#6366f1,#ec4899); 
     --gradient-dark: linear-gradient(135deg,#1e293b,#0f172a); 
     --gradient-blue: linear-gradient(135deg,#0072ff,#00c6ff); 
 
     --transition: all .35s ease; 
 } 
 
 /* ===================================================== 
    GLOBAL 
 ===================================================== */ 
 body{ 
     font-family:'Inter','Segoe UI',Roboto,sans-serif; 
     background:#fff; 
     color:#1e293b; 
     overflow-x:hidden; 
 } 
 
 a{transition:var(--transition);text-decoration:none} 
 
 /* ===================================================== 
    NAVBAR + MEGA MENU 
 ===================================================== */ 
 .premium-nav{ 
    background:rgba(2,6,23,.85); 
    backdrop-filter:blur(12px); 
    border-bottom:1px solid rgba(255,255,255,.08); 
    padding:8px 0; 
    transition:var(--transition); 
} 

.premium-nav.scrolled{ 
    padding:5px 0; 
    background:rgba(2,6,23,.95); 
} 

.logo{ 
    font-weight:800; 
    font-size:1.3rem; 
    color:#fff!important; 
} 

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

.nav-link{ 
    color:rgba(255,255,255,.85)!important; 
    font-weight:500; 
    padding:5px 15px!important; 
} 

.nav-link:hover{ 
    color:#00c6ff!important; 
    transform:translateY(-1px); 
} 

/* Mega Menu */ 
.nav-item.mega{position:static} 

.mega-menu{ 
    width:100%; 
    left:0; 
    right:0; 
    border:none; 
    border-radius:0 0 20px 20px; 
    background:var(--dark-2); 
    color:#fff; 
    padding:20px!important; 
    display:none; 
    box-shadow:0 25px 60px rgba(0,0,0,.45); 
    animation:megaFade .35s ease; 
} 

.nav-item.mega:hover .mega-menu{display:block} 

.mega-menu h6{ 
    color:#00c6ff; 
    text-transform:uppercase; 
    font-size:.7rem; 
    font-weight:700; 
    letter-spacing:1px; 
    margin-bottom:15px; 
} 

.mega-menu a{ 
    display:block; 
    color:#cbd5e1; 
    padding:4px 0; 
    font-size:.85rem; 
} 

.mega-menu a:hover{ 
    color:#00c6ff; 
    padding-left:5px; 
} 
 
 @keyframes megaFade{ 
     from{opacity:0;transform:translateY(15px)} 
     to{opacity:1;transform:none} 
 }


/* ===================================================== 
   FOOTER 
===================================================== */ 
.footer-premium, .modern-footer{ 
    background: radial-gradient(circle at 30% 20%, #020617, #000); 
    color:#fff; 
    padding:80px 0 30px; 
    border-top:1px solid rgba(255,255,255,.05); 
    position: relative;
    overflow: hidden;
} 

.footer-premium a, .modern-footer a{ 
    display:block; 
    color:#cbd5e1; 
    text-decoration:none; 
    margin-bottom:8px; 
    transition: var(--transition);
} 

.footer-premium a:hover, .modern-footer a:hover{ 
    color:#00c6ff; 
    padding-left: 5px;
}

.footer-premium h6, .modern-footer h6 {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.social-btn { 
    width:42px; 
    height:42px; 
    background:rgba(255,255,255,.05); 
    border-radius:12px; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    color:#fff; 
    transition: var(--transition);
} 

.social-btn:hover { 
    background:var(--gradient-blue); 
    transform:translateY(-5px); 
    color:#fff; 
    box-shadow: 0 10px 20px rgba(0, 114, 255, 0.3);
}

/* ===================================================== 
   BUTTONS 
===================================================== */ 
.btn-vibrant{ 
    background:var(--gradient-vibrant); 
    color:#fff; 
    border:none; 
    font-weight:700; 
    box-shadow:0 10px 20px rgba(99,102,241,.25); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
} 

.btn-vibrant:hover{ 
    transform:translateY(-3px); 
    box-shadow:0 15px 30px rgba(99,102,241,.45); 
    color:#fff;
} 

/* ===================================================== 
   REVEAL ANIMATION 
===================================================== */ 
.reveal{ 
    opacity:0; 
    transform:translateY(30px); 
    transition: opacity 0.8s ease, transform 0.8s ease; 
} 

.reveal.active{ 
    opacity:1; 
    transform:none;
} 

/* ===================================================== 
   UTILITIES 
===================================================== */ 
.text-gradient-vibrant{ 
    background:var(--gradient-vibrant); 
    -webkit-background-clip:text; 
    -webkit-text-fill-color:transparent; 
} 

.bg-primary-soft{background:rgba(99,102,241,.1)} 
.shadow-hover{transition:.4s} 
.shadow-hover:hover{ 
    box-shadow:0 20px 40px rgba(0,0,0,.1); 
    transform:translateY(-5px); 
} 

/* ===================================================== 
   HERO SLIDER 
===================================================== */ 
.main-slider, .carousel-item{ 
    height:100vh; 
    min-height:600px; 
    position:relative; 
    overflow:hidden; 
} 

.carousel-caption{ 
    text-align:left; 
    top:50%; 
    transform:translateY(-50%); 
    bottom:auto; 
    z-index:10; 
} 

.slider-content h1{ 
    font-size:4.5rem; 
    font-weight:800; 
    line-height:1.1; 
    margin-bottom:1.5rem; 
    animation:fadeUp .8s forwards; 
} 

.slider-content p{ 
    font-size:1.25rem; 
    color:rgba(255,255,255,.8); 
    margin-bottom:2.5rem; 
    animation:fadeUp .8s forwards .2s; 
} 

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: transform 10s ease;
}

.carousel-item.active .slider-bg {
    transform: scale(1.1);
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 30px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
    opacity: 1;
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
}

.carousel-indicators {
    bottom: 40px;
    margin-bottom: 0;
    z-index: 10;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    transition: var(--transition);
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 10px;
}

/* ===================================================== 
   HERO PREMIUM 
===================================================== */ 
.hero-premium{ 
    background:radial-gradient(circle at 20% 30%,#0d1b2a,#020617 70%); 
    color:#fff; 
    min-height:100vh; 
    display:flex; 
    align-items:center; 
    position:relative; 
    overflow:hidden; 
} 

#particles-js { 
    position:absolute; 
    inset:0; 
    z-index:0; 
} 

.tech-3d { 
    position:absolute; 
    inset:0; 
    pointer-events:none; 
    z-index: 1;
} 

.cube { 
    width:80px; 
    height:80px; 
    border:2px solid #00c6ff; 
    position:absolute; 
    top:20%; 
    left:10%; 
    transform:rotate(45deg); 
    animation: rotateCube 10s linear infinite; 
    opacity: 0.3;
} 

.ring { 
    width:140px; 
    height:140px; 
    border:2px dashed #0072ff; 
    border-radius:50%; 
    position:absolute; 
    bottom:15%; 
    right:10%; 
    animation: spin 12s linear infinite; 
    opacity: 0.3;
} 

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

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

.hero-bg { 
    position:absolute; 
    inset:0; 
    background: radial-gradient(circle at 70% 40%, rgba(0,120,255,0.25), transparent 60%); 
    z-index: 0;
} 

.hero-grid { 
    position:absolute; 
    inset:0; 
    background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); 
    background-size: 60px 60px; 
    animation: gridMove 20s linear infinite; 
    z-index: 1;
} 

@keyframes gridMove { 
    from {transform: translateY(0);} 
    to {transform: translateY(60px);} 
} 

.hero-title { 
    font-size: 3.5rem; 
    font-weight: 800; 
    line-height: 1.2; 
    margin-bottom: 1.5rem;
} 

.text-gradient { 
    background: linear-gradient(90deg,#00c6ff,#0072ff); 
    -webkit-background-clip:text; 
    -webkit-text-fill-color:transparent; 
} 

.hero-subtitle { 
    color: #cbd5e1; 
    font-size: 1.15rem; 
    margin: 20px 0 30px; 
    max-width: 600px;
} 

.btn-premium{ 
    display:inline-block; 
    background:var(--gradient-blue); 
    color:#fff; 
    padding:14px 34px; 
    border-radius:40px; 
    font-weight:600; 
    box-shadow:0 10px 30px rgba(0,114,255,.4); 
    transition: var(--transition);
} 

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,114,255,0.6);
    color: #fff;
}

.hero-visual{ 
    position:relative; 
    height:450px; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
} 

.main-orb{ 
    width:280px; 
    height:280px; 
    background:radial-gradient(circle,#00c6ff,#0072ff); 
    border-radius:50%; 
    filter:blur(40px); 
    opacity:.6; 
    animation:pulse 8s infinite; 
} 

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

.floating-card{ 
    position:absolute; 
    background:rgba(255,255,255,.08); 
    backdrop-filter:blur(10px); 
    padding:15px 20px; 
    border-radius:12px; 
    border:1px solid rgba(255,255,255,.1); 
    animation:floatY 6s infinite; 
    z-index: 2;
    transition: var(--transition);
} 

.floating-card:hover {
    transform: scale(1.05) translateY(-10px) !important;
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
}

.card-1 { top:10%; left:10%; } 
.card-2 { bottom:15%; right:10%; animation-delay:1s;} 
.card-3 { top:40%; right:0; animation-delay:2s;} 

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

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

/* Video Hero Overlay Fix */
.video-hero {
    display: none; /* Hide previous video hero if slider is used */
}

/* Modern Hero Section */
.hero-modern {
    background: var(--dark-bg);
    position: relative;
    padding: 160px 0 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

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

.hero-graphics .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.15);
    top: -100px;
    left: -100px;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(236, 72, 153, 0.1);
    bottom: -50px;
    right: -50px;
}

.hero-shape-3 {
    width: 250px;
    height: 250px;
    background: rgba(99, 102, 241, 0.1);
    top: 20%;
    right: 10%;
}

/* ===================================================== 
   CARDS + SERVICES 
===================================================== */ 
.modern-card{ 
    background:rgba(255,255,255,.05); 
    backdrop-filter:blur(15px); 
    border:1px solid rgba(255,255,255,.1); 
    border-radius:24px; 
    padding:40px; 
    transition:.4s; 
    position:relative; 
    overflow:hidden; 
    height: 100%;
} 

.modern-card:hover{ 
    transform:translateY(-12px); 
    background:rgba(255,255,255,.08); 
    border-color:#00c6ff; 
    box-shadow:0 20px 40px rgba(0,0,0,.3); 
} 

.card-icon-wrapper{ 
    width:70px; 
    height:70px; 
    background:var(--gradient-blue); 
    border-radius:18px; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
    font-size:1.8rem; 
    color:#fff; 
    margin-bottom:25px; 
    transition:.5s; 
} 

.modern-card:hover .card-icon-wrapper{ 
    transform:rotateY(180deg) scale(1.1); 
} 

/* ===================================================== 
   STATS 
===================================================== */ 
.stats-premium h2{ 
    font-size:3.5rem; 
    font-weight:800; 
    background:var(--gradient-blue); 
    -webkit-background-clip:text; 
    -webkit-text-fill-color:transparent; 
    margin-bottom:10px; 
} 

/* ===================================================== 
   LOGO STRIP 
===================================================== */ 
.logo-track{ 
    display:flex; 
    gap:100px; 
    width:max-content; 
    animation:scrollLogos 30s linear infinite; 
} 

.logo-track img{ 
    height:35px; 
    opacity:.4; 
    filter:grayscale(1) invert(1); 
    transition:.3s; 
} 

.logo-track img:hover{ 
    opacity:1; 
    filter:grayscale(0) invert(0); 
}

@keyframes scrollLogos { 
  from {transform:translateX(0);} 
  to {transform:translateX(-50%);} 
}

/* About Page Styles */
.about-hero-modern {
    background: var(--dark-bg);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.about-hero-modern .hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.about-hero-modern .shape-1 { width: 400px; height: 400px; background: rgba(99, 102, 241, 0.15); top: -100px; left: -100px; }
.about-hero-modern .shape-2 { width: 300px; height: 300px; background: rgba(236, 72, 153, 0.1); bottom: -50px; right: -50px; }
.about-hero-modern .shape-3 { width: 250px; height: 250px; background: rgba(99, 102, 241, 0.1); top: 20%; right: 10%; }

.about-image-stack {
    position: relative;
    height: 450px;
}

.stack-item {
    position: absolute;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stack-1 {
    width: 80%;
    height: 80%;
    top: 0;
    left: 0;
    background-image: url('https://img.freepik.com/free-photo/modern-equipped-computer-lab_23-2149241213.jpg');
    z-index: 1;
}

.stack-2 {
    width: 70%;
    height: 70%;
    bottom: 0;
    right: 0;
    background-image: url('https://img.freepik.com/free-photo/software-developer-working-project_23-2148779262.jpg');
    z-index: 2;
    border: 10px solid #fff;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gradient-vibrant);
    padding: 20px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
}

.experience-badge .num { font-size: 2rem; font-weight: 800; display: block; line-height: 1; }
.experience-badge .txt { font-size: 0.8rem; font-weight: 600; text-uppercase: uppercase; opacity: 0.9; }

.founder-box {
    background: #f8faff;
    border-left: 5px solid var(--primary-color);
}

.founder-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.stats-vibrant {
    background: var(--dark-bg);
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vm-card-modern {
    transition: all 0.4s ease;
}

.vm-card-modern:hover {
    transform: translateY(-10px);
}

.vm-icon-vibrant {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
}

.icon-vision { background: linear-gradient(135deg, #6366f1, #a855f7); }
.icon-mission { background: linear-gradient(135deg, #ec4899, #f43f5e); }

.services-vibrant {
    background: var(--dark-bg);
}

.capability-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.capability-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.05);
}

.cap-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cap-color);
    margin: 0 auto;
}

/* Contact Page Responses */
#contact-response {
    display: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
}

#contact-response.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

#contact-response.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ===================================================== 
   DEPARTMENT INDENT SYSTEM 
===================================================== */ 
.indent-workflow-box {
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.indent-workflow-box:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08)!important;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--gradient-vibrant);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.vibrant-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-vibrant);
    border-radius: 10px;
}

/* ===================================================== 
   RESPONSIVE 
===================================================== */ 
@media(max-width:991px){ 
    .mega-menu{ 
        position:relative; 
        display:block; 
        background:transparent; 
        box-shadow:none; 
        padding:0 20px!important; 
    } 

    .hero-title{font-size:2.5rem} 
    .slider-content h1{font-size:3rem} 

    .carousel-control-prev, 
    .carousel-control-next{ 
        width:45px; 
        height:45px; 
        margin:0 10px; 
    }

    .hero-visual { height: 400px; margin-top: 50px; }
    .hero-modern { padding: 140px 0 80px; text-align: center; }
    .hero-modern .d-flex { justify-content: center; }
    .floating-tech-icons { display: none; }
    .process-wrapper::before { display: none; }
} 

@media(max-width:768px){ 
    .slider-content h1{font-size:2.4rem} 
    .slider-content p{font-size:1.1rem} 
    .carousel-caption{text-align:center} 
    .carousel-indicators { bottom: 20px; }

    .display-1 { font-size: 3rem; }
    .display-2 { font-size: 2.5rem; }
    .display-3 { font-size: 2.2rem; }
    .display-4 { font-size: 2rem; }
    .display-5 { font-size: 1.8rem; }
}

@media (max-width: 576px) {
    .why-box { grid-template-columns: 1fr; }
}

/* Premium Industry Section Visuals */
.industries-section {
    position: relative;
    background: #f8fafc;
    padding: 100px 0;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(236, 72, 153, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.industry-card {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.industry-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: saturate(0.8) brightness(0.9);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 10%, rgba(15, 23, 42, 0.2) 60%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-content {
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.industry-overlay i {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--gradient-vibrant);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.industry-card:hover .industry-img {
    transform: scale(1.15);
    filter: saturate(1.1) brightness(0.8);
}

.industry-card:hover .industry-overlay {
    background: linear-gradient(to top, rgba(99, 102, 241, 0.9) 0%, rgba(15, 23, 42, 0.5) 100%);
}

.industry-card:hover .industry-content {
    transform: translateY(0);
}

.industry-card::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='17' x2='17' y2='7'%3E%3C/line%3E%3Cpolyline points='7 7 17 7 17 17'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.industry-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

.industry-card:hover .industry-overlay i {
    transform: translateY(-10px);
    color: #fff;
}

/* Why Choose - Enterprise Style */
.why-box { 
    display:grid; 
    grid-template-columns: repeat(2,1fr); 
    gap:20px; 
} 

.why-item { 
    background:#fff; 
    border-radius:14px; 
    padding:24px; 
    font-weight:600; 
    box-shadow:0 10px 25px rgba(0,0,0,0.05); 
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    background: #0f172a;
}

.cta-bg-gradient {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

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

.tech-cat-box {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-cat-box:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(10px);
}

.tech-visual-container {
    perspective: 1000px;
}

.main-tech-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.tech-visual-container:hover .main-tech-card {
    transform: rotateY(-10deg) rotateX(5deg);
}

.backdrop-blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.reliability-stats {
    transition: all 0.4s ease;
}

.reliability-stats:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.1);
}

.sla-metric .progress-bar {
    animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
    from { width: 0; }
}

.tech-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.tech-card-modern:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.tech-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent);
    pointer-events: none;
}

.tech-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.partner-logo-item {
    filter: grayscale(1) brightness(2);
    opacity: 0.5;
    transition: all 0.3s ease;
    max-width: 120px;
}

.partner-logo-item:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

.cloud-icon-animate {
    animation: cloudFloat 8s ease-in-out infinite;
}

@keyframes cloudFloat {
    0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 5px 15px rgba(99, 102, 241, 0.2)); }
    50% { transform: translateY(-20px) scale(1.05); filter: drop-shadow(0 25px 35px rgba(99, 102, 241, 0.4)); }
}

.pricing-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    background: var(--gradient-dark);
    color: #fff;
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-card.featured .text-muted {
    color: rgba(255,255,255,0.6) !important;
}

.pricing-card.featured .list-unstyled li i {
    color: var(--primary-color) !important;
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 500;
}

.cloud-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.cloud-feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.z-1 { z-index: 1 !important; }

/* Process Section */
.process-wrapper {
    position: relative;
    padding: 40px 0;
}

.process-wrapper::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(99, 102, 241, 0.1);
    z-index: 0;
}

.process-step {
    position: relative;
    text-align: center;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-vibrant);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(10deg);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px dashed rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

/* Tech Stack */
.tech-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.tech-pill i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Utility Classes */
.vibrant-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-vibrant);
    border-radius: 2px;
}

/* Soft backgrounds */
.bg-primary-soft { background: rgba(99, 102, 241, 0.1); }
.bg-success-soft { background: rgba(34, 197, 94, 0.1); }
.bg-info-soft { background: rgba(14, 165, 233, 0.1); }
.bg-warning-soft { background: rgba(245, 158, 11, 0.1); }
.bg-danger-soft { background: rgba(239, 68, 68, 0.1); }
.bg-vibrant { background: var(--gradient-vibrant) !important; }
.bg-primary { background: var(--primary-color) !important; }
.bg-vibrant-soft { background: rgba(236, 72, 153, 0.1); }
.bg-primary-light { background: rgba(99, 102, 241, 0.08); }

.bg-white-5 { background: rgba(255, 255, 255, 0.05); }
.bg-white-10 { background: rgba(255, 255, 255, 0.1); }
.bg-white-20 { background: rgba(255, 255, 255, 0.2); }

.rounded-4 { border-radius: 1.5rem !important; }
.rounded-5 { border-radius: 2rem !important; }
.border-white-10 { border-color: rgba(255, 255, 255, 0.1) !important; }
.border-white-20 { border-color: rgba(255, 255, 255, 0.2) !important; }

.max-w-600 { max-width: 600px; }
.max-w-700 { max-width: 700px; }
.max-w-800 { max-width: 800px; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

.backdrop-blur { backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

.transition-up {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.transition-up:hover {
    transform: translateY(-8px);
}

.icon-circle-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle-sm {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hover-shadow-md:hover { box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.hover-shadow-lg:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }

.pulse-primary {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pulse-primary::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.icon-sm {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-card.active {
    background: var(--gradient-vibrant);
    color: #fff;
    border: none;
}

.modern-card.active .text-muted,
.modern-card.active p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.modern-card.active .icon-circle {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.modern-card.active .list-unstyled li i {
    color: #fff !important;
}

.shadow-hover {
    transition: all 0.4s ease;
}

.shadow-hover:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.bg-vibrant-soft { background: rgba(236, 72, 153, 0.1); }
.text-vibrant { color: #ec4899; }
.bg-info-soft { background: rgba(14, 165, 233, 0.1); }
.bg-warning-soft { background: rgba(245, 158, 11, 0.1); }
.bg-danger-soft { background: rgba(239, 68, 68, 0.1); }
.bg-success-soft { background: rgba(34, 197, 94, 0.1); }
.bg-primary-soft { background: rgba(99, 102, 241, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
.hardware-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.hardware-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.hardware-card i {
    transition: all 0.4s ease;
}

.hardware-card:hover i {
    transform: scale(1.1);
}

.tracking-wider { letter-spacing: 0.1em; }

.bg-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.tech-icon-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 10%; animation-delay: 1.5s; }
.icon-3 { bottom: 20%; left: 5%; animation-delay: 3s; }
.icon-4 { bottom: 10%; right: 15%; animation-delay: 4.5s; }

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

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

.navbar-collapse {
        background: var(--dark-bg);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        border: 1px solid rgba(255,255,255,0.1);
    }

/* Healthcare Hero UI */
.hero-image-stack {
    position: relative;
    z-index: 1;
}

.main-image-wrapper {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
    min-height: 300px;
    background: #f8fafc;
}

.main-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.main-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-overlay-vibrant {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
    pointer-events: none;
}

.floating-card-ui {
    width: 260px;
    animation: float 5s ease-in-out infinite;
    z-index: 2;
}

.pulse-line-container {
    height: 40px;
    background: #f8fafc;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.pulse-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    top: 50%;
    animation: pulseScan 2s linear infinite;
}

@keyframes pulseScan {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.tech-badge-ui {
    z-index: 2;
    animation: float 6s ease-in-out infinite reverse;
}

/* AI Intelligence UI */
.ai-orb {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.4);
    animation: pulseOrb 3s ease-in-out infinite;
}

.ai-orb::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 2px solid rgba(14, 165, 233, 0.5);
    border-radius: 50%;
    border-top-color: transparent;
    animation: rotate 2s linear infinite;
}

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

.bg-white-5 { background: rgba(255, 255, 255, 0.05); }

/* Laboratory Specific Styles */
.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    z-index: 2;
    animation: scannerMove 4s ease-in-out infinite;
    box-shadow: 0 0 15px var(--primary-color);
}

@keyframes scannerMove {
    0%, 100% { top: 0; }
    50% { top: 100%; }
}

.icon-circle-xs {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.extra-small { font-size: 0.65rem; }
.x-small { font-size: 0.75rem; }
.bg-white-80 { background: rgba(255, 255, 255, 0.8); }
.blur-3xl { filter: blur(60px); }

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-sm {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    border: 2px solid #fff;
}

.bg-gradient-dark-transparent {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.transform-hover {
    transition: transform 0.7s ease;
}

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

.text-white-70 { color: rgba(255, 255, 255, 0.7) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.5) !important; }
.text-white-20 { color: rgba(255, 255, 255, 0.2) !important; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-widest { letter-spacing: 0.2em; }
.min-vh-80 { min-height: 80vh; }
.ms-n1 { margin-left: -0.25rem !important; }
.ms-n2 { margin-left: -0.5rem !important; }
.ms-n3 { margin-left: -1rem !important; }
.ms-n4 { margin-left: -1.5rem !important; }
.ms-n5 { margin-left: -3rem !important; }
.me-n1 { margin-right: -0.25rem !important; }
.me-n2 { margin-right: -0.5rem !important; }
.me-n3 { margin-right: -1rem !important; }
.mt-n1 { margin-top: -0.25rem !important; }
.mt-n2 { margin-top: -0.5rem !important; }
.mb-n1 { margin-bottom: -0.25rem !important; }
.mb-n2 { margin-bottom: -0.5rem !important; }
.mb-n3 { margin-bottom: -1rem !important; }
.mb-n4 { margin-bottom: -1.5rem !important; }
.border-l-4 { border-left-width: 4px !important; }
.border-vibrant { border-color: #ec4899 !important; }
