/*--------------------------------------------------------------
# Colleges Page Stylesheet
# Unique Premium and Distinct Designs
--------------------------------------------------------------*/

:root {
  --col-gradient-primary: linear-gradient(135deg, var(--fistudy-base) 0%, #4d62e5 100%);
  --col-gradient-accent: linear-gradient(135deg, var(--fistudy-primary) 0%, #e66840 100%);
  --col-shadow-soft: 0 10px 30px rgba(104, 126, 255, 0.05);
  --col-shadow-hover: 0 15px 40px rgba(104, 126, 255, 0.12);
  --col-border-radius-lg: 16px;
  --col-border-radius-sm: 8px;
}

/*--------------------------------------------------------------
# Common Sections Layout
--------------------------------------------------------------*/
.colleges-section {
  position: relative;
  display: block;
  padding: 90px 0;
  background-color: var(--fistudy-white);
  z-index: 1;
}

.colleges-section--bg-light {
  background-color: #fafbfc;
}

/*--------------------------------------------------------------
# Grid Filter Console
--------------------------------------------------------------*/
.colleges-filter-console-wrapper {
  margin-bottom: 45px;
  position: relative;
  z-index: 20;
}

.colleges-filter-console {
  background-color: var(--fistudy-white);
  border: 1.5px solid var(--fistudy-bdr-color);
  border-radius: var(--col-border-radius-lg);
  padding: 30px;
  box-shadow: var(--col-shadow-soft);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.colleges-filter-console:focus-within {
  box-shadow: var(--col-shadow-hover);
}

.colleges-filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 24px;
  align-items: flex-end;
}

.colleges-filter-grid-group {
  position: relative;
}

.colleges-filter-grid-group label {
  display: block;
  font-family: var(--fistudy-font);
  font-size: 12px;
  font-weight: 700;
  color: var(--fistudy-gray);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  line-height: 1;
}

.colleges-dropdown-btn {
  height: 50px;
  width: 100%;
  background-color: var(--fistudy-white);
  border: 1.5px solid var(--fistudy-bdr-color);
  border-radius: var(--col-border-radius-sm);
  padding: 0 15px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--fistudy-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transition: all 250ms ease;
}

.colleges-dropdown-btn:hover {
  border-color: var(--fistudy-base);
}

.colleges-dropdown-group.active .colleges-dropdown-btn {
  border-color: var(--fistudy-base);
  box-shadow: 0 0 0 3px rgba(104, 126, 255, 0.12);
}

.colleges-dropdown-btn::after {
  content: '\f107';
  font-family: 'Font Awesome 5 pro';
  font-weight: 900;
  font-size: 13px;
  color: var(--fistudy-gray);
  transition: transform 250ms ease;
}

.colleges-dropdown-group.active .colleges-dropdown-btn::after {
  transform: rotate(180deg);
  color: var(--fistudy-base);
}

.colleges-dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background-color: var(--fistudy-white);
  border: 1px solid var(--fistudy-bdr-color);
  border-radius: var(--col-border-radius-sm);
  box-shadow: 0 15px 35px rgba(5, 33, 67, 0.12);
  max-height: 220px;
  overflow-y: auto;
  z-index: 99;
  padding: 10px;
  display: none;
}

.colleges-dropdown-group.active .colleges-dropdown-menu {
  display: block;
  animation: colMenuFadeIn 250ms ease;
}

@keyframes colMenuFadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

.colleges-dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 200ms ease;
  font-size: 14px;
  color: var(--fistudy-gray);
  user-select: none;
}

.colleges-dropdown-item:hover {
  background-color: #f5f8ff;
  color: var(--fistudy-black);
}

.colleges-dropdown-item input[type="checkbox"] {
  margin-right: 10px;
  width: 15px;
  height: 15px;
  accent-color: var(--fistudy-base);
  cursor: pointer;
}

