
:root {
  --pink: #E91E8C;
  --pink-light: #FFF0F8;
  --pink-mid: #FCE4F3;
  --orange: #FF6B2C;
  --orange-light: #FFF4EE;
  --dark: #111827;
  --gray: #6B7280;
  --light: #F9FAFB;
  --border: #F3F4F6;
}

/* Default Hiding for Flicker Prevention */
#mainPage, #login-div, #signup-div, #adminPanel, #phoneModal {
  display: none;
}

/* Splash Screen Styling */
#splash-screen {
  position: fixed;
  inset: 0;
  background: var(--pink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition: opacity 0.8s ease, visibility 0.8s;
}

#splash-screen.vanish {
  opacity: 0;
  visibility: hidden;
}

.splash-logo-wrap {
  text-align: center;
  animation: splashEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.splash-logo {
  width: 120px;
  height: auto;
  border-radius: 20px;
  background: white;
  padding: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  margin-bottom: 20px;
}

.splash-text {
  color: white;
  font-weight: 850;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

@keyframes splashEntrance {
  0% { transform: scale(0.8); opacity: 0; filter: blur(10px); }
  100% { transform: scale(1); opacity: 1; filter: blur(0); }
}

#enter-portal-btn:hover {
  background: var(--pink-light) !important;
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

#enter-portal-btn:active {
  transform: scale(0.98);
}

/* --- Course Detail Components --- */
.crs-list-detail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.crs-item-premium {
  background: #fff;
  border: 1.8px solid #F3F4F6;
  border-radius: 18px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: 0.4s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  animation: fadeIn 0.4s ease both;
  min-height: 100%;
  font-size: 0.85rem;
}

.crs-item-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border-color: rgba(233,30,140,0.15);
}

.crs-icon-badge {
  width: 40px; 
  height: 40px; 
  border-radius: 12px; 
  background: var(--pink-light); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--pink); 
  font-size: 1rem; 
  flex-shrink: 0;
}

.fee-box-wrap {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 0.8rem; 
  padding: 1.2rem; 
  background: rgba(233,30,140,0.02); 
  border: 1px solid rgba(233,30,140,0.05); 
  border-radius: 18px;
}

.fee-label {
  font-size: 0.6rem; 
  font-weight: 800; 
  color: var(--gray); 
  text-transform: uppercase; 
  margin-bottom: 3px; 
  white-space: nowrap;
}

.fee-val {
  font-size: 1rem; 
  font-weight: 850; 
  color: var(--dark);
}

.year-grid {
  display: grid;
  gap: 0.6rem;
}

.year-box {
  padding: 0.75rem 0.5rem; 
  background: #fff; 
  border: 1.5px solid #F3F4F6; 
  border-radius: 14px; 
  text-align: center;
  transition: 0.3s;
}

.year-box:hover {
  border-color: var(--pink-light);
  background: rgba(233,30,140,0.01);
}

.year-label {
  font-size: 0.55rem; 
  font-weight: 800; 
  color: var(--gray); 
  text-transform: uppercase; 
  margin-bottom: 2px;
}

.year-val {
  font-size: 0.85rem; 
  font-weight: 850; 
  color: var(--dark);
}

.btn-apply-course {
  width: 100%; 
  border-radius: 16px; 
  padding: 1.15rem; 
  font-size: 0.95rem; 
  font-weight: 900; 
  margin-top: 1rem; 
  background: var(--pink); 
  color: white; 
  border: none; 
  box-shadow: 0 10px 25px -8px rgba(233,30,140,0.45); 
  cursor: pointer; 
  transition: 0.3s; 
  letter-spacing: -0.01em; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  gap: 10px;
}

.btn-apply-course:hover {
  background: var(--pink-hover);
  transform: scale(1.02);
}

.back-btn-small {
  background: white;
  border: 1.5px solid #F3F4F6;
  padding: 8px 16px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.back-btn-small:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(233,30,140,0.02);
}

.back-btn-small i {
  font-size: 0.8rem;
}

@media (max-width: 640px) {
  .crs-list-detail {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .crs-item-premium {
    padding: 0.8rem;
    gap: 0.6rem;
    border-radius: 16px;
  }
  .crs-item-premium h4 {
    font-size: 0.95rem !important;
  }
  .fee-box-wrap {
    padding: 0.6rem;
    gap: 0.4rem;
    border-radius: 12px;
  }
  .fee-label {
    font-size: 0.5rem;
  }
  .fee-val {
    font-size: 0.8rem;
  }
  .crs-icon-badge {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
    border-radius: 8px;
  }
  .year-grid {
    gap: 0.4rem;
  }
  .year-box {
    padding: 0.5rem 0.3rem;
    border-radius: 10px;
  }
  .year-label {
    font-size: 0.5rem;
  }
  .year-val {
    font-size: 0.75rem;
  }
  .btn-apply-course {
    padding: 0.75rem;
    font-size: 0.8rem;
    border-radius: 12px;
    margin-top: 0.5rem;
  }
}

.back-btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  background: var(--pink-light);
  border: 1px solid rgba(233, 30, 140, 0.15);
  border-radius: 50px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.back-btn-small:hover {
  background: var(--pink-mid);
  transform: translateX(-3px);
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
}

/* Hide Browser Default Password Toggles */
input::-ms-reveal,
input::-ms-clear {
  display: none !important;
}
input::-webkit-credentials-auto-fill-button {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.filterBtn {

  button {
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
    background: var(--pink, #e91e8c);
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    padding: 10px 24px;
    width: fit-content;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(233, 30, 140, 0.25);
  }

  button:hover {
    background: #d0187a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(233, 30, 140, 0.35);
  }
}

/* overlay */
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 999;
}

/* filter container */
.colleges-filter-bar {
  position: fixed;
  background: #fff;
  padding: 25px;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}

.search-container {
  max-width: 650px;
  margin: 0 auto 3.5rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(233, 30, 140, 0.1);
  padding: .6rem;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
}

.search-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.5rem;
}

.search-main {
  flex: 1.5;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 0 .75rem;
}

.search-main i {
  color: var(--pink);
  font-size: 1rem;
}

.search-main input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  padding: .6rem 0;
  font-size: .95rem;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
}

.search-divider {
  width: 1.5px;
  height: 28px;
  background: #F3F4F6;
  margin: 0 .5rem;
}

.search-loc-sec {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: 0 .75rem;
  cursor: pointer;
  position: relative;
}

.search-loc-sec i {
  color: var(--gray);
  font-size: .9rem;
}

.search-loc-sec input {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  padding: .6rem 0;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
}

/* --------------------------------------------------------------------------
   SIGNUP PAGE — DROP-IN CSS
   Paste this at the END of your style.css
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Ã¢â€â‚¬Ã¢â€â‚¬ SIGNUP WRAPPER Ã¢â€â‚¬Ã¢â€â‚¬ */
.signup-div {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 10001;
  min-height: 100dvh;
  width: 100%;
  background: #fff;
}



.signup-left {
  width: 42%;
  flex-shrink: 0;
  background: #0D0B14;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.signup-left::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.25) 0%, transparent 65%);
  top: -160px;
  right: -160px;
  pointer-events: none;
}

.signup-left::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, transparent 65%);
  bottom: -80px;
  left: -60px;
  pointer-events: none;
}

.signup-left-logo {
  position: relative;
  z-index: 1;
}

.signup-left-logo img {
  width: 160px;
  max-width: 70%;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  height: auto;
  margin: 0;
}

.signup-left-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  margin-top: 1rem;
  display: block;
}

.signup-left-headline {
  position: relative;
  z-index: 1;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}

.signup-left-headline em {
  font-style: italic;
  color: #F472B6;
}

.signup-left-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-top: 0.6rem;
  max-width: 280px;
}

.signup-left-pills {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.signup-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.signup-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #F472B6;
  flex-shrink: 0;
}

.signup-pill span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RIGHT FORM PANEL Ã¢â€â‚¬Ã¢â€â‚¬ */
.signup-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  padding: 2.5rem 3.5rem;
  background: #fff;
}

.signup-form-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}

.signup-form-sub {
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 1.75rem;
}

/* Google button inside signup */
.signup-right .btn-google {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #111827;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  margin-bottom: 1.1rem;
}

.signup-right .btn-google:hover {
  border-color: #E91E8C;
  transform: translateY(-1px);
}

.signup-right .btn-google img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* OR divider */
.signup-right .divider {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #D1D5DB;
  letter-spacing: 0.08em;
}

.continue-email-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 1rem;
  display: block;
}

/* Two-column grid for paired fields */
.signup-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Field wrapper */
.signup-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0.9rem;
}

/* Labels inside signup */
.signup-right label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #374151;
  margin-bottom: 4px;
  margin-top: 0;
}

/* Inputs inside signup */
.signup-right input,
.signup-right select {
  width: 100%;
  padding: 0.72rem 1rem !important;
  border: 1.5px solid #E5E7EB !important;
  border-radius: 10px !important;
  font-size: 0.9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #111827;
  background: #F9FAFB;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  box-shadow: none !important;
}

.signup-right input:focus,
.signup-right select:focus {
  border-color: #E91E8C !important;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(233, 30, 140, 0.1) !important;
}

.signup-right input::placeholder {
  color: #C4C9D4;
}

