  :root {
      --primary-blue: #064792;
      --light-blue: #F8FAFC;
      --secondary-blue: #0A5AA3;
      --dark-blue: #053061;
      --text-gray: #64748B;
      --light-gray: #F1F5F9;
      --border-color: #E2E8F0;
      --border-color-2: #ffc80b;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
  }

  .navbar-brand img {
      height: 40px;
  }

  .rounded-2xl {
      border-radius: 12px;
  }

  .border-2 {
      border: 2px solid var(--border-color);
  }

  .hero-section {
      background: #FFFFFF;
      padding: 100px 0;
      position: relative;
  }

  .hero-content h1 {
      color: var(--dark-blue);
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
  }

  .hero-content p {
      color: var(--text-gray);
      font-size: 1.1rem;
      margin-bottom: 2rem;
  }

  .btn-primary {
      background-color: var(--primary-blue);
      border-color: var(--primary-blue);
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 25px;
  }

  .btn-primary:hover {
      background-color: var(--secondary-blue);
      border-color: var(--secondary-blue);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(6, 71, 146, 0.3);
  }

  .btn-second {
      font-weight: 500;
      padding: 10px 26px;
      font-size: 18px;
      min-width: 150px;
      text-align: center;
      border-radius: 6px;
      color: #013570;
      background: #ffcc25;
      transition: all .3s ease-in-out 0s;
  }

  .btn-second:hover {
      background: #013570;
      color: #fff;
  }

  .about-section {
      background-color: var(--light-blue);
      padding: 100px 0;
      position: relative;
  }

  .about-section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: var(--primary-blue);
      border-radius: 2px;
  }

  .about-section h2 {
      color: var(--dark-blue);
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 2rem;
  }

  .about-section p {
      color: var(--text-gray);
      font-size: 1rem;
      line-height: 1.8;
  }

  .services-section {
      padding: 100px 0;
      background: #FFFFFF;
  }

  .service-card {
      background: #FFFFFF;
      border-radius: 15px;
      padding: 30px;
      margin-bottom: 30px;
      border: 1px solid var(--border-color);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary-blue);
      transform: translateX(-100%);
      transition: transform 0.3s ease;
  }

  .service-card:hover::before {
      transform: translateX(0);
  }

  .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(6, 71, 146, 0.15);
  }

  .service-icon {
      width: 60px;
      height: 60px;
      background: var(--light-blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
  }

  .service-icon i {
      color: var(--primary-blue);
      font-size: 24px;
  }

  .service-item {
      margin-bottom: 2rem;
  }

  .service-item h4 {
      color: var(--dark-blue);
      font-weight: 600;
      margin-bottom: 0.8rem;
  }

  .service-item p {
      color: var(--text-gray);
      font-size: 0.95rem;
  }

  .quality-section {
      background-color: var(--light-gray);
      padding: 80px 0;
      position: relative;
  }

  .quality-card {
      background: #FFFFFF;
      border-radius: 15px;
      padding: 40px;
      border: 1px solid var(--border-color);
      box-shadow: 0 10px 30px rgba(6, 71, 146, 0.1);
  }

  .quality-section h3 {
      color: var(--dark-blue);
      font-weight: 700;
      margin-bottom: 1.5rem;
  }

  .quality-list {
      list-style: none;
      padding: 0;
  }

  .quality-list li {
      color: var(--text-gray);
      margin-bottom: 0.8rem;
      position: relative;
      padding-left: 20px;
  }

  .quality-list li:before {
      content: '•';
      color: var(--primary-blue);
      font-weight: bold;
      position: absolute;
      left: 0;
  }

  .industries-section {
      padding: 100px 0;
      text-align: center;
      background: #FFFFFF;
  }

  .industries-section h2 {
      color: var(--dark-blue);
      font-weight: 700;
      margin-bottom: 3rem;
  }

  .industry-card {
      background: #FFFFFF;
      border-radius: 15px;
      padding: 40px 20px;
      margin-bottom: 30px;
      box-shadow: 0 15px 35px rgba(6, 71, 146, 0.1);
      transition: all 0.3s ease;
      height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      border: 1px solid var(--border-color);
      position: relative;
      overflow: hidden;
  }

  .industry-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary-blue);
      transform: scaleX(0);
      transition: transform 0.3s ease;
  }

  .industry-card:hover::before {
      transform: scaleX(1);
  }

  .industry-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 50px rgba(6, 71, 146, 0.2);
  }

  .industry-card i {
      font-size: 3rem;
      color: var(--primary-blue);
      margin-bottom: 1rem;
  }

  .industry-card h5 {
      color: var(--dark-blue);
      font-weight: 600;
      font-size: 0.9rem;
      text-align: center;
  }

  .partner-section {
      background-color: var(--light-blue);
      padding: 100px 0;
  }

  .contact-form {
      background: #FFFFFF;
      border-radius: 20px;
      padding: 50px;
      box-shadow: 0 20px 40px rgba(6, 71, 146, 0.15);
      border: 1px solid var(--border-color);
  }

  .partner-section h3 {
      color: var(--dark-blue);
      font-weight: 700;
      margin-bottom: 1.5rem;
  }

  .form-control {
      border-radius: 25px;
      padding: 12px 20px;
      border: 1px solid #ddd;
  }

  .btn-submit {
      background-color: var(--primary-blue);
      border: none;
      border-radius: 25px;
      padding: 12px 30px;
      color: white;
      font-weight: 600;
      width: 100%;
  }

  .btn-submit:hover {
      background-color: var(--dark-blue);
      border: none;
      border-radius: 25px;
      padding: 12px 30px;
      color: white;
      font-weight: 600;
      width: 100%;
  }

  .team-section {
      padding: 80px 0;
      text-align: center;
  }

  .team-section h2 {
      color: var(--dark-blue);
      font-weight: 700;
      margin-bottom: 3rem;
  }

  .team-member {
      text-align: center;
      margin-bottom: 2rem;
  }

  .team-member img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin-bottom: 1rem;
      object-fit: cover;
  }

  .team-member h6 {
      color: var(--dark-blue);
      font-weight: 600;
      margin-bottom: 0.3rem;
  }

  .team-member small {
      color: var(--text-gray);
  }

  .advisory-section {
      background-color: #f8f9fa;
      padding: 60px 0;
      text-align: center;
  }

  .advisory-section h3 {
      color: var(--dark-blue);
      font-weight: 700;
      margin-bottom: 2rem;
  }

  footer {
      background-color: var(--dark-blue);
      color: #FFFFFF;
      padding-bottom: 30px;
  }

  .footer-section h5 {
      color: #FFFFFF;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
  }

  .footer-section h5::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--primary-blue);
  }

  .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-links li {
      margin-bottom: 10px;
  }

  .footer-links a {
      color: #94A3B8;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 14px;
  }

  .footer-links a:hover {
      color: #FFFFFF;
  }

  .footer-contact p {
      color: #94A3B8;
      margin-bottom: 8px;
      font-size: 14px;
  }

  .footer-contact i {
      color: var(--primary-blue);
      margin-right: 10px;
      width: 18px;
  }

  .social-links {
      margin-top: 20px;
  }

  .social-links a {
      color: #94A3B8;
      font-size: 20px;
      margin-right: 15px;
      transition: color 0.3s ease;
  }

  .social-links a:hover {
      color: var(--primary-blue);
  }

  .footer-bottom {
      border-top: 1px solid #334155;
      padding-top: 30px;
      margin-top: 40px;
      text-align: center;
  }

  .footer-bottom p {
      color: #94A3B8;
      font-size: 14px;
      margin: 0;
  }

  @media (max-width: 768px) {

      .hero-content h1 {
          font-size: 2rem;
      }

      .hero-section {
          padding: 40px 0;
      }

      .about-section,
      .services-section,
      .industries-section,
      .team-section,
      .partner-section {
          padding: 80px 0;
      }

      .contact-form {
          padding: 30px;
      }

      .industry-card {
          height: auto;
          padding: 30px 15px;
      }

      .team-member img {
          width: 100px;
          height: 100px;
      }

      .service-card {
          padding: 25px 20px;
      }
  }



  .loading {
      text-align: center;
      color: white;
      font-size: 1.2rem;
      padding: 40px;
  }

  .category-section {
      margin-bottom: 60px;
  }

  .category-title {
      text-align: center;
      font-size: 2.5rem;
      color: #333;
      margin-bottom: 40px;
      position: relative;
  }

  .category-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      border-radius: 2px;
  }

  .carousel-container {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
  }

  .carousel-wrapper {
      display: flex;
      padding: 30px 0;
      gap: 20px;
  }

  .member-card {
      text-align: center;
      position: relative;
      overflow: hidden;
      flex: 0 0 auto;
  }

  .member-image {
      width: 100%;
      height: auto;
      margin: 0px;
      object-fit: cover;
      margin-bottom: 20px;
  }

  .member-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      z-index: 1;
  }

  .member-name {
      font-size: 1rem;
      color: #333;
      margin-bottom: 5px;
      font-weight: 600;
  }

  .member-position {
      color: #585858;
      font-weight: 500;
      margin-bottom: 15px;
      font-size: 0.75rem;
  }

  /* Responsive styles */
  @media (min-width: 1400px) {
      .member-card {
          width: calc((100% - 100px) / 6);
          min-width: calc((100% - 100px) / 6);
      }
  }

  @media (min-width: 1200px) and (max-width: 1399px) {
      .member-card {
          width: calc((100% - 60px) / 4);
          min-width: calc((100% - 60px) / 4);
      }
  }

  @media (min-width: 992px) and (max-width: 1199px) {
      .member-card {
          width: calc((100% - 40px) / 3);
          min-width: calc((100% - 40px) / 3);
      }
  }

  @media (min-width: 768px) and (max-width: 991px) {
      .member-card {
          width: calc((100% - 20px) / 2);
          min-width: calc((100% - 20px) / 2);
      }
  }

  @media (max-width: 767px) {
      .member-card {
          width: 100%;
          min-width: 100%;
      }

      .category-title {
          font-size: 1.8rem;
      }

      .category-section {
          padding: 25px 15px;
          margin-bottom: 40px;
      }

      .nav-btn {
          width: 40px;
          height: 40px;
          font-size: 1.2rem;
      }

      .prev-btn {
          left: -20px;
      }

      .next-btn {
          right: -20px;
      }
  }