/* Footer Section */
.site-footer {
  width: 100%;
  background: #fff;
  padding: 48px 0 32px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-family: 'Forma DJR Micro Regular', 'Inter', Arial, sans-serif;
  font-size: 16px;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.footer-intel-logo {
  width: 100px;
  height: auto;
  display: block;
}
.footer-divider {
  display: inline-block;
  width: 2px;
  height: 70px;
  background: #BDBDBD;
  margin: 0 32px;
}
.footer-intel-text {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 22px;
  color: #222;
  line-height: 1.3;
  font-weight: 400;
  text-align: left;
}

/* Marquee Section */
.marquee-section {
  background: #024AD8;
  height: 51px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}

.marquee {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.marquee span {
  display: inline-block;
  font-family: 'Forma DJR Micro', 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21.99px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
  padding-right: 80px;
  /* Space between repeats */
  will-change: transform;
  animation: marquee-scroll 18s linear infinite;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Forma DJR Display', 'Inter', Arial, sans-serif;
  background-color: #fff;
  color: #000;
  font-size: 22px;
}

/* body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
  position: fixed;
  width: 100vw;
} */

.container {
  max-width: 1290px;
  margin: 0 auto;
	padding: 0px 15px;
	box-sizing: border-box;
}

/* TRANSPARENT INFO SECTION */
.transparent-section {
  background: #000;
  width: 100%;
  padding: 56px 0 32px 0;
  border-bottom: 2px solid #0044E9;
}

.transparent-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Forma DJR Display Medium', 'Inter', Arial, sans-serif;
font-weight: 500;
font-style: normal;
font-size: 24px;
line-height: 66px;
letter-spacing: 0%;
text-align: center;
vertical-align: middle;
color: #fff;
}

.transparent-title {
  font-family: 'Forma DJR Display Medium', 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 72px;
  letter-spacing: 0;
  color: #BDBDBD;
  margin-bottom: 0px;
}

.transparent-link {
  color: #fff;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 8px;
  display: inline-block;
  transition: color 0.2s;
}

.transparent-link:hover {
  color: #fff;
  text-decoration-thickness: 2px;
}

/* CONTACT SECTION */
.contact-section {
  background: #fff;
  width: 100%;
  padding: 56px 0 32px 0;
  border-bottom: 2px solid #0044E9;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-family: 'Forma DJR Display Medium', 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 75px;
  letter-spacing: 0;
  color: #080808;
  margin-bottom: 24px;
}

.contact-details {
  font-family: 'Forma DJR Micro Regular', 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 79.15px;
  letter-spacing: 0.02em;
  color: #080808;
}

.contact-details br {
  display: none;
}

.contact-link {
  color: #080808;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s;
}

.contact-link:hover {
  color: #0044E9;
}

/* FAQ SECTION */
.faq-section {
  background: #111;
  width: 100%;
  padding: 56px 0 56px 0;
}

.faq-title {
  font-family: 'Forma DJR Display Medium', 'Inter', Arial, sans-serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 75px;
  letter-spacing: 0;
  text-align: center;
  color: #BDBDBD;
  margin-bottom: 40px;
}

.faq-list {
  max-width: 1400px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #fff;
}

.faq-accordion {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  cursor: pointer;
  min-height: 80px;
  transition: background 0.2s;
}

.faq-accordion-heading {
  font-family: 'Forma DJR Micro Regular', 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 79.15px;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: left;
}

.faq-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  position: relative;
}

.faq-plus span {
  position: absolute;
  background: #fff;
  border-radius: 2px;
}

.faq-plus span:first-child {
  width: 20px;
  height: 2px;
  left: 6px;
  top: 15px;
}

.faq-plus span:last-child {
  width: 2px;
  height: 20px;
  left: 15px;
  top: 6px;
}

.faq-accordion.active .faq-plus span:last-child {
  display: none;
}