/* Optional label suffix */
.optional-tag {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: #9CA3AF;
  margin-left: 4px;
}

/* Parent fields section divider */
.signup-section-divider {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #D1D5DB;
  border-top: 1px solid #F3F4F6;
  padding-top: 1rem;
  margin: 0.25rem 0 1rem;
}

/* Submit button */
.signup-right .btn-submit {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.92rem !important;
  background: linear-gradient(135deg, #E91E8C 0%, #FF6BAF 100%);
  color: #fff;
  border: none !important;
  border-radius: 12px !important;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.28) !important;
  transition: transform 0.2s, box-shadow 0.2s;
}

.signup-right .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233, 30, 140, 0.38) !important;
}

/* Visibility Utilities */
@media (max-width: 768px) {
    .mobile-only { display: flex !important; }
    .desktop-only { display: none !important; }
    .brand img { height: 52px !important; width: 52px !important; min-width: 52px !important; }
}
@media (min-width: 769px) {
    .mobile-only { display: none !important; }
    .desktop-only { display: flex !important; }
}

/* Premium Pill Navigation (Mobile) */
.nav-pills-container {
    background: #fff;
    border-radius: 50px;
    padding: 4px;
    display: flex;
    gap: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #F3F4F6;
    margin: 4px auto;
    width: 95%;
    max-width: 450px;
    justify-content: space-between;
    position: relative;
}

.nav-pill {
    padding: 8px 12px;
    border-radius: 50px;
    font-size: clamp(0.68rem, 2.5vw, 0.78rem);
    font-weight: 800;
    color: #4B5563;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.nav-pill.active {
    background: #FDF2F8;
    color: var(--pink);
    box-shadow: 0 2px 8px rgba(233,30,140,0.08);
    position: relative;
}

.nav-pill.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 15%;
    width: 70%;
    height: 3.5px;
    background: var(--pink);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .header-nav-wrap {
        width: 100%;
        padding: 0 10px;
        margin-top: 5px;
    }
}
/* Switch text */
.switch-text {
  text-align: center;
  font-size: 0.85rem;
  color: #9CA3AF;
  margin-top: 1.25rem;
  font-weight: 500;
}

.switch-text a {
  color: #E91E8C;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.switch-text a:hover {
  text-decoration: underline;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ DESKTOP Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (min-width: 900px) {
  .signup-right {
    padding: 2.5rem 4.5rem;
  }
}

@media (min-width: 1100px) {
  .signup-right {
    padding: 3rem 5.5rem;
  }
}

.signup-left {
  display: none;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ TABLET / MOBILE Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 899px) {
  .signup-left {
    display: none;
  }

  .signup-right {
    padding: 2rem 1.5rem 3rem;
  }

  .signup-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .signup-right {
    padding: 1.75rem 1.25rem 2.5rem;
  }
}

/* desktop popup */
@media(min-width:769px) {
  .colleges-filter-bar {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 420px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
  }

  .colleges-filter-bar.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
  }
}

.college-dropdown {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  z-index: 100;
}

