/* Premium Theme Override for Divine Dale International School */

/* Global Typography & Font Reset */
body, p, a, h1, h2, h3, h4, h5, h6, input, button, select, textarea, marquee, table, td, th {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

body {
  color: #1e293b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box; }

/* Scroll Progress Bar styling */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 2000;
}
.scroll-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #f97316, #ea580c);
  width: 0%;
  transition: width 0.1s ease;
}

/* Sleek Utility Top Bar */
.utility-top-bar {
  background: #0f172a !important; /* Deep modern dark slate */
  color: #cbd5e1 !important;
  padding: 8px 0;
  font-size: 11.5px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.utility-top-bar .info-item {
  margin-right: 20px;
  display: inline-block;
}
.utility-top-bar .info-item i {
  color: #f97316; /* Orange icon accent */
  margin-right: 5px;
}
.utility-top-bar .top-download-link {
  color: #f8fafc !important;
  text-decoration: none !important;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.35);
  padding: 4px 14px;
  border-radius: 20px;
  transition: all 0.25s ease;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.1);
}
.utility-top-bar .top-download-link:hover {
  background: #f97316;
  border-color: #f97316;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(249, 115, 22, 0.3);
}

/* Top Header Branding Layout Refactor */
.top-header {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding-top: 15px;
  padding-bottom: 15px;
}

.logo-and-title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.logo-wrap {
  flex-shrink: 0;
}
.logo-wrap .school-logo {
  height: 95px;
  width: auto;
  transition: transform 0.3s ease;
}
.logo-wrap .school-logo:hover {
  transform: scale(1.05);
}

.title-wrap {
  flex-grow: 1;
  text-align: left;
  padding-left: 10px;
}
.title-wrap .school-main-title {
  font-size: 32px !important;
  font-weight: 850 !important;
  margin: 0 0 5px 0 !important;
  background: linear-gradient(135deg, #0f172a 30%, #1e3a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.8px;
  text-shadow: none;
}
.title-wrap .school-meta-address {
  font-size: 13px !important;
  font-weight: 500;
  color: #475569 !important;
  margin-bottom: 4px;
}
.title-wrap .school-meta-address i {
  color: #ef4444;
  margin-right: 3px;
}
.title-wrap .school-affiliation-code {
  font-size: 11px !important;
  font-weight: 750;
  color: #c2410c !important; /* warm CBSE gold orange */
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0;
}
.title-wrap .school-affiliation-code i {
  margin-right: 4px;
}

.right-logo-wrap {
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 8px rgba(9, 54, 147, 0.06));
}
.right-logo-wrap:hover {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 12px 24px rgba(37, 99, 235, 0.22));
}
.right-logo-wrap .right-logo-img {
  height: 95px;
  width: auto;
  object-fit: contain;
}

/* Dropdown Navigation indicators */
.dropdown-chevron {
  font-size: 9px !important;
  margin-left: 4px;
  opacity: 0.6;
  transition: transform 0.25s ease;
  display: inline-block;
  vertical-align: middle;
}
.navbar-nav li:hover > a .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Semi-transparent Glassmorphism Navbar */
.navbar-default.navbar-static-top {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: none !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6) !important;
  box-shadow: 0 10px 30px rgba(9, 54, 147, 0.04) !important;
  margin-bottom: 0 !important;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Navbar Menu Links */
.navbar-nav#menu-primary-nav > li > a {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1e293b !important;
  padding: 18px 12px !important;
  transition: all 0.25s ease !important;
  position: relative;
}

.navbar-nav#menu-primary-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  transition: all 0.25s ease;
  transform: translateX(-50%);
  border-radius: 4px;
}

.navbar-nav#menu-primary-nav > li.active > a,
.navbar-nav#menu-primary-nav > li:hover > a {
  color: #2563eb !important;
  background: rgba(37, 99, 235, 0.03) !important;
}

.navbar-nav#menu-primary-nav > li.active > a::after,
.navbar-nav#menu-primary-nav > li:hover > a::after {
  width: 70%;
}

/* Beautiful Dropdown/Sub-menus with Micro-animations */
.navbar-nav li {
  position: relative;
}

