
        :root {
            --primary-color: #626d0cff;
            --secondary-color: #626d0cff;
            --accent-color: #626d0cff;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-dark: #0a0a0a;
            --bg-light: #111111;
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);
            --card-color: #626d0cff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-dark);
            min-height: 100vh;
            overflow-x: hidden;
            color: white;
            cursor: none;
        }
        
        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary-color);
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9999;
            transition: width 0.3s, height 0.3s;
        }
        
        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 1px solid var(--primary-color);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9998;
            transition: all 0.6s ease;
            opacity: 0.5;
        }
        
        .cursor.hover, .cursor-follower.hover {
            width: 30px;
            height: 30px;
            background: rgba(212, 239, 10, 0.5);
        }
        
        /* Background Animation */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 70%);
        }
        .business-logo
        {
            height: 80px;
            color: #626D0C;
        }
        .business-logo-2
        {
            height: 160px;
            color: #626D0C;
        }
        .hover {
            color:white;
            text-decoration: underline;
            transition: color 0.3s ease, text-decoration 0.3s ease;
        }
        .hover:hover {
            color: #626D0C;
            text-decoration: none;
        }
        .logo-text
        {
            color: #626D0C;
        }
        .bg-animation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: black;
        }
        
        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(10px, 10px); }
        }
        
        /* Floating particles */
        .particle {
            position: absolute;
            background: rgba(164, 182, 34, 0.2);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        .particle:nth-child(1) { width: 4px; height: 4px; top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 6px; height: 6px; top: 60%; left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { width: 3px; height: 3px; top: 30%; left: 80%; animation-delay: 2s; }
        .particle:nth-child(4) { width: 5px; height: 5px; top: 80%; left: 70%; animation-delay: 3s; }
        .particle:nth-child(5) { width: 4px; height: 4px; top: 40%; left: 60%; animation-delay: 4s; }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        /* Main Container */
        .main-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
            margin-top: -100px;
            margin-bottom: -100px;
        }
        
        /* Glass Card Effect */
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 3rem;
            margin: 2rem;
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .glass-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(164, 182, 34, 0.1), transparent);
            transition: left 0.5s;
        }
        
        .glass-card:hover::before {
            left: 100%;
        }
        
        .glass-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 35px 60px rgba(0, 0, 0, 0.15);
        }
        
        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(40px);
            border: none;
            border-radius: 20px;
            margin: 1rem 0;
            padding: 0.5rem 1rem;
        }
        
        .navbar-brand {
            color: white !important;
            font-weight: 800;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            color: var(--accent-color);
            margin-right: 0.5rem;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 10px;
            padding: 0.5rem 1rem !important;
            margin: 0 0.25rem;
        }
        
        .nav-link:hover {
            background: rgba(164, 182, 34, 0.1);
            transform: translateY(-2px);
        }
        
        .btn-connect {
            background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
            border: none;
            border-radius: 50px;
            padding: 0.5rem 1.5rem;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-connect::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .btn-connect:hover::before {
            left: 0;
        }
        
        .btn-connect:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(104, 118, 3, 0.5);
        }
        
        /* Hero Section */
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            line-height: 1.2;
            margin-bottom: 2rem;
        }
        
        .hero-content .highlight {
            background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }
        
        .hero-content .highlight::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
            border-radius: 2px;
            animation: expandWidth 2s ease-out 1s both;
        }
        
        @keyframes expandWidth {
            0% { width: 0; }
            100% { width: 100%; }
        }
        
        .hero-description {
            color: rgba(255, 255, 255, 0.8) !important;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
        }
        
        .contact-btn {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border: none;
            border-radius: 50px;
            padding: 1rem 2rem;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .contact-btn:hover::before {
            left: 0;
        }
        
        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(164, 182, 34, 0.3);
        }
        
        /* 3D Visual Element */
        .visual-container {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .security-layers {
            position: relative;
            width: 400px;
            height: 300px;
            perspective: 1000px;
            animation: breathe 4s ease-in-out infinite;
        }
        
        @keyframes breathe {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .layer {
            position: absolute;
            width: 100%;
            height: 80px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transform-style: preserve-3d;
            animation: float 3s ease-in-out infinite;
        }
        
        .layer:nth-child(1) {
            background: linear-gradient(45deg, rgba(164, 182, 34, 0.3), rgba(179, 196, 48, 0.3));
            top: 0;
            animation-delay: 0s;
            transform: rotateX(10deg) translateZ(40px);
        }
        
        .layer:nth-child(2) {
            background: linear-gradient(45deg, rgba(164, 182, 34, 0.3), rgba(179, 196, 48, 0.3));
            top: 60px;
            animation-delay: 0.5s;
            transform: rotateX(5deg) translateZ(20px);
        }
        
        .layer:nth-child(3) {
            background: linear-gradient(45deg, rgba(164, 182, 34, 0.3), rgba(179, 196, 48, 0.3));
            top: 120px;
            animation-delay: 1s;
            transform: rotateX(0deg) translateZ(0px);
        }
        
        .layer:nth-child(4) {
            background: linear-gradient(45deg, rgba(164, 182, 34, 0.3), rgba(179, 196, 48, 0.3));
            top: 180px;
            animation-delay: 1.5s;
            transform: rotateX(-5deg) translateZ(-20px);
        }
        
        .security-eye {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 80px;
            height: 80px;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.5);
            animation: scanRotate 5s linear infinite;
            z-index: 10;
        }
        
        .security-eye::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            background: radial-gradient(circle, var(--accent-color), var(--primary-color));
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }
        
        .security-eye::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 20px;
            height: 20px;
            background: white;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: blink 3s ease-in-out infinite;
        }
        
        @keyframes scanRotate {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        @keyframes blink {
            0%, 90%, 100% { opacity: 1; }
            95% { opacity: 0.3; }
        }
        
        /* Video Animation Section */
        .video-section {
            padding: 5rem 0;
            position: relative;
        }
        
        .video-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 10px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateY(5deg);
            transition: all 0.5s ease;
        }   
        
        .video-container:hover {
            transform: perspective(1000px) rotateY(0deg);
            background-color: #626D0C;
        }
        
        .video-container video {
            width: 100%;
            display: block;
            border-radius: 24px;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #626D0C;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
            border-radius: 24px;
        }
        
        .video-container:hover .video-overlay {
            opacity: 1;
        }
        
        .play-btn {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            transform: scale(0.8);
            transition: all 0.3s ease;
        }
        
        .video-container:hover .play-btn {
            transform: scale(1);
        }
        
        /* Cards Section */
        .cards-section {
            padding: 5rem 0;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            color:white;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--card-color);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .feature-card:hover::before {
            opacity: 0.1;
        }
          .card-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        .feature-card:hover {
            transform: translateY(-10px);
            background-color: #626D0C;
            color:white;
            border-color: var(--primary-color);
        }
        .feature-card:hover .card-icon{
          font-size: 3rem;
            margin-bottom: 1.5rem;
            color: white;
        }
        
      
        
        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }
        
        .card-text {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }
        
        /* Footer */
        .footer {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            padding: 5rem 0 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        }
        
        .footer-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }
        
        .footer-bottom {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .glass-card {
                padding: 2rem;
                margin: 1rem;
            }
            
            .security-layers {
                width: 300px;
                height: 250px;
            }
            
            .visual-container {
                height: 400px;
            }
            
            .cursor, .cursor-follower {
                display: none;
            }
            .navbar
            {
                padding: 0.1rem;
            }
            .business-logo
            {
                height: 60px;
            }
            body {
                cursor: auto;
            }
             .main-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
            margin-top: 10px;
            margin-bottom: 10px;
        }
        }
        
        /* Additional Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Gradient Text Animation */
        .gradient-text {
            background: linear-gradient(-45deg, var(--accent-color), var(--primary-color), var(--secondary-color), var(--accent-color));
            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%; }
        }
  
        .projects-section {
            min-height: 100vh;
            padding: 100px 20px;
            position: relative;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(50px);
            animation: slideInUp 1s ease-out 0.2s forwards;
        }

        .section-heading h2 {
            font-size: 4rem;
            font-weight: bold;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease-in-out infinite;
        }

        .section-heading p {
            font-size: 1.2rem;
            margin-top: 20px;
            opacity: 0.8;
        }

        .projects-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            perspective: 1000px;
        }

        .project-card {
            background: rgba(0, 0, 0, 0.769);
            border-radius: 20px;
            padding: 30px;
            position: relative;
            transform: translateX(-100px);
            opacity: 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.877);
            clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
             box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
             color: white;
            overflow: hidden;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #626D0C;
            clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
        }

        .project-card:hover::before {
            opacity: 0.9;
            transform: scale(1.05);
        }

        .project-card:hover {
            transform: translateX(0) translateY(-10px) rotateY(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .project-card.animate-in {
            opacity: 1;
            transform: translateX(0);
        }

        .project-card:nth-child(1) { animation-delay: 0.1s; }
        .project-card:nth-child(2) { animation-delay: 0.3s; }
        .project-card:nth-child(3) { animation-delay: 0.5s; }
        .project-card:nth-child(4) { animation-delay: 0.7s; }

        .project-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: #626D0C;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .project-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.4s ease;
        }

        .project-card:hover .project-icon::before {
            width: 100%;
            height: 100%;
        }

        .project-card:hover .project-icon {
            transform: scale(1.2) rotate(360deg);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .project-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 15px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .project-card:hover .project-title {
            color: #fff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .project-description {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.8;
            text-align: center;
            transition: all 0.3s ease;
        }

        .project-card:hover .project-description {
            opacity: 1;
            color: #fff;
        }

        .project-tech {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .tech-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .project-card:hover .tech-tag {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        /* Full Page Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            width: 90%;
            max-width: 800px;
            max-height: 90%;
            border-radius: 20px;
            padding: 40px;
            position: relative;
            transform: scale(0.8) rotateX(-30deg);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
        }

        .modal.active .modal-content {
            transform: scale(1) rotateX(0deg);
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 2rem;
            color: white;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .modal-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }

        .modal-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .modal-description {
            font-size: 1.2rem;
            line-height: 1.8;
            text-align: center;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .modal-tech {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .modal-tech .tech-tag {
            background: #626D0C;
            color: white;
            padding: 10px 20px;
            font-size: 1rem;
        }

        .modal-features {
            text-align: left;
            margin-top: 30px;
        }

        .modal-features h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #4ecdc4;
        }

        .modal-features ul {
            list-style: none;
            padding: 0;
        }

        .modal-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            padding-left: 30px;
        }

        .modal-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #4ecdc4;
            font-weight: bold;
        }

        /* Scroll Animations */
        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-heading h2 {
                font-size: 2.5rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .modal-content {
                width: 95%;
                padding: 20px;
            }

            .modal-title {
                font-size: 2rem;
            }
        }

        /* Scroll indicator */
        .scroll-indicator {
            position: fixed;
            top: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
            z-index: 9999;
            transition: width 0.3s ease;
        }


.modal-dark {
  background-color: #212529;
  color: #f8f9fa;
  border-radius: 0.5rem;
}

.modal-dark .modal-header {
  border-bottom: 1px solid #495057;
}

.modal-dark .modal-footer {
  border-top: 1px solid #495057;
}

.modal-dark .form-control {
  background-color: #343a40;
  color: #f8f9fa;
  border: 1px solid #495057;
}

.modal-dark .form-control::placeholder {
  color: #adb5bd;
}

.modal-dark .form-control:focus {
  background-color: #495057;
  color: #f8f9fa;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.modal-dark .input-group-text {
  background-color: #495057;
  border: 1px solid #495057;
  color: #f8f9fa;
}

/* Animation for Modal */
.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}

.fade.show .modal-dialog {
  transform: translate(0, 0);
}
/* Style for the trigger button */
.open-btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-image: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.open-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}


/* Modal Overlay */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Black with opacity */
    justify-content: center;
    align-items: center;
}

/* This class will be added via JS to show the modal */
.modal.active {
    display: flex;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #1e1e1e; /* Dark charcoal background */
    margin: auto;
    padding: 30px;
    border: 1px solid #444;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    color: #e0e0e0; /* Light grey text */
    text-align: center;
    
    /* Animation */
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.close-btn:hover {
    color: #fff;
    transform: rotate(90deg);
}

/* Modal Icon */
.modal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-image: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
}

/* Typography */
.modal-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.modal-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #b0b0b0; /* Lighter grey for description */
}

/* Technology Tags */
.modal-tech {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tech-tag {
    background-color: #333;
    color: #ddd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Key Features Section */
.modal-features h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
    border-top: 1px solid #444;
    padding-top: 25px;
}

.modal-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: inline-block;
}

.modal-features li {
    margin-bottom: 10px;
    color: #b0b0b0;
}

.modal-features li::before {
    content: '\f058'; /* Font Awesome check-circle icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #2575fc; /* Accent color */
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 640px) {
    .modal-content {
        padding: 20px;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-description {
        font-size: 0.95rem;
    }

    .modal-features ul {
        width: 100%;
        text-align: left;
    }
}