.college-item {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.college-item:hover {
  background: #f5f5f5;
}

.college-name {
  font-weight: 600;
}

.college-loc {
  font-size: 12px;
  color: #777;
}

.autocomplete {
  position: relative;
}

.autocomplete-list {
  position: absolute;
  width: 100%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.suggestion-item {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.2s;
}

.suggestion-item:hover {
  background: #f5f7ff;
}

.suggestion-name {
  font-weight: 600;
  font-size: 15px;
}

.suggestion-loc {
  font-size: 12px;
  color: #777;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.filter-group {
  margin-bottom: 15px;
}

.filter-group input {
  width: 100%;
  padding: 8px;
}

img,
video {
  max-width: 100%;
  height: auto;
  margin: auto;
}

.login-card {
  max-width: 480px;
  width: 100%;
  background: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 25px 45px -12px rgba(180, 40, 80, 0.25), 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.login-card:hover {
  box-shadow: 0 30px 55px -18px rgba(190, 45, 90, 0.3);
}

.card-inner {
  padding: 2rem 2rem 2.2rem;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.logo-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #b95078;
  background: #fff0f4;
  display: inline-block;
  padding: 0.25rem 1rem;
  border-radius: 30px;
  margin-top: 0.25rem;
}

.motto {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: #a53f62;
  background: #fff2f7;
  padding: 0.5rem 0.75rem;
  border-radius: 50px;
  width: fit-content;
  margin: 0.8rem auto 1.5rem auto;
  border-left: 3px solid #d93b6e;
  border-right: 3px solid #d93b6e;
}

.input-group {
  margin-bottom: 1.4rem;
}

.login-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #822f4e;
  margin-bottom: 0.5rem;
  letter-spacing: -0.2px;
}

.input-field {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid #f3d2df;
  border-radius: 1rem;
  background-color: #fffbfd;
  transition: all 0.2s ease;
  color: #2c2025;
  outline: none;
}

.input-field:focus {
  border-color: #d93b6e;
  box-shadow: 0 0 0 4px rgba(217, 59, 110, 0.15);
  background-color: #ffffff;
}

.input-field::placeholder {
  color: #cdadbb;
  font-weight: 400;
}

.remember-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: #8e4462;
}

.checkbox-wrapper input {
  width: 1rem;
  height: 1rem;
  accent-color: #d93b6e;
  cursor: pointer;
  margin: 0;
}

.forget-link {
  color: #c63b6e;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #ffb3c6;
}

.signin-btn {
  width: 100%;
  background: linear-gradient(95deg, #c7285a, #b0174c);
  border: none;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', inherit;
  color: white;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 6px 14px rgba(192, 35, 80, 0.3);
  margin-bottom: 1.5rem;
}

.signin-btn i {
  font-size: 1rem;
}

.signin-btn:hover {
  background: linear-gradient(95deg, #ae1346, #9a0e3f);
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -8px rgba(170, 30, 70, 0.4);
}

.signin-btn:active {
  transform: translateY(1px);
}

.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  margin: 1rem 0 1.4rem 0;
  color: #c57f9a;
  font-size: 0.8rem;
  font-weight: 600;
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #f0c8d6;
}

.social-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: white;
  border: 1.5px solid #e7bacb;
  padding: 0.8rem 1rem;
  border-radius: 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  color: #b13f64;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0.9rem;
}

.social-btn i {
  font-size: 1.2rem;
  color: #c75b81;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ AUTH WRAPPER (Universal for Login/Signup) Ã¢â€â‚¬Ã¢â€â‚¬ */
.auth-wrapper {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  background: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow: hidden; /* Prevent body scroll when auth is open */
}
/* ===== FLOATING ORBS ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(55px);
  animation: floatOrb 8s ease-in-out infinite alternate;
}
.orb-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.22) 0%, transparent 70%);
  top: -80px; right: -60px;
  animation-duration: 9s;
}
.orb-2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(199, 40, 90, 0.14) 0%, transparent 70%);
  bottom: 80px; left: -40px;
  animation-duration: 12s;
  animation-delay: -4s;
}
.orb-3 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(248, 187, 208, 0.3) 0%, transparent 70%);
  top: 50%; left: 50%;
  animation-duration: 7s;
  animation-delay: -2s;
}
@keyframes floatOrb {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(30px, -30px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}
.login-badge-wrap { margin-bottom: 2rem; }
.login-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(199,40,90,0.1), rgba(244,114,182,0.15));
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  background: rgba(233, 30, 140, 0.15);
}
.pulse-badge { animation: pulseBadge 2.5s ease-in-out infinite; }
@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(199, 40, 90, 0.2); }
  50%       { box-shadow: 0 0 0 10px rgba(199, 40, 90, 0); }
}
.promise-cards { display: flex; flex-direction: column; gap: 0.85rem; margin: 1.8rem 0; }
.promise-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.promise-card:hover { transform: translateX(7px); box-shadow: 0 8px 24px rgba(233,30,140,0.15); }
.promise-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.promise-text { display: flex; flex-direction: column; gap: 0.2rem; }
.promise-text strong { font-size: 0.9rem; font-weight: 800; color: #F472B6; }
.promise-text span { font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 400; line-height: 1.5; }
.promise-text em { font-style: italic; font-weight: 700; color: #F472B6; }
.stat-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.stat-chip {
  background: linear-gradient(135deg, #c7285a, #e91e8c);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.38rem 0.95rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 12px rgba(199, 40, 90, 0.25);
  animation: chipFloat 4s ease-in-out infinite alternate;
}
.stat-chip:nth-child(2) { animation-delay: -1.3s; }
.stat-chip:nth-child(3) { animation-delay: -2.5s; }
@keyframes chipFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}
@keyframes slideUpFade {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.slide-up-form { animation: slideUpFade 0.65s cubic-bezier(0.22, 1, 0.36, 1) both; }
.guarantee-banner {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #fff5f8, #ffe4ef);
  border: 1.5px solid rgba(199, 40, 90, 0.18);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  color: #9b1d4e;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.45;
}
.guarantee-banner strong { color: #c7285a; font-weight: 800; }
.mobile-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(199,40,90,0.09), rgba(244,114,182,0.13));
  border: 1px solid rgba(199, 40, 90, 0.2);
  color: #c7285a;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ LEFT PANE (Desktop Only Visuals) Ã¢â€â‚¬Ã¢â€â‚¬ */
.auth-left {
  flex: 1;
  max-width: 45%;
  background: #0D0B14;
  padding: 3.5rem 3rem 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  border-right: none;
}

/* Theme-consistent orbs for the light branding side */
.auth-left::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(233, 30, 140, 0.18) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.auth-left::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.auth-left-content {
  position: relative;
  z-index: 2;
}

.auth-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.auth-logo-wrap img {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 0 18px rgba(233, 30, 140, 0.35));
}

.auth-brand-name {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-align: center;
  line-height: 1.2;
}

.auth-title {
  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.04em;
}

.auth-title span {
  color: #F472B6; /* Accent Pink */
  background: linear-gradient(135deg, #c7285a, #F472B6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2rem;
  font-weight: 400;
}

.auth-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  font-weight: 500;
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: #F472B6;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(244, 114, 182, 0.6);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RIGHT PANE (All screens) Ã¢â€â‚¬Ã¢â€â‚¬ */
.auth-right {
  flex: 1.5;
  background: #fffafb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}

/* Auth Headers */
.mobile-auth-logo {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.auth-header-desktop {
  margin-bottom: 2rem;
}

.auth-header-desktop h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1523;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.auth-header-desktop p {
  color: #8e7381;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ RESPONSIVE ADAPTATIONS Ã¢â€â‚¬Ã¢â€â‚¬ */
@media (max-width: 992px) {
  .auth-left {
    display: none;
  }
  
  .auth-right {
    padding: 1.5rem;
  }

  .mobile-auth-logo {
    display: flex;
  }

  .mobile-auth-logo img {
    height: 70px;
  }

  .mobile-auth-logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c7285a;
    letter-spacing: -0.03em;
  }

  .auth-header-desktop {
    display: none;
  }

  .login-card {
    box-shadow: none;
    border: none;
    background: transparent;
  }

  .card-inner {
    padding: 0;
  }
}

@media (min-width: 993px) {
  .login-card {
    max-width: 440px;
    box-shadow: none;
    background: transparent;
    border: none;
  }
  
  .login-card:hover {
     box-shadow: none;
     transform: none;
  }
}

.social-btn:hover {
  background: #fff6f9;
  border-color: #d16a8f;
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(190, 60, 100, 0.1);
}

.signup-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #8c5a6e;
  font-weight: 500;
}

.signup-footer a {
  color: #bc2b60;
  text-decoration: none;
  font-weight: 800;
  margin-left: 0.3rem;
  border-bottom: 1.5px solid #f2bfd0;
  transition: all 0.2s;
}

.signup-footer a:hover {
  color: #8f1e4a;
  border-bottom-color: #bc2b60;
}

/* responsive: mobile view & desktop adjustments */
@media (max-width: 550px) {
  .signup-right {
    padding: 0.5rem;
  }

  .card-inner {
    padding: 1.2rem 1rem 1.4rem;
  }

  .logo-container {
    margin-top: 0.5rem !important;
    margin-bottom: 0.8rem !important;
    gap: 0.3rem !important;
  }

  .logo-container img {
    height: 55px !important;
  }

  .logo-text h1 {
    font-size: clamp(1.1rem, 5.5vw, 1.4rem) !important;
  }

  .motto {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
    margin: 0.4rem auto 0.8rem auto;
  }

  .input-group {
    margin-bottom: 0.7rem;
  }

  .login-card label {
    margin-bottom: 0.3rem;
    font-size: 0.75rem;
  }

  .input-field {
    padding: 0.65rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 0.8rem;
  }

  .remember-row {
    margin-bottom: 0.8rem;
  }

  .forget-link,
  .checkbox-wrapper {
    font-size: 0.75rem;
  }

  .signin-btn {
    padding: 0.7rem;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
  }

  .or-divider {
    margin: 0.5rem 0 0.8rem 0;
  }

  .social-btn {
    padding: 0.6rem;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .signup-footer {
    margin-top: 0.8rem;
    font-size: 0.8rem;
  }
}

@media (max-height: 700px) and (max-width: 550px) {

  /* Ultra-compression for shorter mobile screens (e.g. older iPhones) */
  .logo-container img {
    height: 45px !important;
  }

  .motto {
    display: none;
  }

  /* Hide secondary motto entirely to save massive vertical space */
  .card-inner {
    padding: 0.8rem 1rem 1rem;
  }

  .input-field {
    padding: 0.55rem 0.8rem;
  }
}

/* additional fine-tuning */
@media (max-width: 420px) {
  .logo-text h1 {
    font-size: 1.45rem;
  }

  .remember-row {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ NAV Ã¢â€â‚¬Ã¢â€â‚¬ */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow .3s;
}

.nav-wrap.scrolled {
  box-shadow: 0 2px 24px rgba(233, 30, 140, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 5px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #FFF0F8;
    color: #E91E8C;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 1px solid rgba(233,30,140,0.08);
    backdrop-filter: blur(4px);
    width: fit-content;
}

@media (min-width: 1024px) {
    .desktop-header-center {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.section-badge i {
    font-size: 0.82rem;
}

.mobile-only {
  display: none !important;
}

.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
}

.logo-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), #FF6B9D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.35);
}

.logo-text {
  font-weight: 800;
  font-size: 15px;
  color: var(--dark);
  letter-spacing: -.02em;
}

.logo-text span {
  color: var(--pink);
}

.hamburger {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1.5px solid #E5E7EB;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  background: #fff;
}

.hamburger span {
  width: 16px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* .nav-desktop{display:none;align-items:center;gap:2rem;} */
.nav-desktop { display: none;
  gap: 0.8rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.nav-desktop a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #4B5563;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-desktop a:hover {
  background: rgba(233, 30, 140, 0.08);
  color: var(--pink);
}

.nav-desktop .active {
  background: rgba(233, 30, 140, 0.1);
  color: var(--pink) !important;
  border-radius: 50px;
}

.nav-cta-row {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.app-btn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1.5px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  background: #fff;
  transition: border-color .2s;
}

.app-btn:hover {
  border-color: var(--pink);
}

/* Nav auth buttons: Log In, Sign Up, Logout */
.btn-nav {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn-login {
  background: #fff;
  color: var(--pink, #E91E8C);
  border: 1.5px solid var(--pink, #E91E8C);
}

.btn-login:hover {
  background: rgba(233, 30, 140, 0.06);
  border-color: #d0187a;
}

.btn-signup {
  background: linear-gradient(135deg, var(--pink, #E91E8C), #FF6B9D);
  color: #fff;
  box-shadow: 0 2px 12px rgba(233, 30, 140, 0.25);
}

.btn-signup:hover {
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.35);
  transform: translateY(-1px);
}

.btn-logout {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #374151;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-logout:hover {
  background: #f1f3f5;
  color: #111827;
  transform: translateY(-1px);
}

.mob-menu .btn-nav {
  width: 100%;
  padding: 0.65rem 1rem;
}

/* Mobile Menu */
.mob-menu {
  display: none;
  position: absolute;
  top: 100%;
  height: auto;
  max-height: 85vh;
  overflow-y: auto;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #F3F4F6;
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.mob-menu.open {
  display: block;
}

.mob-menu a {
  display: block;
  padding: .75rem 0;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid #F9FAFB;
}

.mob-menu a:hover {
  color: var(--pink);
}

.mob-cta {
  margin-top: 1rem;
  width: 100%;
  padding: .85rem;
  background: linear-gradient(135deg, var(--pink), #FF6B9D);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.3);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ HERO Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero {
  padding: 6.5rem 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-video {
  position: absolute;
  left: 50%;
  width: 1700px;
  height: 856px;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: brightness(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 46%);
  z-index: 2;
  height: 530px;
}

.homeBG {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--pink-light);
  border: 1px solid rgba(233, 30, 140, 0.2);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1.4rem;
  letter-spacing: .02em;
  animation: fadeUp .6s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero-tag {
  font-size: clamp(1.5rem, 4.5vw, 2.1rem);
  font-weight: 800;
  color: var(--pink);
  display: block;
  margin-bottom: .2rem;
  animation: fadeUp .6s .1s ease both;
  line-height: 1.2;
}

.hero-h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.1rem;
  animation: fadeUp .6s .2s ease both;
}

.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.05rem);
  color: #000000;
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  animation: fadeUp .6s .3s ease both;
}

.hero-sub .pk {
  color: var(--pink);
  font-weight: 700;
}

.hero-sub .og {
  color: var(--orange);
  font-weight: 700;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
  animation: fadeUp .6s .4s ease both;
  margin-bottom: 2.5rem;
}

.btn-main {
  width: 100%;
  max-width: 320px;
  padding: .95rem 2rem;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -.01em;
}

.btn-main:hover {
  background: #1F2937;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
  width: 100%;
  max-width: 320px;
  padding: .95rem 2rem;
  background: #fff;
  color: var(--dark);
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ HERO CARDS Ã¢â€â‚¬Ã¢â€â‚¬ */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeUp .6s .5s ease both;
}

.hcard {
  background: #F9FAFB;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid #F3F4F6;
}

.hcard-main {
  background: linear-gradient(135deg, #FFF0F8, #fff);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(233, 30, 140, 0.12);
}

.hcard-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), #FF6B9D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
}

.hcard-txt h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}

.hcard-txt p {
  font-size: .82rem;
  color: var(--gray);
  margin-top: .15rem;
}

.loved-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--pink);
  color: #fff;
  border-radius: 50px;
  padding: .32rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  margin-top: .7rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ STATS ROW Ã¢â€â‚¬Ã¢â€â‚¬ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-bottom: 3rem;
  animation: fadeUp .6s .6s ease both;
}

.stat-card {
  background: var(--pink-light);
  border-radius: 16px;
  padding: 1.1rem;
  text-align: center;
  border: 1px solid rgba(233, 30, 140, 0.1);
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pink);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: .75rem;
  color: var(--gray);
  margin-top: .3rem;
  font-weight: 500;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ TICKER Ã¢â€â‚¬Ã¢â€â‚¬ */
.ticker-wrap {
  padding: 1.4rem 0;
  border-top: 1px solid #F3F4F6;
  border-bottom: 1px solid #F3F4F6;
  background: #FAFAFA;
  overflow: hidden;
}

.ticker-label {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 1.1rem;
}

.mq-wrap {
  overflow: hidden;
  mask: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.mq-track {
  display: flex;
  gap: 1rem;
  animation: mqscroll 20s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.mq-track2 {
  animation-direction: reverse;
  animation-duration: 17s;
  margin-top: .7rem;
}

@keyframes mqscroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

@keyframes mqscroll-reverse {
  from {
    transform: translateX(-50%)
  }

  to {
    transform: translateX(0)
  }
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  padding: .5rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: #374151;
  white-space: nowrap;
}

.chip-ico {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ SECTION SHARED Ã¢â€â‚¬Ã¢â€â‚¬ */
.section {
  padding: 2rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 0;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--pink-light);
  border-radius: 50px;
  padding: .3rem .85rem;
  font-size: .75rem;
  font-weight: 700;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .9rem;
}

.sec-h {
  font-size: clamp(1.55rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -.025em;
  margin-bottom: .8rem;
}

.sec-p {
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 540px;
}

.pink-word {
  color: var(--pink);
}

.orange-word {
  color: var(--orange);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ FEATURES Ã¢â€â‚¬Ã¢â€â‚¬ */
.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
  margin-top: 2rem;
}

.feat-card {
  background: #fff;
  border: 1.5px solid #F3F4F6;
  border-radius: 18px;
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all .3s;
}

.feat-card:hover {
  border-color: rgba(233, 30, 140, 0.25);
  box-shadow: 0 8px 28px rgba(233, 30, 140, 0.08);
  transform: translateY(-3px);
}

.feat-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feat-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .35rem;
}

.feat-body p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ HOW Ã¢â€â‚¬Ã¢â€â‚¬ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.step-row {
  display: flex;
  gap: 1rem;
  position: relative;
  padding-bottom: 2rem;
}

.step-row:last-child {
  padding-bottom: 0;
}

.step-row:last-child .step-line {
  display: none;
}

.step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #FF6B9D);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(233, 30, 140, 0.35);
  flex-shrink: 0;
}

.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--pink), transparent);
  margin-top: .4rem;
}

.step-body {
  padding-top: .4rem;
}

.step-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .3rem;
}

.step-body p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ COLLEGES Ã¢â€â‚¬Ã¢â€â‚¬ */
.col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 2rem;
}

.col-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(233, 30, 140, 0.08);
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.col-card:hover {
  border-color: rgba(233, 30, 140, 0.35);
  box-shadow: 0 30px 60px rgba(233, 30, 140, 0.12), 0 0 0 4px rgba(233, 30, 140, 0.04);
  transform: translateY(-12px) scale(1.02);
}

.col-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}

.col-card:hover .arrow-indicator {
  background: var(--pink) !important;
  transform: translateX(4px) rotate(-45deg);
}

.col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.col-card:hover .col-img img {
  transform: scale(1.08);
}

.colleges-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 400px;
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
}

