
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
           
        }

        :root {
            /* Enhanced Blue Palette */
            --primary-50: #eff6ff;
            --primary-100: #dbeafe;
            --primary-200: #bfdbfe;
            --primary-300: #93c5fd;
            --primary-400: #60a5fa;
            --primary-500: #3b82f6;
            --primary-600: #2563eb;
            --primary-700: #1d4ed8;
            --primary-800: #1e40af;
            --primary-900: #1e3a8a;
            --accent: #f59e0b;

            /* Gradients */
            --gradient-primary: linear-gradient(135deg, #3b82f6, #2563eb, #1d4ed8);
            --gradient-glow: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(37, 99, 235, 0.4));
            --gradient-shine: linear-gradient(45deg, transparent 25%, rgba(255, 255, 255, 0.1) 50%, transparent 75%);
            --gradient-mesh: radial-gradient(circle at 0% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 100% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);

            /* Shadows */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 30px -5px rgba(59, 130, 246, 0.2);
            --shadow-lg: 0 20px 40px -10px rgba(59, 130, 246, 0.3);
            --shadow-xl: 0 30px 60px -10px rgba(59, 130, 246, 0.4);
            --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.3);

            /* Glass Effects */
            --glass-light: rgba(255, 255, 255, 0.1);
            --glass-medium: rgba(255, 255, 255, 0.15);
            --glass-heavy: rgba(255, 255, 255, 0.2);
            --glass-blur: blur(12px);

            /* Spacing */
            --space-unit: 8px;

            /* Transitions */
            --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #f0f5ff;
            color: #1e293b;
            overflow-x: hidden;
            position: relative;
           
        }
