/* Professional Website CSS - Light & Soft Design */
:root {
    --primary: #204b80; /* Light Blue */
    --primary-dark: #3B82F6; /* Medium Blue */
    --secondary: #9CA3AF; /* Light Gray */
    --accent: #FCA5A5; /* Light Red/Pink */
    --success: #86EFAC; /* Light Green */
    --dark: #6B7280; /* Light Gray (was dark) */
    --light: #FFFFFF; /* Pure White */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #9CA3AF; /* Lightened */
    --gray-700: #D1D5DB; /* Lightened */
    --gray-800: #E5E7EB; /* Lightened */
    --gray-900: #F3F4F6; /* Lightened */
    --text: #6B7280; /* Light gray text */
    --text-secondary: #000000; /* Lighter gray text */
    --border: #E5E7EB;
    --shadow: rgba(96, 165, 250, 0.1); /* Light blue shadow */
}

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
    font-size: 20px; /* Increased font size */
    font-weight: 500; /* Added font weight */
    overflow-x: hidden;
}

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

/* Selection styles */
::selection {
    background: var(--primary);
    color: white;
}

/* OPH Logo Styles */
.oph-logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-oval {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 30px;
    padding: 10px 18px;
    display: flex;
    gap: 6px;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.2);
}

.logo-oval span {
    font-weight: 800;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    text-shadow: none;
    color: var(--text);
}

.logo-o.red, .logo-h.red {
    color: var(--accent);
}

.logo-p.green {
    color: var(--primary);
}

.logo-text {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-logo-size .logo-oval {
    padding: 8px 14px;
}

.footer-logo-size .logo-oval span {
    font-size: 16px;
}

.footer-logo-size .logo-text {
    font-size: 11px;
}

/* Button Styles */
.btn {
    font-weight: 600;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 18px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(15, 98, 254, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--dark));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 98, 254, 0.4);
    color: white;
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: white;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover::before {
    left: 0;
}

.btn-outline-primary:hover {
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 98, 254, 0.3);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 15px;
}

.btn-sm {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 10px;
}

/* Header Styles */
.header-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.top-bar {
    font-size: 12px;
    background: #000000;
    padding: 4px 0;
}

.top-bar a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: var(--primary);
}

.navbar {
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
}

.navbar-brand {
    font-weight: 800;
    font-size: 24px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

/* Ensure menu items don't wrap unnecessarily */
.navbar-nav {
  display: flex;
  flex-wrap: wrap; /* Allow wrap only if absolutely needed */
  gap: 8px; /* Adds spacing between items */
  align-items: center;
}

/* Prevent buttons from overflowing */
.navbar-nav .nav-item .btn {
  white-space: nowrap;
}

/* Reduce padding/margin in medium screens */
@media (max-width: 1400px) {
  .navbar-nav .nav-link,
  .navbar-nav .btn {
    padding: 6px 10px;
    font-size: 14px;
  }
  .logo-text {
    font-size: 14px;
  }
}

/* Force nav to stack vertically in smaller view */
@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Modern Tab Navigation */
.nav-link {
    font-weight: 600;
    color: var(--text) !important;
    transition: all 0.3s ease;
    padding: 8px 16px !important;
    border-radius: 8px;
    margin: 0 4px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    background: var(--gray-50);
    border: 2px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 10px;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 98, 254, 0.3);
    border-color: var(--primary);
}

/* Services Dropdown */
.services-dropdown {
    min-width: 380px;
    padding: 8px;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    background: white;
    backdrop-filter: blur(20px);
    overflow: hidden;
    border: 2px solid var(--border);
    z-index: 9999;
    position: absolute;
}

.services-dropdown .dropdown-header {
    display: none;
}

.services-dropdown .dropdown-item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--text);
    font-size: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 4px;
}

.services-dropdown .dropdown-item::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 98, 254, 0.1), rgba(3, 83, 233, 0.1));
    transition: left 0.3s ease;
}

.services-dropdown .dropdown-item:hover::before {
    left: 0;
}

.services-dropdown .dropdown-item:hover {
    background: transparent;
    color: var(--primary);
    transform: translateX(8px);
    border-left: 4px solid var(--primary);
}

.services-dropdown .dropdown-item i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.services-dropdown .dropdown-item:hover i {
    transform: scale(1.2);
}