.navbar-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: block;
  float: left;
  min-width: 220px;
  padding: 8px 0;
  margin: 2px 0 0;
  font-size: 13px;
  text-align: left;
  list-style: none;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08) !important;
  
  /* Slide down hover animation triggers */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-nav li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar-nav .sub-menu li {
  display: block;
  width: 100%;
}

.navbar-nav .sub-menu li a {
  display: block;
  padding: 10px 18px !important;
  clear: both;
  font-weight: 600 !important;
  color: #334155 !important;
  white-space: nowrap;
  background: transparent !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
  font-size: 13px !important;
}

.navbar-nav .sub-menu li a:hover {
  color: #2563eb !important;
  background: rgba(37, 99, 235, 0.05) !important;
  padding-left: 22px !important;
}

/* Layout Blocks & Content */
.page-content {
  line-height: 1.8;
  color: #334155;
  font-size: 16px;
}

.page-content img,
.page-content iframe,
.page-content video {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.page-content a {
  color: #2563eb;
  font-weight: 600;
  transition: color 0.2s ease;
  text-decoration: none;
}
.page-content a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.home .courses-gin p,
.courses-gin p {
  color: #0f172a !important;
  font-size: 16px !important;
  line-height: 1.8;
}

.home-description-wrap,
.home-description-wrap p,
.home-description {
  color: #0f172a !important;
  font-size: 16px !important;
  line-height: 1.8;
}

/* Sidebar & Quick Links Overhaul */
.admission-box {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px !important;
  padding: 22px 18px !important;
  box-shadow: 0 10px 25px rgba(9, 54, 147, 0.03) !important;
  margin-bottom: 24px !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
}

.admission-box h4 {
  font-weight: 800 !important;
  font-size: 16px !important;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #1e3a8a !important;
  text-align: center;
}

.admission-box hr {
  border-top: 2px solid rgba(37, 99, 235, 0.15) !important;
  margin-top: 12px !important;
  margin-bottom: 15px !important;
}

.page-menu {
  margin-bottom: 0;
  padding-left: 0;
}

.page-menu li {
  list-style: none;
  margin-bottom: 8px;
}

.page-menu li a {
  display: block;
  color: #475569 !important;
  font-weight: 600;
  font-size: 12.5px;
  padding: 9px 14px;
  background: rgba(241, 245, 249, 0.6);
  border-radius: 8px;
  transition: all 0.25s ease;
  text-decoration: none !important;
  letter-spacing: 0.3px;
  border: 1px solid #e2e8f0;
}

.page-menu li a:hover {
  color: #2563eb !important;
  background: rgba(37, 99, 235, 0.05) !important;
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

/* Notice Board & Marquee Widgets */
.notice-box-inner {
  height: 310px !important;
}

.notice-box-inner marquee p {
  background: rgba(241, 245, 249, 0.6);
  padding: 9px 12px;
  border-radius: 8px;
  margin-bottom: 10px;
  border-left: 3px solid #2563eb;
  border-right: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.notice-box-inner marquee p:hover {
  background: rgba(37, 99, 235, 0.04);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateX(3px);
}

.notice-box-inner marquee a {
  color: #334155 !important;
  font-size: 13.5px !important;
  font-weight: 600;
  text-decoration: none !important;
  display: block;
  transition: color 0.2s ease;
}

.notice-box-inner marquee a:hover {
  color: #2563eb !important;
}

/* Home Blocks Banner Overhaul */
.home-blocks {
  margin-top: 30px;
}

.home-blocks img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.home-blocks a {
  text-decoration: none !important;
  display: block;
}

.home-blocks a:hover img {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.15);
}

.home-blocks h2 {
  font-size: 15px !important;
  font-weight: 700;
  color: #1e293b;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
  text-align: center;
}

.home-blocks a:hover h2 {
  color: #2563eb;
}

/* Highlights Section styling */
.memories-highlights {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  margin-top: 30px;
  margin-bottom: 30px;
}

.memories-highlights h4 {
  font-size: 18px !important;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 18px;
  position: relative;
  padding-left: 12px;
}

.memories-highlights h4::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 4px;
  background: #2563eb;
  border-radius: 4px;
}

.sac {
  padding-left: 0;
  margin-bottom: 0;
}

.sac li {
  list-style-type: none;
  padding: 5px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 220px;
  margin-right: 15px;
}

.sac li img {
  height: 160px !important;
  width: 210px !important;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
  border: 2px solid #ffffff;
}

.sac li img:hover {
  transform: scale(1.03);
}

.sac li figcaption p {
  font-size: 12px !important;
  color: #475569 !important;
  margin-top: 8px;
  font-weight: 600;
  line-height: 1.4;
}

/* Map canvas modern styling */
.mapouter {
  position: relative;
  text-align: right;
  width: 100%;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.gmap_canvas {
  overflow: hidden;
  background: none !important;
  width: 100%;
  height: 350px;
}

.gmap_iframe {
  height: 350px !important;
}

/* Core Bootstrap Override & Grid polish */
.bus-route-head {
  margin-top: 45px;
}

/* Media Queries & Responsive Polish */
@media (max-width: 991px) {
  .bus-route-head {
    margin-top: 20px;
    font-size: 24px;
  }
  .logo-and-title-container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 5px 0;
  }
  .logo-wrap .school-logo {
    height: 80px;
    margin: 0 auto;
    display: block;
  }
  .title-wrap {
    text-align: center;
    padding-left: 0;
  }
  .title-wrap .school-main-title {
    font-size: 24px !important;
    margin-bottom: 8px !important;
  }
  .right-logo-wrap {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
  main.container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    margin-top: 12px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    padding: 12px 18px !important;
  }
  .navbar-nav {
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .navbar-nav#menu-primary-nav > li {
    border-bottom: 1px solid #f1f5f9;
  }
  .navbar-nav#menu-primary-nav > li:last-child {
    border-bottom: none;
  }
  .navbar-nav#menu-primary-nav > li > a {
    padding: 12px 10px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    border-radius: 8px;
    transition: all 0.2s ease;
  }
  .navbar-nav#menu-primary-nav > li > a:hover {
    color: #2563eb !important;
    background: rgba(37, 99, 235, 0.05) !important;
  }
  .navbar-nav#menu-primary-nav > li > a::after {
    display: none;
  }
  #myNavbar .sub-menu {
    position: static !important;
    display: block !important;
    width: 100%;
    float: none;
    box-shadow: none !important;
    border: none !important;
    background: #f8fafc !important;
    border-left: 3px solid #2563eb !important;
    margin: 5px 0 10px 0 !important;
    padding-left: 15px !important;
    border-radius: 0 8px 8px 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  #myNavbar .sub-menu li {
    display: block;
  }
  #myNavbar .sub-menu li a {
    white-space: normal;
    padding: 8px 10px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #475569 !important;
    transition: all 0.2s ease;
  }
  #myNavbar .sub-menu li a:hover {
    color: #2563eb !important;
    padding-left: 14px !important;
  }
  
  .notice-box-inner {
    height: auto !important;
    min-height: 200px;
    padding-bottom: 10px;
  }
  
  .page-content {
    font-size: 15px;
  }
  
  .home-description-wrap,
  .home-description-wrap p,
  .home-description {
    font-size: 15px !important;
    line-height: 1.7;
  }
  
  .page-content table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
  
  .page-content iframe,
  .page-content video {
    max-width: 100%;
  }
  
  .home-blocks h2 {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .mapouter,
  .gmap_canvas,
  .gmap_iframe {
    height: 260px !important;
  }
}