.filter-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group label {
  font-size: 14px;
  font-weight: 500;
  color: #555;
}

.filter-group input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}

.filter-group input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

@media (max-width: 768px) {
  .colleges-filter-bar {
    max-width: 100%;
    padding: 20px;
  }
}

.col-badge {
  position: absolute;
  top: .7rem;
  right: .7rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(233, 30, 140, 0.2);
  color: var(--pink);
  font-size: .68rem;
  font-weight: 700;
  padding: .22rem .65rem;
  border-radius: 50px;
}

.col-body {
  padding: 1.4rem;
  position: relative;
  background: transparent;
  height: 100%;
}

.col-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .2rem;
}

.col-loc {
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
  gap: .3rem;
}

.col-tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: .9rem;
}

.ctag {
  background: var(--pink-light);
  border: 1px solid rgba(233, 30, 140, 0.15);
  color: var(--pink);
  font-size: .7rem;
  font-weight: 700;
  padding: .18rem .6rem;
  border-radius: 50px;
}

.col-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .8rem;
  border-top: 1px solid #F9FAFB;
}

.crat {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  color: var(--gray);
}

.stars {
  color: #F59E0B;
  font-size: .8rem;
}

.cbtn {
  background: linear-gradient(135deg, var(--pink), #FF6B9D);
  color: #fff;
  border: none;
  padding: .42rem 1rem;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.cbtn:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(233, 30, 140, 0.4);
}

.test-outer {
  overflow: hidden;
  mask: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.test-track {
  display: flex;
  gap: 1rem;
  animation: ts 30s linear infinite;
  width: max-content;
}

.test-track:hover {
  animation-play-state: paused;
}

@keyframes ts {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.tc {
  width: 300px;
  flex-shrink: 0;
  background: #fff;
  border: 1.5px solid #F3F4F6;
  border-radius: 18px;
  padding: 1.4rem;
  transition: border-color .3s;
}

.tc:hover {
  border-color: rgba(233, 30, 140, 0.25);
}

.tq {
  font-size: 1.6rem;
  color: var(--pink);
  line-height: 1;
  margin-bottom: .6rem;
}

.tt {
  font-size: .84rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.ta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.tav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  border: 2px solid rgba(233, 30, 140, 0.2);
}

.tname {
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
}

.tcoll {
  font-size: .75rem;
  color: var(--gray);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ CTA Ã¢â€â‚¬Ã¢â€â‚¬ */
.cta-section {
  background: linear-gradient(135deg, var(--pink-light), #fff, var(--orange-light));
  padding: 4rem 1.25rem;
  text-align: center;
  border-top: 1px solid #F3F4F6;
  border-bottom: 1px solid #F3F4F6;
}

.cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.cta-h {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: .8rem;
  letter-spacing: -.025em;
}

.cta-p {
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
}

.cta-inp {
  width: 100%;
  max-width: 340px;
  padding: .9rem 1.2rem;
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  font-size: .92rem;
  outline: none;
  transition: border-color .25s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
}

.cta-inp::placeholder {
  color: #9CA3AF;
}

.cta-inp:focus {
  border-color: var(--pink);
}

.cta-btn {
  width: 100%;
  max-width: 340px;
  padding: .9rem;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(233, 30, 140, 0.3);
}

.cta-btn:hover {
  background: #D4187F;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.4);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ FOOTER Ã¢â€â‚¬Ã¢â€â‚¬ */
footer {
  padding: 3rem 1.25rem 1.5rem;
  background: #fff;
  border-top: 1px solid #F3F4F6;
}

.foot-brand {
  margin-bottom: 2rem;
}

.foot-brand p {
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.75;
  margin-top: .75rem;
}

.soc-row {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
}

.soc {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  border: 1.5px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  cursor: pointer;
  transition: all .25s;
  background: #fff;
}

.soc:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.foot-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.foot-col h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .9rem;
}

.foot-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.foot-links a {
  font-size: .82rem;
  color: var(--gray);
  text-decoration: none;
  transition: color .2s;
}

.foot-links a:hover {
  color: var(--pink);
}

.foot-bot {
  border-top: 1px solid #F3F4F6;
  padding-top: 1.2rem;
  text-align: center;
  font-size: .78rem;
  color: #9CA3AF;
}

.app-download {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ DETAIL PAGE Ã¢â€â‚¬Ã¢â€â‚¬ */
.page {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow-y: auto;
  background: #fff;
}

.page.active {
  display: block;
}

#home-page {
  display: block;
  position: relative;
}

/* ===== PREMIUM COLLEGE DETAIL PAGE ===== */
.det-pg {
  background: #ffffff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  animation: detSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

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

.det-hero {
  position: relative;
  height: 280px;
  width: 100%;
  background: #0D0B14;
  overflow: hidden;
}

.det-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  filter: brightness(0.9);
}

.det-bg-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  opacity: 0.15;
  z-index: 1;
}

.det-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #ffffff 5%, rgba(13, 11, 20, 0.4) 40%, transparent 100%);
  z-index: 2;
}

.det-hc {
  position: relative;
  margin-top: -80px;
  z-index: 10;
  padding: 0 1.5rem;
  text-align: center;
}

.det-name {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 850;
  color: var(--dark);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.det-loc {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--pink);
  background: var(--pink-light);
  display: inline-flex;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(233, 30, 140, 0.15);
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.08);
}

.det-cont {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* Redesigned Info Strip (Dashboard Layout) */
.det-info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.dic {
  background: #ffffff;
  border: 1.5px solid #F3F4F6;
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}

.dic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--pink);
  opacity: 0.6;
}

.dic:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 140, 0.3);
  box-shadow: 0 12px 30px rgba(233, 30, 140, 0.08);
}

