  /* Global Styles */
  * {
      box-sizing: border-box;
  }

  body {
      font-family: Arial, sans-serif;
      font-size: 16px;
      line-height: 1.6;
      background-color: #fff;
      color: #333;
  }

  a {
      color: #0077c2;
      text-decoration: none;
  }

  a:hover {
      color: #004e8e;
      text-decoration: underline;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      margin-top: 0;
  }

  img {
      max-width: 100%;
  }

  /* Navigation */
  .navbar {
      background-color: #001f3f;
      color: #fff;
  }

  .navbar-brand {
      font-size: 24px;
      font-weight: bold;
  }

  .navbar-nav li {
      margin-left: 10px;
  }

  .navbar-nav li a {
      color: #fff;
  }

  .navbar-nav li a:hover {
      color: #d8d8d8;
  }

  /* Slideshow */
  .carousel-item {
      height: 500px;
      background-color: #001f3f;
  }

  .carousel-item h1 {
      font-size: 48px;
      font-weight: bold;
      color: #fff;
      text-shadow: 2px 2px 2px #000;
      margin-top: 200px;
      text-align: center;
  }

  .carousel-img {
      height: 400px;
      /* adjust as needed */
      width: 100%;
      object-fit: cover;
  }

  .carousel-caption {
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      padding: 50px;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
  }


  /* About Us Section */
  #about {
      background-color: #fff;
      padding: 80px 0;
      text-align: center;
  }

  #about .section-title  {
      color: #1a2e4f;
      font-size: 40px;
      font-weight: 700;
      margin-bottom: 50px;
      text-transform: uppercase;
  }

  #about .section-line {
      background-color: #1a2e4f;
      height: 3px;
      margin: 0 auto 50px auto;
      width: 80px;
  }

  #about .section-description {
      color: #555;
      font-size: 18px;
      line-height: 1.5;
      margin-bottom: 30px;
  }

  #about .section-description:last-child  {
      margin-bottom: 0;
  }

    /* Service Section */
    #service {
        background-color: #fff;
        padding: 80px 0;
        text-align: center;
    }
  
    #service .section-title  {
        color: #1a2e4f;
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 50px;
        text-transform: uppercase;
    }
  
    #service .section-line {
        background-color: #1a2e4f;
        height: 3px;
        margin: 0 auto 50px auto;
        width: 80px;
    }
  
    #service .section-description {
        color: #555;
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
  
    #service .section-description:last-child  {
        margin-bottom: 0;
    }

  .flip-row {

      padding-left: 7rem;
  }
  

  .flip-card {
      background-color: transparent;
      width: 300px;
      height: 300px;
      perspective: 1000px;
      float: left;
      margin: 10px;
  }

  .flip-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.6s;
      transform-style: preserve-3d;
  }

  .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
  }

  .flip-card-front,
  .flip-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
  }

  .flip-card-front {
      background-color: #f1f1f1;
      color: #333;
  }

  .flip-card-back {
      background-color: navy;
      color: white;
      transform: rotateY(180deg);
  }

  .flip-card-back h1 {
      font-size: 2rem;
      margin-top: 30%;
  }

  .flip-card-back p {
      font-size: 1.2rem;
  }

  .flip-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .section-title {
      text-align: center;
      margin-bottom: 50px;
  }

  .section-title h2 {
      font-size: 3rem;
      color: navy;
  }

  .section-description {
      text-align: justify;
      margin: 0 auto;
      width: 80%;
  }

  .section-description p {
      font-size: 1.2rem;
      line-height: 1.8;
      color: #666;
  }

  footer {
    background-color: #001f3f;
    color: #fff;
    margin: 1px;
  }

