@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');


.navbar-nav .nav-item .nav-link{
  color: white;
  font-weight: 400
}
.nav-link{
  position: relative;
}
.nav-link::after{
  content: '';
  opacity: 0;
  height: 2px;
  width: 100%;
  background-color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.4s linear;
}
.nav-link:hover::after{
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left;
}
.nav-item a{
  margin: 5px;;
}
.navbar{
  background-image: linear-gradient(135deg, #1E293B, #3B82F6);
}
marquee{
  border: 2px;
  background-image: linear-gradient(to right,#004080 , #1E293B);
  line-height: 40px;
  color: white;
  font-size: 1rem;
}

.scrolling-about {
    background-color: #004080;
    color: #fff;
    line-height: 10px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.row {
    justify-content: center;
}

.location-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.location-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.location-card .card-body {
    padding: 20px;
    background: linear-gradient(135deg, #004080, #001f40);
    color: white;
}

.location-card h5 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffcc00;
}

.location-card p {
    font-size: 1rem;
    margin: 10px 0 0;
    color: #fff;
}

.contact-section {
  background: #1E293B;
  color: white;
  padding: 40px 0;
  text-align: center;
  width: 100%;
  margin-top: 80px;
}

.social-icons {
  margin-top: 5px;
}

.social-icons a {
  color: white;
  font-size: 30px;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #3B82F6;
}
.email-form {
  display: inline-block;
  margin-top: 15px;
}

.email-form input[type="email"] {
  padding: 12px;
  border-radius: 8px;
  width: 250px;
  font-size: 16px;
  margin-right: 10px;
}

.email-form button {
  padding: 12px 20px;
  background-color: #3B82F6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.email-form button:hover {
  background-color: #2563EB;
}

.contact-section a {
  color: white;
  text-decoration: underline;
}