:root {
    --primary-color: #0f172a; /* Slate 900 */
    --primary-light: #e0e7ff; /* Indigo 100 */
    --primary-accent: #4338ca; /* Indigo 700 */
    --primary-gradient-start: #4338ca;
    --primary-gradient-end: #312e81; /* Indigo 900 */
    --secondary-color: #64748b; /* Slate 500 */
    --text-color: #1e293b; /* Slate 800 */
    --bg-light: #f8fafc; /* Slate 50 */
    --bg-white: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.4s;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

/* Top Bar */
.top-bar {
    font-size: 0.85rem;
}
.hover-text-white:hover {
    color: white !important;
}

/* Scroll Progress Bar */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 1100;
}
.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #4338ca, #38bdf8);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* Gradients */
.text-gradient {
    background: linear-gradient(90deg, #4338ca, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-light {
    background: linear-gradient(90deg, #818cf8, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gradient-bg {
    background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
}
.bg-light-gradient {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

/* Utilities */
.tracking-wide { letter-spacing: 2px; }
.fw-black { font-weight: 900; }
.hover-lift { transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
.hover-lift:hover { transform: translateY(-5px); }
.hover-lift-sm { transition: transform 0.3s ease; }
.hover-lift-sm:hover { transform: translateX(5px); }

/* Buttons */
.btn-gradient {
    background: linear-gradient(90deg, #4338ca, #3b82f6);
    color: white;
    border: none;
    transition: all 0.3s ease;
}
.btn-gradient:hover {
    background: linear-gradient(90deg, #3730a3, #2563eb);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(67, 56, 202, 0.4);
}
.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Navbar - Glassmorphism */
.glass-nav {
    background: transparent;
    transition: all var(--transition-speed) ease;
    padding: 1.5rem 0;
}
.glass-nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 0.75rem 0;
}
.navbar-nav .nav-link {
    color: var(--text-color);
    position: relative;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    background-color: var(--primary-accent);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 2rem);
}

/* Glass Elements */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}
.glass-card-hover {
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.glass-card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.glass-dropdown {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 12px;
}
.glass-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #f8fafc;
}
.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 0;
}
.shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 10s infinite alternate ease-in-out;
}
.shape-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: rgba(56, 189, 248, 0.3);
    border-radius: 50%;
}
.shape-2 {
    bottom: -10%; right: -5%;
    width: 600px; height: 600px;
    background: rgba(67, 56, 202, 0.2);
    border-radius: 50%;
    animation-delay: -5s;
}
.shape-3 {
    top: 40%; left: 50%;
    width: 400px; height: 400px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
}

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.05); }
}

.title-underline {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 20px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.-space-x-4 {
    margin-left: 0.75rem;
}
.ms-n3 {
    margin-left: -1rem !important;
}

.blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 50%;
}

.glass-float-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: 1rem;
    animation: float 6s ease-in-out infinite;
}

.glass-float-card.card-1 {
    bottom: 20px;
    left: -40px;
}

.glass-float-card.card-2 {
    top: 40px;
    right: -40px;
    animation-delay: 2s;
}

.icon-circle-sm {
    width: 50px;
    height: 50px;
}

.floating-img-1 {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 50%;
    z-index: 2;
    animation: float-img 6s ease-in-out infinite;
}

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

/* General Sections */
.section-padding {
    padding: 120px 0;
}

/* Icons */
.icon-box-gradient {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(67,56,202,0.1), rgba(56,189,248,0.1));
    color: var(--primary-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}
.glass-card-hover:hover .icon-box-gradient {
    background: var(--primary-accent);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.custom-bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}
.custom-bullet-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-accent);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 5px;
}

/* Values */
.value-badge {
    background: white;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.value-badge:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-accent);
}

/* Products Glow Cards */
.glow-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.glow-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #4338ca, #38bdf8);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 2;
}
.glow-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(67, 56, 202, 0.1);
}
.glow-card:hover::before {
    opacity: 1;
}

.product-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 150px;
    color: rgba(67, 56, 202, 0.03);
    z-index: 0;
    transform: rotate(-15deg);
    transition: all 0.5s ease;
}
.glow-card:hover .product-bg-icon {
    color: rgba(67, 56, 202, 0.08);
    transform: rotate(0) scale(1.2);
}

/* Premium Services List */
.premium-service-list li {
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}
.premium-service-list li i {
    color: var(--primary-accent);
    font-size: 20px;
    width: 35px;
    transition: transform 0.3s ease;
}
.premium-service-list li span {
    font-weight: 600;
    color: var(--text-color);
}
.premium-service-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: rgba(67, 56, 202, 0.2);
}
.premium-service-list li:hover i {
    transform: scale(1.2);
}
.service-img-decoration {
    position: absolute;
    top: -20px; left: -20px;
    width: 100px; height: 100px;
    background: repeating-linear-gradient(45deg, var(--primary-accent), var(--primary-accent) 2px, transparent 2px, transparent 10px);
    z-index: 0;
    opacity: 0.2;
    border-radius: 10px;
}

/* Why Choose Us - Dark section */
.bg-shape-dark {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(56,189,248,0.1) 0%, transparent 60%);
    z-index: 0;
}
.dark-feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.dark-feature-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-10px);
    border-color: rgba(56,189,248,0.3);
}
.icon-circle {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.process-steps .step-item {
    flex: 1;
    position: relative;
}
.process-steps .step-num {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #4338ca, #38bdf8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(15, 23, 42, 1);
}
.process-steps .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: rgba(255,255,255,0.2);
    z-index: 1;
}

/* Swiper Slider */
.industries-swiper {
    padding-bottom: 50px;
}
.industry-slide-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-accent);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.industry-slide-card:hover {
    background: linear-gradient(135deg, #4338ca, #38bdf8);
    color: white;
    transform: scale(1.05);
}
.swiper-pagination-bullet-active {
    background: var(--primary-accent) !important;
}

/* Contact */
.contact-bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.5;
    z-index: 0;
}
.form-premium .custom-floating .form-control {
    background-color: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
}
.form-premium .custom-floating .form-control:focus {
    box-shadow: 0 0 0 4px rgba(67, 56, 202, 0.1);
    border-color: var(--primary-accent);
    background-color: white;
}
.custom-checkbox-premium .form-check-input:checked {
    background-color: var(--primary-accent);
    border-color: var(--primary-accent);
}

/* Footer */
.footer-premium {
    position: relative;
    overflow: hidden;
}
.social-links-premium a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.05);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}
.social-links-premium a:hover {
    background: var(--primary-accent);
    transform: translateY(-5px);
}
.footer-links-premium li {
    margin-bottom: 12px;
}
.footer-links-premium a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links-premium a:hover {
    color: white;
    padding-left: 8px;
}
.pulse-anim {
    animation: pulse 1.5s infinite;
}

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

@media (max-width: 768px) {
    .process-steps .step-item {
        flex: 0 0 50%;
    }
    .process-steps .step-item::after {
        display: none;
    }
    .floating-img-1 {
        display: none;
    }
}
