:root {
            --bg-dark: #060b15;
            --bg-dark-alt: #060b15;
            --text-light: #f9fafb;
            --text-gray: #93a3b9;
            --primary-color: #1d4ed8;
            --primary-gradient: linear-gradient(135deg, #a78bfa 0%, #48a7e7 50%, #1d4ed8 100%);            
            --primary-dark: #00a3aa;
            --secondary-color: #374151;
        }

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

        .logo img {
            height: 45px;
            width: auto;
            display: block;
        }

        body {
            font-family: 'Inter', sans-serif;
            /*background-color: var(--bg-dark); */
            background-color: #0F172A;
            color: var(--text-light);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 20px;
            width: 92%;
        }

        .grid {
            display: grid;
            gap: 2rem;
        }

        .grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        .text-center {
            text-align: center;
        }

        .text-highlight {
            
            background: 
                linear-gradient(135deg, #a78bfa 0%, #48a7e7  50%, #1d4ed8 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
            color: #79a6f8; 
        }

        .bg-dark-alt {
            background-color: var(--bg-dark-alt);
        }

        .section {
            padding: 5rem 0;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            line-height: 65px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 3rem;

            font-size: 1.20rem;
            color: #93a3b9;
            margin-bottom: 2.5rem;
            font-weight: 200;
            padding: 0px 20px 0px 20px;
        }

        .section-text{
            font-size: 1rem;
            color: var(--text-gray);
            font-weight: 200;
        }

        .btn {
            display: inline-block;
           /* padding: 0.75rem 1.5rem;
            border-radius: 0.375rem; */
            padding: 8px 14px;
            border-radius: 10px;
            font-weight: 600;
            transition: background-color 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            
            background: var(--primary-gradient) !important;
           

            color: #ffffff;
            font-weight: 400;
            box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4), 
                            
                            inset 0 2px 2px rgba(255, 255, 255, 0.4),
                            
                            inset 0 -2px 4px rgba(0, 0, 0, 0.2);
                
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-primary:hover {
            transform: translateY(-2px) scale(1.02);
                box-shadow: 0 20px 35px -8px rgba(37, 99, 235, 0.5), 
                            inset 0 2px 4px rgba(255, 255, 255, 0.6);
                filter: brightness(1.1);
        }


/*login button*/
        .btn-login-roboexpress {
    position: relative;
    display: inline-flex;
    padding: 2px; 
    border-radius: 30px;
   /* background: linear-gradient(135deg, #a78bfa 0%, #48a7e7 100%);*/
   background: linear-gradient(135deg, #ffc900 0%, #fe4221 100%);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-login-roboexpress span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    border-radius: 28px;
    background: #060b15; 
    color: #f9fafb;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login-roboexpress i {
    color: #48a7e7;
    font-size: 0.85rem;
}

/* Hover Effects */
.btn-login-roboexpress:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(72, 167, 231, 0.4);
}

.btn-login-roboexpress:hover span {
    background: transparent; 
    color: #ffffff;
}

.btn-login-roboexpress:hover i {
    color: #ffffff;
}

.header.scrolled .btn-login-roboexpress span {
    background-color: #ffffff;
    color: #060a15;
}
/*
.btn-login-pulse {
    padding: 10px 22px;
    border-radius: 12px;
    background: rgba(72, 167, 231, 0.1);
    border: 1px solid rgba(72, 167, 231, 0.5);
    color: #48a7e7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    animation: button-pulse 2s infinite;
}
*/
@keyframes button-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(72, 167, 231, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(72, 167, 231, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(72, 167, 231, 0);
    }
}


        /* Glass Button */



        .btn-glass {
                display: inline-flex;
                align-items: center;
                gap: 12px;
                padding: 10px 24px;
                font-size: 0.9rem;
                font-weight: 600;
                color: white;
                cursor: pointer;
                border: none;
                border-radius: 32px; 
                background: linear-gradient(135deg, #a78bfa 0%, #48a7e7  50%, #1d4ed8 100%);
                
                /* Glass EffECTS */
                
                box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4), 
                            
                            inset 0 2px 2px rgba(255, 255, 255, 0.4),
                            
                            inset 0 -2px 4px rgba(0, 0, 0, 0.2);
                
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                overflow: hidden;
        }

        .btn-glass:hover {
                transform: translateY(-2px) scale(1.02);
                box-shadow: 0 20px 35px -8px rgba(37, 99, 235, 0.5), 
                            inset 0 2px 4px rgba(255, 255, 255, 0.6);
                filter: brightness(1.1);
            }


        .btn-glass:active {
            transform: translateY(1px) scale(0.98);
        }


        

        .btn-secondary {
            background-color:#0b1323 ;
            color: #ffffff;
        }

        .btn-secondary:hover {
            background-color: #2a323faf;
            transform: translateY(-2px) scale(1.02);
        }

        .card {
            background-color: linear-gradient(145deg, hsl(220, 20%, 12%) 0%, hsl(220, 20%, 6%) 100%);;
            padding: 2rem;
            border-radius: 0.5rem;
               
            border: 1px solid #48a7e76e ;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0 15px rgba(72, 149, 232, 0.374);
        }

        .card:hover {
            transform: translateY(-5px);
            border-color: #48a7e7;
        }
/*
        .card-icon {
            font-size: 1.5rem;
            padding: 12px;
            border-radius: 4px;
            color: #48a7e7;
            margin-bottom: 1rem;
            background: #48a7e729;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
        }


        .card-icon:hover{
            background: #58b3e06a;
        }
*/


.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: rgba(72, 167, 231, 0.1); 
    border: 1px solid rgba(72, 167, 231, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

 
.lucide-icon {
    width: 28px;  
    height: 28px;
    stroke: #48a7e7; 
    transition: stroke 0.3s ease;
}

/* Hover Effect for icon*/
.card:hover .card-icon {
    background: #48a7e7;
    box-shadow: 0 0 20px rgba(72, 167, 231, 0.5);
    transform: translateY(-2px);
}

.card:hover .lucide-icon {
    stroke: #ffffff; 
}
        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .card-text {
            color: var(--text-gray);
        }

        /* Header */
        .header {
            padding: 0.5rem 0;
            background-color: var(--bg-dark);
            border-bottom: 1px solid #1f2937;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-light);
        }




        .nav-list {
            display: flex;
            gap: 2rem;
        }

        .nav-link {
            font-weight: 500;
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: #22d3ee;
        }

        .nav-link.active {
            color: #22d3ee;
            text-shadow: 0 0 10px rgba(34, 211, 238, 0.5); 
        }
        
        .header.scrolled .nav-link {
    color: #1f2937; /* Dark gray/black */
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: #48a7e7; /* Your primary blue */
}

        .header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e5e7eb;
    padding: 0.2rem 0; /* Slightly thinner header on scroll */
}

.header.scrolled .logo_re {
    display: none !important;
}


.header.scrolled .logo_RE {
    display: block !important;
}






        /* Hero Section */
       /* .hero {
            padding: 8rem 0 5rem;
            text-align: center;
            /* background-image: radial-gradient(circle at center, #1f2937 0%, #111827 100%); */
          /*  background-image: linear-gradient(hsl(var(--primary) / 0.1) 1px, transparent 1px), linear-gradient(90deg, hsl(var(--primary) / 0.1) 1px, transparent 1px);;
        }
        */

        .hero {
            padding: 3rem 0 3rem;
            text-align: center;
            /*background-color: #0F172A;  */
            background-color: #060b15; 
          
            background-image: linear-gradient(rgba(8, 30, 53, 0.2) 1px, transparent 1px), 
                linear-gradient(90deg, rgba(11, 43, 75, 0.2) 1px, transparent 1px);

                
            background-size: 50px 50px; 
            background-position: center center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        
        .ai-image-container {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .ai-platform-image {
            max-width: 100%;   
            height: auto;      
            border-radius: 0.5rem; 
            border: 1px solid rgba(72, 167, 231, 0.3); 
            box-shadow: 0 0 20px rgba(72, 167, 231, 0.2); 
        }
        



    .genai-pill-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 24px;
    }

    .genai-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;

        padding: 6px 16px;
        border-radius: 999px;

        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.3px;

        color: #93c5fd; 

        background: rgba(59, 130, 246, 0.12);
        border: 1px solid rgba(59, 130, 246, 0.35);

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 0 0 1px rgba(99, 102, 241, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .genai-icon {
    width: 16px;
    height: 16px;
    color: #60a5fa;
    }

    @media (max-width: 640px)
    {
        .genai-pill {
            font-size: 12px;
            padding: 5px 12px;
        }
    }

    @media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem; 
        line-height: 1.2;
    }

    .section-title {
        font-size: 2rem; 
        line-height: 1.3;
    }

    .section {
        padding: 3rem 0;
    }

    .grid-2 {
        grid-template-columns: 1fr; 
    }
}


        .hero-title {
            font-size: 3.8rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.2rem;
        }

        .hero-text {
            font-size: 1.20rem;
            color: #93a3b9;
            margin-bottom: 2.5rem;
            font-weight: 200;
            padding: 0px 20px 0px 20px;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }


        
        .badge {
            display: block;      
            width: fit-content;  
            margin: 0 auto 1px; 
            padding: 0.5rem 1rem;
            color: #93c5fd;
            font-size: 0.875rem;
        }  

        /* Stats Section */

        
        .stats-section {
            padding: 3rem 0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #93c5fd;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-gray);
        }

        /* AI Busywork Section */
        .ai-busywork {
            align-items: center;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin-top: 2.5rem;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            margin-bottom: 2rem; 
        }

        
        .list-icon {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            border: 2px solid #22d3ee; 
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 4px;
            box-shadow: 0 0 10px rgba(34, 211, 238, 0.3); 
        }

        .list-icon svg {
            width: 12px;
            height: 12px;
            color: #22d3ee;
        }

        /* hierarchy */
        .list-content strong {
            display: block;
            font-size: 1.1rem;
            color: #ffffff; 
            margin-bottom: 0.4rem;
            font-weight: 600;
        }

        .list-content span {
            display: block;
            font-size: 0.95rem;
            color: #94a3b8; 
            line-height: 1.6;
        }
                
        /*
        .feature-list {
            margin-top: 2rem;
        }

        .feature-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            color: var(--text-gray);
        }

        .feature-list li i {
            color: var(--primary-color);
            margin-right: 0.75rem;
            margin-top: 0.25rem;
        }
        */

        .ai-image-placeholder {
            width: 100%;
            height: 400px;
            background-color: var(--bg-dark-alt);
            border-radius: 0.5rem;
            border: 1px solid #374151;
            position: relative;
            overflow: hidden;
        }

        .ai-image-placeholder::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background-color: var(--primary-color);
            opacity: 0.2;
            border-radius: 50%;
            box-shadow: 0 0 50px 50px rgba(0, 194, 203, 0.1);
        }

        /* Enterprise Scale Section */
        .enterprise-grid {
            margin-top: 3rem;
        }

        .enterprise-card {
            text-align: center;
            padding: 14px 10px;

            display: flex;
            flex-direction: column; 
            align-items: center;    
            justify-content: center; 
    
        }

        .enterprise-card .card-icon {
            font-size: 2.15rem;
            margin-bottom: 10px;
        }

        .enterprise-card .card-title {
            font-size: 18px;
            font-weight: 400;
        }

        /* CTA Section */

        /*
        .cta-section {
            background-image: radial-gradient(circle at center, #1f2937 0%, #111827 100%);
        }
        */


        .cta-container {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background: #060a15;
}

    .cta-card {
        position: relative;
        width: 100%;
        max-width: 1100px;
        background-color: #0a0a0a; 
        padding: 80px 40px;
        border-radius: 24px;
        /*border: 1px solid rgba(255, 255, 255, 0.1);*/
        overflow: hidden; 
        text-align: center;
    }

        /* THE SPOTLIGHT EFFECT */
        .cta-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #48a7e74e 0%, rgba(34, 211, 238, 0) 70%);
            pointer-events: none;
            z-index: 1;
        }

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

        .cta-card h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .cta-card p {
            color: #94a3b8;
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }


        .btn-primary-glow {
            /* Layout */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none; 
            
            /* Sizing & Font */
            padding: 12px 34px;
            font-size: 18px;
            font-weight: 500;
            color: #ffffff;
            border-radius: 12px;
            
            /* The RoboExpress Gradient & Glow */
            background: linear-gradient(135deg, #a78bfa 0%, #48a7e7 50%, #1d4ed8 100%);   
            border: none;
            box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
            
            transition: all 0.3s ease;
        }

        .btn-primary-glow i {
            margin-left: 16px;
            transition: transform 0.3s ease;
        }

        .btn-primary-glow:hover {
            box-shadow: 0 0 30px rgba(34, 211, 238, 0.7);
            transform: translateY(-2px);
        }

        .btn-primary-glow:hover i {
            transform: translateX(5px); 
        }


/* Product page */
        .capabilities_iconheading {
    display: flex;
    align-items: center;    
    gap: 1.25rem;           }

      
        /* Footer */
        .footer {
            padding: 5rem 0 2rem;
            background-color: var(--bg-dark);
            border-top: 1px solid #1f2937;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        /*.footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-light);
            display: inline-block;
            margin-bottom: 1rem;
        }*/
        .footer-logo img {
            height: 45px;
            width: auto;
            display: block;
            margin-bottom: 14px;
        }
        .footer-text {
            color: var(--text-gray);
            margin-bottom: 1rem;
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .footer-list li {
            margin-bottom: 0.75rem;
        }

        .footer-list a {
            color: var(--text-gray);
            transition: color 0.3s ease;
        }

        .footer-list a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            color: var(--text-gray);
            font-size: 0.875rem;
            padding-top: 2rem;
            border-top: 1px solid #1f2937;
        }

                /* Footer Social Media Icons */
        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(147, 163, 185, 0.1); /* Subtle gray background */
            border: 1px solid rgba(147, 163, 185, 0.2);
            border-radius: 8px;
            color: #93a3b9; /* Matches --text-gray */
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 1.1rem;
        }

        .social-link:hover {
            color: #ffffff;
            background: var(--primary-gradient); /* Uses your existing purple-to-blue gradient */
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(72, 167, 231, 0.4);
        }

        .social-link svg {
    display: block; /* Removes baseline spacing */
    transition: transform 0.3s ease;
}

        .copyright-text {
    font-size: 14px;
    color: #93a3b9; /* Matches your --text-gray variable */
    margin: 0;
}

