.body{
    margin: 0;
    padding: 0;
    background-color: #fff;
}


  .text-center {
    text-align: center;
  }

  .services-section {
    padding: 50px 0;
    background-color:  #ECF3F9;
        
  }
  .services-section h2 {
    font-size: 2.5rem;
    color: #191919;
    font-weight: bold;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .flag-icon {
    width: 50px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  .custom1-hr {
    width: 60px;
    height: 4px;
    background-color: #f77f00;
    margin: 0 auto 40px;
    border: none;
  }
  .s-hero-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-content: center;
  }
  .port-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #003366;
    padding: 10px 20px;
    border-radius: 8px;
    transition: transform 0.3s, background-color 0.3s;
    white-space: nowrap;
  }
  .port-item i {
    font-size: 1rem;
    color: #fff;
  }
  .port-item span {
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
  }
  .port-item:hover {
    transform: scale(1.05);
    background-color: #f77f00;
  }
  .port-item:hover i {
    color: #ffffff;
  }
  .port-item:hover span {
    color: #ffffff;
  }

/* Responsive Styling */
@media (max-width: 768px) {
        .section-title {
        font-size: 1.8em;
        text-align: center;
    }
    .s-hero-links {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      }

    .ports-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .port-item {
        flex: 1 0 calc(50% - 10px);
        justify-content: center;
      }

    .port-item {
        width: 100%;
        font-size: 1rem;
        margin: 10px 0;
    }

    .ports-img {
        text-align: center;
    }

    .ports-img h3 {
        font-size: 1.5em;
    }

    .ports-img p {
        font-size: 1em;
        margin-left: 0;
    }

    .port-item {
        width: 100%;
        justify-content: center;
      }
}


@media (max-width: 480px) {
    .ports-we-served-section {
        padding: 30px 10px;
    }

    .section-title {
        font-size: 1.5em;
    }

    .port-item {
        font-size: 0.9rem;
        padding: 10px;
    }

    .ports-img img {
        width: 100%;
        max-height: 200px;
    }

    .ports-img h3 {
        font-size: 1.2em;
        margin-top: 10px;
    }

    .ports-img p {
        font-size: 0.9em;
        margin-top: 10px;
    }
}
