/* Global Font */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo Heading and Line */
/* Logo Heading */
.brand-title {
  font-size: 1.5rem;
  color: #003087;
}

/* Horizontal Line Below Title */
.logo-line {
  height: 4px;
  border: none;
  border-top: 4px solid rgb(34, 73, 153);
  margin: 4px 0;
  width: 100%;
  max-width: 350px;
}

/* Subheading */
.brand-location {
  font-size: 1rem;
  color: #003087;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .navbar-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .brand-title {
    font-size: 1.2rem;
  }

  .brand-location {
    font-size: 0.95rem;
    margin-left: 0;
  }

  .logo-line {
    width: 80%;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .brand-title {
    font-size: 1.4rem;
  }

  .brand-location {
    font-size: 1rem;
  }
}


/* Social Icons */
.social-icons a {
  font-size: 1.5rem;
  margin-left: 10px;
  color: white;
}

#facebook {
  color: #1877f2;
}
#instagram {
  color: #c13584;
}
#youtube {
  color: #ff0000;
}

.social-icons a:hover {
  color: #f7c700;
}

.navbar-nav .nav-link {
  color: #2a37a8 !important;
  margin: 0 10px;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  transition: 0.3s;
  font-family: "Times New Roman", Times, serif;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #f7c700;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}
.navbar-nav .nav-link:hover {
  color: #f7c700 !important;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-collapse {
    padding-top: 1rem;
  }

  .social-icons {
    margin-right: 0;
  }

  .navbar-nav {
    align-items: center;
  }
}

/* Main Navbar Links */
.navbar-nav .nav-link {
  color: #2a37a8 !important;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 12px;
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #f7c700;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #f7c700 !important;
}

/* Toggler Customization */
.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .navbar-brand {
    flex-direction: column;
    align-items: start;
  }

  .social-icons {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .navbar-nav {
    align-items: center;
  }

  .navbar-collapse {
    padding: 1rem 0;
  }
}
/* News Ticker Container */
.news-ticker {
  width: 100%;
  background: #d7d7d7;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

/* The scrolling content */
.news-ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
  padding-left: 100%;
}

/* Individual news item */
.news-ticker-content span {
  display: inline-block;
  color: #4549af;
  font-size: 1rem;
  font-weight: 900;
  margin-right: 3rem;
}

/* Animation for scrolling */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive font size */
@media (max-width: 768px) {
  .news-ticker-content span {
    font-size: 0.9rem;
    margin-right: 2rem;
  }
}

@media (max-width: 480px) {
  .news-ticker-content span {
    font-size: 0.8rem;
    margin-right: 1.5rem;
  }
}

/*==============================NAVBAR END===================================================================*/

.h1 {
  font-size: 34px;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease-out;
}

.event-block {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 30px auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 1200px;
  animation: fadeInUp 1s ease;
}

.event-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.event-img {
  width: 300px;
  transition: transform 0.5s ease;
}

.event-img:hover {
  transform: scale(1.02);
}

.event-text {
  padding: 20px;
}

.event-title {
  font-size: 24px;
  color: #113d6b;
  margin-bottom: 10px;
  font-weight: 600;
}

.event-description {
  font-size: 18px;
  color: #004080;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/*footer*/

.footer {
  background: url("./M-Images/pexels-vraj-shah-115200-633814.jpg") center/cover
    no-repeat;
  position: relative;
  color: #fff;
  padding: 60px;
  overflow: hidden;
}

.footer-content {
  position: relative;
  display: flex;
  /* flex-wrap: wrap; */
  justify-content: space-around;
  z-index: 1;
  animation: fadeIn 1.5s ease-in;
}

.footer-section {
  /* flex: 1 1 300px; */
  margin: 20px;
  width: 100%;
}
.footer-section h4 {
  color: #ffffff;
}

.footer h1 {
  font-size: 25px;
  margin-bottom: 15px;
  border-bottom: 3px solid rgb(255, 255, 255);
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

.footer p,
.footer a {
  font-size: 20px;
  line-height: 1.6;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffc107;
}

.footer hr {
  border: none;
  border-bottom: 2px solid white;
  margin: 15px 0;
}

.footer button {
  padding: 10px 20px;
  margin: 10px 5px 0 0;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer button:hover {
  background-color: #0056b3;
}

.footer-bottom {
  text-align: center;
  margin-top: 60px;
  font-size: 15px;
  z-index: 1;
  position: relative;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }
}

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .container {
    font-size: 14px;
  }
}
