   :root {
       --dark-blue: #0c131d;
       --dark-teal: #1f556b;
       --medium-teal: #4a97b5;
       --light-teal: #3fc3d0;
       --terminal-green: #39ff14;
       --neon-purple: #bc13fe;
       --light-gray: #f8f9fa;
       --navy-blue: #0a1929;
   }

   body {
       font-family: 'Montserrat', sans-serif;
       background-color: var(--dark-blue);
       color: white;
       overflow-x: hidden;
       background-image:
           radial-gradient(circle at 10% 20%, rgba(31, 85, 107, 0.15) 0%, transparent 20%),
           radial-gradient(circle at 90% 80%, rgba(63, 195, 208, 0.1) 0%, transparent 20%);
       line-height: 1.7;
   }
   .logo-text {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(90deg, #4a97b5, #1f556b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.logo-text span {
  background: linear-gradient(90deg, #4a97b5, #1f556b);;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

   /* Logo Styles */
   .brand-logo {
       font-family: 'Roboto Mono', monospace;
       font-weight: 700;
       display: flex;
       align-items: center;
   }

   .brand-logo .logo-icon {
       width: 40px;
       height: 40px;
       border-radius: 8px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-right: 12px;
   }

   .brand-logo .logo-text {
       font-size: 24px;
   }

   .brand-logo .logo-text span {
       color: var(--terminal-green);
   }

   /* Console Effect */
   .console-effect {
       font-family: 'Roboto Mono', monospace;
       background: rgba(12, 19, 29, 0.85);
       border: 1px solid rgba(74, 151, 181, 0.3);
       border-radius: 8px;
       padding: 30px;
       margin: 40px auto;
       max-width: 800px;
       box-shadow: 0 0 25px rgba(57, 255, 20, 0.1);
       position: relative;
       overflow: hidden;
   }

   .console-effect::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 4px;
       background: linear-gradient(90deg, var(--neon-purple), var(--terminal-green));
   }

   .console-header {
       display: flex;
       align-items: center;
       margin-bottom: 25px;
       padding-bottom: 15px;
       border-bottom: 1px solid rgba(74, 151, 181, 0.2);
   }

   .console-dot {
       width: 12px;
       height: 12px;
       border-radius: 50%;
       margin-right: 8px;
   }

   .dot-red {
       background: #ff5f56;
   }

   .dot-yellow {
       background: #ffbd2e;
   }

   .dot-green {
       background: #27c93f;
   }

   .console-content {
       min-height: 150px;
       font-size: 1.1rem;
       line-height: 1.6;
   }

   .console-line {
       margin-bottom: 12px;
       display: flex;
   }

   .prompt {
       color: var(--terminal-green);
       margin-right: 10px;
   }

   .cursor {
       display: inline-block;
       width: 8px;
       height: 18px;
       background: var(--terminal-green);
       margin-left: 5px;
       animation: blink 1s infinite;
   }

   @keyframes blink {

       0%,
       100% {
           opacity: 1;
       }

       50% {
           opacity: 0;
       }
   }

   .typing-text {
       display: inline;
       position: relative;
   }

   .typing-text::after {
       content: '';
       position: absolute;
       top: 0;
       right: -10px;
       width: 2px;
       height: 100%;
       background: var(--terminal-green);
       animation: blink 1s infinite;
   }

   /* Navigation */
   .navbar {
       background: linear-gradient(to bottom, rgba(12, 19, 29, 0.98), rgba(12, 19, 29, 0.85));
       padding: 15px 0;
       border-bottom: 1px solid rgba(74, 151, 181, 0.2);
       backdrop-filter: blur(8px);
       box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
   }

   .nav-link {
       color: rgba(255, 255, 255, 0.8) !important;
       font-weight: 500;
       margin: 0 12px;
       transition: all 0.3s ease;
       position: relative;
       font-size: 16px;
   }

   .nav-link:hover {
       color: var(--light-teal) !important;
   }

   .nav-link::after {
       content: '';
       position: absolute;
       bottom: -5px;
       left: 0;
       width: 0;
       height: 2px;
       background: var(--light-teal);
       transition: width 0.3s ease;
   }

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

   /* Hero Section */
   .hero {
       background:
           radial-gradient(circle at 80% 30%, rgba(31, 85, 107, 0.2) 0%, transparent 40%),
           radial-gradient(circle at 20% 70%, rgba(63, 195, 208, 0.15) 0%, transparent 40%),
           linear-gradient(to bottom, rgba(12, 19, 29, 0.9), rgba(12, 19, 29, 0.95));
       background-size: cover;
       background-position: center;
       padding: 160px 0 80px;
       text-align: center;
       position: relative;
       overflow: hidden;
   }

   .hero::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background:
           repeating-linear-gradient(0deg,
               transparent,
               transparent 2px,
               rgba(31, 85, 107, 0.05) 2px,
               rgba(31, 85, 107, 0.05) 4px);
       pointer-events: none;
   }

   .hero h1 {
       font-size: 3.8rem;
       font-weight: 800;
       margin-bottom: 25px;
       text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
       background: linear-gradient(to right, var(--light-teal), var(--terminal-green));
       -webkit-background-clip: text;
       -webkit-text-fill-color: transparent;
       font-family: 'Montserrat', sans-serif;
       line-height: 1.2;
   }

   .hero p {
       font-size: 1.5rem;
       margin-bottom: 40px;
       max-width: 700px;
       margin-left: auto;
       margin-right: auto;
       opacity: 0.85;
       line-height: 1.6;
   }

   /* Buttons */
   .btn-primary {
       background: linear-gradient(45deg, var(--light-teal), var(--medium-teal));
       border: none;
       padding: 14px 35px;
       border-radius: 30px;
       font-weight: 600;
       transition: all 0.3s ease;
       position: relative;
       overflow: hidden;
       z-index: 1;
       font-size: 16px;
   }

   .btn-primary::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(45deg, var(--medium-teal), var(--light-teal));
       transition: all 0.4s ease;
       z-index: -1;
   }

   .btn-primary:hover {
       transform: translateY(-3px);
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
   }

   .btn-primary:hover::before {
       left: 0;
   }

   .btn-outline-light {
       border: 2px solid var(--light-teal);
       color: var(--light-teal);
       background: transparent;
       padding: 12px 32px;
       border-radius: 30px;
       font-weight: 600;
       transition: all 0.3s ease;
       font-size: 16px;
   }

   .btn-outline-light:hover {
       background: var(--light-teal);
       color: var(--dark-blue);
       transform: translateY(-3px);
       box-shadow: 0 5px 15px rgba(63, 195, 208, 0.2);
   }

   /* Section Styling */
   .section-title {
       position: relative;
       margin-bottom: 60px;
       text-align: center;
   }

   .section-title h2 {
       font-size: 2.8rem;
       font-weight: 700;
       margin-bottom: 20px;
       color: var(--light-teal);
       font-family: 'Montserrat', sans-serif;
       position: relative;
       display: inline-block;
   }

   .section-title h2:after {
       content: '';
       display: block;
       width: 80px;
       height: 4px;
       background: var(--light-teal);
       margin: 20px auto;
       border-radius: 2px;
   }

   .section-title .lead {
       font-size: 1.3rem;
       max-width: 700px;
       margin: 0 auto;
       opacity: 0.85;
   }

   .section {
       padding: 100px 0;
       position: relative;
   }

   .section::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 2px;
       background: linear-gradient(90deg, transparent, var(--light-teal), transparent);
   }

   /* Service Cards */
   .service-card {
       background: rgba(31, 85, 107, 0.2);
       border-radius: 12px;
       padding: 35px 30px;
       height: 100%;
       transition: all 0.4s ease;
       border: 1px solid rgba(74, 151, 181, 0.2);
       position: relative;
       overflow: hidden;
       z-index: 1;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
   }

   .service-card::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 0;
       background: rgba(31, 85, 107, 0.4);
       transition: height 0.4s ease;
       z-index: -1;
   }

   .service-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
       border-color: rgba(63, 195, 208, 0.4);
   }

   .service-card:hover::before {
       height: 100%;
   }

   .service-card i {
       font-size: 2.8rem;
       color: var(--light-teal);
       margin-bottom: 25px;
       transition: all 0.3s ease;
   }

   .service-card:hover i {
       transform: scale(1.2);
       color: var(--terminal-green);
   }

   .service-card h3 {
       color: var(--light-teal);
       margin-bottom: 20px;
       font-family: 'Montserrat', sans-serif;
       font-size: 1.8rem;
   }

   .service-card:hover h3 {
       color: var(--terminal-green);
   }

   .service-card p {
       margin-bottom: 25px;
       line-height: 1.7;
   }

   .service-card .btn {
       font-weight: 500;
       padding: 8px 20px;
       border-radius: 20px;
   }

   /* Stats */
   .stat-box {
       text-align: center;
       padding: 25px;
       position: relative;
       transition: transform 0.3s ease;
   }

   .stat-box:hover {
       transform: translateY(-10px);
   }

   .stat-box h3 {
       font-size: 3.2rem;
       font-weight: 700;
       color: var(--light-teal);
       margin-bottom: 10px;
       font-family: 'Roboto Mono', monospace;
   }

   .stat-box p {
       position: relative;
       display: inline-block;
       font-size: 1.1rem;
       font-weight: 500;
   }

   .stat-box p::after {
       content: '';
       position: absolute;
       bottom: -8px;
       left: 0;
       width: 50%;
       height: 2px;
       background: var(--light-teal);
       transform: translateX(50%);
       transition: width 0.3s ease;
   }

   .stat-box:hover p::after {
       width: 100%;
   }

   /* Technology Stack */
   .tech-stack {
       display: flex;
       justify-content: center;
       flex-wrap: wrap;
       margin: 40px 0;
   }

   .tech-icon {
       font-size: 2.8rem;
       color: var(--light-teal);
       margin: 0 20px 25px;
       transition: all 0.4s ease;
       position: relative;
   }

   .tech-icon:hover {
       transform: translateY(-10px) scale(1.2);
       color: var(--terminal-green);
       text-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
   }

   /* Process Section */
   .process-step {
       display: flex;
       margin-bottom: 50px;
       align-items: flex-start;
       position: relative;
       padding-left: 30px;
   }

   .process-step:before {
       content: '';
       position: absolute;
       left: 0;
       top: 30px;
       bottom: -30px;
       width: 2px;
       background: rgba(63, 195, 208, 0.2);
   }

   .process-step:last-child:before {
       display: none;
   }

   .step-number {
       width: 70px;
       height: 70px;
       background: var(--light-teal);
       color: var(--dark-blue);
       font-size: 2rem;
       font-weight: 700;
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-right: 25px;
       flex-shrink: 0;
       font-family: 'Roboto Mono', monospace;
       box-shadow: 0 5px 15px rgba(63, 195, 208, 0.3);
   }

   .step-content h3 {
       font-size: 1.8rem;
       margin-bottom: 15px;
       color: var(--light-teal);
   }

   .step-content p {
       line-height: 1.7;
       opacity: 0.9;
   }

   /* Testimonials */
   .testimonial {
       background: rgba(31, 85, 107, 0.2);
       border-radius: 12px;
       padding: 40px;
       margin: 30px 0;
       position: relative;
       border: 1px solid rgba(74, 151, 181, 0.2);
       transition: all 0.4s ease;
   }

   .testimonial:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
       border-color: var(--terminal-green);
   }

   .testimonial:before {
       content: "";
       font-size: 5rem;
       color: var(--light-teal);
       opacity: 0.2;
       position: absolute;
       top: 10px;
       left: 20px;
       font-family: Georgia, serif;
   }

   .testimonial p {
       font-size: 1.1rem;
       line-height: 1.8;
       margin-bottom: 0;
   }

   .client-info {
       display: flex;
       align-items: center;
       margin-top: 25px;
   }

   .client-info img {
       width: 65px;
       height: 65px;
       border-radius: 50%;
       margin-right: 20px;
       object-fit: cover;
       border: 2px solid var(--light-teal);
   }

   .client-details h5 {
       font-size: 1.4rem;
       margin-bottom: 5px;
   }

   .client-details p {
       opacity: 0.8;
       margin-bottom: 0;
   }

   /* Team Section */
   .team-member {
       background: rgba(31, 85, 107, 0.2);
       border-radius: 12px;
       padding: 30px;
       text-align: center;
       transition: all 0.4s ease;
       margin-bottom: 30px;
       border: 1px solid rgba(74, 151, 181, 0.2);
       height: 100%;
   }

   .team-member:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
       border-color: var(--terminal-green);
   }

   .team-img {
       width: 140px;
       height: 140px;
       border-radius: 50%;
       margin: 0 auto 25px;
       border: 3px solid var(--light-teal);
       overflow: hidden;
       position: relative;
   }

   .team-img::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
       background: linear-gradient(135deg, transparent, rgba(63, 195, 208, 0.3));
   }

   .team-member h4 {
       font-size: 1.5rem;
       margin-bottom: 10px;
       color: var(--light-teal);
   }

   .team-member .position {
       color: var(--terminal-green);
       font-weight: 500;
       margin-bottom: 15px;
       font-family: 'Roboto Mono', monospace;
   }

   .social-links {
       display: flex;
       justify-content: center;
       gap: 12px;
   }

   .social-links a {
       display: flex;
       align-items: center;
       justify-content: center;
       width: 40px;
       height: 40px;
       background: rgba(31, 85, 107, 0.3);
       border-radius: 50%;
       color: var(--light-teal);
       transition: all 0.3s ease;
   }

   .social-links a:hover {
       background: var(--light-teal);
       color: var(--dark-blue);
       transform: translateY(-3px);
   }

   /* Contact Section */
   .contact-form {
       background: rgba(31, 85, 107, 0.2);
       border-radius: 12px;
       padding: 40px;
       border: 1px solid rgba(74, 151, 181, 0.2);
   }

   .contact-form .form-control {
       background: rgba(12, 19, 29, 0.4);
       border: 1px solid rgba(74, 151, 181, 0.2);
       color: white;
       padding: 14px 18px;
       margin-bottom: 25px;
       border-radius: 8px;
       font-size: 1rem;
       transition: all 0.3s ease;
   }

   .contact-form .form-control:focus {
       background: rgba(12, 19, 29, 0.6);
       border-color: var(--light-teal);
       color: white;
       box-shadow: 0 0 0 0.2rem rgba(63, 195, 208, 0.25);
   }

   .contact-form textarea.form-control {
       min-height: 150px;
   }

   .contact-info {
       background: rgba(31, 85, 107, 0.2);
       border-radius: 12px;
       padding: 40px;
       height: 100%;
       border: 1px solid rgba(74, 151, 181, 0.2);
   }

   .contact-item {
       display: flex;
       margin-bottom: 30px;
   }

   .contact-item i {
       font-size: 1.8rem;
       color: var(--light-teal);
       width: 50px;
   }

   .contact-details h5 {
       font-size: 1.3rem;
       margin-bottom: 8px;
       color: var(--light-teal);
   }

   .contact-details p {
       margin-bottom: 5px;
       line-height: 1.6;
   }

   /* Industry Section */
   .industry-card {
       background: rgba(31, 85, 107, 0.2);
       border-radius: 12px;
       padding: 30px;
       text-align: center;
       transition: all 0.4s ease;
       margin-bottom: 30px;
       height: 100%;
       border: 1px solid rgba(74, 151, 181, 0.2);
   }

   .industry-card:hover {
       transform: translateY(-8px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
       border-color: var(--terminal-green);
   }

   .industry-card i {
       font-size: 3rem;
       color: var(--light-teal);
       margin-bottom: 20px;
   }

   .industry-card h4 {
       font-size: 1.5rem;
       margin-bottom: 15px;
       color: var(--light-teal);
   }

   /* Footer */
   .footer {
       background: linear-gradient(to top, rgba(12, 19, 29, 0.98), rgba(12, 19, 29, 0.9));
       padding: 80px 0 30px;
       border-top: 1px solid rgba(74, 151, 181, 0.1);
       position: relative;
   }

   .footer::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 2px;
       background: linear-gradient(90deg, transparent, var(--light-teal), transparent);
   }

   .footer-logo {
       margin-bottom: 25px;
   }

   .footer p {
       opacity: 0.8;
       line-height: 1.8;
       margin-bottom: 25px;
   }

   .footer h5 {
       color: var(--light-teal);
       margin-bottom: 25px;
       position: relative;
       padding-bottom: 15px;
       font-size: 1.4rem;
   }

   .footer h5::after {
       content: '';
       position: absolute;
       bottom: 0;
       left: 0;
       width: 50px;
       height: 3px;
       background: var(--light-teal);
   }

   .footer .list-unstyled li {
       margin-bottom: 15px;
   }

   .footer .list-unstyled a {
       color: rgba(255, 255, 255, 0.8);
       text-decoration: none;
       transition: all 0.3s ease;
       font-size: 1.05rem;
   }

   .footer .list-unstyled a:hover {
       color: var(--light-teal);
       padding-left: 8px;
   }

   .footer .social-links {
       display: flex;
       gap: 15px;
       margin-top: 25px;
   }

   .footer .social-links a {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       width: 45px;
       height: 45px;
       background: rgba(31, 85, 107, 0.3);
       border-radius: 50%;
       color: var(--light-teal);
       font-size: 1.2rem;
       transition: all 0.3s ease;
   }

   .footer .social-links a:hover {
       background: var(--light-teal);
       color: var(--dark-blue);
       transform: translateY(-3px);
   }

   .copyright {
       border-top: 1px solid rgba(74, 151, 181, 0.2);
       padding-top: 25px;
       margin-top: 50px;
       text-align: center;
       opacity: 0.7;
       font-size: 1.05rem;
   }

   /* New Elements */
   .tech-grid {
       display: grid;
       grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
       gap: 25px;
       margin-top: 50px;
   }

   .tech-item {
       background: rgba(31, 85, 107, 0.2);
       border-radius: 12px;
       padding: 20px;
       text-align: center;
       transition: all 0.3s ease;
       border: 1px solid rgba(74, 151, 181, 0.2);
   }

   .tech-item:hover {
       transform: translateY(-8px);
       box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
       border-color: var(--terminal-green);
   }

   .tech-item i {
       font-size: 2.5rem;
       color: var(--light-teal);
       margin-bottom: 15px;
   }

   .tech-item h5 {
       font-size: 1.1rem;
       margin-bottom: 0;
   }

   .feature-card {
       background: rgba(31, 85, 107, 0.2);
       border-radius: 12px;
       padding: 30px;
       text-align: center;
       transition: all 0.4s ease;
       margin-bottom: 30px;
       height: 100%;
       border: 1px solid rgba(74, 151, 181, 0.2);
   }

   .feature-card:hover {
       transform: translateY(-8px);
       box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
       border-color: var(--terminal-green);
   }

   .feature-card i {
       font-size: 3rem;
       color: var(--light-teal);
       margin-bottom: 25px;
   }

   .feature-card h4 {
       font-size: 1.5rem;
       margin-bottom: 15px;
       color: var(--light-teal);
   }

   /* Responsive */
   @media (max-width: 992px) {
       .hero h1 {
           font-size: 3.2rem;
       }

       .section {
           padding: 80px 0;
       }
   }

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

       .hero p {
           font-size: 1.2rem;
       }

       .section-title h2 {
           font-size: 2.3rem;
       }

       .section {
           padding: 60px 0;
       }

       .console-effect {
           padding: 20px;
       }

       .console-content {
           font-size: 0.95rem;
       }
   }

   @media (max-width: 576px) {
       .hero {
           padding: 130px 0 60px;
       }

       .hero h1 {
           font-size: 2.2rem;
       }

       .section-title h2 {
           font-size: 2rem;
       }

       .step-number {
           width: 55px;
           height: 55px;
           font-size: 1.6rem;
           margin-right: 15px;
       }
   }

   /* Animations */
   @keyframes float {
       0% {
           transform: translateY(0px);
       }

       50% {
           transform: translateY(-15px);
       }

       100% {
           transform: translateY(0px);
       }
   }

   .floating {
       animation: float 4s ease-in-out infinite;
   }

   .fade-in {
       opacity: 0;
       transform: translateY(30px);
       transition: opacity 0.6s ease, transform 0.6s ease;
   }

   .fade-in.visible {
       opacity: 1;
       transform: translateY(0);
   }

   .kubernetes {
    margin-bottom: 15px;
   }