
/* ========================================
*************HEADER SECTION*************
======================================== */

* {
  margin: 0;
  padding: 0px;
  box-sizing: border-box;
}

.navbar {
  background-color: #00356d !important;
}

.navbar-brand {
  width: 190px;
  height: auto;
}

@media screen and (min-width: 992px) {
  .nav-item {
    padding: 0px 3px;
  }
}

.navbar-nav .nav-link {
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 8px 15px;
  border-radius: 5px;
}

.navbar-nav .nav-link:hover {
  color: #00356d !important;
  background-color: white;
  border-radius: 5px;
}

.nav-link.active {
  color: #00356d !important;
  background-color: white;
}

.hero-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url(img/an2.png);
  background-size: cover;
  background-position: center;
  min-height: 90vh;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section h1 {
  animation: slideInUp 0.8s ease-out 0.5s forwards;
}

.hero-section p {
  animation: slideInUp 0.8s ease-out 0.55s forwards;
}

.hero-section .btn {
  animation: slideInUp 0.8s ease-out 0.6s forwards;
}

.maskimage {
  width: 100%;
}

.fixed-background-section {
  background-image: linear-gradient(rgba(0, 0, 0, 0.295), rgba(0, 0, 0, 0.249)),
    url(img/section-bg.jpg);

  background-attachment: fixed;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.fixed-background-section h1 {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.underline-container {
  color: #00356d;
}
.stylish-gradient-line {
  height: 7px;
  width: 200px;
  margin: 10px auto;
  background: linear-gradient(
    to right,
    #00356d00 0%,
    #00356d 50%,
    #00356d00 100%
  );
}

.card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.134);
}

.card:hover {
  transform: translate(0px, -15px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.social-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  background-size: cover;
  background-repeat: no-repeat;
}

.facebook {
  background-image: url("img/facebook.png");
}
.youtube {
  background-image: url("img/youtube.png");
}
.instagram {
  background-image: url("img/instagram.png");
}
.twitter {
  background-image: url("img/twitter.png");
}

.facebook:hover {
  background-image: url("img/facebook-Copy.png");
}
.youtube:hover {
  background-image: url("img/youtube-Copy.png");
}
.instagram:hover {
  background-image: url("img/instgram-copy.png");
}
.twitter:hover {
  background-image: url("img/twitter-Copy.png");
}

.Quick-link {
  text-decoration: none;
}

.Quick-link:hover {
  color: white !important;
}

.text-desc {
  color: rgba(255, 255, 255, 0.81)!important;
}

footer {
  background-color: #00356d;
  color: white;
  text-align: center;
  font-size: 20px;
}

.footer-img {
  width: 20px;
}
