
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto 10px auto;
            padding: 0 20px;
        }

        .btn {
            background-color: var(--primary);
            color: var(--white);
            padding: 10px 24px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-block;
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(30, 84, 247, 0.2);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        .hero {
            background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            padding: 180px 0 120px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 600px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
			background-color: #0000001f;
            padding: 4px 6px;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: url('/api/placeholder/800/600') center/cover no-repeat;
            clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
            opacity: 0.2;
            z-index: 1;
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            overflow: hidden;
			background-image: url('../images/index_coder.png');
			background-repeat: no-repeat;
			background-size: cover;
            background-position: center;
        }
		
		#typewritten {
			//font-family: monospace;
			//white-space: nowrap;
            //overflow: auto;
		}
		
		
        #typewritten::after {
            content: "|";
            animation: blink 1s step-start infinite;
			display: inline-block;
            transform: scaleX(3.8);
			font-family: monospace;
			font-size: 18px;
			margin-left: -3px;
			color: #fff;
          }
        
          @keyframes blink {
            50% {
              opacity: 0;
            }
          }	
		

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            animation: float 8s infinite ease-in-out;
        }

        .shape1 {
            width: 150px;
            height: 150px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
			background-color: #0018ff4f;		
			
        }

        .shape2 {
            width: 80px;
            height: 80px;
            top: 60%;
            left: 20%;
            animation-delay: 1s;
			background-color: #0018ff91;
        }

        .shape3 {
            width: 200px;
            height: 200px;
            top: 10%;
            right: 30%;
            animation-delay: 2s;
			background-color: #0e95f966;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        .services {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 14px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            padding: 30px;
            transition: all 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(30, 84, 247, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
            font-size: 28px;
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .service-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .projects {
            padding: 100px 0;
            background-color: var(--white);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .project-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .project-img {
            height: 250px;
            background-size: cover;
            background-position: center;
            transition: all 0.5s;
        }

        .project-card:hover .project-img {
            transform: scale(1.1);
        }

        .project-content {
            padding: 20px;
            background-color: var(--white);
        }

        .project-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .project-category {
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 10px;
        }

       /*  .technologies {
            padding: 100px 0;
            background-color: var(--light);
        } */

        .tech-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .tech-item {
            width: 170px;
            height: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .tech-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .tech-icon {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .tech-name {
            font-size: 0.9rem;
            font-weight: 500;
        }

        .testimonials {
            padding: 100px 0;
            background-color: var(--white);
        }

        .testimonial-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial {
            padding: 40px;
            background-color: var(--light);
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark);
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* ###### font-awesome icons ##### */

         .fab.fa-vuejs {
			 color: green;
		 }
		 
         .fab.fa-laravel {
			 color: #FF2D20;
		 }

         .fab.fa-html5 {
			 color: #E34F26;
		 }

         .fas.fa-database {
			 color: #F29111;
		 }

         .fab.fa-aws {
			 color: #F29111;
		 }

          element.style {
             border: solid thin red;
             width: 99%;
         }


/* ##### font-awesome icons ##### */



        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--gray);
        }

        .cta {
            padding: 80px 0;
            background: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
            color: var(--white);
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
		
		
		.section-header h2 {
			text-align: center;
			font-size: 30px;
            color: #6e7084;
            margin-bottom: 35px;;
		}
		
		.curly-braces {
			color: #085faa;
            font-size: 48px;
		}
		

		  
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: #0d47a1;
            margin-bottom: 15px;
            position: relative;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: #2196f3;
        }
        
        .section-title p {
            color: #546e7a;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .industry-solutions-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .industry-card {
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.07);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .industry-icon {
            padding: 30px;
            background: linear-gradient(135deg, #2196f3, #0d47a1);
            text-align: center;
        }
        
        .industry-icon i {
            font-size: 2.5rem;
            color: white;
        }
        
        .industry-content {
            padding: 25px;
        }
        
        .industry-content h3 {
            font-size: 1.4rem;
            color: #0d47a1;
            margin-bottom: 15px;
        }
        
        .industry-content p {
            color: #546e7a;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .industry-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .industry-features li {
            padding: 8px 0;
            position: relative;
            padding-left: 25px;
            color: #546e7a;
        }
        
        .industry-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #2196f3;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .industry-solutions-container {
                grid-template-columns: 1fr;
            }
        }    
            
            .hero {
                padding: 150px 0 80px 0;
            }
            
            .hero h1 {
                font-size: 2.3rem;
            }
            
            .hero-bg {
                width: 100%;
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0  100%);
                opacity: 0.1;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }