  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        * {
            font-family: 'Inter', sans-serif;
        }
        
        :root {
            --primary-color: #0066ff;          /* Bright Blue */
            --secondary-color: #1d4ed8;        /* Deep Blue */
            --accent-color: #64748b;           /* Neutral Grey (slightly bluish grey) */
            --dark-color: #1e293b;             /* Dark Grey / Slate */
            --light-bg: #f1f5f9;               /* Light Grey background */
             --success-color: #10b981;          /* Green for success states */
            --warning-color: #f59e0b;          /* Orange for warnings */
            --danger-color: #ef4444;           /* Red for errors */

            --gradient-primary: linear-gradient(135deg, #0066ff 0%, #1d4ed8 100%);
            --gradient-secondary: linear-gradient(135deg, #64748b 0%, #1e293b 100%);
            --gradient-ai: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-ml: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

            --banking-gradient-primary: linear-gradient(135deg, #0066ff 0%, #1d4ed8 100%);

            --shadow-light: 0 4px 20px rgba(29, 78, 216, 0.1);
            --shadow-medium: 0 8px 40px rgba(29, 78, 216, 0.15);
            --shadow-heavy: 0 20px 60px rgba(29, 78, 216, 0.2);

            --text-dark: #1e293b;
            --text-light: #64748b;
            --glass-bg: rgba(255, 255, 255, 0.25);
            --glass-border: rgba(255, 255, 255, 0.18);

             --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
            --gradient-warning: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            --shadow-glow: 0 20px 60px rgba(0, 102, 255, 0.15);
            --shadow-card: 0 10px 40px rgba(30, 41, 59, 0.08);
            --shadow-hover: 0 25px 80px rgba(0, 102, 255, 0.25);
        }
        
        body {
            overflow-x: hidden;
        }
        
        /* Navigation Styles */
        .navbar {
            backdrop-filter: blur(20px);
            background: rgba(255, 255, 255, 0.95) !important;
            border-bottom: 1px solid rgba(0, 102, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98) !important;
            box-shadow: var(--shadow-light);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar-brand .img-h{
            height: 80px;
             width: auto;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark-color) !important;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--gradient-primary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
       /* FIXED: Dropdown Menu Styles */
        .dropdown-menu {
            border: none;
            box-shadow: var(--shadow-medium);
            border-radius: 15px;
            padding: 1rem 0;
            margin-top: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            position: absolute;
        }
        
        /* Desktop: Hover behavior */
        @media (min-width: 992px) {
            .dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                display: block;
            }
        }
        
        /* Mobile/Tablet: Bootstrap toggle behavior */
        .dropdown-menu.show {
            opacity: 1 !important;
            visibility: visible !important;
            transform: translateY(0) !important;
            display: block !important;
        }
        
        .dropdown-item {
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .dropdown-item:hover {
            background: var(--gradient-secondary);
            color: white !important;
            transform: translateX(5px);
        }

        /* Mobile navbar toggler */
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }
        
        .navbar-toggler:focus {
            text-decoration: none;
            outline: 0;
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #0066ff 0%, #00d4ff 50%, #0066ff 100%);
            position: relative;
            overflow: hidden;
        }
        
        .hero-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 2px, transparent 2px);
            background-size: 60px 60px;
            animation: patternMove 20s linear infinite;
        }
        
        @keyframes patternMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(60px, 60px); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 400;
            opacity: 0.9;
            margin-bottom: 3rem;
            line-height: 1.6;
        }
        
        .hero-image {
            position: relative;
            z-index: 1;
        }
        
        .floating-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            animation: float 6s ease-in-out infinite;
        }
        
        .floating-card:nth-child(2) { animation-delay: -2s; }
        .floating-card:nth-child(3) { animation-delay: -4s; }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }


#heroSlider .carousel-item {
  position: relative;
  height: 100vh;
  min-height: 420px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1);
  animation: bgZoom 20s ease-in-out infinite alternate;
}

@keyframes bgZoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.18) 100%);
}
.hero-overlay.right-dark {
  background: linear-gradient(to left, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.18) 100%);
}

#heroSlider .container { position: relative; z-index: 2; }

.hero-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.125rem); max-width: 650px; }
.hero-highlight { color: var(--primary-color); text-shadow: 0 0 14px rgba(0,102,255,0.45); }

.carousel-indicators [data-bs-target] {
  width: 12px; height: 12px; border-radius: 50%;
  background-color: rgba(255,255,255,0.9);
  opacity: 0.9;
  border: 2px solid rgba(0,0,0,0.08);
}
.carousel-indicators .active { background-color: var(--secondary-color); transform: scale(1.15); }

.carousel-control-prev-icon,
.carousel-control-next-icon { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.45)); }

@media (max-width: 991px) {
  .hero-sub { max-width: 100%; }
  .d-flex.gap-2 { flex-wrap: wrap; }
}

/* Slide content animations */
.slide-content { opacity: 0; animation-fill-mode: forwards; }
.slide-content-left .hero-title { animation: slideInLeft 0.8s ease forwards; }
.slide-content-left .hero-sub { animation: fadeIn 0.8s ease 0.4s forwards; }
.slide-content-left .btn { animation: slideInLeft 0.8s ease 0.8s forwards; }

.slide-content-right .hero-title { animation: slideInRight 0.8s ease forwards; }
.slide-content-right .hero-sub { animation: fadeIn 0.8s ease 0.4s forwards; }
.slide-content-right .btn { animation: slideInRight 0.8s ease 0.8s forwards; }

@keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        
        /* Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #6c757d 0%, #8a8a8a 100%);
            border: none;
            padding: 1rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(108, 117, 125, 0.1);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 60px rgba(108, 117, 125, 0.2);
            background: linear-gradient(135deg, #5a6268 0%, #7a7a7a 100%);
        }
        
        .btn-outline-light {
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 1rem 2.5rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 120px 0;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            margin-bottom: 4rem;
        }
        
        /* Enhanced Service Cards */
        .service-card {
            background: white;
            border-radius: 25px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-card:hover::after {
            left: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-20px) scale(1.02);
            box-shadow: 0 25px 80px rgba(108, 117, 125, 0.25);
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        }
        
        .service-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .service-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-secondary);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 15px 40px rgba(108, 117, 125, 0.4);
        }
        
        .service-card:hover .service-icon::before {
            opacity: 1;
        }
        
        .service-card:hover .service-icon i {
            transform: scale(1.1);
            transition: transform 0.3s ease;
        }
        
        /* Industry Cards */
        .industry-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
        }
        
        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(108, 117, 125, 0.2);
        }
        
        .industry-image {
            height: 200px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .industry-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(0, 102, 255, 0.8), rgba(0, 212, 255, 0.8));
            transition: all 0.3s ease;
        }
        
        .industry-card:hover .industry-image::before {
            background: linear-gradient(45deg, rgba(108, 117, 125, 0.8), rgba(138, 138, 138, 0.8));
        }
        
        /* Portfolio Section */
        .portfolio-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .portfolio-item:hover {
            transform: scale(1.05);
        }
        
        .portfolio-image {
            height: 300px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        /* Testimonial Cards */
        .testimonial-card {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 8rem;
            color: var(--primary-color);
            opacity: 0.1;
            font-family: serif;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }
        
        .client-avatar {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        /* Stats Section */
        .stats-section {
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }
        
        .stats-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 2px, transparent 2px),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 2px, transparent 2px);
            background-size: 50px 50px;
        }
        
        .stat-card {
            text-align: center;
            color: white;
            position: relative;
            z-index: 2;
        }
        
        .stat-number {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            font-size: 1.2rem;
            opacity: 0.9;
           color: var(--dark-color); 
        }
        
   
        
        .cta-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(45deg, rgba(0, 102, 255, 0.1) 25%, transparent 25%),
                linear-gradient(-45deg, rgba(0, 102, 255, 0.1) 25%, transparent 25%);
            background-size: 60px 60px;
        }
        
        /* Footer */
        .footer {
            background: var(--dark-color);
            position: relative;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-link:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }
        
        .social-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: linear-gradient(135deg, #6c757d 0%, #8a8a8a 100%);
            transform: translateY(-5px);
        }
        
        /* Animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.6s ease;
        }
        
        .slide-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.6s ease;
        }
        
        .slide-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .section-padding {
                padding: 80px 0;
            }
            
            .service-card,
            .testimonial-card {
                padding: 2rem 1.5rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
             .value-card:hover,
            .usecase-card:hover,
            .service-card:hover {
                transform: translateY(-4px) scale(1.01);
            }
        }
        
        /* Loading Animation */
        .loading-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }
        
        .loading-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .loaded .loading-overlay {
            opacity: 0;
            pointer-events: none;
        }
        
        /* Enhanced Slider Styles */
       

        .text-grey {
          color: #64748b !important;   /* Neutral grey */
        }

        .text-grey-light {
          color: #94a3b8 !important;   /* Lighter grey */
        }
        
       
        
        /* Enhanced Industry Cards */
        .industry-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            cursor: pointer;
        }
        
        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
            z-index: 1;
        }
        
        .industry-card:hover::before {
            left: 100%;
        }
        
        .industry-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 80px rgba(108, 117, 125, 0.2);
        }
        
        /* Enhanced Portfolio Items */
        .portfolio-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }
        
        .portfolio-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            z-index: 1;
        }
        
        .portfolio-item:hover::before {
            transform: translateX(100%);
        }
        
        .portfolio-item:hover {
            transform: scale(1.05) translateY(-10px);
            box-shadow: 0 20px 60px rgba(108, 117, 125, 0.3);
        }
        
        /* Enhanced Testimonial Cards */
        .testimonial-card {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 8rem;
            color: var(--primary-color);
            opacity: 0.1;
            font-family: serif;
            transition: all 0.3s ease;
        }
        
        .testimonial-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(108, 117, 125, 0.05), transparent);
            transition: left 0.6s ease;
        }
        
        .testimonial-card:hover::after {
            left: 100%;
        }
        
        .testimonial-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 80px rgba(108, 117, 125, 0.2);
        }
        
        .testimonial-card:hover::before {
            opacity: 0.2;
            transform: scale(1.1);
        }
        
        /* Enhanced About Section */
        .about-feature-card {
            transition: all 0.3s ease;
        }
        
        .about-feature-card:hover {
            transform: translateX(10px);
        }
        
        .about-feature-card:hover .bg-primary {
            background: var(--gradient-primary) !important;
            transform: scale(1.1);
        }
        
        /* Testimonial Slider Styles */
        .testimonial-slider {
            overflow: hidden;
            max-width: 100%;
        }
        
        .testimonial-track {
            width: calc(100% * 10); /* 10 testimonials */
            transition: transform 0.5s ease;
        }
        
        .testimonial-slide {
            flex: 0 0 calc(100% / 10);
            padding: 0 15px;
        }
        
        .testimonial-dots {
            background: rgba(108, 117, 125, 0.1);
            backdrop-filter: blur(20px);
            padding: 10px 20px;
            border-radius: 25px;
            border: 1px solid rgba(108, 117, 125, 0.2);
        }
        
        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(108, 117, 125, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .testimonial-dot.active {
            background: #6c757d;
            transform: scale(1.2);
        }
        
        .testimonial-dot:hover {
            background: #6c757d;
            transform: scale(1.1);
        }
        
        /* Client Logos Styles */
        .client-logos-slider {
            height: 120px;
            mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
            -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
        }
        
        .client-logos-track {
            width: calc(200px * 15); /* 15 items for seamless loop */
            height: 100%;
        }
        
        .client-logo-item {
            flex: 0 0 200px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 20px;
        }
        
        .client-logo-card {
            width: 160px;
            height: 80px;
            background: white;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(108, 117, 125, 0.1);
        }
        
        .client-logo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(108, 117, 125, 0.15);
            border-color: rgba(108, 117, 125, 0.3);
        }
        
        .client-logo-placeholder {
            text-align: center;
        }
        
        .client-name {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-top: 8px;
        }
        
        @keyframes clientLogosScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-200px * 10));
            }
        }
        
        .client-logos-slider:hover .client-logos-track {
            animation-play-state: paused;
        }
        
        /* Responsive adjustments for testimonials */
        @media (max-width: 768px) {
            .testimonial-slide {
                flex: 0 0 100%;
                padding: 0 10px;
            }
            
            .testimonial-track {
                width: calc(100% * 10);
            }
            
            .client-logo-item {
                flex: 0 0 150px;
            }
            
            .client-logo-card {
                width: 130px;
                height: 70px;
            }
            
            .client-name {
                font-size: 0.7rem;
            }
        }
        
        /* Workflow Styles */
        .workflow-line {
            position: absolute;
            top: 80px;
            left: 8.33%;
            right: 8.33%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
            border-radius: 2px;
            z-index: 1;
        }
        
        .workflow-line::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.3) 100%);
            border-radius: 2px;
            animation: workflowProgress 3s ease-in-out infinite;
        }
        
        @keyframes workflowProgress {
            0% { width: 0; }
            50% { width: 100%; }
            100% { width: 0; }
        }
        
        .workflow-step {
            position: relative;
            z-index: 2;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .workflow-step:hover {
            transform: translateY(-10px);
        }
        
        .workflow-icon-wrapper {
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .workflow-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
            overflow: hidden;
        }
        
        .workflow-icon::before {
            content: '';
            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.6s ease;
        }
        
        .workflow-step:hover .workflow-icon {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 15px 40px rgba(108, 117, 125, 0.4);
        }
        
        .workflow-step:hover .workflow-icon::before {
            left: 100%;
        }
        
        .workflow-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 35px;
            height: 35px;
            background: var(--accent-color);
            border: 3px solid white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
            animation: pulse 2s infinite;
        }
        
        .support-icon {
            background: linear-gradient(135deg, var(--accent-color) 0%, #f7931e 100%) !important;
        }
        
        .workflow-step:nth-child(2) .workflow-icon {
            animation-delay: 0.2s;
        }
        
        .workflow-step:nth-child(3) .workflow-icon {
            animation-delay: 0.4s;
        }
        
        .workflow-step:nth-child(4) .workflow-icon {
            animation-delay: 0.6s;
        }
        
        .workflow-step:nth-child(5) .workflow-icon {
            animation-delay: 0.8s;
        }
        
        .workflow-step:nth-child(6) .workflow-icon {
            animation-delay: 1s;
        }
        
        /* Workflow Responsive */
        @media (max-width: 991px) {
            .workflow-line {
                display: none !important;
            }
            
            .workflow-step {
                margin-bottom: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .workflow-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
            
            .workflow-number {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }
        }
        
        /* Enhanced Offering Cards */
        .offering-card {
            background: white;
            border-radius: 25px;
            padding: 1rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(108, 117, 125, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .offering-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.05), transparent);
            transition: left 0.6s ease;
        }
        
        .offering-card:hover::before {
            left: 100%;
        }
        
        .offering-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 80px rgba(0, 102, 255, 0.2);
            border-color: rgba(0, 102, 255, 0.3);
        }
        
        .offering-icon-wrapper {
            margin-bottom: 1.5rem;
        }
        
        .offering-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
        }
        
        .offering-card:hover .offering-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
             background: var(--gradient-secondary);
        }
        
        .offering-number {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: rgba(0, 102, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .offering-card:hover .offering-number {
            background: var(--gradient-secondary);
            color: white;
            transform: scale(1.1);
        }
        
        .offering-content h4 {
            font-size: 1.4rem;
            line-height: 1.3;
        }
        
        .offering-content p {
            font-size: 1rem;
            line-height: 1.6;
        }
        
        /* Enhanced Technology Showcase */
        .tech-showcase-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .tech-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 2px, transparent 2px),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 2px, transparent 2px);
            background-size: 50px 50px;
            animation: patternMove 20s linear infinite;
            z-index: 1;
        }
        
        .tech-main-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            font-size: 2.5rem;
            color: white;
            animation: pulse 3s infinite;
        }
        
        .tech-stack-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 1.2rem 0.8rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .tech-stack-card:hover {
            transform: translateY(-5px) scale(1.05);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }
        
        .tech-stack-icon {
            font-size: 1.8rem;
            color: white;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .tech-stack-card:hover .tech-stack-icon {
            transform: scale(1.2);
        }
        
        .tech-stack-label {
            font-size: 0.85rem;
            color: white;
            font-weight: 600;
            opacity: 0.9;
        }
        
        .tech-stack-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .tech-stack-card:hover .tech-stack-glow {
            transform: translateX(100%);
        }
        
        .tech-brands-section {
            margin-top: auto;
        }
        
        .tech-brand-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            padding: 0.8rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .tech-brand-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        .tech-brand-card i {
            font-size: 1.5rem;
            color: white;
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .tech-brand-card:hover i {
            opacity: 1;
            transform: scale(1.1);
        }
        
        .floating-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: floatParticle 6s ease-in-out infinite;
        }
        
        .floating-particle:nth-child(2) { animation-delay: -2s; }
        .floating-particle:nth-child(3) { animation-delay: -4s; }
        .floating-particle:nth-child(4) { animation-delay: -1s; }
        
        @keyframes floatParticle {
            0%, 100% { 
                transform: translateY(0px) scale(1);
                opacity: 0.3;
            }
            50% { 
                transform: translateY(-20px) scale(1.2);
                opacity: 0.8;
            }
        }
        
        /* Responsive Design for Offerings */
        @media (max-width: 768px) {
            .offering-card {
                padding: 2rem 1.5rem;
            }
            
            .offering-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .offering-number {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .tech-showcase-card {
                margin-top: 2rem;
            }
            
            .tech-stack-card {
                padding: 1rem 0.6rem;
            }
            
            .tech-stack-icon {
                font-size: 1.5rem;
            }
            
            .tech-brand-card {
                padding: 0.6rem;
            }
            
            .tech-brand-card i {
                font-size: 1.2rem;
            }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }
        
        /* Backdrop Blur Support */
        .backdrop-blur {
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

/* Additional styles specific to About Us page */
        .about-hero {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e40af 100%);
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: 30px;
        }
        
        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, #1d4ed8 0%, transparent 30%),
                linear-gradient(-45deg, #1e293b 0%, transparent 40%),
                linear-gradient(135deg, transparent 60%, #f1f5f9 100%);
            clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
        
        .about-hero::after {
            content: '';
            position: absolute;
            top: 20%;
            right: 10%;
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            border-radius: 50%;
            opacity: 0.3;
        }
        
        .hero-geometric-shape {
            position: absolute;
            right: 5%;
            top: 10%;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.1);
            transform: rotate(45deg);
            border-radius: 20px;
        }
        
        .hero-lines {
            position: absolute;
            right: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.1) 49%, rgba(255,255,255,0.1) 51%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.05) 49%, rgba(255,255,255,0.05) 51%, transparent 52%);
            background-size: 60px 60px;
        }
        
        .experience-section {
            position: relative;
            overflow: hidden;
        }
        
        .experience-image-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        
        .experience-team-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
        .experience-team-image::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            width: 80px;
            height: 60px;
            background: #94a3b8;
            border-radius: 10px;
            opacity: 0.8;
        }
        
        .experience-team-image::after {
            content: '';
            position: absolute;
            top: 40px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #64748b;
            border-radius: 50%;
            opacity: 0.7;
        }
        
        .team-collaboration-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
            color: #64748b;
            opacity: 0.6;
        }
        
        .team-elements {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            height: 40px;
            background: #f1f5f9;
            border-radius: 8px;
            opacity: 0.9;
        }
        
        .experience-text-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            padding: 2rem;
            border-radius: 0 0 20px 20px;
            box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
        }
        
        .experience-text-overlay::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 5px;
            height: 100%;
            background: var(--gradient-primary);
        }
        
        .experience-decade-text {
            font-size: 1.1rem;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .experience-main-text {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            line-height: 1.2;
        }
        
        .vision-mission-card {
            background: white;
            border-radius: 25px;
            padding: 3rem 2rem;
            box-shadow: var(--shadow-medium);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(29, 78, 216, 0.1);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .vision-mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(29, 78, 216, 0.05), transparent);
            transition: left 0.6s ease;
        }
        
        .vision-mission-card:hover::before {
            left: 100%;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-heavy);
            border-color: rgba(29, 78, 216, 0.3);
        }
        
        .vision-mission-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-light);
        }
        
        .vision-mission-card:hover .vision-mission-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: var(--shadow-medium);
        }
        
        .core-value-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(100, 116, 139, 0.1);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            height: 100%;
        }
        
        .core-value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .core-value-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.05), transparent);
            transition: left 0.6s ease;
        }
        
        .core-value-card:hover::before {
            transform: scaleX(1);
        }
        
        .core-value-card:hover::after {
            left: 100%;
        }
        
        .core-value-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 80px rgba(100, 116, 139, 0.15);
            border-color: rgba(100, 116, 139, 0.3);
        }
        
        .core-value-icon {
            width: 80px;
            height: 80px;
            background: rgba(100, 116, 139, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--accent-color);
            font-size: 2rem;
        }
        
        .core-value-card:hover .core-value-icon {
            background: var(--gradient-secondary);
            color: white;
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 30px rgba(100, 116, 139, 0.3);
        }
        
        .why-choose-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(29, 78, 216, 0.1);
            box-shadow: var(--shadow-light);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .why-choose-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
            border-color: rgba(29, 78, 216, 0.3);
        }
        
        .why-choose-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-light);
        }
        
        .why-choose-card:hover .why-choose-icon {
            transform: scale(1.1);
            box-shadow: var(--shadow-medium);
        }
        
        .experience-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 25px;
        }
        
        .experience-content {
            text-align: center;
            color: white;
            z-index: 2;
            position: relative;
        }
        
        .experience-number {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }
        
        .experience-text {
            font-size: 1.2rem;
            opacity: 0.9;
            font-weight: 500;
        }