/* Elegant Thin Gradient Header Content Divider */
.header-content-divider {
  height: 3px;
  background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
  width: 100%;
  margin-top: 0;
  margin-bottom: 25px;
  opacity: 0.8;
  box-shadow: 0 2px 10px rgba(30, 58, 138, 0.1);
}

/* Enable native smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Elegant back-to-top footer link styling */
#back-to-top-footer {
  color: #94a3b8 !important;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  transition: all 0.25s ease;
}
#back-to-top-footer:hover {
  color: #ffffff !important;
}

/* Google Maps mobile-only Get Directions floating button */
.map-directions-btn {
  display: none !important;
}
@media (max-width: 767px) {
  .map-directions-btn {
    display: inline-block !important;
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 99;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25) !important;
    border-radius: 30px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    background: #2563eb !important;
    border: none !important;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease;
  }
  .map-directions-btn:active {
    transform: scale(0.96);
  }
}

/* Mobile-only pulsing Floating Click-To-Call button */
.mobile-call-fab {
  display: none !important;
}
@media (max-width: 767px) {
  .mobile-call-fab {
    display: flex !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    background: #10b981 !important; /* Green CALL theme */
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.45) !important;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    font-size: 22px !important;
    text-decoration: none !important;
    border: 2px solid #ffffff !important;
    animation: fabPulse 2s infinite;
  }
  @keyframes fabPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
  }
}