.dic-l {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.dic-v {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
}

.det-sec-h {
  font-size: 1.35rem;
  font-weight: 850;
  color: var(--dark);
  margin: 3rem 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: -0.02em;
}

.det-sec-h::before {
  content: '✦';
  color: var(--pink);
  font-size: 1.1rem;
}

.det-txt {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #4B5563;
  font-weight: 450;
  background: linear-gradient(to right, #f9fafb, #ffffff);
  padding: 1.5rem;
  border-radius: 16px;
  border-left: 3px solid #E5E7EB;
}

.crs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.crs-item {
  background: #ffffff;
  border: 1.5px solid #F3F4F6;
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s;
}

.crs-item:hover {
  border-color: var(--pink);
  background: var(--pink-light);
}

.crs-item strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}

.crs-item span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pink);
  background: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  border: 1px solid rgba(233, 30, 140, 0.1);
}

@media (max-width: 768px) {
  .det-hero { height: 220px; }
  .det-hc { margin-top: -60px; }
  .det-info-strip { grid-template-columns: 1fr 1fr; }
  .dic { padding: 1.2rem 1rem; }
  .det-name { font-size: 1.8rem; }
}

.crs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.crs-item-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 30, 140, 0.35);
  box-shadow: 0 20px 50px rgba(233, 30, 140, 0.12);
}
.apply-sticky {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #F3F4F6;
  padding: 1rem 1.25rem;
  display: flex;
  gap: .75rem;
  z-index: 10;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.apply-btn-main {
  flex: 1;
  padding: .85rem;
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 14px rgba(233, 30, 140, 0.3);
  transition: all .25s;
}

.apply-btn-main:hover {
  background: #D4187F;
}

.wish-btn {
  padding: .85rem 1rem;
  background: #fff;
  color: var(--dark);
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .25s;
}

.wish-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ REVEAL Ã¢â€â‚¬Ã¢â€â‚¬ */
.rev {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.rev.vis {
  opacity: 1;
  transform: none;
}

.rd1 {
  transition-delay: .1s
}

.rd2 {
  transition-delay: .18s
}

.rd3 {
  transition-delay: .26s
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ COURSE CATEGORY TILES Ã¢â€â‚¬Ã¢â€â‚¬ */
/* Ã¢â€â‚¬Ã¢â€â‚¬ COURSE CATEGORY TILES (redesigned) Ã¢â€â‚¬Ã¢â€â‚¬ */
.crs-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

.crs-cat-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: .85rem;
  position: relative;
  overflow: hidden;
}

.crs-cat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--pink), #e91e63);
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transform: scaleY(0.7);
  transition: all .35s ease;
}

.crs-cat-card:hover {
  border-color: rgba(233, 30, 140, 0.3);
  box-shadow: 0 8px 30px rgba(233, 30, 140, 0.12);
  transform: translateY(-4px);
}

.crs-cat-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.full-stretch-img-sec {
  width: 100%;
  max-width: 100vw;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  justify-content: center;
  background: #fff;
}

.full-stretch-img {
  width: 100%;
  max-width: 1200px;
  /* matches section content width */
  height: auto;
  display: block;
}

.crs-cat-card:hover::before {
  opacity: 1;
}

.crs-cat-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.crs-cat-info {
  flex: 1;
  min-width: 0;
}

.crs-cat-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.crs-cat-count {
  font-size: .72rem;
  color: var(--gray);
  margin-top: .15rem;
}

.crs-cat-arrow {
  font-size: .85rem;
  color: var(--pink);
  opacity: 0;
  transition: opacity .2s, transform .2s;
  transform: translateX(-4px);
  flex-shrink: 0;
}

.crs-cat-card:hover .crs-cat-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* "All Courses" card spans full width */
.crs-cat-card.crs-cat-all {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--pink-light), #FFF0F8);
  border-color: rgba(233, 30, 140, 0.2);
}

.crs-cat-card.crs-cat-all .crs-cat-name {
  font-size: .95rem;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ DETAIL PAGE FIX Ã¢â€â‚¬Ã¢â€â‚¬ */
.page {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  overflow-y: auto;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}

.page.active {
  display: block;
}

/* Fix det-hero image height on mobile */
.det-hero-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media(min-width: 768px) {
  .det-hero-img {
    height: 320px;
  }
}

/* Fix info strip wrapping on mobile */
@media(max-width: 480px) {
  .det-info-strip {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }

  .dic {
    padding: .75rem;
  }

  .dic-v {
    font-size: .82rem;
  }

  .det-name {
    font-size: 1.4rem;
  }

  .det-cont {
    padding: 1rem;
  }
}

/* Fix course chips overflow on mobile */
.crs-college-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .6rem 0 .4rem;
  max-width: 100%;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ COURSE RESULTS Ã¢â‚¬â€ COLLEGE CARDS Ã¢â€â‚¬Ã¢â€â‚¬ */
.crs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.crs-card {
  background: #fff;
  border: 1.5px solid #F3F4F6;
  border-radius: 20px;
  overflow: hidden;
  height: fit-content;
  cursor: default;
  transition: all .35s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.crs-card:hover {
  border-color: rgba(233, 30, 140, 0.3);
  box-shadow: 0 12px 40px rgba(233, 30, 140, 0.12);
  transform: translateY(-4px);
}

.crs-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.crs-card-img-fallback {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #FFF0F8, #FCE4F3);
}

.crs-card-body {
  padding: 1.1rem;
  background: #f3f3f3;
}

.crs-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .2rem;
}

.crs-card-loc {
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: .5rem;
}

/* Course chips inside card */
.crs-college-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .6rem 0 .5rem;
}

.crs-college-chip {
  background: var(--pink-light);
  border: 1px solid rgba(233, 30, 140, 0.2);
  color: var(--pink);
  font-size: .72rem;
  font-weight: 700;
  border-radius: 50px;
  padding: .28rem .75rem;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.crs-college-chip:hover {
  background: var(--pink);
  color: #fff;
}

.crs-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .65rem;
  border-top: 1px solid #E9E9E9;
  margin-top: .4rem;
}

/* Result count */
.crs-result-count {
  font-size: .82rem;
  color: var(--gray);
  margin: .75rem 0 .25rem;
  font-weight: 500;
}

@media(min-width: 640px) {
  .crs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width: 1024px) {
  .crs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 480px) {

  .crs-card-img,
  .crs-card-img-fallback {
    height: 120px;
  }

  .crs-card-body {
    padding: .9rem;
  }
}