/* serviescss*/
  /* Hero Section */
        .service-hero {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e40af 100%);
            min-height: 70vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-geometric-shape {
            position: absolute;
            top: -30%;
            right: -15%;
            width: 600px;
            height: 600px;
            background: conic-gradient(from 0deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1));
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        .hero-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 60px 60px, 40px 40px;
            animation: float 15s ease-in-out infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 102, 255, 0.3); }
            50% { box-shadow: 0 0 40px rgba(0, 102, 255, 0.6), 0 0 60px rgba(0, 102, 255, 0.3); }
        }
  /* Glass Morphism Cards */
   
        /* Hero Section */
        .service-hero {
            background: var(--gradient-primary);
            min-height: 70vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero-geometric-shape {
            position: absolute;
            top: -30%;
            right: -15%;
            width: 600px;
            height: 600px;
            background: conic-gradient(from 0deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1));
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        .hero-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 2px, transparent 2px),
                radial-gradient(circle at 75% 75%, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 60px 60px, 40px 40px;
            animation: float 15s ease-in-out infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 102, 255, 0.3); }
            50% { box-shadow: 0 0 40px rgba(0, 102, 255, 0.6), 0 0 60px rgba(0, 102, 255, 0.3); }
        }

          .hero-cloud-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .cloud-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            animation: float-cloud 20s ease-in-out infinite;
        }

        .cloud-shape:nth-child(1) {
            width: 100px;
            height: 40px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .cloud-shape:nth-child(2) {
            width: 150px;
            height: 60px;
            top: 40%;
            right: 15%;
            animation-delay: -5s;
        }

        .cloud-shape:nth-child(3) {
            width: 80px;
            height: 30px;
            top: 60%;
            left: 20%;
            animation-delay: -10s;
        }

        .cloud-shape:nth-child(4) {
            width: 120px;
            height: 50px;
            top: 30%;
            right: 30%;
            animation-delay: -15s;
        }

        .hero-network-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
                linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: network-pulse 15s ease-in-out infinite;
        }

        @keyframes float-cloud {
            0%, 100% { transform: translateX(0) translateY(0); }
            25% { transform: translateX(20px) translateY(-10px); }
            50% { transform: translateX(-10px) translateY(-20px); }
            75% { transform: translateX(15px) translateY(-5px); }
        }

        @keyframes network-pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

      

        /* Glass Morphism Cards */
        .service-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.37),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 
                var(--shadow-heavy),
                0 8px 32px rgba(31, 38, 135, 0.37),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(0, 102, 255, 0.3);
        }

        .service-card .icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            position: relative;
            transition: all 0.3s ease;
            animation: glow 3s ease-in-out infinite;
        }

        .service-card:hover .icon {
            transform: rotateY(180deg) scale(1.1);
            background: var(--gradient-secondary);
        }

        /* Enhanced Contact Card */
        .contact-card {
            background: var(--gradient-primary);
            color: white;
            border-radius: 28px;
            padding: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            transition: all 0.4s ease;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 300px;
            height: 300px;
            background: conic-gradient(from 0deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1));
            border-radius: 50%;
            animation: rotate 15s linear infinite;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 80px rgba(0, 102, 255, 0.4);
        }

        .contact-item {
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--glass-border);
            border-radius: 16px;
            padding: 2rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s;
        }

        .contact-item:hover::before {
            left: 100%;
        }

        .contact-item:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.3);
        }

        /* Modern Feature Cards */
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 1.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }

        .feature-card:hover::before {
            width: 100%;
            opacity: 0.1;
        }

        .feature-card:hover {
            transform: translateX(12px) translateY(-4px);
            box-shadow: 
                var(--shadow-medium),
                0 4px 20px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--gradient-secondary);
        }

        /* Enhanced CTA Section */
      

 
        /* Modern Buttons */
        .btn-custom {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .btn-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-secondary);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .btn-custom:hover::before {
            left: 0;
        }

        .btn-custom:hover {
            color: white;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 15px 40px rgba(100, 116, 139, 0.4);
        }

        .btn-outline-light {
            border: 2px solid rgba(255, 255, 255, 0.3);
            color: white;
            background: transparent;
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .btn-outline-light:hover {
            background: white;
            color: var(--primary-color);
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
        }

        /* Service List Styling */
        .service-category {
            margin-bottom: 2rem;
        }

        .service-category-title {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 1rem;
            padding: 0.75rem 0;
            border-bottom: 2px solid rgba(0, 102, 255, 0.1);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .service-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .service-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(0, 102, 255, 0.1);
            border-radius: 12px;
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .service-item:hover::before {
            left: 100%;
        }

        .service-item:hover {
            transform: translateX(8px) translateY(-2px);
            background: rgba(0, 102, 255, 0.05);
            border-color: var(--primary-color);
            box-shadow: 0 8px 25px rgba(0, 102, 255, 0.15);
            color: var(--primary-color);
            text-decoration: none;
        }

        .service-item-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            margin-right: 1rem;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .service-item:hover .service-item-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--gradient-secondary);
            box-shadow: 0 4px 15px rgba(100, 116, 139, 0.3);
        }

        .service-item-text {
            flex: 1;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .service-item:hover .service-item-text {
            font-weight: 700;
        }

        .service-item-arrow {
            color: var(--accent-color);
            font-size: 0.8rem;
            transition: all 0.3s ease;
            opacity: 0.6;
        }

        .service-item:hover .service-item-arrow {
            color: var(--primary-color);
            transform: translateX(4px);
            opacity: 1;
        }

        /* Process Timeline */
        .process-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .process-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .process-card:hover::before {
            left: 100%;
        }

        .process-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(100, 116, 139, 0.15);
            border-color: var(--accent-color);
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .process-card:hover .process-icon {
            background: var(--gradient-secondary);
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 10px 30px rgba(100, 116, 139, 0.3);
        }

        .process-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: var(--gradient-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
        }

        /* Technology Badges */
        .tech-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid rgba(0, 102, 255, 0.1);
            border-radius: 25px;
            margin: 0.25rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .tech-badge:hover {
            background: var(--gradient-secondary);
            color: white;
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 20px rgba(100, 116, 139, 0.3);
        }

        .tech-badge i {
            margin-right: 0.5rem;
            font-size: 1rem;
        }

        /* Badge Animations */
        .badge {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .badge:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .service-hero {
                min-height: 60vh;
                text-align: center;
            }
            
            .hero-geometric-shape {
                width: 300px;
                height: 300px;
            }
            
            .contact-card {
                margin-top: 2rem;
            }

            .service-card {
                padding: 2rem;
            }

            .feature-card:hover {
                transform: translateY(-4px);
            }

            .process-card {
                margin-bottom: 2rem;
            }
        }

        .section-padding {
            padding: 6rem 0;
        }

        .text-primary-custom {
            color: var(--primary-color) !important;
        }

        .bg-light-custom {
            background: var(--light-bg) !important;
        }

        /* Loading Animation */
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .loading {
            animation: pulse 2s ease-in-out infinite;
        }

        /* Cloud Provider Cards */
        .provider-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            text-align: center;
            height: 100%;
        }

        .provider-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .provider-card:hover::before {
            left: 100%;
        }

        .provider-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
            border-color: var(--primary-color);
        }

        .provider-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            font-size: 2.5rem;
            transition: all 0.3s ease;
        }

        .aws-logo {
            background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
            color: white;
        }

        .azure-logo {
            background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
            color: white;
        }

        .gcp-logo {
            background: linear-gradient(135deg, #4285f4 0%, #34a853 50%, #ea4335 100%);
            color: white;
        }

        .provider-card:hover .provider-logo {
            transform: scale(1.1) rotate(5deg);
        }

 .hero-ai-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .ai-shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float-ai 15s ease-in-out infinite;
        }

        .ai-shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .ai-shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 30%;
            right: 15%;
            animation-delay: -3s;
        }

        .ai-shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 60%;
            left: 20%;
            animation-delay: -6s;
        }

        .ai-shape:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 20%;
            right: 30%;
            animation-delay: -9s;
        }

        .ai-shape:nth-child(5) {
            width: 140px;
            height: 140px;
            top: 70%;
            right: 10%;
            animation-delay: -12s;
        }

        .hero-neural-network {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 2px, transparent 2px),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 2px, transparent 2px),
                radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 2px, transparent 2px),
                radial-gradient(circle at 60% 20%, rgba(255,255,255,0.1) 2px, transparent 2px);
            background-size: 100px 100px, 150px 150px, 120px 120px, 80px 80px;
            animation: neural-pulse 20s ease-in-out infinite;
        }

        @keyframes float-ai {
            0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
            25% { transform: translateX(30px) translateY(-20px) rotate(90deg); }
            50% { transform: translateX(-20px) translateY(-30px) rotate(180deg); }
            75% { transform: translateX(25px) translateY(-10px) rotate(270deg); }
        }

        @keyframes neural-pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.7; }
        }

           /* AI/ML Specific Cards */
        .ai-card {
            background: var(--gradient-ai);
            color: white;
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            text-align: center;
            height: 100%;
        }

        .ml-card {
            background: var(--gradient-ml);
            color: white;
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            text-align: center;
            height: 100%;
        }

        .ai-card:hover, .ml-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        /* Use Case Cards */
        .use-case-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .use-case-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transition: height 0.3s ease;
        }

        .use-case-card:hover::before {
            height: 100%;
            opacity: 0.1;
        }

        .use-case-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
            border-color: var(--primary-color);
        }

        /* Process Steps */
        /* Process Steps */