/* Floating Back to Top Button (Global Desktop & Mobile) */
.floating-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #1e3a8a !important; /* Deep Blue theme */
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 18px !important;
  border: 2px solid #ffffff !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
}
.floating-back-to-top:hover {
  background: #2563eb !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4) !important;
}

@media (max-width: 767px) {
  .floating-back-to-top {
    bottom: 90px !important; /* Stacked cleanly above mobile call button */
    right: 20px !important;
    height: 46px !important;
    width: 46px !important;
  }
}

/* Ambient background glows for ultra-premium aesthetic */
body::before,
body::after {
  content: '';
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.85;
}
body::before {
  top: 10%;
  left: -150px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.05) 0%, rgba(249, 115, 22, 0) 70%); /* Subtle gold glow left */
}
body::after {
  bottom: 15%;
  right: -150px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0) 70%); /* Subtle indigo-blue glow right */
}

/* Premium Gallery Folder Cards styling */
.gallery-folder-card {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 16px !important;
  padding: 14px !important;
  box-shadow: 0 8px 24px rgba(9, 54, 147, 0.03) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  margin-bottom: 25px;
  display: block;
  text-decoration: none !important;
}

.gallery-folder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(9, 54, 147, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
}

.gallery-folder-card img {
  width: 100%;
  height: 180px !important;
  object-fit: cover;
  border-radius: 10px !important;
  border: none !important;
  transition: transform 0.4s ease;
}

.gallery-folder-card:hover img {
  transform: scale(1.02);
}

.gallery-folder-card h3 {
  font-size: 14px !important;
  font-weight: 750 !important;
  color: #334155 !important;
  margin-top: 14px !important;
  margin-bottom: 4px !important;
  transition: color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.gallery-folder-card:hover h3 {
  color: #2563eb !important;
}

/* Foolproof global notice board text color overrides */
.notice-box-inner marquee,
.notice-box-inner marquee p,
.notice-box-inner marquee a,
.notice-box-inner marquee p a,
.notice-box-inner marquee a p {
  color: #334155 !important;
}

.notice-box-inner marquee a:hover,
.notice-box-inner marquee p:hover,
.notice-box-inner marquee p a:hover,
.notice-box-inner marquee a p:hover {
  color: #2563eb !important;
}

/* Premium Glassmorphism Contact Page Styling */
.contact-glass-card {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 16px !important;
  padding: 30px 25px !important;
  box-shadow: 0 10px 30px rgba(9, 54, 147, 0.03) !important;
  margin-bottom: 30px;
}

.contact-glass-card h3 {
  font-size: 18px !important;
  font-weight: 800 !important;
  color: #1e3a8a !important;
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.contact-glass-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border-radius: 2px;
}

.contact-glass-card .form-group label {
  font-weight: 700 !important;
  color: #475569 !important;
  font-size: 11px !important;
  margin-bottom: 6px !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-glass-card .form-control {
  border-radius: 10px !important;
  border: 1px solid #cbd5e1 !important;
  padding: 12px 16px !important;
  height: auto !important;
  font-size: 14px !important;
  color: #1e293b !important;
  background: rgba(255, 255, 255, 0.8) !important;
  box-shadow: none !important;
  transition: all 0.25s ease !important;
}

.contact-glass-card .form-control:focus {
  border-color: #2563eb !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}

.contact-submit-btn {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
  color: #ffffff !important;
  font-weight: 750 !important;
  font-size: 12px !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 12px 28px !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2) !important;
  display: inline-block;
  outline: none !important;
  cursor: pointer;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35) !important;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Beautiful structured address info rows */
.contact-info-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon-box {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

/* Vibrant icon palettes */
.contact-info-item.address-item .contact-info-icon-box {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.2);
}

.contact-info-item.phone-item .contact-info-icon-box {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
}

.contact-info-item.email-item .contact-info-icon-box {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.2);
}

.contact-info-item.web-item .contact-info-icon-box {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.2);
}