/* Static Input capsule */
.colleges-static-input {
  height: 50px;
  width: 100%;
  background-color: #f8fafd;
  border: 1.5px solid var(--fistudy-bdr-color);
  border-radius: var(--col-border-radius-sm);
  padding: 0 15px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--fistudy-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.colleges-static-input i {
  color: var(--fistudy-base);
}

/* Submit Block */
.colleges-submit-btn-group {
  height: 50px;
  display: flex;
  align-items: center;
}

.colleges-submit-btn {
  height: 50px;
  width: 100%;
  border: none;
  font-family: var(--fistudy-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--fistudy-white);
  background-color: var(--fistudy-primary);
  border-radius: var(--col-border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 300ms ease;
  box-shadow: 0 4px 15px rgba(248, 122, 83, 0.2);
}

.colleges-submit-btn:hover {
  background-color: var(--fistudy-black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 33, 67, 0.25);
}

.colleges-submit-btn i {
  font-size: 13px;
  transition: transform 300ms ease;
}

.colleges-submit-btn:hover i {
  transform: translateX(3px);
}

/* Active Summary list */
.colleges-active-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1.5px dashed var(--fistudy-bdr-color);
  font-size: 14px;
  color: var(--fistudy-gray);
}

.colleges-active-summary span.label {
  font-weight: 700;
  color: var(--fistudy-black);
}

.colleges-pill {
  background-color: #f1f6ff;
  color: var(--fistudy-base);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid #e2ecff;
}

/*--------------------------------------------------------------
# Colleges Modern Table
--------------------------------------------------------------*/
.colleges-table-card {
  background: var(--fistudy-white);
  border: 1px solid var(--fistudy-bdr-color);
  box-shadow: var(--col-shadow-soft);
  border-radius: var(--col-border-radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
}

.colleges-responsive-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.colleges-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.colleges-table th {
  background-color: var(--fistudy-black);
  color: var(--fistudy-white);
  font-family: var(--fistudy-font);
  font-size: 14.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 18px 20px;
  border: none;
}

.colleges-table td {
  padding: 16px 20px;
  vertical-align: middle;
  border-bottom: 1.5px solid var(--fistudy-bdr-color);
  color: var(--fistudy-gray);
  font-size: 15px;
  transition: background-color 250ms ease;
}

.colleges-table tbody tr:last-child td {
  border-bottom: none;
}

.colleges-table tbody tr {
  transition: all 250ms ease;
}

.colleges-table tbody tr:hover td {
  background-color: #f7faff;
  color: var(--fistudy-black);
}

.col-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.col-badge--type {
  background-color: #fff8eb;
  color: #d97706;
  border: 1px solid #fef3c7;
}

.col-badge--location {
  background-color: #eff6ff;
  color: var(--fistudy-base);
  border: 1px solid #dbeafe;
}

.col-photo-link {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none !important;
}

.col-photo-wrapper {
  width: 90px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  border: 1.5px solid var(--fistudy-bdr-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 300ms ease;
}

.col-photo-link:hover .col-photo-wrapper {
  transform: scale(1.04);
  border-color: var(--fistudy-base);
  box-shadow: 0 6px 15px rgba(104, 126, 255, 0.15);
}

.col-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col-detail-trigger {
  font-size: 11px;
  font-weight: 700;
  color: var(--fistudy-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 250ms ease;
}

.col-photo-link:hover .col-detail-trigger {
  color: var(--fistudy-base);
}

/* Empty State */
.col-table-empty {
  padding: 60px 20px;
  text-align: center;
  color: var(--fistudy-gray);
}

.col-table-empty i {
  font-size: 40px;
  color: var(--fistudy-bdr-color);
  margin-bottom: 16px;
}

/*--------------------------------------------------------------
# College Details Popup Modal
--------------------------------------------------------------*/
.college-details-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 33, 67, 0.7);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  padding: 20px;
}

.college-details-modal.active {
  display: flex;
}

.modal-dialog-box {
  background-color: var(--fistudy-white);
  border-radius: var(--col-border-radius-lg);
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  position: relative;
  box-shadow: 0 30px 70px rgba(5, 33, 67, 0.35);
  animation: colModalSlideUp 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

@keyframes colModalSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(5, 33, 67, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: var(--fistudy-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 250ms ease;
  outline: none;
}

.modal-close-btn:hover {
  background-color: var(--fistudy-primary);
  color: var(--fistudy-white);
  transform: rotate(90deg);
}

.modal-banner-img {
  position: relative;
  height: 250px;
  width: 100%;
  flex-shrink: 0;
}

.modal-banner-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(5, 33, 67, 0) 40%, rgba(5, 33, 67, 0.8) 100%);
  z-index: 1;
}

.modal-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-banner-title {
  position: absolute;
  bottom: 20px;
  left: 25px;
  right: 25px;
  color: var(--fistudy-white);
  z-index: 2;
}

.modal-banner-title h3 {
  color: var(--fistudy-white);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-banner-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin: 0;
}

/* Color-Segmented Tab Menu (Matches Mockup) */
.modal-tabs-toolbar {
  display: flex;
  width: 100%;
  flex-shrink: 0;
}

.tab-btn-item {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 10px;
  color: var(--fistudy-white);
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 200ms ease;
  user-select: none;
}

.tab-btn-item i {
  font-size: 16px;
}

.tab-btn-item--about { background-color: #99cc00; }
.tab-btn-item--courses { background-color: #0099cc; }
.tab-btn-item--hostel { background-color: #cc0066; }
.tab-btn-item--scholarship { background-color: #999966; }
.tab-btn-item--photos { background-color: #5856d6; }
.tab-btn-item--videos { background-color: #af52de; }

.tab-btn-item:hover {
  filter: brightness(0.9);
}

.tab-btn-item.active {
  box-shadow: inset 0 -4px 0 rgba(255, 255, 255, 0.8);
  font-weight: 800;
  filter: brightness(1.05);
}

.modal-panels-content {
  padding: 24px 28px;
  max-height: 320px;
  overflow-y: auto;
  background-color: var(--fistudy-white);
}

.panel-item {
  display: none;
  animation: panelFadeIn 300ms ease;
}

.panel-item.active {
  display: block;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fistudy-black);
  margin-bottom: 12px;
}

.panel-item p {
  font-size: 14.5px;
  line-height: 22px;
  color: var(--fistudy-gray);
  margin-bottom: 12px;
}

.tab-details-table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}

.tab-details-table th, 
.tab-details-table td {
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid var(--fistudy-bdr-color);
}

.tab-details-table th {
  background-color: #f7faff;
  color: var(--fistudy-black);
  font-weight: 700;
}

/* Gallery popup elements */
.modal-photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.modal-gallery-img {
  width: 100%;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--fistudy-bdr-color);
}

.modal-gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Requirements Cards Grid
--------------------------------------------------------------*/
.req-col-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.req-item-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--fistudy-white);
  border: 1px solid var(--fistudy-bdr-color);
  border-radius: var(--col-border-radius-lg);
  padding: 20px;
  box-shadow: var(--col-shadow-soft);
  transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.req-item-row:hover {
  transform: translateY(-2px);
  border-color: var(--fistudy-base);
  box-shadow: var(--col-shadow-hover);
}

.req-circle-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--col-gradient-primary);
  color: var(--fistudy-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13.5px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(104, 126, 255, 0.2);
}

.req-item-row:hover .req-circle-num {
  background: var(--col-gradient-accent);
  box-shadow: 0 4px 10px rgba(248, 122, 83, 0.25);
}

.req-text-box {
  flex-grow: 1;
}

.req-text-box h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fistudy-black);
  margin-bottom: 4px;
}

.req-text-box p {
  font-size: 14px;
  line-height: 20px;
  color: var(--fistudy-gray);
  margin: 0;
}

.req-text-box .c-accent {
  font-weight: 600;
  color: var(--fistudy-base);
}

/*--------------------------------------------------------------
# Twin Dashed Discount Coupons
--------------------------------------------------------------*/
.twin-coupons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  height: 100%;
}