.process-step {
    background: white;
    border-radius: 20px;
    padding: 1rem !important;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 100%;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
}

.process-step:hover::before {
    height: 100%;
    opacity: 0.1;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
    background: var(--gradient-secondary);
}
/* Statistics Cards */
        .stat-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transition: height 0.3s ease;
        }

        .stat-card:hover::before {
            height: 100%;
            opacity: 0.1;
        }

        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
            border-color: var(--primary-color);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

     /* Industry Cards */
        .industry-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .industry-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-medium);
            border-color: var(--primary-color);
        }

        .industry-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .industry-card:hover .industry-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--gradient-secondary);
        }

        .hero-bg-effects {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            animation: float 25s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            width: 120px;
            height: 120px;
            top: 15%;
            left: 8%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 200px;
            height: 100px;
            top: 30%;
            right: 12%;
            animation-delay: -8s;
        }

        .shape:nth-child(3) {
            width: 90px;
            height: 160px;
            top: 60%;
            left: 20%;
            animation-delay: -16s;
        }

        .shape:nth-child(4) {
            width: 140px;
            height: 80px;
            top: 20%;
            right: 30%;
            animation-delay: -12s;
        }

        .shape:nth-child(5) {
            width: 110px;
            height: 180px;
            top: 70%;
            right: 8%;
            animation-delay: -20s;
        }

        .grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            animation: grid-move 40s linear infinite;
        }


        /* Glass Morphism Cards */
        .glass-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 24px;
            box-shadow: var(--shadow-card);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
            transition: left 0.6s ease;
        }

        .glass-card:hover::before {
            left: 100%;
        }

        .glass-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: rgba(99, 102, 241, 0.3);
        }

         /* Platform Cards */
        .platform-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(99, 102, 241, 0.1);
            box-shadow: var(--shadow-card);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .platform-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .platform-card:hover::before {
            opacity: 0.05;
        }

        .platform-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }

        .platform-card i {
            transition: all 0.3s ease;
        }

        .platform-card:hover i {
            transform: scale(1.2) rotate(5deg);
        }



         /* Consulting Areas Cards */
        .consulting-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(99, 102, 241, 0.1);
            box-shadow: var(--shadow-card);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .consulting-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .consulting-card:hover::before {
            opacity: 0.05;
        }

        .consulting-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }

        .consulting-card i {
            transition: all 0.3s ease;
        }

        .consulting-card:hover i {
            transform: scale(1.2) rotate(5deg);
        }


         /* Marketing Channel Cards */
        .channel-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(99, 102, 241, 0.1);
            box-shadow: var(--shadow-card);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .channel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .channel-card:hover::before {
            opacity: 0.05;
        }

        .channel-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }

        .channel-card i {
            transition: all 0.3s ease;
        }

        .channel-card:hover i {
            transform: scale(1.2) rotate(5deg);
        }

  /* Value Cards */
        .value-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(99, 102, 241, 0.08);
            box-shadow: var(--shadow-card);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .value-card:hover::before {
            opacity: 0.05;
        }

        .value-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }

        .value-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .value-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-secondary);
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .value-card:hover .value-icon {
            transform: scale(1.2) rotate(8deg);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
            background: var(--gradient-secondary);
        }

        .value-card:hover .value-icon::before {
            opacity: 1;
        }

        /* Use Case Cards */
        .usecase-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(99, 102, 241, 0.08);
            box-shadow: var(--shadow-card);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .usecase-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-secondary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .usecase-card:hover::before {
            opacity: 0.05;
        }

        .usecase-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent-color);
        }

        .usecase-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-secondary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .usecase-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .usecase-card:hover .usecase-icon {
            transform: scale(1.2) rotate(8deg);
            box-shadow: 0 10px 30px rgba(100, 116, 139, 0.3);
        }

        .usecase-card:hover .usecase-icon::before {
            opacity: 1;
        }
 /* DevOps Pipeline Visualization */
        .pipeline-stage {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
        }

        .pipeline-stage:hover {
            border-color: var(--primary-color);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
        }

        .pipeline-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        /* Metrics Cards */
        .metric-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(99, 102, 241, 0.1);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
        }

        .metric-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .metric-number {
            font-size: 1.5rem;
            font-weight: bold;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .manufacturing-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .gear-shape {
            position: absolute;
            color: rgba(255, 255, 255, 0.1);
            animation: rotate 30s linear infinite;
        }

        .gear-shape:nth-child(1) {
            font-size: 120px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .gear-shape:nth-child(2) {
            font-size: 80px;
            top: 60%;
            right: 10%;
            animation-delay: -10s;
        }

        .gear-shape:nth-child(3) {
            font-size: 100px;
            top: 30%;
            right: 25%;
            animation-delay: -20s;
        }

        .factory-pattern {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Manufacturing Cards */
        .manufacturing-card {
            background: var(--gradient-card);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(0, 102, 255, 0.1);
            box-shadow: var(--shadow-card);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .manufacturing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .manufacturing-card:hover::before {
            transform: scaleX(1);
        }

        .manufacturing-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }

        .manufacturing-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin-bottom: 2rem;
            transition: all 0.5s ease;
            position: relative;
        }

        .manufacturing-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-secondary);
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .manufacturing-card:hover .manufacturing-icon {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
        }

        .manufacturing-card:hover .manufacturing-icon::before {
            opacity: 1;
        }

        /* Industry 4.0 Features */
        .industry-feature {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(0, 102, 255, 0.08);
            box-shadow: var(--shadow-card);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .industry-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .industry-feature:hover::before {
            opacity: 0.05;
        }

        .industry-feature:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);

        }

          .industry-feature:hover .feature-icon {
            transform: scale(1.2) rotate(8deg);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
            background: var(--gradient-secondary);
        }

        .industry-feature:hover .feature-icon::before {
            opacity: 1;
        }
        /* Manufacturing Process Visualization */
        .process-flow {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-card);
            margin-bottom: 2rem;
        }

        .process-step {
            background: var(--light-bg);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
        }

        .process-step:hover {
            border-color: var(--primary-color);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
        }

        .process-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        /* Manufacturing SVG Icons */
        .manufacturing-svg {
            width: 100%;
            max-width: 600px;
            height: auto;
            margin: 2rem 0;
        }

     .contact-manufacturing {
            background: var(--gradient-primary);
            color: white;
            border-radius: 32px;
            padding: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-glow);
        }

        .contact-manufacturing::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 300px;
            height: 300px;
            background: conic-gradient(from 0deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3), rgba(255,255,255,0.1));
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }
.fs-12 {
  font-size: 12px !important;
}

 /* Technology Stack */
        .tech-stack {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-card);
            margin-bottom: 2rem;
        }

        .tech-item {
            background: var(--light-bg);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
        }

        .tech-item:hover {
            border-color: var(--primary-color);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
        }

        .tech-arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            font-size: 1.5rem;
        }
        .digital-grid {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
        }

        /* IT Cards */
        .it-card {
            background: var(--gradient-card);
            border-radius: 24px;
            padding: 2.5rem;
            border: 1px solid rgba(0, 102, 255, 0.1);
            box-shadow: var(--shadow-card);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .it-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .it-card:hover::before {
            transform: scaleX(1);
        }

        .it-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }

        .it-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin-bottom: 2rem;
            transition: all 0.5s ease;
            position: relative;
        }

        .it-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-secondary);
            border-radius: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .it-card:hover .it-icon {
            transform: scale(1.15) rotate(10deg);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.4);
        }

        .it-card:hover .it-icon::before {
            opacity: 1;
        }
        .tech-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
        }
        /* Service Features */
        .service-feature {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(0, 102, 255, 0.08);
            box-shadow: var(--shadow-card);
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .service-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .service-feature:hover::before {
            opacity: 0.05;
        }

        .service-feature:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
            position: relative;
        }

        .service-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-secondary);
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .service-feature:hover .service-icon {
            transform: scale(1.2) rotate(8deg);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
        }

        .service-feature:hover .service-icon::before {
            opacity: 1;
        }

          /* Banking Process Steps */
        .banking-process-step {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 2px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
        }

        .banking-process-step:hover {
            border-color: var(--gradient-primary);
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
        }

        .banking-step-number {
            width: 50px;
            height: 50px;
            background: var(--banking-gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
            margin: 0 auto 1rem;
        }

        /* Benefit Cards */
        .benefit-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            border: 1px solid rgba(0, 102, 255, 0.08);
            box-shadow: var(--shadow-card);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .benefit-card:hover::before {
            transform: scaleX(1);
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--primary-color);
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1) rotate(5deg);
        }
       

        .crm-hero {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e40af 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: 30px;
        }
        
        .crm-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, #1d4ed8 0%, transparent 30%),
                linear-gradient(-45deg, #1e293b 0%, transparent 40%),
                linear-gradient(135deg, transparent 60%, #f1f5f9 100%);
            clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        }
        
        .crm-hero::after {
            content: '';
            position: absolute;
            top: 20%;
            right: 10%;
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
            border-radius: 50%;
            opacity: 0.3;
        }

            /* Security Badge */
        .security-badge {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* Document Viewer */
        .document-viewer {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            border: 1px solid #e2e8f0;
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .document-item {
            display: flex;
            align-items: center;
            padding: 1rem;
            border-radius: 12px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .document-item:hover {
            background: var(--light-bg);
            border-color: var(--primary-color);
            transform: translateX(8px);
        }

        .doc-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            margin-right: 1rem;
        }

        .pdf-icon { background: #dc3545; }
        .word-icon { background: #0066ff; }
        .excel-icon { background: #10b981; }
        .image-icon { background: #f59e0b; }


/* CTA Section with Technology Background */
.cta-section {
    background: linear-gradient(135deg, #0066ff 0%, #1d4ed8 25%, #64748b 50%, #1e293b 75%, #0066ff 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    /*padding: 6rem 0;*/
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tech-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.floating-tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.tech-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 2.5rem;
    animation: floatTech 12s ease-in-out infinite;
}

@keyframes floatTech {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.15;
    }
    25% { 
        transform: translateY(-30px) rotate(5deg) scale(1.1);
        opacity: 0.25;
    }
    50% { 
        transform: translateY(-20px) rotate(-3deg) scale(0.9);
        opacity: 0.3;
    }
    75% { 
        transform: translateY(-40px) rotate(8deg) scale(1.05);
        opacity: 0.2;
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,102,255,0.6) 0%, rgba(0,102,255,0.1) 70%, transparent 100%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(29,78,216,0.5) 0%, rgba(29,78,216,0.1) 70%, transparent 100%);
    top: 50%;
    right: 15%;
    animation-delay: -7s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(100,116,139,0.6) 0%, rgba(100,116,139,0.1) 70%, transparent 100%);
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translate(0px, 0px) scale(1);
    }
    33% { 
        transform: translate(50px, -30px) scale(1.1);
    }
    66% { 
        transform: translate(-30px, 20px) scale(0.9);
    }
}

/* CTA Buttons */
.btn-cta-primary {
    background: linear-gradient(135deg, #0066ff 0%, #1d4ed8 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}



.btn-cta-primary:hover::before {
    left: 0;
}

.btn-cta-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-cta-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 25px 80px rgba(0, 102, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-cta-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cta-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.btn-cta-outline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.btn-cta-outline:hover::before {
    left: 0;
}

.btn-cta-outline:hover::after {
    width: 300px;
    height: 300px;
}

.btn-cta-outline:hover {
    color: white;
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 25px 80px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
    .cta-section {
        min-height: 60vh;
        padding: 4rem 0;
    }
    
    .tech-icon {
        font-size: 2rem;
    }
    
    .orb-1, .orb-2, .orb-3 {
        width: 200px;
        height: 200px;
    }
    
    .btn-cta-primary, .btn-cta-outline {
        padding: 15px 35px;
        font-size: 1rem;
    }
}


        /* Career Form Styles */
        .career-form-section {
            background: var(--light-bg);
            padding: 6rem 0;
        }

        .career-form-card {
            background: var(--gradient-card);
            border-radius: 24px;
            padding: 3rem;
            border: 1px solid rgba(0, 102, 255, 0.1);
            box-shadow: var(--shadow-card);
            position: relative;
            overflow: hidden;
        }

        .career-form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-medical);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-label {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.75rem;
            display: block;
            font-size: 1rem;
        }

        .form-control {
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 1rem 1.25rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .form-control:focus {
            border-color: var(--medical-blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.15);
            outline: none;
        }

        .form-select {
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 1rem 1.25rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .form-select:focus {
            border-color: var(--medical-blue);
            box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.15);
            outline: none;
        }

        .file-upload-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .file-upload-input {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .file-upload-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 1.5rem;
            border: 2px dashed #cbd5e1;
            border-radius: 12px;
            background: white;
            color: var(--accent-color);
            font-weight: 600;
            transition: all 0.3s ease;
            cursor: pointer;
            min-height: 80px;
        }

        .file-upload-button:hover {
            border-color: var(--medical-blue);
            background: rgba(0, 102, 255, 0.05);
            color: var(--medical-blue);
        }

        .file-upload-button.has-file {
            border-color: var(--medical-blue);
            background: rgba(0, 102, 255, 0.1);
            color: var(--medical-blue);
        }

        .file-name {
            font-size: 0.9rem;
            color: var(--medical-blue);
            margin-top: 0.5rem;
            font-weight: 500;
        }

        /* Submit Button */
        .btn-submit {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 1.25rem 3rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-glow);
            width: 100%;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-primary);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-submit:hover::before {
            left: 0;
        }

        .btn-submit:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: var(--shadow-hover);
        }

        /* Success Message */
        .success-message {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            margin-top: 2rem;
            display: none;
        }

        .success-message.show {
            display: block;
            animation: slideIn 0.5s ease;
        }
        
        /* Office Hours */
        .office-hours {
            background: rgba(0, 102, 255, 0.05);
            border: 1px solid rgba(0, 102, 255, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }

        /* Address Card Special Styling */
        .address-card {
            background: linear-gradient(135deg, #0066ff 0%, #1d4ed8 100%);
            color: white;
            width: 100%;
            height: 400px;
        }

        .address-card .contact-icon {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }
          .contact-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-medical);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
            background: var(--gradient-secondary);
        }

        .address-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 80px rgba(0, 102, 255, 0.4);
        }
          /* Map Container */
        .map-container {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-card);
            height: 300px;
            position: relative;
        }

        /* Quick Contact Buttons */
        .quick-contact-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            margin: 0.25rem;
        }

        .btn-call {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
        }

        .btn-call:hover {
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp:hover {
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
        }

        .btn-email {
            background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            color: white;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }

        .btn-email:hover {
            color: white;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
        }

        .btn-outline-primary{
            color: #fff;
        }
         .btn-outline-primary:hover{
            background: var(--gradient-secondary);
        }
        
        /* Tablet */
@media (max-width: 768px) {
  .navbar-brand .img-h {
      height: 60px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .navbar-brand .img-h {
      height: 40px;
  }
}