.contact-info-details {
  flex-grow: 1;
}

.contact-info-label {
  font-size: 10px !important;
  font-weight: 750 !important;
  color: #64748b !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px !important;
}

.contact-info-text {
  font-size: 14.5px !important;
  color: #1e293b !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

.contact-info-text a {
  color: #2563eb !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.contact-info-text a:hover {
  color: #1d4ed8 !important;
}

/* Premium Glassmorphism SLC/TC Search Page Styling */
.slc-search-card {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 16px !important;
  padding: 30px !important;
  box-shadow: 0 10px 30px rgba(9, 54, 147, 0.03) !important;
  margin-bottom: 30px;
}

.slc-filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
}

.slc-filter-option {
  flex: 1;
  min-width: 250px;
  background: rgba(255, 255, 255, 0.5) !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 18px 20px !important;
  transition: all 0.25s ease !important;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.slc-filter-option:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.03);
}

.slc-filter-option.active {
  background: rgba(37, 99, 235, 0.03) !important;
  border-color: #2563eb !important;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.08) !important;
}

.slc-filter-option label {
  font-weight: 750 !important;
  font-size: 12.5px !important;
  color: #1e3a8a !important;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slc-filter-option input[type="radio"] {
  accent-color: #2563eb;
  width: 16px;
  height: 16px;
  margin: 0 !important;
  cursor: pointer;
}

.slc-filter-input-wrap {
  margin-top: 12px;
  transition: all 0.3s ease;
}

.slc-filter-input-wrap input[type="text"] {
  width: 100%;
  border-radius: 8px !important;
  border: 1px solid #cbd5e1 !important;
  padding: 10px 14px !important;
  font-size: 13.5px !important;
  color: #1e293b !important;
  background: #ffffff !important;
  box-shadow: none !important;
  transition: all 0.25s ease !important;
  outline: none;
}

.slc-filter-input-wrap input[type="text"]:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}

.slc-submit-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important; /* Premium Green */
  color: #ffffff !important;
  font-weight: 750 !important;
  font-size: 12.5px !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 15px 30px !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2) !important;
  width: 100%;
  cursor: pointer;
  outline: none !important;
}

.slc-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35) !important;
  background: linear-gradient(135deg, #059669 0%, #047857 100%) !important;
}

.slc-submit-btn:disabled {
  background: #cbd5e1 !important;
  color: #94a3b8 !important;
  box-shadow: none !important;
  cursor: not-allowed;
}

/* Beautiful responsive details table */
.slc-results-card {
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: 16px !important;
  padding: 25px !important;
  box-shadow: 0 10px 30px rgba(9, 54, 147, 0.03) !important;
  margin-top: 30px;
}

.slc-table {
  width: 100%;
  margin-bottom: 0 !important;
}

.slc-table th {
  background: rgba(241, 245, 249, 0.8) !important;
  color: #475569 !important;
  font-weight: 800 !important;
  font-size: 11px !important;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 14px 16px !important;
  border-bottom: 2px solid #e2e8f0 !important;
  border-top: none !important;
}

.slc-table td {
  padding: 14px 16px !important;
  font-size: 13px !important;
  color: #1e293b !important;
  font-weight: 600 !important;
  border-bottom: 1px solid #f1f5f9 !important;
  vertical-align: middle !important;
  border-top: none !important;
}

.slc-table tr:last-child td {
  border-bottom: none !important;
}

.slc-download-link {
  color: #2563eb !important;
  font-weight: 750 !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  background: rgba(37, 99, 235, 0.06);
  padding: 6px 14px;
  border-radius: 8px;
}