.coupon-ticket-twin {
  position: relative;
  background: linear-gradient(135deg, #fffcf8 0%, #fffbf6 100%);
  border: 2px dashed var(--fistudy-primary);
  border-radius: var(--col-border-radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(248, 122, 83, 0.05);
  overflow: visible;
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.coupon-ticket-twin:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px rgba(248, 122, 83, 0.12);
}

.coupon-notch-left,
.coupon-notch-right {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background-color: var(--fistudy-white);
  border: 1.5px solid var(--fistudy-primary);
  border-radius: 50%;
  z-index: 10;
  transform: translateY(-50%);
}

.coupon-notch-left {
  left: -9px;
  border-left: none;
}

.coupon-notch-right {
  right: -9px;
  border-right: none;
}

.coupon-title-mini {
  font-size: 14px;
  font-weight: 700;
  color: var(--fistudy-black);
  margin-bottom: 2px;
}

.coupon-tagline-mini {
  font-family: var(--fistudy-font-two);
  font-style: italic;
  font-size: 12.5px;
  color: var(--fistudy-primary);
  margin-bottom: 12px;
}

.coupon-price-slashed-mini {
  font-size: 16px;
  color: var(--fistudy-gray);
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
  font-weight: 600;
  margin-bottom: 2px;
}

.coupon-price-final-mini {
  font-size: 26px;
  font-weight: 800;
  color: #15803d; /* green */
  line-height: 1.1;
  margin-bottom: 12px;
}

.coupon-badge-discount {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: var(--fistudy-white);
  font-weight: 800;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(245, 158, 11, 0.2);
  margin-bottom: 12px;
}

.coupon-expiry-mini {
  font-size: 12px;
  font-weight: 700;
  color: var(--fistudy-gray);
  border-top: 1px dashed var(--fistudy-bdr-color);
  padding-top: 8px;
  width: 100%;
}

/*--------------------------------------------------------------
# Staggered Step progressions
--------------------------------------------------------------*/
.timeline-circle-steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-card-circle {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--fistudy-white);
  border: 1.5px solid var(--fistudy-bdr-color);
  border-radius: 50px;
  padding: 10px 24px 10px 12px;
  box-shadow: var(--col-shadow-soft);
  transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

.step-card-circle:hover {
  transform: translateX(5px);
  border-color: var(--fistudy-base);
  box-shadow: var(--col-shadow-hover);
}

.step-indicator-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--col-gradient-primary);
  color: var(--fistudy-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(104, 126, 255, 0.2);
  flex-shrink: 0;
  transition: background 300ms ease;
}

.step-card-circle:hover .step-indicator-circle {
  background: var(--col-gradient-accent);
}

.step-circle-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fistudy-black);
  margin-bottom: 2px;
}

