  <style>
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #fff;
      color: #333;
    }
    header,footer {
      background:linear-gradient(90deg, #102d4a, #14395a, #1e4d7a);
      ;
      color: white;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    header a, footer a {
      color: #00aaff;
      text-decoration: none;
    }
    header a:hover, footer a:hover {
      color: #66ccff;
    }
    .navbar-brand img {
      height: 50px;
    }
    .carousel-item img {
      width: 100%;
      height: 500px;
      object-fit: cover;
    }
    section { padding: 60px 0; }

    /* About */
    .about-section {
      padding: 60px 20px;
      text-align: center;
    }
    .about-section h2 {
      color: #000;
      margin-bottom: 20px;
    }
    .team {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
    }
    .team-member {
      text-align: center;
      max-width: 250px;
    }
    .team-member img {
      width: 100%;
      border-radius: 50%;
      height: 200px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    /* Services */
    #services {
      background-color: #f8f9fa;
      text-align: center;
      padding: 80px 20px;
    }
    .service-card {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      height: 100%;
    }
    .service-card:hover {
      background: #e6f0ff;
      transform: translateY(-5px);
    }

    /* Projects */
    #projects {
      text-align: center;
      background-color: #f8f9fa;
      padding: 80px 20px;
    }
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 20px;
    }
    .projects-grid img {
      width: 100%;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }
    .projects-grid img:hover {
      transform: scale(1.05);
    }
    .pagination {
      justify-content: center;
      margin-top: 25px;
    }

    footer {
      text-align: center;
      padding: 20px;
      margin-top: 40px;
    }

  :root {
  --bs-primary-rgb: 16, 45, 74;
  --bs-text-opacity: 1;
}
  </style>