.slc-download-link:hover {
  color: #ffffff !important;
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

@media (max-width: 768px) {
  .slc-filter-grid {
    gap: 15px;
  }
  .slc-submit-btn {
    padding: 12px 20px !important;
    font-size: 12px !important;
  }
}

/* Premium Homepage & Carousel Slider Upgrades */
.home-slider-container {
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 80px rgba(37, 99, 235, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  position: relative;
  transition: all 0.4s ease;
}

.home-slider-container:hover {
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18), 0 0 100px rgba(37, 99, 235, 0.18) !important;
}

.carousel-inner .item img {
  width: 100%;
  height: auto;
  transition: transform 12s ease !important;
  filter: brightness(1.08) saturate(1.02) contrast(0.98); /* Dynamically brightens and softens slider photos */
}

.carousel:hover .carousel-inner .item.active img {
  transform: scale(1.05); /* Soft Ken Burns zooming effect on hover */
}

/* Beautiful Capsule-style Carousel Indicators */
.carousel-indicators {
  bottom: 20px !important;
}

.carousel-indicators li {
  width: 12px !important;
  height: 6px !important;
  border-radius: 3px !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
  border: none !important;
  margin: 0 4px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.carousel-indicators li.active {
  width: 28px !important;
  background-color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.5) !important;
}

/* Premium Floating Glassmorphism Carousel Controls */
.carousel-control {
  width: 50px !important;
  height: 50px !important;
  background: rgba(15, 23, 42, 0.4) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 50% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  opacity: 0 !important; /* Invisible until hover */
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  color: #ffffff !important;
  background-image: none !important; /* Remove standard bootstrap gradient backdrops */
}

.carousel:hover .carousel-control {
  opacity: 1 !important;
}

.carousel-control.left {
  left: 25px !important;
}

.carousel-control.right {
  right: 25px !important;
}

.carousel-control:hover {
  background: #2563eb !important;
  border-color: #2563eb !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4) !important;
  color: #ffffff !important;
}

.carousel-control .glyphicon {
  position: static !important;
  margin-top: 0 !important;
  font-size: 16px !important;
}

/* Welcome Area Overhaul */
.home-welcome-header {
  margin-bottom: 20px;
  position: relative;
}

.home-welcome-header .welcome-heading {
  font-size: 26px !important;
  font-weight: 850 !important;
  color: #1e3a8a !important;
  letter-spacing: -0.5px;
  margin-top: 0 !important;
  margin-bottom: 8px !important;
  text-transform: uppercase;
}

.home-welcome-header .welcome-heading-bar {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #ef4444); /* Cool blue-to-red accent line */
  border-radius: 2px;
}

/* Gorgeous Carousel Crossfade Transition Effect */
.home-slider-container.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.8s;
  transition-timing-function: ease-in-out;
}

.home-slider-container.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.home-slider-container.carousel-fade .carousel-inner .active.left,
.home-slider-container.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.home-slider-container.carousel-fade .carousel-inner .next.left,
.home-slider-container.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.home-slider-container.carousel-fade .carousel-control {
  z-index: 2;
}

/* Premium Homepage Description Typography styling */
.home-description-wrap {
  font-size: 15.5px !important;
  line-height: 1.95 !important;
  color: #334155 !important;
  text-align: justify;
}

.home-description-wrap p {
  margin-bottom: 18px !important;
}

.home-description-wrap p:first-of-type {
  font-size: 17.5px !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  line-height: 1.8 !important;
  position: relative;
  padding-left: 15px;
  border-left: 4px solid #2563eb; /* Royal blue vertical lead-in bar */
}

/* High-End Home Block Feature Cards (Equal Height Flex Layout) */
.home-blocks .row {
  display: flex;
  flex-wrap: wrap;
}

.home-blocks .col-lg-4,
.home-blocks .col-md-4,
.home-blocks .col-sm-12 {
  display: flex;
}

.home-block-card {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 240px !important; /* Reduces width to an ultra-elegant, compact size */
  margin-left: auto !important; /* Centers the card horizontally inside grid column */
  margin-right: auto !important;
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-bottom: 3px solid rgba(226, 232, 240, 0.8) !important; /* Elegant thick bottom border */
  border-radius: 16px !important;
  padding: 10px !important; /* Sleek, smaller padding */
  box-shadow: 0 8px 24px rgba(9, 54, 147, 0.03) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  margin-bottom: 25px; /* Stable bottom spacing */
}

.home-block-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 35px rgba(9, 54, 147, 0.08) !important;
  border-color: rgba(37, 99, 235, 0.25) !important;
  border-bottom-color: #2563eb !important; /* Bottom line lights up blue on hover */
}