/* Modern Light Hero Section */
.modern-hero-section {
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 1) 0%, 
        rgba(241, 245, 249, 1) 25%,
        rgba(248, 250, 252, 1) 50%,
        rgba(255, 255, 255, 1) 75%,
        rgba(248, 250, 252, 1) 100%);
    padding-top: 80px;
    min-height: 42vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Light Background Patterns */
.light-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.pattern-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: dotsMove 20s linear infinite;
}

.pattern-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(99, 102, 241, 0.05) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(99, 102, 241, 0.05) 75%);
    background-size: 60px 60px;
    animation: wavesMove 30s linear infinite;
}

.pattern-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

@keyframes dotsMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

@keyframes wavesMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Light Floating Elements */
.light-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.light-bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.1), 
        rgba(168, 85, 247, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    animation: lightFloat 8s ease-in-out infinite;
}

.bubble-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 15%;
    animation-delay: 2s;
}

.bubble-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.bubble-4 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 25%;
    animation-delay: 6s;
}

.bubble-5 {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 5%;
    animation-delay: 1s;
}

@keyframes lightFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-30px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes gridMove {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(20px, 20px) rotate(0.5deg) scale(1.02); }
    50% { transform: translate(40px, 40px) rotate(1deg) scale(1); }
    75% { transform: translate(60px, 20px) rotate(0.5deg) scale(0.98); }
    100% { transform: translate(80px, 80px) rotate(2deg) scale(1); }
}

@keyframes waveAnimation {
    0%, 100% { 
        transform: translateX(0%) scaleY(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateX(-2%) scaleY(1.1);
        opacity: 0.5;
    }
    50% { 
        transform: translateX(2%) scaleY(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translateX(-1%) scaleY(1.05);
        opacity: 0.6;
    }
}

/* Enhanced Hero Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

/* Dynamic Gradient Orbs */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #10b981, #06b6d4);
    top: 60%;
    right: -100px;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #f59e0b, #ef4444);
    bottom: -125px;
    left: 30%;
    animation-delay: 4s;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

/* Enhanced Floating Geometric Shapes */
.geometric-shape {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 28px;
    animation: geometricFloat 8s ease-in-out infinite;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15),
                inset 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
}

.geometric-shape::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #60a5fa, #a78bfa, #f472b6, #60a5fa);
    border-radius: 22px;
    z-index: -1;
    animation: borderRotate 6s linear infinite;
    opacity: 0.6;
}

.geometric-shape::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 10px;
}

.shape-1 { top: 12%; left: 18%; animation-delay: 0s; }
.shape-2 { top: 22%; right: 22%; animation-delay: 2s; }
.shape-3 { top: 62%; left: 12%; animation-delay: 4s; }
.shape-4 { bottom: 18%; right: 18%; animation-delay: 6s; }
.shape-5 { top: 45%; left: 8%; animation-delay: 1s; width: 60px; height: 60px; }
.shape-6 { top: 75%; right: 30%; animation-delay: 3s; width: 70px; height: 70px; }

@keyframes geometricFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-15px) rotate(45deg) scale(1.1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-30px) rotate(90deg) scale(0.9);
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-15px) rotate(135deg) scale(1.05);
        opacity: 0.95;
    }
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Floating Social Icons */
.floating-social {
    position: absolute;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 15;
}

.floating-social.enhanced-float:hover {
    opacity: 1;
    transform: scale(1.3) translateY(-10px);
}

.social-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(45deg, #dc2626, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-ripple {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: rippleEffect 2s ease-out infinite;
}

@keyframes rippleEffect {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.social-1 { top: 20%; left: 10%; animation: socialFloat1 4s ease-in-out infinite; }
.social-2 { top: 35%; right: 15%; animation: socialFloat2 4.5s ease-in-out infinite; }
.social-3 { top: 60%; left: 8%; animation: socialFloat3 5s ease-in-out infinite; }
.social-4 { top: 75%; right: 12%; animation: socialFloat4 3.5s ease-in-out infinite; }
.social-5 { top: 45%; left: 5%; animation: socialFloat5 4.2s ease-in-out infinite; }
.social-6 { top: 80%; right: 20%; animation: socialFloat6 3.8s ease-in-out infinite; }

@keyframes socialFloat1 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-15px) translateX(10px); }
}

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

@keyframes socialFloat3 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-18px) translateX(15px); }
}

@keyframes socialFloat4 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-12px) translateX(-8px); }
}

@keyframes socialFloat5 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-25px) translateX(12px); }
}