.copyright-text a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.copyright-text a:hover {
    color: #48a7e7;
    border-color: #48a7e7;
}



        .footer-divider {
    color: rgba(255, 255, 255, 0.2);
}

.footer-2-link {
    font-size: 14px;
    color: #93a3b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-2-link:hover {
    color: #48a7e7;
}
        /* Responsive Design */
        @media (max-width: 1024px) {
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

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

            .grid-2, .grid-3, .grid-4 {
                grid-template-columns: 1fr;
            }

            .ai-busywork {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
    .nav {
        flex-direction: column; 
        gap: 1.5rem;
        padding: 1rem 0;
    }

    .nav-list {
        display: flex; 
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .btn-glass {
        width: 100%; 
        justify-content: center;
    }
}

        /* Form Styles */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            background-color: var(--bg-dark-alt);
            border: 1px solid #374151;
            border-radius: 0.375rem;
            color: var(--text-light);
            font-family: inherit;
            transition: border-color 0.3s ease;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .form-textarea {
            resize: vertical;
            height: 120px;
        }

        /* Pricing Page Specifics */
        .pricing-form-container {
            max-width: 600px;
            margin: 0 auto;
            background-color: var(--bg-dark-alt);
            padding: 2.5rem;
            border-radius: 0.5rem;
            border: 1px solid #374151;
        }

        .required-star {
                color: #ef4444; 
                margin-left: 2px;
            }

        /* Team Page Specifics */
        .team-card {
          display: flex;
            flex-direction: column;
            align-items: center;    
            text-align: center;     
            gap: 1.5rem;           
            /*padding: 3rem 2rem;*/
            background: rgba(15, 23, 42, 0.6); 
            border: 1px solid rgba(72, 167, 231, 0.1);
            transition: transform 0.3s ease, border-color 0.3s ease;
            margin: 20px;
            
        }

        .team-image {
            width: 90px;
            height: 90px;
                      
            background-color: #ffffff;
            border-radius: 0.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2rem;
            font-weight: 700;
            color: var(--bg-dark);
        }

        .team-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.25rem;
        }

        .team-role {
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .team-card:hover {
    transform: translateY(-5px);
    border-color: rgba(72, 167, 231, 0.4);
}

.team-image-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Circular images look more premium */
    border: 3px solid #1e293b;
    box-shadow: 0 0 15px rgba(72, 167, 231, 0.2);
    display: block;
}

/* LinkedIn Icon Overlay */
.team-linkedin {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 32px;
    height: 32px;
    background: #0077b5; /* LinkedIn Brand Blue */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 0.9rem;
    border: 2px solid #060b15;
    transition: transform 0.3s ease, background 0.3s ease;
}

.team-linkedin:hover {
    transform: scale(1.1);
    background: #00a0dc;
}

.team-info h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #48a7e7;
    margin-bottom: 1.25rem;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #93a3b9;
}


        .value-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
        }

        .value-number {
            width: 50px;
            height: 50px;
            background-color: #48a7e758;
            
            color: #48a7e7;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            margin: 0 auto 0.5rem;
        }

        /* Contact Page Specifics */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;

            
        }

        .contact-info-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .contact-icon {
            font-size: 1.25rem;
            color: var(--primary-color);
        }

        .contact-label-text {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .contact-value {
            color: var(--text-gray);
        }

        .faq-item {
            background-color: var(--bg-dark-alt);
            padding: 1.5rem;
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            border: 1px solid #374151;
        }

        .faq-question {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .faq-answer {
            color: var(--text-gray);
        }

        @media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr; 
        gap: 3rem;
    }
    
    .pricing-form-container {
        max-width: 100%; 
    }
}

/*Login Page*/
/* Login Page Specifics */
.login-page {
    background-color: #060b15;
   /* background-image: radial-gradient(circle at 50% 50%, #1e293b 0%, #060b15 100%);*/
   /* background-image: radial-gradient(circle at 50% 50%, #2c84d0 0%, #ffffff 100%);*/
   background-image: linear-gradient(rgba(6, 11, 21, 0.8), rgb(6 11 21 / 28%)), url(images/ai_image.png);
    background-size: cover;      
    background-position: center;  
    background-attachment: fixed; 
    background-repeat: no-repeat;
    
    
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(72, 167, 231, 0.2);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(72, 167, 231, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo {
    height: 40px;
    margin-bottom: 20px;
}

.login-header h2 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 8px;
}

.login-header p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Styled Input with Icons */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 14px;
    color: #48a7e7;
    font-size: 0.9rem;
}

.input-group .form-input {
    padding-left: 40px; /* Make room for the icon */
    background: rgba(30, 41, 59, 0.5);
    border-color: #334155;
}

.forgot-link {
    font-size: 0.85rem;
    color: #48a7e7;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.login-footer a {
    color: #48a7e7;
    font-weight: 600;
}