.home-block-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 130px; /* Sleeker, smaller height */
  width: 100%;
  background: #f8fafc !important; /* Premium off-white back-shading for letterboxing */
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-block-img-wrap img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important; /* Guarantees the entire image and its text/details are fully visible, no cropping! */
  object-position: center !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.home-block-card:hover .home-block-img-wrap img {
  transform: scale(1.05);
}

/* Glassmorphism slide-up overlay badge */
.home-block-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0) 40%, rgba(15, 23, 42, 0.6) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: all 0.35s ease;
}

.home-block-card:hover .home-block-overlay {
  opacity: 1;
}

.home-block-badge {
  background: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 20px;
  transform: translateY(15px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-block-card:hover .home-block-badge {
  transform: translateY(0);
}

.home-block-card h2 {
  font-size: 13px !important; /* Sleeker, smaller font */
  font-weight: 750 !important;
  color: #1e3a8a !important; /* Bold Navy */
  margin-top: 12px !important; /* Balanced margins */
  margin-bottom: 2px !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-block-card:hover h2 {
  color: #2563eb !important; /* Soft royal blue highlight */
}

/* Center and beautify the welcome description logo */
.home-description-wrap img[src*="logo"],
.home-description-wrap img[class*="logo"] {
  display: block !important;
  margin: 20px auto !important;
  max-width: 100px !important; /* Perfect balanced size, down from 140px */
  width: 100px !important;
  height: auto !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: drop-shadow(0 8px 16px rgba(30, 58, 138, 0.12)) !important; /* Traces the logo's exact circular/alpha outline */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.home-description-wrap img[src*="logo"]:hover,
.home-description-wrap img[class*="logo"]:hover {
  transform: scale(1.05) !important;
  filter: drop-shadow(0 12px 25px rgba(37, 99, 235, 0.22)) !important;
}

/* Modern Multi-Column Premium Footer Styling */
footer {
  margin-top: 65px;
  background: #0f172a !important; /* Deep Slate dark background */
  position: relative;
  overflow: hidden;
  border-top: 3px solid #2563eb; /* Royal blue top boundary line */
}

/* Subtle background accent glow in footer */
footer::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0) 70%);
  pointer-events: none;
  filter: blur(50px);
}

.main-footer-section {
  padding: 60px 0 40px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-col h3 {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 0;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #ef4444);
  border-radius: 2px;
}

/* Branding Column styling */
.branding-col .footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.branding-col .footer-logo {
  height: 55px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.1));
}

.branding-col h4 {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  margin: 0;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.branding-col h4 span {
  color: #3b82f6 !important;
  font-size: 12px;
  font-weight: 700;
}

.footer-desc {
  color: #94a3b8 !important;
  font-size: 13.5px !important;
  line-height: 1.7 !important;
  margin-bottom: 25px !important;
  text-align: justify;
}

/* Social icons styling */
.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8 !important;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.footer-social-icons .social-icon:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Footer Links styling */
.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #94a3b8 !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links li a i {
  font-size: 11px;
  opacity: 0.5;
  transition: transform 0.25s ease;
}

.footer-links li a:hover {
  color: #ffffff !important;
  padding-left: 5px;
}

.footer-links li a:hover i {
  color: #2563eb;
  opacity: 1;
  transform: translateX(3px);
}

/* Contact Details column styling */
.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-details .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-details .contact-line i {
  color: #2563eb;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-details .contact-line p {
  color: #94a3b8 !important;
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  font-weight: 600 !important;
}

.footer-contact-details .contact-line p a {
  color: #94a3b8 !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.footer-contact-details .contact-line p a:hover {
  color: #ffffff !important;
}

.last-foo {
  background: #090d16 !important; /* Darker tone for footer bottom copyright strip */
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  padding: 22px 0 !important;
}

.last-foo p {
  color: #64748b !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.4px !important;
  margin: 0 !important;
  text-align: center !important;
}

.last-foo p span {
  color: #3b82f6 !important; /* Soft glowing blue for school name */
  font-weight: 700 !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-col {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .main-footer-section {
    padding: 45px 0 15px 0 !important;
  }
  .footer-col {
    margin-bottom: 35px;
  }
  .footer-col h3 {
    margin-bottom: 20px;
  }
}