@keyframes socialFloat6 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-16px) translateX(-12px); }
}

/* Enhanced Floating Bubbles with Advanced Design */
.floating-bubble.pulse-animation {
    animation: bubbleFloat 12s ease-in-out infinite, pulseBubble 4s ease-in-out infinite;
    position: relative;
}

.floating-bubble::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: shimmer 3s ease-in-out infinite;
}

.floating-bubble::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(96, 165, 250, 0.2);
    border-radius: 50%;
    animation: ripple 4s ease-out infinite;
}

@keyframes pulseBubble {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(1);
        filter: blur(1px);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.2);
        filter: blur(0px);
    }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; transform: translate(0%, 0%); }
    50% { opacity: 0.8; transform: translate(20%, 20%); }
}

@keyframes ripple {
    0% { 
        transform: scale(1); 
        opacity: 0.8; 
    }
    100% { 
        transform: scale(2); 
        opacity: 0; 
    }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    animation: particleFloat 10s linear infinite;
}

.particle-1 { top: 10%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 30%; left: 80%; animation-delay: 2s; }
.particle-3 { top: 50%; left: 10%; animation-delay: 4s; }
.particle-4 { top: 70%; left: 70%; animation-delay: 6s; }
.particle-5 { top: 20%; left: 60%; animation-delay: 8s; }
.particle-6 { top: 80%; left: 30%; animation-delay: 1s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) translateX(0px) scale(0); opacity: 0; }
    10% { opacity: 1; transform: scale(1); }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) translateX(50px) scale(0); opacity: 0; }
}

/* Floating Elements */
.floating-social {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
    animation: floatSocial 8s ease-in-out infinite;
}

.floating-social.social-1 {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-social.social-2 {
    top: 25%;
    right: 12%;
    animation-delay: 1.5s;
}

.floating-social.social-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 3s;
}

.floating-social.social-4 {
    bottom: 20%;
    right: 8%;
    animation-delay: 4.5s;
}

.floating-social.social-5 {
    top: 45%;
    left: 5%;
    animation-delay: 6s;
}

.floating-social.social-6 {
    top: 65%;
    right: 5%;
    animation-delay: 7.5s;
}

@keyframes floatSocial {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.4;
    }
    25% { 
        transform: translateY(-25px) rotate(8deg); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-40px) rotate(-8deg); 
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-15px) rotate(5deg); 
        opacity: 0.6;
    }
}

.social-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gray-50), white);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 12px 40px rgba(15, 98, 254, 0.3);
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(15, 98, 254, 0.08), 
        rgba(241, 243, 246, 0.6));
    animation: bubbleFloat 12s ease-in-out infinite;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(15, 98, 254, 0.1);
}

.bubble-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 25%;
    animation-delay: 3s;
}

.bubble-3 {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 10%;
    animation-delay: 6s;
}

.bubble-4 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 15%;
    animation-delay: 9s;
}

.bubble-5 {
    width: 90px;
    height: 90px;
    bottom: 15%;
    right: 35%;
    animation-delay: 1.5s;
}

@keyframes bubbleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
        opacity: 0.3;
    }
    33% { 
        transform: translateY(-50px) scale(1.1); 
        opacity: 0.6;
    }
    66% { 
        transform: translateY(-25px) scale(0.9); 
        opacity: 0.4;
    }
}

/* Light Hero Content Styles */
.hero-content-light {
    position: relative;
    z-index: 10;
    padding: 40px 0;
}

.light-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.badge-content {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    color: #6366f1;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
}

.light-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-primary {
    display: block;
    color: #1e293b;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-secondary {
    display: block;
    color: #475569;
}

.light-hero-subtitle {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 400;
}

/* Light Features */
.light-features {
    margin-bottom: 32px;
}

.feature-row {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 16px;
}

/* Light CTA Buttons */
.light-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-light-primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-light-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    color: white;
    text-decoration: none;
}

.btn-light-secondary {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-light-secondary:hover {
    background: rgba(99, 102, 241, 0.15);
    color: #6366f1;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Trust Bar */
.light-trust-bar {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
}

.trust-item {
    text-align: center;
    flex: 1;
}

.trust-number {
    font-size: 24px;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(99, 102, 241, 0.2);
    margin: 0 16px;
}

/* Hero Visual Center */
.hero-visual-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 5;
}

.main-circle {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.3);
    z-index: 10;
    position: relative;
}

