.elementor-286 .elementor-element.elementor-element-2ab71e6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:5%;--padding-bottom:5%;--padding-left:5%;--padding-right:5%;}/* Start custom CSS for shortcode, class: .elementor-element-7234243 *//* =====================================================
   1. OVERLAY & BODY LOCK
===================================================== */
.college-fallback-message {
    background: #FFF7ED;
    color: #9A3412;
    border: 1px solid #FED7AA;
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.filter-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.drawer-open {
  overflow: hidden;
}


.college-directory-wrapper {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin: 0px 0;
  position: relative;
}


.college-filters {
  width: 280px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.college-filters h4 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #111827;
}

.college-filters select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid #D1D5DB;
  font-size: 14px;
  background: #F9FAFB;
  transition: all 0.2s ease;
}

.college-filters select:focus {
  outline: none;
  border-color: #1A73E8;
  background: #ffffff;
}

.college-filters button {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.college-filters button[type="submit"] {
  background: #1A73E8;
  color: #fff;
  margin-bottom: 10px;
}

.college-filters button[type="submit"]:hover {
  background: #155ec8;
}

#reset-filters {
  background: #F3F4F6;
  color: #374151;
}

/* Hidden on Desktop */
.filter-close-btn {
  display: none;
}

/* =====================================================
   4. GRID & CARDS
===================================================== */
#college-results {
  flex: 1;
  min-height: 300px;
  position: relative;
}

.college-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.college-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
  transition: all 0.35s ease;
  position: relative;
}

.college-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.college-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.college-content {
  padding: 22px;
}

.college-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.college-meta {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.college-meta span {
  background: #F3F4F6;
  padding: 4px 10px;
  border-radius: 20px;
}

.college-btn {
  color: #1A73E8;
  font-weight: 500;
  text-decoration: none;
}

/* Featured Badge & Card Style */
.featured-college { border: 2px solid #1A73E8; }
.featured-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #1A73E8;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  z-index: 2;
}

/* =====================================================
   5. UTILITIES (LOADER & PAGINATION)
===================================================== */
.loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}

.loading-spinner::after, .infinite-loader::after {
  content: "";
  width: 32px;
  height: 32px;
  border: 3px solid #E5E7EB;
  border-top: 3px solid #1A73E8;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* =====================================================
   6. MOBILE DRAWER & RESPONSIVE (FIX 4 INTEGRATED)
===================================================== */
.mobile-filter-toggle {
  display: none;
  padding: 10px 18px;
  background: #1A73E8;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

@media (max-width: 991px) {
  .college-directory-wrapper { flex-direction: column; }
  
  .mobile-filter-toggle { display: inline-block; margin-bottom: 20px; }

  .college-filters {
    position: fixed;
    top: 80px;
    left: -100%;
    height: 100vh;
    width: 320px;
    background: #fff;
    z-index: 1001; /* Above Overlay */
    transition: left 0.35s cubic-bezier(.4,0,.2,1);
    border-radius: 0;
    padding: 70px 20px 20px;
    overflow-y: auto;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
  }

  .college-filters.open {
    left: 0;
  }

  .filter-close-btn {
    display: flex;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #F3F4F6;
    font-size: 22px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002; /* Top-most */
  }
}/* End custom CSS */