.step-circle-content p {
  font-size: 13.5px;
  color: var(--fistudy-gray);
  margin: 0;
}

/*--------------------------------------------------------------
# Smartphone Framed Video mockup
--------------------------------------------------------------*/
.smartphone-frame-wrapper {
  position: relative;
  padding: 20px 0;
}

.smartphone-frame {
  width: 290px;
  height: 520px;
  border: 12px solid var(--fistudy-black);
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(5, 33, 67, 0.18);
  margin: 0 auto;
  background-color: var(--fistudy-black);
}

/* Camera Notch and Speaker Mock */
.smartphone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 18px;
  background-color: var(--fistudy-black);
  border-radius: 0 0 12px 12px;
  z-index: 10;
}

/* Home Indicator Bar */
.smartphone-frame::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
  z-index: 10;
}

.smartphone-video-box {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.smartphone-video-box__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease, filter 500ms ease;
  filter: brightness(0.8);
}

.smartphone-video-box:hover .smartphone-video-box__img {
  transform: scale(1.04);
  filter: brightness(0.7);
}

.smartphone-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--fistudy-primary);
  color: var(--fistudy-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 3;
  transition: all 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(248, 122, 83, 0.35);
  padding-left: 2px;
}

.smartphone-video-box:hover .smartphone-play-btn {
  background-color: var(--fistudy-base);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 4px 20px rgba(104, 126, 255, 0.4);
}

.smartphone-play-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--fistudy-primary);
  border-radius: 50%;
  z-index: -1;
  animation: playRipple 2s linear infinite;
  pointer-events: none;
}

.smartphone-video-box:hover .smartphone-play-btn::after {
  border-color: var(--fistudy-base);
}

.smartphone-video-box__info {
  position: absolute;
  bottom: 30px;
  left: 15px;
  right: 15px;
  color: var(--fistudy-white);
  z-index: 4;
  pointer-events: none;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  text-align: center;
}

.smartphone-video-box__info h4 {
  color: var(--fistudy-white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.smartphone-video-box__info p {
  font-size: 12px;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Responsive Design Adjustments
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .colleges-filter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .colleges-filter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .colleges-submit-btn-group {
    grid-column: span 2;
  }
  
  .twin-coupons-wrapper {
    flex-direction: row;
    margin-top: 30px;
  }

  .smartphone-frame-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .colleges-filter-grid {
    grid-template-columns: 1fr;
  }
  
  .colleges-submit-btn-group {
    grid-column: span 1;
  }
  
  .twin-coupons-wrapper {
    flex-direction: column;
  }
  
  .modal-photo-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-banner-img {
    height: 180px;
  }
  
  .modal-banner-title h3 {
    font-size: 20px;
  }
  
  .tab-btn-item {
    font-size: 11px;
    padding: 10px 4px;
  }
  
  .tab-btn-item i {
    font-size: 13px;
  }
  
  .step-card-circle {
    border-radius: 20px;
    padding: 14px;
  }
}