.faq-panel {
  max-width: 1200px;
  margin: 0 0px 20px 50px ;
  /*margin: 0 auto;*/
  background: transparent;
  color: #fff;
  font-family: 'Forma DJR Micro Regular', 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  /*line-height: 79.15px;*/
  line-height: 50px;
  letter-spacing: 0.02em;
  padding: 0 48px 0 48px;
  display: none;
  text-align: left;
}

.faq-accordion.active+.faq-panel {
  display: block;
}

@media (max-width: 1024px) {
  .transparent-title,
  .transparent-link,
  .contact-title,
  .faq-title {
    font-size: 48px;
    line-height: 56px;
  }

  .contact-details {
    font-size: 18px;
    line-height: 1.6;
    padding: 0 16px;
  }

  .faq-accordion-heading {
    font-size: 18px;
    line-height: 1.4;
  }

  .faq-panel {
    font-size: 16px;
    line-height: 1.6;
  }

  .faq-accordion {
    padding: 0 24px;
  }

  .faq-panel {
    padding: 0 24px 24px 24px;
  }
}

@media (max-width: 768px) {
  .logo img {
    width: 45px;
    height: 45px !important;
  }
  img {
  max-width: 100%;
  height: auto;
  display: block;
  
}
  body, html {
  max-width: 100vw;
  overflow-x: hidden;
}
  .container {
    width: 100%;
    margin: 0;
    padding: 0 16px;
  }
  .transparent-title,
  .transparent-link,
  .contact-title,
  .faq-title {
    font-size: 36px;
    line-height: 44px;
  }

  .contact-details {
    font-size: 16px;
    flex-direction: column;
    gap: 8px;
  }
  .contact-details br {
    display: block;
  }

  .faq-plus {
    width: 24px;
    height: 24px;
  }

  .faq-plus span:first-child {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
  }

  .faq-plus span:last-child {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
  }
  .marquee span {
    font-size: 30px;
    line-height: 20px;
    padding: 10px 0;
  }
  .marquee-section {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .transparent-content, .contact-section, .site-footer   {width: 90%; font-size: 22px; line-height: 29px; margin: 0 auto;}
  .transparent-section, .contact-section, .faq-section, .site-footer {
    padding: 32px 0 24px 0;
  }
  .faq-section {
    padding: 32px 20px 24px 20px;
  }
  .site-footer { text-align: center;}
  .transparent-title,
  .contact-title,
  .faq-title {
    font-size: 50px;
    line-height: 55px;
  }

  .contact-details, .contact-link {
    font-size: 19px;
    padding: 0 12px;
    line-height: 29px;
    color: #FF5050;

  }

  .faq-accordion-heading {
    font-size: 16px;
  }

  .faq-panel {
    font-size: 14px;
    padding: 0 16px 16px 16px;
  }

  .faq-accordion {
    padding: 0 16px;
    min-height: 64px;
  }

  .site-footer .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .footer-intel-text {
    font-size: 14px;
  }

  .footer-divider {
    display: none;
  }
  .transparent-link {
    font-size: 24px;
    text-decoration-thickness: 2px;
  }
}
.mentor-categories-mobile {display: none;}
/* Profile PopUp Styles */
.profilePopUp {
  position: fixed;
  top: 50%;
  left: 200%;
  transform: translate(-50%, -50%);
  height: 320px;
  width: 80vw;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.9);
  border: none;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 16px;
}

.profilePopUp-close {
  position: absolute;
  top: -19px;
  right: -10px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}
.profilePopUp-close:hover {
  color: #024AD8;
}

/* .profilePopUp {
  opacity: 0;
  pointer-events: none;
} */
.profilePopUp.active {
  left: 50%;
}

@media (max-width: 900px) {
  .profilePopUp {
    display: flex;
    border: 1px solid #024AD8;
    box-sizing: border-box;
  }
  .mentor-categories-mobile {
    display: block;
  }
}

@media (min-width: 901px) {
  .profilePopUp {
    border: none;
  }
}

/* * {
  outline: 1px solid red;
} */


.faq-panel a{padding-left: 3px;}



