/* Your Original CSS */
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #1e1b4b;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(45deg, #10b981, #ef4444);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(45deg, #059669, #dc2626);
        }

        /* STICKY NAV SECTION ONLY */
        /* Header - normal positioning (NOT sticky) */
        header {
            position: relative;
            z-index: 1001;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            background: #312e81; /* Ensure solid background */
        }

        /* Enhanced header on scroll */
        header.scrolled {
            background: #1e3a8a !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        /* Navigation with sticky positioning ONLY */
        .nav-gradient {
            background: linear-gradient(90deg, #10b981, #ef4444);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-top: 0;
        }

        /* Enhanced sticky nav on scroll */
        .nav-gradient.scrolled {
            background: linear-gradient(90deg, #059669, #dc2626);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        /* Hero background overlay */
        .hero-overlay {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
        }

        /* Dropdown Menu - UPDATED */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 0;
            background: #182D67;
            min-width: 180px;
            border-radius: 0;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            overflow: hidden;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 16px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 500;
            letter-spacing: 0.5px;
            font-size: 13px;
            white-space: nowrap;
        }

        .dropdown-menu a:hover {
            background: rgba(255,255,255,0.1);
            transform: translateX(8px);
        }

        .dropdown-menu a:last-child {
            border-bottom: none;
        }

        /* Mobile Menu */
        .mobile-menu {
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        /* Floating animation for the sticky image */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }
        
        .floating-image {
            animation: float 3s ease-in-out infinite;
        }
        
        .floating-image:hover {
            animation-duration: 1.5s;
            transform: scale(1.1);
        }
        
        /* Ensure the floating image is always visible */
        .sticky-float {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 9999;
            transition: all 0.3s ease;
        }
        
        /* Hide on small screens to avoid interference */
        @media (max-width: 768px) {
            .sticky-float {
                display: none;
            }
        }

        /* News section continuous scrolling */
        .news-scroll-container {
            overflow: hidden;
            position: relative;
        }

        .news-track {
            display: flex;
            animation: scroll-left 60s linear infinite;
        }

        .news-track:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* Responsive grid adjustments */
        @media (max-width: 768px) {
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                min-width: auto;
                margin-top: 0.5rem;
                border-radius: 0;
            }

            /* Mobile sticky adjustments */
            header {
                position: relative; /* NOT sticky on mobile either */
                z-index: 1001;
            }

            .nav-gradient {
                position: sticky;
                top: 0; /* Stick to top on mobile */
                z-index: 1000;
                margin-top: 0;
            }
        }

        /* NEW ANIMATION ENHANCEMENTS */

        /* Hero carousel styles */
        .hero-slider {
            position: relative;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .hero-slide.active {
            opacity: 1;
        }

        /* Scroll Animation Styles */
        .fade-in-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .scale-in.animate {
            opacity: 1;
            transform: scale(1);
        }

        /* Service Card Hover Effects */
        .service-card {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            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.1), transparent);
            transition: left 0.6s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
        }

        /* Hero text animations */
        .hero-title-animate {
            transform: translateY(80px) scale(0.9);
            filter: blur(10px);
            transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .hero-title-animate.animate {
            opacity: 1 !important;
            transform: translateY(0) scale(1);
            filter: blur(0px);
            animation: heroTextFloat 6s ease-in-out infinite;
            animation-delay: 1.5s;
        }

        .hero-description-animate {
            transform: translateY(50px);
            filter: blur(5px);
            transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition-delay: 0.5s;
        }

        .hero-description-animate.animate {
            opacity: 1 !important;
            transform: translateY(0);
            filter: blur(0px);
        }

        .hero-buttons-animate {
            transform: translateY(40px) scale(0.8);
            filter: blur(3px);
            transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition-delay: 0.8s;
        }

        .hero-buttons-animate.animate {
            opacity: 1 !important;
            transform: translateY(0) scale(1);
            filter: blur(0px);
        }

        .hero-dots-animate {
            transform: translateY(20px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition-delay: 1.2s;
        }

        .hero-dots-animate.animate {
            opacity: 1 !important;
            transform: translateY(0);
        }

        .hero-scroll-animate {
            transform: translateX(20px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition-delay: 1.4s;
        }

        .hero-scroll-animate.animate {
            opacity: 1 !important;
            transform: translateX(0);
            animation: float 3s ease-in-out infinite;
            animation-delay: 2s;
        }

        .hero-text-animate {
            animation: heroTextFloat 6s ease-in-out infinite;
        }

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

        .hero-button-glow {
            position: relative;
            overflow: hidden;
        }

        .hero-button-glow::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.5s;
        }

        .hero-button-glow:hover::before {
            left: 100%;
        }

        /* Navigation dots animation */
        .nav-dot {
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .nav-dot.active {
            transform: scale(1.3);
            background-color: #10b981 !important;
        }

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

        /* Stagger animation delays */
        .stagger-1 { transition-delay: 0.1s; }
        .stagger-2 { transition-delay: 0.2s; }
        .stagger-3 { transition-delay: 0.3s; }
        .stagger-4 { transition-delay: 0.4s; }
        .stagger-5 { transition-delay: 0.5s; }

        /* Floating elements */
        .float-element {
            animation: float 3s ease-in-out infinite;
        }

        /* IMPROVED CARD STYLES FOR JOBS AND BLOGS */
        
        /* Job Card Improvements */
        .job-card {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .job-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .job-image-container {
            position: relative;
            overflow: hidden;
        }

        .job-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
            padding: 1.5rem 1rem 1rem;
            color: white;
        }

        .job-image-overlay h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .job-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            opacity: 0.9;
        }

        /* Blog Card Improvements */
        .blog-card {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .blog-image-container {
            position: relative;
            overflow: hidden;
        }

        .blog-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5), transparent);
            padding: 1.5rem 1rem 1rem;
            color: white;
        }

        .blog-image-overlay h3 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            line-height: 1.3;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.875rem;
            opacity: 0.9;
        }

        .blog-meta .read-more {
            color: #10b981;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .blog-meta .read-more:hover {
            color: #059669;
        }

        /* Blog card animations */
        .blog-card {
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        /* Pulse effect for icons */
        .pulse-icon {
            animation: pulse 2s infinite;
        }

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

        /* Slide in from bottom */
        .slide-in-bottom {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .slide-in-bottom.animate {
            opacity: 1;
            transform: translateY(0);
        }

        /* Rotate on hover */
        .rotate-hover {
            transition: transform 0.3s ease;
        }

        .rotate-hover:hover {
            transform: rotate(360deg);
        }

        /* Glow effect */
        .glow-effect {
            transition: all 0.3s ease;
        }

        .glow-effect:hover {
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
        }

        /* Bounce on click */
        .bounce-click {
            transition: transform 0.1s ease;
        }

        .bounce-click:active {
            transform: scale(0.95);
        }

        /* Shake animation for attention */
        .shake {
            animation: shake 0.5s ease-in-out;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-5px); }
            75% { transform: translateX(5px); }
        }

        /* Gradient text animation */
        .gradient-text {
            background: linear-gradient(-45deg, #10b981, #ef4444, #8b5cf6, #06b6d4);
            background-size: 400% 400%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 4s ease infinite;
        }

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

        /* Loading dots animation */
        .loading-dots {
            display: inline-flex;
            gap: 4px;
        }

        .loading-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #10b981;
            animation: loadingBounce 1.4s infinite ease-in-out both;
        }

        .loading-dot:nth-child(1) { animation-delay: -0.32s; }
        .loading-dot:nth-child(2) { animation-delay: -0.16s; }

        @keyframes loadingBounce {
            0%, 80%, 100% { transform: scale(0); }
            40% { transform: scale(1); }
        }

        /* Enhanced mobile responsiveness for animations */
        @media (max-width: 768px) {
            .hero-text-animate {
                animation-duration: 4s;
            }
            
            .float-element {
                animation-duration: 2s;
            }
            
            .service-card:hover {
                transform: translateY(-5px) scale(1.01);
            }

            .job-image-overlay,
            .blog-image-overlay {
                padding: 1rem 0.75rem 0.75rem;
            }

            .job-image-overlay h3,
            .blog-image-overlay h3 {
                font-size: 1.125rem;
            }
        }

        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }