* {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

:root {
  --nav-color: #1565C0;          /* FICER Blue */
  --button-text-footer: #0a2e52; /* Deep Navy */
  --badge-color: #1976D2;        
  --extra-color: #ffffff;
}

#footer {
  width: 100%;
  /* FICER Blue Background - Purana Deep Navy hata diya */
  background-color: var(--nav-color); 
  color: #e3f2fd; /* Halka sa blueish white for best readability */
  padding: 0;
  margin-top: 100px;
  /* border-top: 4px solid var(--button-text-footer); */
   /* Darker Navy top border for contrast */
}

/* Footer Logo Styling */
.footer-logo-link {
  display: inline-block;
  margin-bottom: 20px;
  /* background-color: var(--extra-color); */
  padding: 10px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: scale(1.05);
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.sitename {
  font-size: 24px;
  color: var(--extra-color); /* White heading */
  font-weight: 700;
  margin-bottom: 15px;
}

.sitename-inline {
  color: var(--extra-color); /* White text */
  font-weight: 700;
}

.footer-brand {
  color: #bbdefb !important; /* Light blue highlight on dark blue bg */
  transition: color 0.3s;
}

.footer-brand:hover {
  color: var(--extra-color) !important; /* White hover */
}

/* Headings */
.footer-head {
  margin-bottom: 25px;
  color: var(--extra-color); /* White headings for strong contrast */
  font-weight: 600;
  font-size: 20px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-head::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--extra-color); /* White underline */
  border-radius: 2px;
}

/* Lists */
.footer-ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links {
  padding: 0px 0px 12px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-arrow {
  font-size: 10px;
  color: #bbdefb; /* Light blue arrows */
  margin-right: 10px;
  transition: margin 0.3s ease;
}

.footer-links:hover .footer-arrow {
  margin-right: 15px; 
}

.footer-links:hover .footer-a {
  color: var(--extra-color) !important; /* White text on hover */
  padding-left: 2px;
}

.footer-a {
  color: #e3f2fd; /* Light blueish-white text */
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
}

.footer-a:hover {
  color: var(--extra-color) !important; /* White hover */
}

/* Paragraphs */
.footer-paragraph {
  color: #e3f2fd; /* Light blueish-white text */
  font-size: 15px;
  line-height: 1.6;
}

/* Contact Section */
.contact-text {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.contact-icon {
  color: #bbdefb; /* Light blue icons */
  margin-right: 12px;
  margin-top: 4px;
  font-size: 16px;
}

/* Social Icons - Modern Circles */
.social-links {
  gap: 12px;
}

.social-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15); /* Faint White background circle */
  color: var(--extra-color) !important; /* White icons */
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icon-circle:hover {
  background-color: var(--extra-color); /* Solid White on hover */
  color: var(--nav-color) !important; /* FICER Blue icon on white hover */
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Copyright Section - Dark FICER Blue */
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.3); /* Halka white border for separation */
  padding-top: 25px;
  padding-bottom: 25px;
  margin-top: 20px;
  background-color: #0D47A1 !important; /* Dark FICER Blue - Navbar/Footer se match karega */
}

.copyright .footer-paragraph,
.copyright .sitename-inline {
  color: rgba(255, 255, 255, 0.9) !important; /* Bright white text */
}

.copyright .footer-brand {
  color: #90caf9 !important; /* Light blue for "Ficer" name visibility */
}




/* Mobile pe copyright line better spacing ke sath wrap ho */
.copyright .footer-paragraph {
  line-height: 1.8;
}

.copyright .footer-a {
  margin: 0 2px;
}