.crs-college-chip {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Fix crs-card image height consistency */
.crs-card-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.crs-card-img-fallback {
  width: 100%;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  background: linear-gradient(135deg, #FFF0F8, #FCE4F3);
}

/* Fix crs-grid on mobile */
@media(max-width: 480px) {
  .crs-grid {
    grid-template-columns: 1fr;
  }

  .crs-card-body {
    padding: .85rem;
  }

  .crs-card-name {
    font-size: .92rem;
  }
}

/* Ensure course result count doesn't overlap */
.crs-result-count {
  font-size: .82rem;
  color: var(--gray);
  margin: .75rem 0 .25rem;
  font-weight: 500;
}

/* REPLACE the global img rule with a scoped one */
img {
  max-width: 100%;
  height: auto;
}

video {
  max-width: 100%;
  height: auto;
}

@media(min-width: 640px) {

  .crs-cat-card.crs-cat-all {
    grid-column: span 1;
  }
}

@media(min-width: 1024px) {
  .crs-cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ DESKTOP Ã¢â€â‚¬Ã¢â€â‚¬ */
@media(max-width:768px) {
  .homeBG {
    margin-top: 75px;
  }

  .mq-track {
    animation: mqscroll 10s linear infinite;
  }

  .mq-track2 {
    animation: mqscroll-reverse 8s linear infinite;
  }

  .stats-row {
    display: none;
  }
}

@media(min-width:769px) {
  .nav-desktop {
    display: flex;
  }

  .nav-cta-row {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .eye-btn {
    right: 34px;
  }

  .hero {
    padding: 7.5rem 2rem 3rem;
    text-align: left;
  }

  .hero-badge,
  .hero-tag,
  .hero-h1,
  .hero-sub {
    text-align: left;
  }

  .hero-btns {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .btn-main,
  .btn-secondary {
    width: auto;
    max-width: none;
  }

  .hero-cards {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .col-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-form {
    flex-direction: row;
    justify-content: center;
  }

  .cta-inp,
  .cta-btn {
    width: auto;
    max-width: none;
  }

  .cta-inp {
    width: 280px;
  }

  .foot-cols {
    grid-template-columns: repeat(4, 1fr);
  }

  .det-info-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .crs-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .det-name {
    font-size: 2.4rem;
  }

  .det-hero {
    height: 320px;
  }
}

@media(min-width:1024px) {
  .col-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-cards {
    grid-template-columns: 2fr 1fr;
  }

  .det-info-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Admin Panel Ã¢â€â‚¬Ã¢â€â‚¬ */
.admin-panel {
  min-height: 100vh;
  background: #f8fafc;
  padding: 2rem 1rem;
}

.admin-panel-inner {
  margin: 0 75px;
}

.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-panel-header h2 {
  font-size: 1.5rem;
  color: #1e293b;
  margin: 0;
}

.admin-message {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1rem;
}

.admin-message-ok {
  color: #059669;
}

.admin-message-err {
  color: #dc2626;
}

.admin-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table th,
.admin-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.admin-table th {
  background: #f1f5f9;
  font-weight: 600;
  color: #475569;
}

.admin-table tbody tr:hover {
  background: #f8fafc;
}

.nav-user-name {
  font-size: 0.9rem !important;
  color: #e91e63 !important;
}

.nav-admin-link {
  font-size: 0.8rem;
  color: #6366f1;
  text-decoration: none;
}

.nav-admin-link:hover {
  text-decoration: underline;
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.admin-tab {
  padding: 0.5rem 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.admin-tab:hover {
  background: #f1f5f9;
}

.admin-tab.active {
  background: #6366f1;
  color: #fff;
  border-color: #6366f1;
}

.admin-section {
  margin-top: 0.5rem;
}

.admin-edit-form {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  max-width: 600px;
}

.admin-edit-form label {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #475569;
}

.admin-edit-form input,
.admin-edit-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  box-sizing: border-box;
}

.admin-edit-form h3 {
  margin: 0 0 1rem 0;
  font-size: 1.1rem;
}

.admin-form-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.colleges-empty {
  text-align: center;
  color: #64748b;
  padding: 2rem;
}

/* mobile sidebar */
@media(max-width:767px) {
  .colleges-filter-bar {
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    border-radius: 0;
  }

  .colleges-filter-bar.active {
    right: 0;
  }

  .login-card {
    display: block;
    flex-direction: row;
  }

  .loginRight {
    width: 100%;
  }

  .crs-cat-grid {
    display: grid;
    grid-template-columns: auto;
    gap: .75rem;
    margin-top: 1.2rem;
  }
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ FULL STRETCH IMAGE Ã¢â€â‚¬Ã¢â€â‚¬ */
.full-stretch-img-sec {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  line-height: 0;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.full-stretch-img {
  width: 100%;
  height: auto;
  display: block;
}


/* Ã¢â€â‚¬Ã¢â€â‚¬ SITE FOOTER Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-footer {
  background: #FFF5F8;
  border-top: 1px solid #F3E0E8;
  padding: 3rem 1.25rem 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: #8B1C4B;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--pink);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #E5C9D6;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #9CA3AF;
  font-weight: 500;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ REDESIGN REFINEMENTS Ã¢â€â‚¬Ã¢â€â‚¬ */
.crs-cat-card:hover {
  border-color: rgba(233, 30, 140, 0.4);
  box-shadow: 0 10px 35px rgba(233, 30, 140, 0.15);
  transform: translateY(-6px);
}

.crs-cat-card:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ COLLEGE SEARCH BAR Ã¢â€â‚¬Ã¢â€â‚¬ */
.search-container {
  max-width: 950px;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(233, 30, 99, 0.1);
  border-radius: 100px;
  padding: 0.4rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 1000;
  /* Ensure search bar and dropdown are above all else */
  transition: all 0.3s ease;
}


.search-box {
  flex: 1.5;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  position: relative;
  gap: 0.75rem;
}

.search-box.loc-box {
  flex: 1;
  cursor: pointer;
  user-select: none;
  min-width: 200px;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 1.5rem;
}

.search-box:not(:last-child)::after {
  display: none;
  /* replaced with border-left on loc-box */
}

.search-box i {
  color: var(--pink);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.search-box input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  padding: 0.8rem 0;
  outline: none;
}

.selected-location {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropdown-arrow {
  font-size: 0.8rem;
  color: var(--pink);
  transition: transform 0.3s;
  margin-left: auto;
}

.btn-search {
  background: var(--pink);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-search:hover {
  background: #E31671;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(227, 22, 113, 0.2);
}

.search-box.active .dropdown-arrow {
  transform: rotate(180deg);
}

/* .custom-dropdown base styles now in the unified block below (line ~3565) */

.dropdown-item {
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray);
  border-radius: 12px;
  transition: all 0.2s;
  cursor: pointer;
}

.dropdown-item:hover {
  background: rgba(233, 30, 99, 0.05);
  color: var(--pink);
  padding-left: 1.25rem;
}

@media (max-width: 768px) {
  .search-container {
    flex-direction: row !important;
    border-radius: 100px !important;
    padding: 0.3rem 0.5rem !important;
    gap: 0 !important;
    margin: 1rem auto !important;
    align-items: center !important;
  }

  .search-box {
    padding: 0 0.6rem !important;
    width: auto !important;
    flex: 1.5 !important;
    min-width: 0 !important;
  }

  .search-box input {
    font-size: 0.78rem !important;
    padding: 0.65rem 0 !important;
  }

  .search-box i {
    font-size: 0.85rem !important;
  }

  .search-box.loc-box {
    flex: 1 !important;
    border-left: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-top: none !important;
    padding-top: 0 !important;
    padding: 0 0.6rem !important;
    min-width: 0 !important;
  }

  .selected-location {
    font-size: 0.78rem !important;
    max-width: 80px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .dropdown-arrow {
    font-size: 0.7rem !important;
  }

  /* On mobile keep the dropdown absolutely positioned so it overlays */
  .custom-dropdown {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: auto !important;
    right: 0 !important;
    width: 280px !important;
    max-width: calc(100vw - 32px) !important;
    transform: none !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
    background: #fff !important;
    border-radius: 20px !important;
    padding: 0.8rem !important;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15) !important;
    border: 1px solid rgba(233,30,140,0.15) !important;
  }

  .custom-dropdown.active,
  .search-box.active .custom-dropdown {
    display: block !important;
  }

  .btn-search {
    padding: 0.6rem 1rem !important;
    width: auto !important;
    font-size: 0.78rem !important;
    flex-shrink: 0 !important;
  }
}

.cat-discovery-box {
    position: relative;
    height: 140px;
    border-radius: 24px;
    background: #fff;
    border: 2px solid #FFF5FA;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(233,30,140,0.03);
}

.cat-discovery-box:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    background: #FFF5FA;
    box-shadow: 0 10px 25px rgba(233,30,140,0.08);
}

.cat-discovery-icon {
    width: 54px;
    height: 54px;
    background: var(--pink-light);
    border-radius: 16px;
    display: flex;
    align-items:center;
    justify-content:center;
    font-size: 1.6rem;
    color: var(--pink);
    margin-right: 1.2rem;
    flex-shrink: 0;
}

.cat-discovery-content {
    flex: 1;
}

.cat-discovery-title {
    font-size: 1.15rem;
    font-weight: 850;
    color: var(--dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.cat-discovery-msg {
    font-size: 0.8rem;
    color: var(--pink);
    margin-top: 0.2rem;
    font-weight: 700;
}

.cat-discovery-arrow {
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    transition: 0.3s;
}

.cat-discovery-box:hover .cat-discovery-arrow {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}

/* Hide ::before gradient on pink/white theme */
.cat-discovery-box::before { display:none; }

/* ===== COURSE CATEGORIES (MODERN PINK MINIMALIST DESIGN) ===== */
.cat-discovery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cat-discovery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.cat-discovery-title {
    font-size: 1.05rem;
    font-weight: 850;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .cat-discovery-title {
        font-size: 1.3rem;
    }
}

.crs-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.crs-cat-card {
    position: relative;
    height: 280px;
    border-radius: 32px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-size: cover;
    background-position: center;
    border: 1.5px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.crs-cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, rgba(0,0,0,0.3) 60%, transparent);
    z-index: 1;
}

.crs-cat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(233,30,140,0.15);
    border-color: var(--pink);
}

/* Redesigned Discovery Categories */
.cat-discovery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .cat-discovery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

.crs-cat-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, #FFFFFF 0%, #FDF2F8 100%);
    box-shadow: 0 35px 70px rgba(233, 30, 140, 0.15);
    border-color: rgba(233, 30, 140, 0.35);
}

.crs-cat-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    background: #fff;
    border: 1px solid rgba(233, 30, 140, 0.1);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    z-index: 2;
}

.crs-cat-card:hover .crs-cat-icon-box {
    transform: scale(1.1) rotate(-6deg);
    box-shadow: 0 15px 30px rgba(233, 30, 140, 0.1);
}

.crs-cat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 2;
}

.crs-cat-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--pink, #E91E8C); 
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.05em;
    margin: 0;
    line-height: 1.05;
}

.crs-cat-count {
    font-size: 1rem;
    color: #4B5563;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.crs-cat-footer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--pink, #E91E8C);
    font-weight: 800;
    font-size: 0.95rem;
    margin-top: auto;
    transition: transform 0.3s;
    z-index: 2;
}

.crs-cat-card:hover .crs-cat-footer {
    transform: translateX(12px);
}

.crs-cat-explore {
    border-bottom: 2.5px solid rgba(233, 30, 140, 0.2);
    padding-bottom: 2px;
}

/* ===== REDESIGNED COURSE FILTERS ===== */
.crs-filter-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 0 0.5rem;
}

.crs-filter-row .search-box.loc-box {
    background: #fff;
    border: 1.5px solid rgba(233, 30, 140, 0.12);
    border-radius: 100px; /* Pill shaped for premium feel */
    padding: 0.8rem 1.6rem;
    height: auto;
    width: auto;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.crs-filter-row .search-box.loc-box:hover {
    border-color: rgba(233, 30, 140, 0.3);
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.1);
    transform: translateY(-2px);
}

.crs-filter-row .search-box.loc-box i:first-child {
    color: var(--pink);
    font-size: 1.1rem;
}

.crs-filter-row .selected-location {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.crs-filter-row .dropdown-arrow {
    color: var(--pink);
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.crs-filter-row .dropdown-arrow.active {
    transform: rotate(180deg);
}

.crs-result-count {
    font-size: 1.05rem;
    color: var(--gray);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.01em;
}

.crs-result-count span {
    color: var(--pink);
    margin-right: 4px;
}

.crs-cat-all {
    background: linear-gradient(135deg, #fff 0%, var(--pink-light) 100%);
}

.crs-result-count {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

@media (max-width: 900px) {
    .crs-cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 600px) {
    .crs-cat-grid {
        grid-template-columns: 1fr;
    }
    .crs-cat-card {
        padding: 1.8rem;
    }
    .crs-cat-name {
        font-size: 1.5rem;
    }
}

/* ===== PREMIUM DROPDOWN MENU ===== */
.search-box.loc-box {
    position: relative; /* Anchor for absolute dropdown */
    user-select: none;
}

.custom-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    width: 380px;
    background: #ffffff;
    border-radius: 2.22rem;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
    padding: 1.25rem;
    z-index: 9999;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    animation: dropdownPop 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Show dropdown when trigger or dropdown itself has .active */
.custom-dropdown.active,
.search-box.active .custom-dropdown,
.search-box.loc-box.active .custom-dropdown {
    display: block;
}

/* Arrow rotation when active */
.search-box.loc-box.active .dropdown-arrow,
.dropdown-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

@keyframes dropdownPop {
    from { opacity: 0; transform: translateY(10px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.dropdown-item {
    padding: 1.15rem 1.6rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #4B5563; /* Premium slate grey */
    border-radius: 1.4rem;
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: #FFF5F9; /* Very soft pink highlight */
    color: var(--pink, #E91E8C);
    padding-left: 2rem; /* Subtle slide effect */
}

.dropdown-item:active {
    transform: scale(0.98);
}

/* Ensure course specific container also works well */
#courseFilterContainer .custom-dropdown {
    width: 100%; /* Match container width for course-wise */
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ COURSE LIST VIEW Ã¢â€â‚¬Ã¢â€â‚¬ */
.course-list-wrap {
    animation: slideIn 0.4s ease both;
}

.course-list-section {
    margin-bottom: 3rem;
}

.course-list-h {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.course-list-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.course-list-item {
    background: #fff;
    border: 1.8px solid rgba(233, 30, 140, 0.12);
    border-radius: 100px;
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #4B5563;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.course-list-item:hover {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(233, 30, 140, 0.18);
}

.course-list-item:active {
    transform: scale(0.96);
}


/* --- COMPARISON STYLES --- */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

.compare-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s ease;
}

.compare-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.compare-img {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.compare-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.compare-loc {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.compare-attr {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.compare-attr:last-child {
    border-bottom: none;
}

.attr-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.4rem;
    letter-spacing: 0.5px;
}

.attr-val {
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
    font-size: 0.9rem;
}

.attr-val.courses-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.compare-pill {
    padding: 0.3rem 0.75rem;
    background: var(--pink-light);
    color: var(--pink);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

/* Full width compare */
#compare-section {
    max-width: 1600px;
    width: 95%;
}

/* Fill Screen for Comparison */
.comparison-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
#compare-section .compare-controls {
  max-width: 1400px;
  margin-inline: auto;
}

/* Force Full Screen for Comparison */
#compare-section {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
}

.compare-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
}

@media (max-width: 768px) {
    .compare-controls, 
    .comparison-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    #compare-section {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .compare-card {
        padding: 1.5rem !important;
    }
}

/* Increase Comparison Box Size */
.compare-card {
    padding: 3rem !important;
}
.compare-title {
    font-size: 2.2rem !important;
    margin-bottom: 1rem !important;
}
.compare-attr {
    margin-bottom: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

/* ULTIMATE STRETCH FOR COMPARISON */
#compare-section {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.comparison-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 3rem !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    justify-content: stretch !important;
    align-items: stretch !important;
}

.compare-card {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    flex-basis: 0;
    flex-grow: 1;
}

/* AI Analysis UI */
.ai-insight-box {
    background: linear-gradient(135deg, #FAF5FF, #FDF4FF);
    border: 1px solid #E9D5FF;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-insight-box::before {
    content: '?';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.05;
    transform: rotate(15deg);
}

.ai-verdict-tag {
    display: inline-block;
    background: #7C3AED;
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.ai-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.ai-fact-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid #F3E8FF;
}

.ai-fact-title {
    color: #7C3AED;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* PINK THEME OVERRIDES FOR AI BOX */
.ai-insight-box {
    background: linear-gradient(135deg, var(--pink-light), #FFF5FA) !important;
    border-color: var(--pink-mid) !important;
    box-shadow: 0 15px 40px rgba(233, 30, 140, 0.08) !important;
}
.ai-verdict-tag {
    background: var(--pink) !important;
}
.ai-fact-card {
    border-color: var(--pink-mid) !important;
}
.ai-fact-title {
    color: var(--pink) !important;
}

/* ------------------------------------------
   GLOBAL PREMIUM ANIMATIONS
   ------------------------------------------ */

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

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(233, 30, 140, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(233, 30, 140, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 30, 140, 0); }
}

@media (max-width: 768px) {
    .desktop-only-ai {
        display: none !important;
    }
}

/* Scroll Reveal Base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Lift & Scale */
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

/* Floating Effect */
.floating {
  animation: float 4s ease-in-out infinite;
}

/* Nav Link Underline Animation */
.nav-desktop a, .mob-menu a {
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after, .nav-desktop a.active::after {
  width: 100%;
}


/* ===== LOGIN PAGE ANIMATIONS ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(55px);
  animation: floatOrb 8s ease-in-out infinite alternate;
}
.orb-1 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(244,114,182,0.22) 0%,transparent 70%); top:-80px; right:-60px; animation-duration:9s; }
.orb-2 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(199,40,90,0.14) 0%,transparent 70%); bottom:80px; left:-40px; animation-duration:12s; animation-delay:-4s; }
.orb-3 { width: 150px; height: 150px; background: radial-gradient(circle, rgba(248,187,208,0.3) 0%,transparent 70%); top:50%; left:50%; animation-duration:7s; animation-delay:-2s; }
@keyframes floatOrb { 0%{transform:translate(0,0) scale(1);} 50%{transform:translate(30px,-30px) scale(1.08);} 100%{transform:translate(-20px,20px) scale(0.95);} }
.login-badge-wrap { margin-bottom: 2rem; }
.login-badge { display:inline-flex; align-items:center; gap:0.5rem; background:linear-gradient(135deg,rgba(199,40,90,0.1),rgba(244,114,182,0.15)); border:1.5px solid rgba(199,40,90,0.25); color:#b0174c; font-size:0.8rem; font-weight:700; padding:0.5rem 1.1rem; border-radius:50px; }
.pulse-badge { animation: pulseBadge 2.5s ease-in-out infinite; }
@keyframes pulseBadge { 0%,100%{box-shadow:0 0 0 0 rgba(199,40,90,0.2);} 50%{box-shadow:0 0 0 10px rgba(199,40,90,0);} }
.promise-cards { display:flex; flex-direction:column; gap:0.85rem; margin:1.8rem 0; }
.promise-card { display:flex; align-items:flex-start; gap:1rem; background:rgba(255,255,255,0.8); border:1px solid rgba(199,40,90,0.12); border-radius:14px; padding:1rem 1.2rem; backdrop-filter:blur(8px); transition:transform 0.25s ease,box-shadow 0.25s ease; }
.promise-card:hover { transform:translateX(7px); box-shadow:0 8px 24px rgba(199,40,90,0.12); }
.promise-icon { font-size:1.5rem; flex-shrink:0; line-height:1; }
.promise-text { display:flex; flex-direction:column; gap:0.2rem; }
.promise-text strong { font-size:0.9rem; font-weight:800; color:#c7285a; }
.promise-text span { font-size:0.78rem; color:#7a5468; font-weight:500; line-height:1.5; }
.promise-text em { font-style:italic; font-weight:700; color:#c7285a; }
.stat-row { display:flex; flex-wrap:wrap; gap:0.6rem; }
.stat-chip { background:linear-gradient(135deg,#c7285a,#e91e8c); color:#fff; font-size:0.72rem; font-weight:700; padding:0.38rem 0.95rem; border-radius:50px; letter-spacing:0.03em; box-shadow:0 4px 12px rgba(199,40,90,0.25); animation:chipFloat 4s ease-in-out infinite alternate; }
.stat-chip:nth-child(2){animation-delay:-1.3s;} .stat-chip:nth-child(3){animation-delay:-2.5s;}
@keyframes chipFloat { 0%{transform:translateY(0);} 100%{transform:translateY(-5px);} }
@keyframes slideUpFade { from{opacity:0;transform:translateY(28px);} to{opacity:1;transform:translateY(0);} }
.slide-up-form { animation: slideUpFade 0.65s cubic-bezier(0.22,1,0.36,1) both; }
.guarantee-banner { display:flex; align-items:center; gap:0.7rem; background:linear-gradient(135deg,#fff5f8,#ffe4ef); border:1.5px solid rgba(199,40,90,0.18); border-radius:12px; padding:0.75rem 1rem; font-size:0.82rem; color:#9b1d4e; font-weight:500; margin-bottom:1.5rem; line-height:1.45; }
.guarantee-banner strong { color:#c7285a; font-weight:800; }
.mobile-badge { display:inline-block; background:linear-gradient(135deg,rgba(199,40,90,0.09),rgba(244,114,182,0.13)); border:1px solid rgba(199,40,90,0.2); color:#c7285a; font-size:0.7rem; font-weight:700; padding:0.35rem 0.9rem; border-radius:50px; margin-top:0.5rem; }

/* ===== SINGLE PANE AUTH (Centered) ===== */
.single-pane-auth {
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #fff5f8 0%, #fffafb 100%);
  padding: 1rem;
}

.single-pane-auth .login-card {
  max-width: 450px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(199, 40, 90, 0.15), 0 1px 3px rgba(199, 40, 90, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 10;
  position: relative;
}

.single-pane-auth .card-inner {
  padding: 2.5rem 2rem;
}

.auth-center-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
}

.center-login-logo {
  height: 65px;
  width: auto;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 4px 8px rgba(199, 40, 90, 0.15));
}

.center-login-title {
  color: #c7285a;
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.zero-charge-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(199,40,90,0.08), rgba(244,114,182,0.12));
  border: 1px solid rgba(199, 40, 90, 0.2);
  color: #c7285a;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-top: 0.2rem;
}

.center-guarantee {
  justify-content: center;
  text-align: center;
  margin: 0 auto 1.5rem auto;
}

/* Orbs adjustments for single pane */
.single-pane-auth .orb-1 { width: 500px; height: 500px; top: -150px; right: -150px; }
.single-pane-auth .orb-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.single-pane-auth .orb-3 { display: none; }


/* ===== CENTER-FOCUSED DARK LEFT PANE ===== */
.center-focused {
  justify-content: center !important;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem !important;
}

.centered-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  max-width: 450px;
}

.auth-logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.auth-logo-center img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 25px rgba(233, 30, 140, 0.4));
  animation: pulseLogo 4s ease-in-out infinite;
}

@keyframes pulseLogo {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(233, 30, 140, 0.3)); }
  50% { filter: drop-shadow(0 0 35px rgba(233, 30, 140, 0.6)); }
}

.auth-logo-center h1 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.dark-theme-badge {
  background: rgba(233, 30, 140, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  margin-top: 0.5rem;
}

/* Big Refund Guarantee box */
.refund-guarantee {
  background: rgba(20, 16, 26, 0.6);
  border: 1px solid rgba(233, 30, 140, 0.25);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.refund-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.refund-guarantee h2 {
  color: #F472B6;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.refund-guarantee p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}


/* Prevent background scrolling when auth modals are open */
body:has(#login-div[style*="display: flex"]),
body:has(#signup-div[style*="display: flex"]) {
    overflow: hidden !important;
}

#login-div, #signup-div {
    overscroll-behavior: contain;
}

/* Global Section Defaults (Desktop) */
#colleges, #courses-section, #compare-section {
    padding-top: 5rem;
}


/* User-requested Mobile Navigation Layout */
@media (max-width: 768px) {
    .nav-inner {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 0.5rem 1rem 0.3rem !important;
        flex-wrap: wrap !important;
    }
    .nav-inner .brand {
        display: flex !important;
    }
    .nav-inner .brand img {
        height: 45px !important;
        width: 45px !important;
        min-width: 45px !important;
    }
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: flex !important;
    }
    .header-quote-wrap {
        padding: 0 0.5rem !important;
    }
    .header-quote-wrap p {
        font-size: 0.72rem !important;
        font-weight: 870 !important;
    }
    
    .hero-badge {
        display: none !important;
    }
    .nav-desktop {
        display: none !important;
    }
    
    /* Hide pills & quote when menu is open */
    .nav-wrap.menu-open #mobile-quote-wrap,
    .nav-wrap.menu-open .header-nav-wrap.mobile-only {
        display: none !important;
    }
    .nav-desktop a {
        font-size: 0.72rem !important;
        padding: 6px 8px !important;
        white-space: nowrap !important;
        flex: 1 !important;
        text-align: center !important;
    }
    
    /* Hide the wrapper for the authentication CTA buttons which sits inside nav-desktop */
    .nav-desktop > div {
        display: none !important;
    }
    
    /* Reveal the hamburger menu trigger */
    .hamburger {
        display: flex !important;
        order: 2 !important;
        height: 32px !important;
        width: 32px !important;
    }

    /* Push page sections below the taller 3-row mobile header (banner + logo + tabs) */
    #colleges {
        padding-top: 0 !important;
        margin-top: 0 !important;
        padding-bottom: calc(5rem + env(safe-area-inset-bottom, 24px)) !important;
    }
    #compare-section {
        padding-top: 0 !important;
        margin-top: 0 !important;
        padding-bottom: calc(5rem + env(safe-area-inset-bottom, 24px)) !important;
    }
    #heroSection {
        padding-top: 4rem !important; 
        padding-bottom: calc(3rem + env(safe-area-inset-bottom, 24px)) !important;
    }
    #courses-section {
        padding-top: 0 !important;
        margin-top: 0 !important;
        padding-bottom: calc(5rem + env(safe-area-inset-bottom, 24px)) !important;
    }

    /* Global mobile bottom-safe padding so nothing ever hides under the dock */
    #home-page {
        padding-bottom: env(safe-area-inset-bottom, 16px);
    }
}

/* Hide Desktop Welcome Note on Mobile */
@media (max-width: 768px) {
    .nav-logout-wrap.desk-auth {
        display: none !important;
    }
    .cat-discovery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    .crs-list {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
        padding: 0 0.5rem !important;
    }
    .crs-item-premium {
        padding: 0.8rem 0.6rem !important;
        border-radius: 16px !important;
        gap: 0.7rem !important;
        width: 100% !important;
        overflow: hidden !important;
        border-width: 1.5px !important;
    }
    .crs-item-premium h4 {
        font-size: 0.82rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        font-weight: 800 !important;
        line-height: 1.15 !important;
        height: 1.85rem !important; /* Force certain height for alignment */
    }
    .crs-item-premium .fee-box-wrap {
        padding: 0.5rem !important;
        gap: 0.4rem !important;
        border-radius: 10px !important;
    }
    .crs-item-premium .fee-box-wrap .fee-val {
        font-size: 0.75rem !important;
    }
    .crs-item-premium .year-box {
        padding: 0.4rem 0.2rem !important;
        border-radius: 8px !important;
    }
    .crs-item-premium .year-val {
        font-size: 0.65rem !important;
    }
    .crs-item-premium .btn-apply-course {
        padding: 0.6rem !important;
        font-size: 0.72rem !important;
        margin-top: 0.5rem !important;
        border-radius: 10px !important;
    }
}

/* Toast Popup Styles */
.toast-popup {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(233, 30, 140, 0.2);
    border: 1px solid rgba(233, 30, 140, 0.1);
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1523;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: top 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
    opacity: 0;
}
.toast-popup.show {
    top: 40px;
    opacity: 1;
}

/* College Detail Accordion */
.det-accordion-item {
    margin-bottom: 0.75rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #F3F4F6;
    background: #fff;
    transition: 0.3s ease;
}
.det-accordion-btn {
    width: 100%;
    padding: 1.1rem 1.4rem;
    background: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.2s;
}
.det-accordion-btn span {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}
.det-accordion-btn span i {
    color: var(--pink);
    width: 20px;
    text-align: center;
}
.det-accordion-btn .chevron {
    font-size: 0.8rem;
    color: #9CA3AF;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.det-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}
.det-accordion-item.active {
    border-color: rgba(233, 30, 140, 0.2);
    box-shadow: 0 10px 25px -10px rgba(0,0,0,0.05);
}
.det-accordion-item.active .det-accordion-btn {
    background: rgba(233, 30, 140, 0.02);
}
.det-accordion-item.active .chevron {
    transform: rotate(180deg);
    color: var(--pink);
}
.det-accordion-item.active .det-accordion-content {
    max-height: 1000px;
    padding-bottom: 1.25rem;
    padding-top: 0;
} .det-txt { padding: 0 1.4rem 1.2rem; margin: 0; }

/* 3D Global Enhancements */
.domain-card, .col-card, .course-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.domain-card img, .col-card img {
  transition: transform 0.4s ease;
  backface-visibility: hidden;
}

.hero-h1 {
  animation: floating3D 6s ease-in-out infinite;
  text-shadow: 0 10px 20px rgba(233, 30, 140, 0.1);
}

@keyframes floating3D {
  0%, 100% { transform: translateY(0) rotateX(0deg); }
  50% { transform: translateY(-10px) rotateX(2deg); }
}
