:root {
            --primary-color: #003366;
            --secondary-color: #00509E;
            --accent-color: #FFD700;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #343a40;
            --text-color: #495057;
            --white: #ffffff;
            --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
            --shadow-md: 0 8px 15px rgba(0,0,0,0.1);
            --shadow-lg: 0 15px 35px rgba(0, 51, 102, 0.15);
            --shadow-hover: 0 20px 40px rgba(0, 80, 158, 0.2);
            --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            --gradient-primary: linear-gradient(135deg, #003366 0%, #00509E 100%);
            --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFB300 100%);
        }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--text-color);
            background-color: var(--white);
            scroll-behavior: smooth;
            line-height: 1.7;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Inter', sans-serif;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 1.2rem;
        }

        /* Modern Navbar */
        .navbar {
            background-color: #ffffff;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            padding: 18px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: var(--shadow-md);
            background-color: #ffffff;
        }

        .navbar-brand {
            font-weight: 800;
            color: var(--primary-color);
            letter-spacing: -0.5px;
            font-size: 1.5rem;
        }

        .nav-link {
            font-weight: 500;
            position: relative;
            transition: var(--transition);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--secondary-color);
            transition: var(--transition);
            transform: translateX(-50%);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #001f4d 0%, #003366 40%, #00509E 80%, #0070CC 100%);
            background-size: 300% 300%;
            animation: heroGradientShift 14s ease infinite;
            color: var(--white);
            padding: 220px 0 140px;
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .hero::before {
            content: "";
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 15, 40, 0.35);
            z-index: 1;
        }

        /* Pages/blogs with a background-image: freeze it, don't animate */
        .hero[style*="background-image"] {
            background-size: cover;
            background-position: center center;
            animation: none;
        }

        .hero[style*="background-image"]::before {
            background: linear-gradient(135deg, rgba(0, 51, 102, 0.88) 0%, rgba(0, 80, 158, 0.82) 100%);
        }

        /* Animated background orbs and grid */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            pointer-events: none;
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            animation: floatOrb 20s ease-in-out infinite;
            filter: blur(60px);
        }

        .hero-orb-1 {
            width: 700px; height: 700px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.18) 0%, transparent 65%);
            top: -250px; left: -150px;
            animation-duration: 18s;
        }

        .hero-orb-2 {
            width: 500px; height: 500px;
            background: radial-gradient(circle, rgba(0, 191, 255, 0.15) 0%, transparent 65%);
            bottom: -200px; right: -100px;
            animation-duration: 24s;
            animation-delay: -8s;
        }

        .hero-orb-3 {
            width: 350px; height: 350px;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 65%);
            top: 40%; right: 15%;
            animation-duration: 16s;
            animation-delay: -12s;
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
            background-size: 44px 44px;
        }

        @keyframes floatOrb {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33%       { transform: translate(40px, -50px) scale(1.06); }
            66%       { transform: translate(-25px, 30px) scale(0.94); }
        }

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

        .hero h1 {
            font-size: 4rem;
            color: var(--white);
            text-shadow: 0 4px 10px rgba(0,0,0,0.4);
            margin-bottom: 1.5rem;
            letter-spacing: -1.5px;
            line-height: 1.1;
            animation: fadeInDown 1s ease-out;
        }
        
        .hero p {
            font-size: 1.4rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            opacity: 0.95;
            max-width: 850px;
            margin: 0 auto 2.5rem;
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.3s backwards;
        }

        /* Modern Buttons */
        .btn {
            border-radius: 50px; 
            padding: 14px 35px;
            font-weight: 600;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255,255,255,0.2);
            z-index: -2;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: rgba(0,0,0,0.1);
            transition: all .3s;
            z-index: -1;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            box-shadow: 0 6px 20px rgba(0, 51, 102, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 51, 102, 0.5);
        }

        .btn-warning {
            background: var(--gradient-accent);
            color: var(--primary-color);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
        }

        .btn-warning:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.5);
            color: var(--primary-color);
        }
        
        .btn-success {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }
        
        .btn-success:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
        }
        
        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;
        }
        
        .btn-outline-primary:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Pulse Animation for CTA */
        .btn-pulse {
            animation: pulse-animation 2s infinite;
        }

        @keyframes pulse-animation {
            0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
        }

        .section {
            padding: 120px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            font-size: 2.8rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 5px;
            background: var(--gradient-accent);
            margin: 25px auto 0;
            border-radius: 5px;
        }

        /* Modern Cards */
        .service-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.5);
            border-radius: 20px;
            padding: 50px 30px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            z-index: 1;
            transform: translateZ(0);
        }
        
        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--gradient-primary);
            transition: var(--transition);
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-hover);
            border-color: rgba(0, 80, 158, 0.2);
        }
        
        .service-card:hover::before {
            height: 100%;
            opacity: 0.04;
        }

        .service-card .icon {
            font-size: 3.5rem;
            color: var(--secondary-color);
            margin-bottom: 30px;
            background: linear-gradient(135deg, rgba(0, 80, 158, 0.1), rgba(0, 51, 102, 0.05));
            width: 90px;
            height: 90px;
            line-height: 90px;
            border-radius: 50%;
            margin: 0 auto 30px;
            transition: var(--transition);
            box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
        }
        
        .service-card:hover .icon {
            background: var(--gradient-primary);
            color: var(--white);
            transform: rotateY(180deg) scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 51, 102, 0.3);
        }
        
        .service-card h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .service-card p {
            color: var(--text-color);
            opacity: 0.85;
        }

        /* Testimonial Cards */
        .testimonial-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-md);
            position: relative;
            border: 1px solid rgba(0,0,0,0.04);
            transition: var(--transition);
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-card::before {
            content: '\f10d';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            font-size: 3rem;
            color: var(--accent-color);
            opacity: 0.2;
            position: absolute;
            top: 25px;
            left: 30px;
            transition: var(--transition);
        }
        
        .testimonial-card:hover::before {
            opacity: 0.4;
            transform: scale(1.1);
        }
        
        .testimonial-card p {
            font-size: 1.1rem;
            font-style: italic;
            color: #555;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-card h5 {
            font-weight: 700;
            color: var(--primary-color);
            margin-top: 20px;
        }

        /* Blog Cards */
        .blog-card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            background: var(--white);
            box-shadow: var(--shadow-md);
            position: relative;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
        }

        .blog-card img {
            width: 100%;
            height: 240px;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

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

        /* Dark overlay + Read Article badge appear over thumbnail on hover */
        .blog-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 240px;
            background: linear-gradient(135deg, rgba(0,51,102,0.65) 0%, rgba(0,80,158,0.45) 100%);
            opacity: 0;
            transition: var(--transition);
            z-index: 2;
            pointer-events: none;
        }
        .blog-card:hover::before {
            opacity: 1;
        }

        .blog-card::after {
            content: 'Read Article \2192';
            position: absolute;
            top: 120px;
            left: 50%;
            transform: translateX(-50%) translateY(-50%);
            color: #fff;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 0.875rem;
            background: rgba(255,255,255,0.18);
            border: 2px solid rgba(255,255,255,0.7);
            padding: 8px 22px;
            border-radius: 25px;
            white-space: nowrap;
            opacity: 0;
            transition: var(--transition);
            z-index: 3;
            pointer-events: none;
        }
        .blog-card:hover::after {
            opacity: 1;
        }

        .blog-card .p-4 {
            background: var(--white);
            position: relative;
            z-index: 4;
        }

        .blog-card h5 {
            font-weight: 700;
            transition: var(--transition);
        }

        .blog-card:hover h5 {
            color: var(--secondary-color);
        }

        /* Process/How we help you grow */
        #process .service-card {
            background: transparent;
            border: none;
            box-shadow: none;
            padding: 30px 20px;
        }
        
        #process .service-card::before {
            display: none;
        }
        
        #process .service-card:hover {
            transform: translateY(-10px);
            box-shadow: none;
        }
        
        #process .icon {
            background: var(--white);
            box-shadow: var(--shadow-md);
            border: 2px solid rgba(0, 51, 102, 0.1);
        }

        /* Footer */
        .footer {
            background: #06111C;
            color: #a0aec0;
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }
        
        .footer a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer a:hover {
            color: var(--white);
            text-decoration: none;
            transform: translateY(-2px);
            display: inline-block;
        }

        .bg-secondary-color {
            background-color: var(--secondary-color);
        }
        
        .bg-light {
            background-color: #F4F7FB !important;
        }

        /* Modern CTA */
        .cta-modern-bg {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 120px 0;
            border-radius: 30px;
            margin: 60px 0;
            box-shadow: var(--shadow-hover);
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .cta-modern-bg::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            animation: pulse-bg 10s infinite alternate;
        }
        
        .cta-modern-bg::before {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            animation: pulse-bg 8s infinite alternate-reverse;
        }

        @keyframes pulse-bg {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.2); opacity: 1; }
        }

        .cta-modern-bg h2 {
            color: var(--white);
            font-size: 3rem;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .cta-modern-bg p {
            position: relative;
            z-index: 2;
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 40px;
        }
        
        .cta-modern-bg .btn {
            position: relative;
            z-index: 2;
        }

        /* Contact Section */
        .contact-details {
            padding: 50px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        /* Modern Pricing Styles */
        .pricing-card {
            background: var(--white);
            border: 1px solid rgba(0,0,0,0.03);
            border-radius: 25px;
            padding: 60px 40px;
            text-align: center;
            transition: var(--transition);
            height: 100%;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .pricing-card.featured {
            border: 2px solid var(--secondary-color);
            transform: scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: 20px;
            right: -35px;
            background: var(--accent-color);
            color: var(--primary-color);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-weight: bold;
            font-size: 0.8rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

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

        .price {
            font-size: 4rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 30px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            letter-spacing: -2px;
        }

        .price small {
            font-size: 1.2rem;
            font-weight: 500;
            color: #888;
            letter-spacing: 0;
            margin-left: 10px;
            -webkit-text-fill-color: initial;
        }

        /* Accordion Enhancements */
        .accordion-item {
            border: 1px solid rgba(0,0,0,0.05);
            margin-bottom: 20px;
            border-radius: 15px !important;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: var(--transition);
        }
        
        .accordion-item:hover {
            box-shadow: var(--shadow-md);
        }
        
        .accordion-button {
            padding: 25px;
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary-color);
            background-color: var(--white);
            border: none;
        }
        
        .accordion-button:not(.collapsed) {
            color: var(--secondary-color);
            background-color: #f8faff;
            box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
        }
        
        .accordion-body {
            padding: 25px;
            font-size: 1.05rem;
            line-height: 1.8;
            color: #555;
        }

        /* Mega Menu Enhancements */
        @media all and (min-width: 992px) {
            .navbar .nav-item.has-megamenu {
                position: static;
            }
            
            .navbar .dropdown-menu.mega-menu {
                width: 100%;
                border: none;
                border-top: 0;
                border-radius: 0 0 20px 20px;
                box-shadow: var(--shadow-lg);
                padding: 40px;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                margin-top: 18px;
            }
            
            .navbar.scrolled .dropdown-menu.mega-menu {
                margin-top: 12px;
            }
        }
        
        .mega-menu h5 {
            color: var(--primary-color);
            font-size: 1.1rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .mega-menu h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-accent);
            border-radius: 3px;
        }
        
        .mega-menu ul {
            list-style: none;
            padding: 0;
        }
        
        .mega-menu ul li {
            margin-bottom: 12px;
        }
        
        .mega-menu ul li a {
            color: var(--text-color);
            text-decoration: none;
            transition: var(--transition);
            font-weight: 500;
            display: inline-block;
        }
        
        .mega-menu ul li a:hover {
            color: var(--secondary-color);
            transform: translateX(5px);
        }

        /* Animations */
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }

        /* Mobile Responsiveness */
        @media (max-width: 767.98px) {
            .hero {
                min-height: 600px;
                padding: 160px 0 100px;
            }
            .hero h1 {
                font-size: 2.5rem;
                padding: 0 15px;
            }
            .hero p {
                font-size: 1.15rem;
                padding: 0 20px;
            }
            .section {
                padding: 80px 0;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .cta-modern-bg {
                padding: 80px 20px;
                border-radius: 0;
                margin: 0;
            }
            .cta-modern-bg h2 {
                font-size: 2.2rem;
            }
        }
