    .heading-effect {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1a4a72;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 2px;
    }
    .heading-effect::after{
        content: '';
        position: absolute;
        width: 80px;
        height: 4px;
        background-color: #ffc107;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }
  .airline-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
  }

  .airline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .airline-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .airline-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .airline-card:hover .airline-logo img {
    transform: scale(1.1);
  }

  .airline-card:hover .airline-logo {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  .airline-name-link {
    text-decoration: none;
    color: #212529; /* Bootstrap text-dark */
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  .airline-name-link:hover {
    color: #0d6efd; /* Bootstrap primary */
    text-shadow: 0 1px 2px rgba(13, 110, 253, 0.3);
  }.airline-name-link {
    text-decoration: none;
    color: #212529; /* Bootstrap text-dark */
    transition: color 0.3s ease, text-shadow 0.3s ease;
  }

  .airline-name-link:hover {
    color: #0d6efd; /* Bootstrap primary */
    text-shadow: 0 1px 2px rgba(13, 110, 253, 0.3);
  }
  
  
  
  
  
  
  
  
  
  
  
  
  .office-block {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  .office-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .airline-logo-small {
    width: 35px;
    height: 35px;
    object-fit: cover;
    background-color: #fff;
    transition: transform 0.3s ease;
  }

  .office-block-small:hover .airline-logo {
    transform: scale(1.1);
  }

  .country-flag-small {
    width: 40px;
    height: auto;
    transition: transform 0.3s ease;
  }

  .country-flag-small:hover {
    transform: scale(1.1);
  }
 .office-title {
    font-size: 1rem;
    margin: 4px 0 0 0;       /* Only top margin */
    line-height: 1.3;
  }

  .office-link {
    display: inline-block;
    text-decoration: none;
    color: #212529;
    position: relative;
    transition: color 0.3s ease;
    padding: 0;              /* No padding */
    margin: 0;               /* No margin */
  }

  .office-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #0d6efd;
    transition: width 0.3s ease;
    transform: translateX(-50%);
  }

  .office-link:hover {
    color: #0d6efd;
  }

  .office-link:hover::after {
    width: 100%;
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .country-block {
    transition: transform 0.3s ease;
  }

  .country-block:hover {
    transform: translateY(-4px);
  }

  .country-flag {
    width: 100px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .country-block:hover .country-flag {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .country-name {
    color: #212529;
    transition: color 0.3s ease;
  }

  .country-block:hover .country-name {
    color: #0d6efd; /* Bootstrap Primary */
  }
