.footer {
    background-color: #0D2239;
    color: #fff;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
  }

  .footer__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .about-us-icons {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.icon-wrapper {
    position: relative;
    display: inline-block;
}

.icon-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.icon-wrapper img:hover {
    transform: scale(1.1);
}

.icon-wrapper::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    white-space: nowrap;
}

.icon-wrapper:hover::before {
    opacity: 1;
    visibility: visible;
}

.icon-wrapper::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
@keyframes fadeInRotate {
    0% {
        opacity: 0;
        transform: scale(0.8) rotateX(-15deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(0);
    }
}

@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.icon-wrapper:hover::after {
    opacity: 1;
    visibility: visible;
}
.about-us-icons img {
    width: 60px;
    height: 60px;
    background-color: #2a7fff;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.about-us-icons img:hover {
    transform: scale(1.1);
}
  .footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 40px;
    border-bottom: 1px solid #444;
  }

  .footer__logo img {
    height: 80px;
  }

  .footer__nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
  }

  .footer__nav-list a {
    color: #bbb;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }

  .footer__nav-list a:hover {
    color: #fff;
  }

  .footer__departments {
    margin: 50px 0;
  }

  .footer__subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ddd;
  }

  .footer__logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer__logos img {
    height: 50px;
    transition: transform 0.3s ease;
  }

  .footer__logos img:hover {
    transform: scale(1.1);
  }

  .footer__bottom {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #bbb;
  }

  @media (max-width: 1200px) {


    .about-us-icons img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 992px) {


    .about-us-icons img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {

.contact-boxes {
    display: inline-block !important;
    gap: 90px;
	padding-top: 8% !important;
	margin: 0 auto;
    align-items: center;
}

.contact-card {
 
    margin-bottom: 15% !important;
}


    .about-us-icons img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 976px) {

    .footer__top{
        justify-content: center !important;
    }

    .about-us-icons img {
        width: 50px;
        height: 50px;
    }
}


@media (max-width: 992px) {
    .footer__content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer__departments,
    .footer__contact {
        width: 100%;
    }

    .contact-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-box {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .contact-box {
        width: 100%;
    }

    .footer__nav-list {
        flex-direction: column;
        gap: 15px;
    }
}


.contact-boxes {
    display: flex;
    gap: 90px;
	padding-top: 4%;
	margin: 0 auto;
	align-items: baseline;

}

.contact-card {
 
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    width: 100%;
}

.contact-card h4 {
    margin-bottom: 5px;
    font-size: 1.5rem;
    color: white;
}

.contact-card p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: white;
}

.contact-btn {
    display: block;
    margin: 10px 0;
    padding: 15px 20px;
    background-color: #2a7fff;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.contact-btn:hover {
    background-color: #1a5dcc;
}

.contact-btn i {
    margin-right: 10px;
}


.about-us-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.icon-wrapper img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.icon-wrapper:hover img {
    transform: scale(1.1);
}

.footer__bottom {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #bbb;
}