/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/footer/footer.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --footer-dark-bg: #0b0e14;
  --footer-input-bg: #0f131a;
  --educrib-pink: #e94e77;
  --text-gray: #b3b3b3;
  --border-color: #ffffff20;
}

.new-footer-container {
  background-color: var(--footer-dark-bg);
  padding: 60px 40px 20px 40px;
  color: white;
  overflow-x: hidden;
}

.footer-main-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Columns */
.footer-left-col {
  flex: 1.2;
}

.footer-links-grid {
  flex: 2;
  display: flex;
  justify-content: space-between;
}

.footer-form-col {
  flex: 1.2;
}

.footer-desc-text {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 20px;
  max-width: 300px;
}

.section-title-pink {
  color: var(--educrib-pink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-link-txt {
  color: white;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-link-txt:hover {
  opacity: 1;
}

/* Subscription */
.subscription-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1px 15px;
  max-width: 550px;
  width: 100%;
  background-color: rgba(15, 19, 26, 0.5);
  margin-top: 20px;
}

.sub-input {
  flex: 1;
}

.sub-input input {
  color: white !important;
  height: 50px !important;
  font-size: 16px !important;
}

.sub-input input::placeholder {
  color: #666 !important;
  opacity: 1;
}

.sub-go-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 15px;
  transition: transform 0.2s;
}

.sub-go-btn:hover {
  transform: translateX(3px);
}

.pink-arrow-icon {
  filter: invert(43%) sepia(85%) saturate(1200%) hue-rotate(320deg) brightness(95%) contrast(98%);
}

/* Socials */
.social-icon-circle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-icon-circle:hover {
  background-color: var(--educrib-pink);
  border-color: var(--educrib-pink);
  transform: translateY(-3px);
}

.social-icon-circle:hover img {
  filter: brightness(0) invert(1);
}

/* Form Styling */
.form-header-small {
  color: var(--text-gray);
  font-size: 18px;
}

.form-header-large {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

.form-input-container {
  background: var(--footer-input-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px 12px;
}

.input-label {
  font-size: 9px;
  color: #666;
  font-weight: 700;
}

.form-input-field input {
  color: white !important;
  height: 24px !important;
  min-height: 24px !important;
}

.send-request-pink-btn {
  background-color: #E54887;
  /* height: 50px; */
  border-radius: 8px;
  font-weight: 500;
  height: 39.6px;
  padding: 10.8px 14.4px;
  width: fit-content;
}

/* Bottom Branding */
.footer-bottom-branding {
  margin-top: 60px;
}

.copyright-bar {
  padding: 0;
  color: #444;
  font-size: 12px;
  gap: 16px;
  align-items: end;
}

/* Fixed-width text columns so they don't collapse */
.copyright-txt {
  min-width: 140px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Center image wrapper grows to fill remaining space */
.footer-branding-img-wrap {
  flex: 1;
  min-width: 0;       /* allow shrinking below natural size */
  line-height: 0;     /* remove phantom whitespace below img */
}

.footer-branding-img-wrap img {
  width: 100% !important;
  height: auto !important;
  display: block;
}

@media (max-width: 600px) {
  .footer-bottom-branding {
    margin-top: 40px;
  }

  .copyright-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .copyright-txt {
    min-width: unset;
  }
}

@media (max-width: 1024px) {
  .footer-main-content {
    flex-direction: column;
  }

  .footer-links-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-column {
    width: 45%;
  }
}
/*!******************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./src/components/header/header.css ***!
  \******************************************************************************************************************************************************************************************************************************************************************************/
.header-container {
  border-bottom: solid 1px var(--border-gray);
  position: fixed;
  background: #fff;
  transition: transform 0.6s ease-in-out;
  z-index: 800;
}

.header-input-field .mantine-TextInput-input {
  height: 100%;
  border: none;
  background: var(--bg-primary);
  color: var(--text-secondary);
}
.header-input-field-white .mantine-TextInput-input {
  height: 100%;
  border: none;
  background: #ffffff;
  color: var(--text-secondary);
}
.header-input-field-white .mantine-TextInput-input::placeholder {
  color: #5d6b82;
}

.header-input-home{
 flex: 1;
}
.header-input-home .mantine-TextInput-input::placeholder{
color: 'red';
}


.header-input {
  flex: 1;
}
.header-input .mantine-TextInput-input::placeholder {
  color: #5d6b82;
}
.custom-placeholder::placeholder {
  color: 'var(--text-primary)';
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
}

.header-container .mantine-Select-input {
  border: none;
  width: 200px;
  background: var(--bg-primary);
}

.header-menu-item {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 900;
}

.header-searchBox {
  border: none;
  width: 135px;
  background: var(--bg-primary);
  box-shadow: none;
  color: var(--text-secondary);
}

.header-searchBox:focus {
  border: none;
  box-shadow: none;
}
.searchModal {
  position: relative;
  z-index: 999 !important;
}
.searchModal .mantine-Modal-header {
  background: red;
  padding: 0;
  display: none;
}

.searchModal .mantine-Modal-body {
  padding: 0;
}

.searchModal .mantine-TextInput-input {
  height: 50px;
  margin: 20px 0px;
  border-radius: 10px;
}

.mantine-Drawer-body {
  /* height: calc(100vh - 55px); */
}

.header-input-field {
  box-shadow: 0px 1px 12px 0px #767f8c42;
  background-color: #f9fafb;
}

.header-search-input-box {
  width: 100%;
  height: 48;
  border-radius: 10px;
  border-width: 1px;
  border: 1px solid #dfe2e6;
  background-color: #f9fafb;
  /* background: #000c18; */
  color: #5d6b82;

  ::placeholder {
    color: #5d6b82;
  }
}

.drawer-select {
  width: 100%;
  height: 48;
  border-radius: 10px;
  border-width: 1px;
  background: #f9fafb;
  border: 1px solid #dfe2e6;
  color: #5d6b82;

  ::placeholder {
    color: #5d6b82;
  }
}

.header-explore-btn {
  border-radius: 8px;
  border-width: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #d0d5dd;
  box-shadow: 0px 1px 2px 0px #1018280d;
  display: flex;
  flex-direction: row;
  gap: 10px;
  background: #ffffff;
  color: #344054;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 16px;
}
@media (max-width: 1024px) {
  .header-explore-btn {
    padding: 8px 8px;
  }
}
.header-search-popover {
  margin-top: -3px;
}
.recent-search-item {
  padding: 4px 2px;
  border-radius: 4;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
}
/* College suggestion items */
.college-suggestion-item {
  padding: 8px 12px;
  border-radius: 4px;
  text-align: left;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.college-suggestion-item:hover {
  background: #f5f6f7;
}

.recent-search-item:hover {
  background: #f5f6f7;
}

/* Popover styling */
.header-search-popover {
  max-height: 400px;
  overflow-y: auto;
}
.login-modal {
  position: relative;
  z-index: 999 !important;
}
/* login-modal */
.login-modal .mantine-Modal-body {
  padding: 0;
}
.or-login {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-email-input .mantine-TextInput-input {
  width: 100%;
  height: 48px;
}
.login-email-input .mantine-TextInput-input::placeholder {
  color: #5d6b82;
  size: 16px;
  font-weight: 400;
}
.login-email-input .mantine-TextInput-label {
  margin-bottom: 5px;
  color: #15294b;
  size: 14px;
  font-weight: 500;
}
.otp-input .mantine-PinInput-input {
  width: 48px;
  height: 48px;
  background: #f7f8f8;
}
.otp-input {
  gap: 0px !important;
  justify-content: space-between;
  width: 100%;
}

.header-search-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 365px) {
  .otp-input .mantine-PinInput-input {
  width: 40px ;
  height: 40px;
  background: #f7f8f8;
}
.otp-input {
  gap: 0px !important;
  justify-content: space-between;
  width: 100%;
}
}

.selectedBorder {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 65px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(
    179deg,
    #6647C9 -6.6%,
    #AB66FB 46.22%,
    #F2416C 103.4%,
    #F4530C 138.6%
  );
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[5].use[3]!./src/components/header/headerDrawer.module.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************/
.headerDrawer_container__N2wzz {
    position: relative;
    display: inline-block;
}

.headerDrawer_trigger__GhuFW {
    cursor: pointer;
    position: relative;
    padding-bottom: 6px;
}

.headerDrawer_arrow__DlPTy {
    transition: transform 0.2s ease;
    color: #b000e6;
}

.headerDrawer_arrowOpen__PZjQF {
    transform: rotate(180deg);
}

.headerDrawer_underline__00Et3 {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background-color: #b000e6;
    transition: width 0.3s ease;
}

.headerDrawer_underlineActive__4T8Yx {
    width: 100%;
}

.headerDrawer_dropdown__VFbHH {
    position: absolute;
    top: 100%;
    margin-top: 4px;
    left: 0;
    width: 75vw;
    background: white;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
    padding: 40px 60px;
    border-radius: 12px;
    z-index: 9999;
    max-height: 70vh;
    overflow-y: auto;
}

.headerDrawer_grid__fbETd {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.headerDrawer_heading__D_5qK {
    font-weight: 600;
    margin-bottom: 12px;
    color: #b000e6;
}

.headerDrawer_link__cbkHV {
    margin-bottom: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #282c3f;
    transition: color 0.2s ease;
}

.headerDrawer_link__cbkHV:hover {
    color: #6129fe;
}

.headerDrawer_error__M32RG {
    color: red;
}

.headerDrawer_loadMore__gejcw {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #6129fe;
    transition: opacity 0.2s ease;
}

.headerDrawer_loadMore__gejcw:hover {
    opacity: 0.8;
}