.orbit-ring {
    position: absolute;
    border: 2px solid rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation-direction: normal;
}

.ring-2 {
    width: 260px;
    height: 260px;
    animation-direction: reverse;
    animation-duration: 30s;
}

.orbit-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.item-1 { top: -25px; left: 50%; transform: translateX(-50%); }
.item-2 { bottom: -25px; left: 50%; transform: translateX(-50%); }
.item-3 { top: -25px; left: 50%; transform: translateX(-50%); }
.item-4 { right: -25px; top: 50%; transform: translateY(-50%); }
.item-5 { left: -25px; top: 50%; transform: translateY(-50%); }

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Services Preview */
.services-preview {
    position: relative;
    z-index: 5;
    padding: 32px 0;
}

.preview-title {
    color: #475569;
    font-weight: 700;
    margin-bottom: 24px;
    font-size: 16px;
}

.service-mini-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mini-card:hover {
    transform: translateX(5px);
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.mini-card i {
    color: #6366f1;
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.mini-card span {
    color: #475569;
    font-weight: 500;
    font-size: 14px;
}

/* Wave Separator */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
}

.wave-separator svg {
    width: 100%;
    height: 60px;
    display: block;
}

/* Section Styles */
section[id] {
    scroll-margin-top: 120px;
}

.section-tag {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(15, 98, 254, 0.3);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.founder-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border: 2px solid var(--border);
}

.founder-image {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.founder-image img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 4px solid var(--primary);
    border-radius: 50%;
}

.founder-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(15, 98, 254, 0.3);
}

.founder-details h4 {
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 26px;
    font-weight: 700;
}

.founder-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 16px;
}

.founder-description {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.6;
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.highlight-item {
    text-align: center;
    padding: 20px;
}

.highlight-item i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.highlight-item h5 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.highlight-item p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Service Cards */
.services-section {
    padding: 100px 0;
    background: white;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(15, 98, 254, 0.03), white);
    box-shadow: 0 15px 50px rgba(15, 98, 254, 0.15);
}

.service-badge {
    position: absolute;
    top: 10px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(15, 98, 254, 0.3);
}

.service-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 18px;
    line-height: 1.3;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 26px;
    line-height: 1.7;
    font-size: 18px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.service-features li {
    padding: 10px 0;
    color: var(--text);
    font-size: 17px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--success);
    margin-right: 12px;
    width: 16px;
}

/* Process Steps */
.how-we-work-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.process-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 6px 20px rgba(15, 98, 254, 0.3);
}

.step-icon {
    width: 120px;
    height: 120px;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 3rem;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(15, 98, 254, 0.25);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 17px;
    font-weight: 500;
}

/* Feature Cards */
.why-choose-section {
    padding: 100px 0;
    background: white;
}

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(96, 165, 250, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    border: 2px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(96, 165, 250, 0.12);
    border-color: var(--primary);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px rgba(96, 165, 250, 0.3);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 17px;
    font-weight: 500;
}

/* Industry Cards */
.industries-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.industry-card {
    background: white;
    padding: 24px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.industry-icon i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.industry-name {
    font-weight: 700;
    color: var(--text);
    margin: 0;
    font-size: 16px;
}

/* Testimonial Cards */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.video-thumbnail {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(15, 98, 254, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(15, 98, 254, 0.5);
}

.testimonial-content {
    padding: 24px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 16px;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.client-info h6 {
    margin: 0;
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
}

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

.testimonial-text {
    color: var(--text);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

/* Blog Cards */
.blog-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 24px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 16px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.contact-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    color: var(--text-secondary);
}

.contact-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.contact-features li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #000000;
    display: flex;
    align-items: center;
}

.contact-features i {
    margin-right: 12px;
    color: var(--primary);
}

.contact-info .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 20px;
    backdrop-filter: blur(10px);
    color: var(--primary);
    border: 2px solid rgba(15, 98, 254, 0.3);
}

.contact-item h6 {
    margin: 0 0 4px 0;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
}

.contact-item p {
    margin: 0;
    color: #000000;
    font-size: 16px;
}

.contact-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 40px;
}

.contact-form h4 {
    color: var(--dark);
    margin-bottom: 32px;
    font-weight: 800;
    font-size: 24px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    transition: border-color 0.3s ease;
    font-size: 16px;
    background: var(--gray-50);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(15, 98, 254, 0.25);
    background: white;
}

