 body {
      font-family: 'Roboto', sans-serif;
      background-color: #f8f9fa;
    }
    /* Navbar */
    .navbar {
      background-color: #fff;
      border-bottom: 3px solid #0055a5;
      padding: 1.5rem 0;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .navbar-brand img {
      height: 50px;
    }
    .nav-link {
      font-size: 1.1rem;
      font-weight: 500;
      color: #003087;
      transition: color 0.3s;
    }
    .nav-link:hover {
      color: #0055a5;
    }
    .dropdown-menu {
      border: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .dropdown-item {
      font-weight: 400;
      color: #003087;
    }
    .dropdown-item:hover {
      background-color: #f8f9fa;
      color: #0055a5;
    }
    /* Carousel */
    .carousel-item {
      height: 80vh;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: rgb(226, 101, 101);
      transition: opacity 2s ease-in-out;
    }
    .carousel-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    }
    .carousel-caption {
      position: relative;
      z-index: 1;
      padding: 2rem;
      max-width: 800px;
    }
    .carousel-caption h1 {
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 1rem;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    .carousel-caption p {
      font-size: clamp(1rem, 2vw, 1.3rem);
      font-weight: 300;
      margin: 0 auto 2rem;
      line-height: 1.6;
    }
    .carousel-caption .btn {
      font-size: 1.1rem;
      font-weight: 500;
      padding: 0.8rem 2.5rem;
      border-radius: 50px;
      background-color: #0055a5;
      border: 2px solid #0055a5;
      transition: all 0.5s ease;
    }
    .carousel-caption .btn:hover {
      background-color: transparent;
      color: #fff;
      border-color: #fff;
      transform: translateY(-2px);
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      padding: 1.5rem;
    }
    .carousel-indicators [data-bs-target] {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: #fff;
      opacity: 0.7;
    }
    .carousel-indicators .active {
      opacity: 1;
      background-color: #0055a5;
    }
    /* Services Section */
    .service-section {
      background-color: #fff;
      padding: 4rem 0;
    }
    .service-card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }
    .service-img {
      height: 220px;
      object-fit: cover;
    }
    .card-title {
      font-size: 1.4rem;
      font-weight: 500;
      color: #003087;
    }
    .card-text {
      font-size: 1rem;
      color: #4a4a4a;
      line-height: 1.5;
    }
    .btn-outline-primary {
      border-color: #0055a5;
      color: #0055a5;
      font-weight: 500;
      border-radius: 50px;
      padding: 0.5rem 1.5rem;
      transition: all 0.3s ease;
    }
    .btn-outline-primary:hover {
      background-color: #0055a5;
      color: #fff;
    }
    /* Footer */
    footer {
      background-color: #003087;
      color: white;
      padding: 3rem 0;
    }
    .footer-links a {
      color: #f8f9fa;
      text-decoration: none;
      margin: 0 1rem;
      font-size: 1rem;
      font-weight: 400;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: #80b3ff;
    }
    .social-icons a {
      color: #fff;
      font-size: 1.2rem;
      margin: 0 0.5rem;
      transition: color 0.3s;
    }
    .social-icons a:hover {
      color: #80b3ff;
    }
    /* Responsive Adjustments */
    @media (max-width: 768px) {
      .navbar {
        border-bottom: 2px solid #0055a5;
        padding: 1rem 0;
      }
      .nav-link {
        font-size: 1rem;
      }
      .carousel-item {
        height: 60vh;
      }
      .carousel-caption h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
      }
      .carousel-caption p {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
      }
      .carousel-caption .btn {
        padding: 0.6rem 2rem;
        font-size: 1rem;
      }
      .service-img {
        height: 180px;
      }
    }