* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Navigation */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-bottom: 1px solid #e0e7ff;
  }
  
  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
  }
  
  .logo {
    height: 3rem;
    width: auto;
  }
  
  .nav-menu {
    display: flex;
    gap: 1rem;
  }
  
  .nav-link {
    padding: 0.5rem 0.75rem;
    border: none;
    background: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .nav-link:hover,
  .nav-link.active {
    color: #4338ca;
    background-color: #eef2ff;
  }
  
  .mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    border-radius: 0.375rem;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .mobile-menu-btn:hover {
    color: #4338ca;
    background-color: #eef2ff;
  }
  
  .mobile-menu {
    display: none;
    padding: 0.5rem 0;
    background: white;
    border-top: 1px solid #e0e7ff;
  }
  
  .mobile-nav-link {
    display: block;
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: none;
    background: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .mobile-nav-link:hover {
    color: #4338ca;
    background-color: #eef2ff;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    padding-top: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  /* Particles.js container */
  .particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
  }
  
  .hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4338ca 0%, #6366f1 50%, #8b5cf6 100%);
    z-index: 2;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 3;
  }
  
  .hero-image-overlay {
    position: absolute;
    inset: 0;
    background-image: url("https://via.placeholder.com/1200x800");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 4;
  }
  
  .floating-icons {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
  }
  
  .floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
  }
  
  .floating-icon i {
    width: 2rem;
    height: 2rem;
  }
  
  .icon-1 {
    top: 5rem;
    left: 2.5rem;
    animation: bounce 3s infinite;
  }
  
  .icon-2 {
    top: 8rem;
    right: 4rem;
    animation: bounce 4s infinite 1s;
  }
  
  .icon-3 {
    top: 25%;
    left: 25%;
    animation: pulse 3s infinite 2s;
  }
  
  .icon-4 {
    bottom: 8rem;
    left: 5rem;
    animation: bounce 3.5s infinite 0.5s;
  }
  
  .icon-5 {
    top: 33%;
    right: 25%;
    animation: pulse 4s infinite 1.5s;
  }
  
  .icon-6 {
    bottom: 10rem;
    right: 3rem;
    animation: bounce 3s infinite 2.5s;
  }
  
  .icon-7 {
    top: 50%;
    left: 3rem;
    animation: pulse 3.5s infinite 3s;
  }
  
  .icon-8 {
    bottom: 5rem;
    left: 33%;
    animation: bounce 4s infinite 1s;
  }
  
  .hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  .hero-logo img {
    height: 8rem;
    width: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  }
  
  .hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  }
  
  .hero-subtitle {
    display: block;
    color: #c7d2fe;
  }
  
  .hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }
  
  .hero-btn {
    background: white;
    color: #4338ca;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
  }
  
  .hero-btn:hover {
    background: #eef2ff;
    color: #3730a3;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Sections */
  .section {
    padding: 5rem 2rem;
  }
  
  .section-gray {
    background-color: #f9fafb;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
  }
  
  .section-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
  }
  
  /* About Section */
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
  }
  
  .about-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
  }
  
  .expertise-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .expertise-item {
    display: flex;
    gap: 1rem;
  }
  
  .expertise-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #4338ca;
    margin-top: 0.25rem;
    flex-shrink: 0;
  }
  
  .expertise-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
  }
  
  .expertise-description {
    color: #6b7280;
  }
  
  .about-image {
    background: #eef2ff;
    padding: 2rem;
    border-radius: 0.5rem;
  }
  
  .about-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.5rem;
  }
  
  .why-choose-us {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  /* Cards */
  .card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
  }
  
  .card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .card-header {
    margin-bottom: 1rem;
  }
  
  .card-icon {
    width: 3rem;
    height: 3rem;
    color: #4338ca;
    margin: 0 auto 0.75rem;
  }
  
  .card-icon-large {
    width: 4rem;
    height: 4rem;
    color: #4338ca;
    margin: 0 auto 1rem;
  }
  
  .card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
  }
  
  .card-description {
    color: #6b7280;
    font-size: 0.875rem;
  }
  
  .card-content p {
    color: #6b7280;
  }
  
  /* Capabilities */
  .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  /* Infrastructure */
  .infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
  
  .infrastructure-item {
    text-align: center;
    padding: 1.5rem;
    background: #eef2ff;
    border-radius: 0.5rem;
  }
  
  .infrastructure-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: #4338ca;
    margin: 0 auto 0.75rem;
  }
  
  .infrastructure-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
  }
  
  .infrastructure-description {
    font-size: 0.875rem;
    color: #6b7280;
  }
  
  /* Leadership */
  .leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  /* Quality */
  .quality-content {
    background: #eef2ff;
    border-radius: 0.5rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  
  .quality-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
  }
  
  .quality-description {
    color: #374151;
    margin-bottom: 1.5rem;
  }
  
  .badges {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #ddd6fe;
    color: #5b21b6;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
  }
  
  .quality-image img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  /* Contact */
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .contact-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
  }
  
  .contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .contact-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #4338ca;
    margin-top: 0.25rem;
    flex-shrink: 0;
  }
  
  .contact-label {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
  }
  
  .contact-text {
    color: #6b7280;
  }
  
  .contact-form-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .form-input,
  .form-textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    transition: border-color 0.2s;
  }
  
  .form-input:focus,
  .form-textarea:focus {
    outline: none;
    border-color: #4338ca;
    box-shadow: 0 0 0 3px rgba(67, 56, 202, 0.1);
  }
  
  .form-textarea {
    min-height: 7.5rem;
    resize: vertical;
  }
  
  .form-button {
    width: 100%;
    padding: 0.75rem;
    background: #4338ca;
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .form-button:hover {
    background: #3730a3;
  }
  
  /* Footer */
  .footer {
    background: #111827;
    color: white;
    padding: 3rem 0;
  }
  
  .footer-content {
    text-align: center;
  }
  
  .footer-logo {
    height: 4rem;
    width: auto;
    margin: 0 auto 1rem;
    /* filter: brightness(0) invert(1); */
  }
  
  .footer-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  
  .footer-motto {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  
  .footer-divider {
    height: 1px;
    background: #374151;
    margin-bottom: 1.5rem;
  }
  
  .footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
  }
  
  /* Animations */
  @keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
      transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
      transform: translate3d(0, -30px, 0);
    }
    70% {
      transform: translate3d(0, -15px, 0);
    }
    90% {
      transform: translate3d(0, -4px, 0);
    }
  }
  
  @keyframes pulse {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.5;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-menu {
      display: none;
    }
  
    .mobile-menu-btn {
      display: block;
    }
  
    .mobile-menu.show {
      display: block;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-description {
      font-size: 1rem;
    }
  
    .section-title {
      font-size: 1.875rem;
    }
  
    .about-content,
    .quality-content,
    .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .why-choose-us,
    .capabilities-grid,
    .infrastructure-grid,
    .leadership-grid {
      grid-template-columns: 1fr;
    }
  
    .floating-icons {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 0 0.5rem;
    }
  
    .hero-content {
      padding: 3rem 1rem;
    }
  
    .section {
      padding: 3rem 2rem;
    }
  
    .card {
      padding: 1rem;
    }

    .hero{
      min-height: 0!important;
    }
  }
  