/* Footer Styles */
.footer-section {
    background: var(--gray-100);
    padding: 80px 0 40px;
    border-top: 2px solid var(--border);
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #fff;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-social {
    margin-top: 24px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    text-decoration: none;
    margin-right: 12px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 25px rgba(96, 165, 250, 0.4);
}

.footer-divider {
    border-color: var(--border);
    margin: 40px 0;
}

.footer-copyright {
    color: #fff;
    font-size: 16px;
}

.footer-legal a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.footer-legal a:hover {
    color: #fff;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

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

.whatsapp-btn:hover {
    background: #20b954;
    transform: scale(1.1);
    color: white;
    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.6), 0 0 0 15px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4); }
}

/* Product Cards */
.products-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 24px;
}

.product-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 16px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-price strong {
    color: var(--primary);
}

.product-availability {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.product-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--gray-900);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(15, 98, 254, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

.stat-text {
    color: var(--gray-300);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.partner-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--border);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.partner-logo {
    font-size: 18px;
    font-weight: 700;
}

/* Company Info Section */
.company-info-section {
    padding: 100px 0;
    background: white;
}

.company-image {
    position: relative;
}

.company-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 20px;
    border-radius: 16px;
    color: white;
}

.company-content {
    padding-left: 40px;
}

.company-details {
    background: var(--gray-50);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--border);
}

.detail-item {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--text);
}

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