a{
      text-decoration: none !important;
}
        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary-500);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: 0.1s;
            mix-blend-mode: difference;
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: 0.15s;
            backdrop-filter: blur(2px);
        }

        /* Animated Background */
        .background-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            background: var(--gradient-glow);
            border-radius: 50%;
            filter: blur(80px);
            animation: float 20s infinite;
        }

        .shape-1 {
            width: 600px;
            height: 600px;
            top: -200px;
            right: -200px;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 500px;
            height: 500px;
            bottom: -150px;
            left: -150px;
            animation-delay: -5s;
        }

        .shape-3 {
            width: 400px;
            height: 400px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -10s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(30px, -30px) scale(1.1);
            }

            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

   
        /* Hero Section - 3D Parallax */
        .hero-future {
             position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
          
            background: linear-gradient(135deg, #f0f5ff 0%, #e6f0ff 100%);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 4rem 0;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 50px;
            color: var(--primary-600);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            animation: slideInLeft 1s ease;
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: slideInUp 1s ease;
        }
       .category-count {
            background: var(--primary-bg);
            color: var(--primary);
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-left: 0.5rem;
        }

        .category-tab.active .category-count {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        .highlight {
           
            -webkit-text-fill-color: var(--accent) !important;
        }

        .hero-title span {
            display: block;
            font-size: clamp(2rem, 5vw, 3rem);
            color: #1e293b;
            -webkit-text-fill-color: initial;
            background: none;
        }

        .hero-description {
            font-size: 1.2rem;
            color: #475569;
            margin-bottom: 2rem;
            max-width: 600px;
            animation: slideInUp 1s ease 0.2s both;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-bottom: 2rem;
            animation: slideInUp 1s ease 0.4s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-600);
            display: block;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #64748b;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: slideInUp 1s ease 0.6s both;
        }

        .btn-future-primary {
            padding: 1rem 2.5rem;
            background: var(--gradient-primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition-bounce);
            z-index: 1;
        }

        .btn-future-primary::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.6s ease;
            z-index: -1;
        }

        .btn-future-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-xl);
        }

        .btn-future-primary:hover::before {
            left: 100%;
        }

        .btn-future-outline {
            padding: 1rem 2.5rem;
            background: transparent;
            color: var(--primary-600);
            border: 2px solid var(--primary-500);
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-future-outline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--primary-500);
            transition: width 0.4s ease;
            z-index: -1;
        }

        .btn-future-outline:hover {
            color: white;
        }

        .btn-future-outline:hover::before {
            width: 100%;
        }

        .hero-3d-element {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
            animation: pulse 4s ease-in-out infinite;
        }

        /* Floating Particles */
        .particle {
            position: absolute;
            background: var(--primary-400);
            border-radius: 50%;
            opacity: 0.3;
            animation: float-particle 15s infinite linear;
        }

        @keyframes float-particle {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
            }

            100% {
                transform: translateY(-100vh) translateX(100px) rotate(360deg);
            }
        }

        /* Section Title */
        .section-title-future {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-subtitle {
            display: inline-block;
            padding: 0.3rem 1rem;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 50px;
            color: var(--primary-600);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .section-title-future h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .section-title-future h2 span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .title-decoration {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
        }

        .title-decoration span {
            width: 50px;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .title-decoration span:nth-child(2) {
            width: 30px;
        }

        .title-decoration span:nth-child(3) {
            width: 10px;
        }

        /* Category Cards */
        .category-wrapper {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .category-card {
            background: white;
            padding: 2rem;
            border-radius: 30px;
            text-align: center;
            min-width: 250px;
            cursor: pointer;
            transition: var(--transition-smooth);
            border: 1px solid rgba(59, 130, 246, 0.1);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .category-card:hover::before {
            transform: scaleX(1);
        }

        .category-card.active {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-xl);
        }

        .category-card.active .category-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .category-card.active h4,
        .category-card.active p {
            color: white;
        }

        .category-icon {
            width: 80px;
            height: 80px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.5rem;
            color: var(--primary-600);
            transition: var(--transition-smooth);
        }

        .category-card h4 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #1e293b;
        }

        .category-card p {
            color: #64748b;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Job Cards - Modern Grid */
        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            padding: 1rem 0;
        }

        .job-card-future {
            background: white;
            border-radius: 30px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: var(--transition-bounce);
            border: 1px solid rgba(59, 130, 246, 0.1);
            cursor: pointer;
            animation: fadeInUp 0.6s ease;
            box-shadow: var(--shadow-sm);
        }

        .job-card-future::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-shine);
            background-size: 200% 100%;
            background-position: -100% 0;
            transition: background-position 0.6s ease;
            opacity: 0;
        }

        .job-card-future:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .job-card-future:hover::after {
            background-position: 100% 0;
            opacity: 1;
        }

        .job-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .badge-new {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            animation: pulse 2s infinite;
        }

        .badge-urgent {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }

        .job-icon {
            width: 60px;
            height: 60px;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary-600);
            margin-bottom: 1.5rem;
        }

        .job-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .job-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #64748b;
        }

        .job-meta-item i {
            color: var(--primary-500);
        }

        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(59, 130, 246, 0.1);
        }

        .job-type {
            padding: 0.3rem 1rem;
            background: rgba(59, 130, 246, 0.1);
            border-radius: 50px;
            color: var(--primary-600);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .job-apply {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        .job-apply:hover {
            transform: rotate(360deg) scale(1.1);
        }

        /* Feature Cards */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 30px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 3rem;
            color: white;
            box-shadow: var(--shadow-lg);
            transition: var(--transition-bounce);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .feature-card p {
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 0;
            position: relative;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            align-items: center;
        }

        .contact-card-future {
            background: var(--gradient-primary);
            padding: 3rem;
            border-radius: 50px;
            color: white;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .contact-card-future::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .contact-card-future:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-xl);
        }

        .contact-card-future:hover::before {
            transform: translateX(0);
        }

        .contact-icon-future {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-card-future h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .contact-detail {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 2rem;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50px;
            margin-top: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: var(--transition-smooth);
            white-space: nowrap;
        }

        .contact-detail:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
        }

        .contact-detail i {
            font-size: 1.2rem;
        }

        /* Testimonial Slider */
        .testimonial-slider {
            background: white;
            border-radius: 50px;
            padding: 3rem;
            box-shadow: var(--shadow-lg);
        }

        .testimonial-content {
            text-align: center;
        }

        .testimonial-quote {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 2rem;
            position: relative;
        }

        .testimonial-quote i {
            color: var(--primary-300);
            font-size: 2rem;
            opacity: 0.5;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .author-info h4 {
            font-weight: 700;
            margin-bottom: 0.2rem;
            color: #1e293b;
        }

        .author-info p {
            color: #64748b;
            margin: 0;
        }

        /* Footer */
        .footer-future {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            padding: 5rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer-future::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-primary);
        }

        .footer-wave {
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 50px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f0f5ff" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
        }

        .footer-logo {
            height: 60px;
            margin-bottom: 2rem;

        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary-400);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: var(--transition-smooth);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .social-links-future {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition-bounce);
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--primary-500);
            transform: translateY(-5px) rotate(360deg);
            color: white;
        }

        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #94a3b8;
        }

        /* Loading Animation */
        .loading-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading-animation.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid #f0f5ff;
            border-top-color: var(--primary-500);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--gradient-primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            border: none;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-smooth);
            z-index: 999;
            box-shadow: var(--shadow-lg);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            transform: translateY(-5px) scale(1.1);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .jobs-grid {
                grid-template-columns: 1fr;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .hero-cta {
                flex-direction: column;
            }

            .category-wrapper {
                flex-direction: column;
                align-items: stretch;
            }

            .category-card {
                width: 100%;
            }

            .contact-card-future{
                    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;

            }

.contact-card-future h3 {
    font-size: 1.4rem;
}
.contact-detail {

    gap: 3px;
        padding: 0.8rem 0.5rem;

}

        }
