/* ================= GLOBAL STYLES ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #f4f4f4;
}

/* ================= MARQUEE ================= */
.marquee-container {
  background: #0c2340;
  padding: 8px 0;
  border-bottom: 1px solid #ffffff;
  overflow: hidden;
}
.marquee-content {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 15s linear infinite;
}
.marquee {
  color: #ffcc66;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Noto Serif Oriya', 'Noto Sans Oriya', sans-serif;
  padding-right: 200px;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

/* ================= HEADER ================= */
.header-container {
  background: #144685;
  color: #fff;
  padding: 3px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.header-logo img {
  width: 140px;
  height: auto;
  background-color: #f8f8f8;
  padding: 8px;
  border-radius: 5px;
}
.college-info {
  line-height: 1.3;
  text-align: left;
  margin-top: -20px;
}
/* Simple Blinking Button */
.blink-btn {
  display: inline-block;
  margin-left: 10px;
  padding: 6px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background-color: #ff6600;
  border-radius: 6px;
  text-decoration: none;
  animation: blink 1.2s infinite;
  transition: background 0.3s ease;
}

.blink-btn:hover {
  background-color: #e65c00;
}

@keyframes blink {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0.4;
  }
}

.college-info h1 {
  font-size: 40px;
  font-weight: bold;
}
.college-info .sub-heading {
  font-size: 20px;
  font-weight: 600;
  color: #ffcc66;
  margin-top: 4px;
}
.college-info p {
  font-size: 16px;
  margin-top: 2px;
}
.highlight {
  color: #ffcc00;
  font-weight: 700;
}

/* Header Right Logos */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}
.header-right-logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

/* ================= NAVBAR ================= */
.navbar-container {
  border-top: 2px solid #f8f8f8;
  background: #205993;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  flex: 1;
}
.nav-links li { position: relative; }
.nav-links li a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.3s;
}
.nav-links li a:hover { background: #205993; }
.dropdown-content {
  display: none;
  position: absolute;
  background: #001a33;
  min-width: 180px;
  top: 100%;
  left: 0;
  z-index: 1000;
  list-style: none;
}
.dropdown-content li a {
  padding: 10px 15px;
  font-size: 14px;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: auto;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  transition: 0.3s;
}
.hamburger.open div:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open div:nth-child(2) {
  opacity: 0;
}
.hamburger.open div:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= FOOTER ================= */
footer {
  background-color: #134686;
  color: #ccc;
  padding: 50px 80px 20px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 2px solid #ffcc44;
  padding-bottom: 30px;
}
.footer-col {
  flex: 1;
  margin: 15px;
  min-width: 200px;
}
.footer-col h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: #bbb;
  text-decoration: none;
  margin: 6px 0;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: #fff; }

/* Center Section */
.center-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.center-info strong {
  display: block;
  font-size: 16px;
  margin-top: 10px;
  color: #fff;
}
.center-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #ccc;
}
.tagline {
  font-size: 13px;
  color: #aaa;
  margin-top: 5px;
  font-style: italic;
}
/* ======= White Background Behind Footer Logos ======= */
.footer-logo img {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
  width: 100px;
  height:80px;
  margin-bottom: 10px;
  object-fit: contain;
}

/* Contact Info */
.contact-info {
  margin-top: 15px;
  text-align: left;
}
.contact-item {
  display: flex;
  align-items: center;
  margin: 8px 0;
  font-size: 14px;
  color: #ccc;
}
.contact-item i {
  margin-right: 8px;
  color: #fff;
  font-size: 16px;
}

/* Social Links */
.social-links {
  margin-top: 15px;
  text-align: center;
  margin-left: -100px;
}
.social-links a {
  display: inline-block;
  margin: 0 8px;
  font-size: 18px;
  color: #bbb;
  transition: color 0.3s ease;
}
.social-links a:hover { color: #fff; }

/* Bottom Links */
.bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 25px;
  gap: 10px;
  position: relative;
}
.bottom-links p {
  font-size: 13px;
  color: #bbb;
  margin: 4px 10px;
}
.bottom-links .powered {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .footer-col { flex: 1 1 40%; margin: 20px; min-width: 250px; }
  .contact-info { text-align: center; }
  .contact-item { justify-content: center; }
  .bottom-links .powered { position: static; transform: none; }
}

@media (max-width: 768px) {
  .footer-container { flex-direction: column; align-items: center; text-align: center; }
  .footer-col { flex: 1 1 100%; margin: 15px 0; min-width: 100%; }
  .center-info { margin-bottom: 25px; }
  .contact-info { text-align: center; }
  .contact-item { justify-content: center; }
}

/* Header Responsive */
@media (max-width: 992px) {
  .college-info h1 { font-size: 30px; }
  .college-info .sub-heading { font-size: 16px; }
  .college-info p { font-size: 14px; }
  .header-logo img { width: 110px; }
  .header-right-logo img { width: 95px; }
}

@media (max-width: 768px) {
  .header-container { flex-direction: column; text-align: center; }
  .header-left { flex-direction: column; align-items: center; }
  .college-info { text-align: center; }
  .header-right { flex-direction: row; margin-top: 10px; }
  .nav-links {
    flex-direction: column;
    display: none;
    width: 100%;
    text-align: center;
    padding: 5px 0;
    border-top: 2px solid #f8f8f8;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links li a { padding: 10px 15px; }
  .hamburger { display: flex; }
  .nav-active { display: flex; }
  .dropdown-content { position: static; background: #00264d; }
}

@media (max-width: 480px) {
  .header-logo img { width: 80px}
  .college-info h1 { font-size: 22px; }
  .college-info .sub-heading { font-size: 12px; }
  .college-info p { font-size: 12px; }
  .header-right-logo img { width: 70px; }
  .marquee { font-size: 12px; }
  footer { padding: 30px 20px 15px; }
  .footer-col h3 { font-size: 14px; }
  .footer-col a { font-size: 13px; }
  .contact-item { font-size: 13px; }
  .social-links a { font-size: 16px; margin: 0 5px; }
  .bottom-links p { font-size: 12px; }
  .footer-logo img .footer-logo img {
    width: 70px;
    padding: 8px;
    border-radius: 8px;
  }
}