/* Quote Section */
.quote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.quote-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.quote-subtitle {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.quote-features {
    list-style: none;
    padding: 0;
```
    margin-bottom: 40px;
}

.quote-features li {
    margin-bottom: 12px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
}

.quote-features i {
    margin-right: 12px;
    color: white;
}

.quote-form-container {
    margin-top: 0;
}

.quote-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 40px;
}

/* Service Page Specific Styles */
.service-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
    background: var(--gray-50);
}

.service-badge .badge {
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
}

/* Service Page Content Sections */
.service-content-section {
    padding: 80px 0;
    background: white;
}

.service-content h3 {
    color: var(--dark);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.3;
}

.service-content h4 {
    color: var(--primary);
    font-size: 26px;
    font-weight: 600;
    margin: 32px 0 16px 0;
}

.service-content p {
    color: var(--text);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-content ul li {
    color: var(--text);
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
    line-height: 1.6;
}

/* Strategy Cards */
.strategy-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
}


/* Premium Hero Background Effects */
.hero-bg-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.gradient-orb-3d {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: orb3DFloat 12s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #10b981, #06b6d4, #8b5cf6);
    top: 20%;
    right: -150px;
    animation-delay: 3s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, #f59e0b, #ef4444, #ec4899);
    bottom: -175px;
    left: 30%;
    animation-delay: 6s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #8b5cf6, #3b82f6, #06b6d4);
    top: 50%;
    left: 70%;
    animation-delay: 9s;
}

@keyframes orb3DFloat {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        opacity: 0.4;
    }
    25% { 
        transform: translateY(-40px) translateX(20px) scale(1.1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) translateX(-30px) scale(0.9);
        opacity: 0.5;
    }
    75% { 
        transform: translateY(-60px) translateX(15px) scale(1.05);
        opacity: 0.7;
    }
}

/* Professional Floating Icons */
.floating-icon-pro {
    position: absolute;
    animation: iconFloat3D 8s ease-in-out infinite;
    z-index: 10;
}

.icon-glow {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 32px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.icon-glow:hover {
    transform: scale(1.2);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
}

.icon-1 { top: 15%; left: 15%; animation-delay: 0s; }
.icon-2 { top: 25%; right: 20%; animation-delay: 2s; }
.icon-3 { top: 65%; left: 10%; animation-delay: 4s; }
.icon-4 { bottom: 20%; right: 15%; animation-delay: 6s; }
.icon-5 { top: 45%; left: 5%; animation-delay: 1s; }
.icon-6 { top: 75%; right: 25%; animation-delay: 3s; }

@keyframes iconFloat3D {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotateY(0deg);
        opacity: 0.8;
    }
    25% { 
        transform: translateY(-30px) translateX(15px) rotateY(90deg);
        opacity: 1;
    }
    50% { 
        transform: translateY(-15px) translateX(-20px) rotateY(180deg);
        opacity: 0.9;
    }
    75% { 
        transform: translateY(-25px) translateX(10px) rotateY(270deg);
        opacity: 0.95;
    }
}

/* Premium Floating Social Icons */
.floating-social-premium {
    position: absolute;
    z-index: 15;
    animation: socialFloat3D 10s ease-in-out infinite;
}

.social-container-3d {
    perspective: 1000px;
}

.social-icon-premium {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.social-icon-premium.facebook { background: linear-gradient(135deg, #1877f2, #42a5f5); }
.social-icon-premium.instagram { background: linear-gradient(135deg, #e1306c, #fd1d1d, #ffdc80); }
.social-icon-premium.linkedin { background: linear-gradient(135deg, #0077b5, #00a0dc); }
.social-icon-premium.twitter { background: linear-gradient(135deg, #1da1f2, #0d8bf0); }
.social-icon-premium.youtube { background: linear-gradient(135deg, #ff0000, #ff4500); }
.social-icon-premium.whatsapp { background: linear-gradient(135deg, #25d366, #128c7e); }

.social-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: inherit;
    filter: blur(15px);
    opacity: 0.7;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.social-1 { top: 20%; left: 8%; animation-delay: 0s; }
.social-2 { top: 35%; right: 12%; animation-delay: 2s; }
.social-3 { bottom: 30%; left: 15%; animation-delay: 4s; }
.social-4 { bottom: 20%; right: 8%; animation-delay: 6s; }
.social-5 { top: 55%; left: 3%; animation-delay: 1s; }
.social-6 { top: 70%; right: 20%; animation-delay: 3s; }

@keyframes socialFloat3D {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotateZ(0deg);
        opacity: 0.9;
    }
    33% { 
        transform: translateY(-25px) translateX(15px) rotateZ(120deg);
        opacity: 1;
    }
    66% { 
        transform: translateY(-10px) translateX(-20px) rotateZ(240deg);
        opacity: 0.95;
    }
}

/* Premium Particles */
.premium-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.particle-premium {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #60a5fa, #a78bfa);
    border-radius: 50%;
    animation: particleFloat3D 15s linear infinite;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
}

.p-1 { top: 10%; left: 20%; animation-delay: 0s; }
.p-2 { top: 30%; left: 80%; animation-delay: 3s; }
.p-3 { top: 50%; left: 10%; animation-delay: 6s; }
.p-4 { top: 0%; left: 0%; animation-delay: 9s; }
.p-5 { top: 20%; left: 60%; animation-delay: 12s; }
.p-6 { top: 80%; left: 30%; animation-delay: 2s; }
.p-7 { top: 40%; left: 90%; animation-delay: 5s; }
.p-8 { top: 60%; left: 5%; animation-delay: 8s; }

@keyframes particleFloat3D {
    0% { 
        transform: translateY(100vh) translateX(0px) scale(0) rotateZ(0deg);
        opacity: 0;
    }
    10% { 
        opacity: 1;
        transform: scale(1);
    }
    90% { 
        opacity: 1;
    }
    100% { 
        transform: translateY(-100px) translateX(50px) scale(0) rotateZ(360deg);
        opacity: 0;
    }
}

/* Premium Hero Content */
.hero-overlay-premium {
    position: relative;
    z-index: 20;
}

.hero-content-premium {
    color: white;
}

.hero-badge-premium {
    display: inline-block;
    perspective: 1000px;
}

.badge-glow {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(139, 92, 246, 0.9));
    padding: 12px 30px;
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    animation: badgeFloat 6s ease-in-out infinite;
}

.badge-text {
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-10px) rotateX(5deg); }
}

.hero-title-premium {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.title-line-1, .title-line-3 {
    display: block;
    color: white;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle-premium {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-features-premium {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item-premium {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 600;
}

.feature-item-premium i {
    color: #10b981;
    margin-right: 15px;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.hero-buttons-premium {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-premium {
    position: relative;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.btn-primary-premium {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-secondary-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    color: white;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.btn-premium .btn-text {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-premium:hover .btn-glow {
    left: 100%;
}

.hero-stats-premium {
    margin-top: 50px;
}

.stats-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #60a5fa;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(96, 165, 250, 0.5);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-icon {
    color: #a78bfa;
    font-size: 20px;
    opacity: 0.7;
}

/* Premium Hero Visual */
.hero-visual-premium {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.central-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.element-glow {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.5);
    animation: centralPulse 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes centralPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 20px 60px rgba(59, 130, 246, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 25px 80px rgba(59, 130, 246, 0.7);
    }
}

.element-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    animation: ringRotate 20s linear infinite;
}

.ring-1 {
    width: 280px;
    height: 280px;
    animation-delay: 0s;
}

.ring-2 {
    width: 350px;
    height: 350px;
    animation-delay: -7s;
    border-color: rgba(167, 139, 250, 0.3);
}

.ring-3 {
    width: 420px;
    height: 420px;
    animation-delay: -14s;
    border-color: rgba(244, 114, 182, 0.3);
}

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: cardFloat 8s ease-in-out infinite;
}

.card-content {
    text-align: center;
    color: white;
}

.card-content i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    color: #60a5fa;
}

.card-content span {
    font-size: 14px;
    font-weight: 600;
}

.card-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 4s;
}

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

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0px) rotateY(0deg);
        opacity: 0.9;
    }
    25% { 
        transform: translateY(-20px) rotateY(5deg);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) rotateY(-5deg);
        opacity: 0.95;
    }
    75% { 
        transform: translateY(-15px) rotateY(3deg);
        opacity: 1;
    }
}

/* Responsive Design for Light Hero */
@media (max-width: 768px) {
    .modern-hero-section {
        padding-top: 100px;
    }
    
    .light-hero-title {
        font-size: 2.5rem;
    }
    
    .light-hero-subtitle {
        font-size: 16px;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .light-cta-buttons {
        flex-direction: column;
    }
    
    .btn-light-primary,
    .btn-light-secondary {
        text-align: center;
        justify-content: center;
    }
    
    .light-trust-bar {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }
    
    .trust-divider {
        width: 80%;
        height: 1px;
        margin: 0;
    }
    
    .main-circle {
        width: 250px;
        height: 250px;
    }
    
    .inner-circle {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .ring-1 {
        width: 180px;
        height: 180px;
    }
    
    .ring-2 {
        width: 220px;
        height: 220px;
    }
    
    .services-preview {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .light-hero-title {
        font-size: 2rem;
    }
    
    .hero-content-light {
        padding: 20px 0;
    }
    
    .light-cta-buttons {
        gap: 12px;
    }
    
    .btn-light-primary,
    .btn-light-secondary {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .main-circle {
        width: 200px;
        height: 200px;
    }
    
    .inner-circle {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .ring-1 {
        width: 150px;
        height: 150px;
    }
    
    .ring-2 {
        width: 180px;
        height: 180px;
    }
    
    .orbit-item {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .mini-card {
        padding: 12px;
    }
    
    .mini-card i {
        font-size: 16px;
    }
    
    .mini-card span {
        font-size: 13px;
    }
}


.strategy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.strategy-card h4 {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.strategy-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Benefit Cards */
.performance-benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.performance-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(15, 98, 254, 0.25);
}

.performance-benefit-card h4 {
    color: var(--dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.performance-benefit-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.benefit-list li {
    color: var(--text);
    font-size: 15px;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.benefit-list li i {
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 14px;
    margin-top: 2px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-factor {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-factor i {
    font-size: 2rem;
    display: block;
    color: var(--primary);
}

.pricing-factor h6 {
    color: var(--dark);
    font-weight: 600;
    margin: 8px 0 4px 0;
}

.pricing-factor small {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 12px;
    }

    .contact-title,
    .quote-title {
        font-size: 3rem;
    }

    .hero-stats {
        margin-top: 32px;
        padding: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .logo-text {
        display: none;
    }

    .service-card,
    .feature-card {
        padding: 32px 24px;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-link {
        padding: 10px 16px !important;
        font-size: 14px;
        margin: 2px 4px;
    }

    .company-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content h4 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-graphic {
        height: 350px;
    }

    .main-graphic {
        width: 140px;
        height: 140px;
        font-size: 3rem;
    }

    .floating-element {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .contact-form,
    .quote-form {
        padding: 24px;
    }

    .footer-section {
        padding: 60px 0 30px;
    }

    .nav-link{
        padding: 8px 12px !important;
        font-size: 14px;
        margin: 2px;
        border-radius: 8px;
    }
}

/* Scroll Effects */
.scroll-top {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

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

.scroll-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--dark));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 98, 254, 0.5);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    border: 3px solid var(--primary);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

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

/* Utility Classes */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light {
    background-color: var(--gray-50) !important;
}

.text-white {
    color: white !important;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

/* Dropdown Menu */
.dropdown-menu {
    border: 2px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 10px;
    z-index: 9999;
    position: absolute;
    background: white;
}

.dropdown-item {
    border-radius: 10px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--primary);
    color: white;
}

/* Form Styles */
.form-control, .form-select {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(15, 98, 254, 0.25);
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 2px solid var(--border);
    padding: 24px;
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    border-top: 2px solid var(--border);
    padding: 24px;
}

.modal-title {
    font-weight: 700;
    color: var(--light);
}

/* Table Styles */
.table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    border: none;
    padding: 16px;
}

.table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.table tbody tr:hover {
    background: var(--gray-50);
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(66, 190, 101, 0.1);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.alert-danger {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    border-left: 4px solid var(--accent);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
    border-left: 4px solid #D97706;
}

.alert-info {
    background: rgba(15, 98, 254, 0.1);
    color: var(--primary);
    border-left: 4px solid var(--primary);
}

/* Business Growth Modal Styles */
.business-growth-modal {
    border: none;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(15, 98, 254, 0.25);
    overflow: hidden;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(247, 248, 250, 0.95) 100%);
}

.business-growth-modal .modal-header {
    background: linear-gradient(135deg, 
        rgba(15, 98, 254, 0.05) 0%, 
        rgba(255, 255, 255, 1) 100%);
    border-bottom: 2px solid var(--border);
    padding: 32px;
    position: relative;
}

.business-growth-modal .modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.business-growth-modal .modal-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.business-growth-modal .modal-body {
    padding: 40px;
    background: white;
}

.business-growth-modal .form-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.business-growth-modal .form-control,
.business-growth-modal .form-select {
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: var(--gray-50);
    font-weight: 500;
}

.business-growth-modal .form-control:focus,
.business-growth-modal .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(15, 98, 254, 0.15);
    background: white;
    transform: translateY(-1px);
}

.business-growth-modal .form-control-lg,
.business-growth-modal .form-select-lg {
    padding: 18px 24px;
    font-size: 18px;
    border-radius: 15px;
}

.business-growth-modal .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 15px;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(15, 98, 254, 0.3);
}

.business-growth-modal .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(15, 98, 254, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.business-growth-modal .btn-outline-secondary {
    border: 2px solid var(--border);
    color: var(--text);
    border-radius: 15px;
    padding: 16px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.business-growth-modal .btn-outline-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
    transform: translateY(-1px);
}

.business-growth-modal .form-check-input {
    border: 2px solid var(--border);
    border-radius: 6px;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.business-growth-modal .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.business-growth-modal .form-check-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 8px;
}

.business-growth-modal .invalid-feedback {
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
}

.business-growth-modal .is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.15);
}

.business-growth-modal .is-valid {
    border-color: var(--success);
    box-shadow: 0 0 0 0.25rem rgba(134, 239, 172, 0.15);
}

/* Modal backdrop animation */
.modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Optgroup styling */
.business-growth-modal optgroup {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
}

.business-growth-modal option {
    padding: 12px;
    font-weight: 500;
    color: var(--text);
}

/* Floating CTA Button (optional - can be added to any page) */
.floating-growth-cta {
    position: fixed;
    bottom: 120px;
    left: 30px;
    z-index: 999;
    animation: growthPulse 3s ease-in-out infinite;
}

.growth-cta-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 24px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(15, 98, 254, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.growth-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(15, 98, 254, 0.5);
    color: white;
}

@keyframes growthPulse {
    0%, 100% { 
        box-shadow: 0 8px 30px rgba(15, 98, 254, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(15, 98, 254, 0.6), 0 0 0 15px rgba(15, 98, 254, 0.1);
        transform: scale(1.05);
    }
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 17px;
    font-weight: 500;
}

/*Contact sparsh bagga button*/

    .oval-button {
      display: inline-block;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 50px;
      background-color: #007BFF;
      color: #fff;
      font-size: 1rem;
      text-decoration: none;
      font-family: 'Segoe UI', sans-serif;
      text-align: center;
      transition: background-color 0.3s ease;
      white-space: nowrap;
    }

    .oval-button:hover {
      background-color: #0056b3;
    }

    @media (max-width: 480px) {
      .oval-button {
        font-size: 0.9rem;
        padding: 0.75rem 2rem;
      }
    }

    @media (max-width: 320px) {
      .oval-button {
        font-size: 0.8rem;
        padding: 0.6rem 1.5rem;
      }
    }