.text-banner{
    width: 500px;
    margin-top: -10px;
}

.about-us-list li {
  display: flex;
  align-items: center;  /* vertically centers icon and text */
  gap: 10px;            /* space between icon and text */
  margin-bottom: 10px;  /* space between list items */
}

.about-us-list i {
  color: #e63946;       /* optional: your red icon color */
  font-size: 18px;
}



/* 🔹 Responsive adjustments */
@media (max-width: 992px) {   /* tablets and small laptops */
  .text-banner {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  .about-us-list {
    text-align: left;
    padding-left: 0;
  }
}

@media (max-width: 576px) {   /* phones */
  .text-banner {
    width: 100%;
    margin-top: 10px;
    padding: 0 15px;
  }

  .about-us-list li {
    gap: 8px;
  }

  .about-us-list i {
    font-size: 16px;
  }

  .about-us-list a {
    font-size: 14px;
  }
}
.about-us-section-start .container {
    /* Your custom styles here */
padding-bottom: 30px;
padding-top: 100px;
  }


@media (min-width: 1440px) and (min-height: 654px) {
  .about-us-section-start .container {
    /* Your custom styles here */
padding-bottom: 30px;
padding-top: 100px;
  }
}


.about-us-section-start{
    margin-top: -100px;
}

.about-us-section-start .custom-container {
    padding-bottom: 100px;
    padding-top: 0px;
}


.about-us-section-start.about-teams-section.about-page-teams {
  margin-top: -100px; /* change this value as you like */
}

.clients-section .clients-section-btn {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 10px;
}

.about-us-section-start .Our-Professional-Team {
    padding-bottom: 50px;
    padding-top: 100px;
}

   canvas {
            display: block; /* Removes extra space below the canvas */
            width: 100%;
            height: 100vh;

        }


        /* Main Layout */
        .container {
            width: 100%;
            max-width: 1152px; /* max-w-6xl */
            margin: 0 auto;
        }

        .grid-container {
            display: grid;
            grid-template-columns: 1fr;
            align-items: center;
            gap: 4rem;
        }

        /* Typography */
        h1 {
            font-size: 2.25rem; /* text-4xl */
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 1rem 0;
        }

        p {
            font-size: 1.125rem; /* text-lg */
            color: var(--text-secondary);
            margin: 0 0 2rem 0;
        }

        /* List */
        .values-list {
            list-style: none;
            padding: 0;
            margin: 0 0 2rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .values-list li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--text-tertiary);
        }

        .values-list svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--accent-color);
            flex-shrink: 0;
        }

        /* Buttons */
        .button-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .btn {
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 0.375rem; /* rounded-md */
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid transparent;
            text-align: center;
        }

        .btn:hover {
            transform: scale(1.05);
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: var(--text-primary);
            box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.2), 0 4px 6px -2px rgba(220, 38, 38, 0.1);
        }

        .btn-primary:hover {
            background-color: var(--accent-hover);
        }
        
        .btn-secondary {
            border-color: #4b5563; /* border-gray-600 */
            color: var(--text-tertiary);
        }

        .btn-secondary:hover {
            background-color: #1f2937; /* hover:bg-gray-800 */
            border-color: #6b7280; /* hover:border-gray-500 */
        }
        
        /* Animation Container */
     .animation-container {
  width: 150%;
  height: 500px;
  background-color: var(--canvas-bg);
  border-radius: 1rem; /* rounded-2xl */
  overflow: hidden;
  border: 1px solid var(--border-color);
  padding-left: 60px;
  transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .animation-container {
    width: 130%;
    height: 450px;
    padding-left: 40px;
    padding-top: 10px;
  }
}

@media (max-width: 992px) {
   .canvas {
            display: block; /* Removes extra space below the canvas */
            width: 10vh;
            height: 10vh;

        }
  .animation-container {
    width: 139%;
    height: 750px;
    padding-left: 30px;
    padding-top: 50px;
  }
}

/* Hide animation when screen width is smaller than 736px */
@media (max-width: 736px) {
  .animation-container {
    display: none;
  }
}


        #networkCanvas {
            display: block;
            width: 100%;
            height: 100%;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        /* Responsive Design */
        @media (min-width: 640px) { /* sm breakpoint */
            .button-group {
                flex-direction: row;
                align-items: center;
            }
            .btn {
                width: auto;
            }
        }

        @media (min-width: 768px) { /* md breakpoint */
            h1 {
                font-size: 3rem; /* text-5xl */
            }
        }
        
        @media (min-width: 1024px) { /* lg breakpoint */
            .grid-container {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            .animation-container {
                height: 600px;
            }
        }

     