@import url("./branding.css?v=0.1");
/*============== MEGA MENU ==============*/
body *{
  transition: all .3s ease;
}
.header{
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
  padding-top: 40px;
}
.header.shift .cf-logo{
  transform: translateY(-200px);
}
.menu_sec {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.menu-button{
  cursor: pointer;
  width: 60px;
  /* display: flex;
  justify-content: end;  
  width: max-content;
  margin-left: auto; */
}
.menu-button img{
  width: 100%;
}
.mega-menu-logo {
  width: 309px;
  height: 131px;
}
.menu-section {
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 55px 40px 40px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--dark-red);
  /* background-color: var(--lighter-gray); */

  /* Hidden state */
  transform: translateY(-100%) scaleY(0.9);
  opacity: 0;
  filter: blur(8px);
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-section.active {
  transform: translateY(0) scaleY(1);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}
.menu-section a {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.5s ease;
}
.menu-section.active a {
  opacity: 1;
  transform: translateY(0);
}
.tab-pane ul a{
  color: #979797;
}
.menu-section.active a:nth-child(1) { transition-delay: 0.2s; }
.menu-section.active a:nth-child(2) { transition-delay: 0.35s; }
.menu-section.active a:nth-child(3) { transition-delay: 0.5s; }
.menu-section.active a:nth-child(4) { transition-delay: 0.65s; }
.close_mega_menu{  
  cursor: pointer;
  width: 60px;
}
.menu-section .tab-title {
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  color: #fff !important;
  min-height: 165px;
}
.menu-section .tab-title::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 0px;
  height: 5px;
  background-color: transparent;
  transition: all .3s ease;
}
.menu-section .tab-title:hover::after,
.menu-section .tab-title:active::after,
.menu-section .tab-title:focus::after{
  background-color: #fff;
  width: 80px;
}
.menu-section .tab-title.active {
  color: var(--dark-gray);
}
.menu-section .tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}
.menu-section .tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInWave 0.4s ease forwards;
}
@keyframes fadeInWave {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-section .tab-pane.active li {
  opacity: 0;
  transform: translateY(15px);
  animation: waveItem 0.5s ease forwards;
}
.menu-section .tab-pane.active li:nth-child(1) { animation-delay: 0.1s; }
.menu-section .tab-pane.active li:nth-child(2) { animation-delay: 0.2s; }
.menu-section .tab-pane.active li:nth-child(3) { animation-delay: 0.3s; }
.menu-section .tab-pane.active li:nth-child(4) { animation-delay: 0.4s; }
.menu-section .tab-pane.active li:nth-child(5) { animation-delay: 0.5s; }
@keyframes waveItem {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-section .tab-pane li {
  border: none;
  padding: 4px 0;
  font-weight: 700;
  font-size: 29px;
  white-space: nowrap;
}
.menu-section .footer {
  border-top: 1px solid #ccc;
  padding-top: 15px;
  margin-top: 20px;
  background-color: transparent;
}
.menu-section .footer .social-icons a {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #e63946;
  color: #fff;
  text-align: center;
  line-height: 32px;
  border-radius: 4px;
  margin-left: 5px;
  text-decoration: none;
}
.menu-link{
  font-size: 20px;
  font-weight: 800;
  color: var(--slate) !important;
}
.menu-section .footer a{
  color: #fff !important;
}
/*============== MASTER SECTION ===========*/
canvas.myWaveCanvas {
  position: absolute;
  top: -235px;        
  bottom: 0;
  z-index: 1;
}
.section-master{
  padding: 200px 0 100px 0;
  position: relative;
  height: calc(100vh - 96px);
}
.z-2{
  position: relative;
  z-index: 2;
}
.section-master .container{
  display: flex;
  height: 100%;
  justify-content: center;
}
.container-center{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.container{
  max-width: 1500px;
}
.cf-logo{
  width: 309px;
  height: 131px;
}
.cf-logo a{
  display: block;
}
.master-heading{
  font-size: 110px;
  font-family: var(--theme-title-family);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}
@media only screen and (max-width:1700px){
  .master-heading{
    font-size: 90px;
  }
}
@media only screen and (max-width:1600px){
  .master-heading{
    font-size: 80px;
  }
}
@media only screen and (max-width:1500px){
  .master-heading{
    font-size: 70px;
  }
}
@media only screen and (max-width:1400px){
  .master-heading{
    font-size: 65px;
  }
}
@media only screen and (max-width:1200px){
  .master-heading{
    font-size: 55px;
  }
}
@media only screen and (max-width:1024px){
  .master-heading{
    font-size: 45px;
  }
}
@media only screen and (min-width:991px){
  .offcanvas-end{
    width: 650px !important;
  }
}
.master-heading span{
  display: block;
}
.border-bottom{
  border-bottom: 1px solid #bababa !important;
}
.cf-event-card{
  background-color: var(--white);
  padding: 15px !important;
  border-radius: 7px;
  position: relative;
  bottom: -40px;
}
.cf-event-card p{
  line-height: 1.3;
  padding-top: 6px;
}
.cf-event-img{
  width: 100%;
  height: 170px;
  border-radius: 7px;
  overflow: hidden;
}
.link_btn-ob{
  display: flex;
  position: relative;
  gap: 15px;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-red);
  padding-left: 25px;
  justify-content: space-between;
}
.link_btn-ob::after{
  content: "";
  background-image: url('../img/svg/ob.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  width: 18px;
  height: 21px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}
.link_btn-ob img{
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.cf-message{
  display: flex;
  gap: 20px;
}
.cf-message p{
  position: relative;
}
.cf-message .cf-bx svg{
  width: 100%;
}
.cf-message p{
  width: 89%;
}
.link_btn{
  font-size: 20px;
  font-weight: 700;
  font-family: var(--theme-title-family);
  color: var(--slate);
  position: relative;
  padding-right: 25px;
}
.link_btn::after{
  content: "";
  background: url('../img/svg/arrow-bx-right.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 32px;
  height: 32px;
  position: absolute;
  right: -20px;
  transition: all .3s ease;
}
.link_btn:hover::after{
  right: -30px;
}
/* .color-animate rect {
  animation: fillBlink 3s ease-in-out infinite alternate;
}
.color-animate rect:nth-child(odd) {
  animation-delay: 0s;
}
.color-animate rect:nth-child(even) {
  animation-delay: 1s;
}
@keyframes fillBlink {
  0%   { fill: #d5565f; }
  50%  { fill: #6b2a2d; }
  100% { fill: #57090d; }
}
.color-animate rect {
  animation: fillChange 3s ease-in-out infinite alternate;
}
@keyframes fillChange {
  0%   { fill: #c52f39; }
  50%  { fill: #5c212b; }
  100% { fill: #c51818; }
} */
.cf-ob-center{
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 115px;
  height: 76px;
  z-index: 1;
  transform: translateX(-50%);
  bottom: -38px;
}
.cf-ob-right{
  position: absolute;
  right: 5%;
  bottom: -39px;
}
/*============== ABOUT SECTION ===========*/
.sm-heading-after{
  position: relative;
  padding-left: 25px;
}
.sm-heading-after::after{
  content: "";
  position: absolute;
  background-image: url('../img/svg/ob.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 21px;
  left: 0px;
  top: 2px;
}
.sm-heading-after-top{
  position: relative;
  padding-top: 25px;
}
.sm-heading-after-top::after{
  content: "";
  position: absolute;
  background-image: url('../img/svg/ob.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 21px;
  left: 0px;
  top: 2px;
}
.sm-heading-after-right{
  position: relative;
  padding-top: 25px;
}
.sm-heading-after-right::after{
  content: "";
  position: absolute;
  background-image: url('../img/svg/ob.svg');
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 21px;
  right: -19px;
  top: 0px;
}
.section-about{
  padding: 100px 0 80px 0;
}
.after-hr{
  position: relative;
}
.after-hr::after{
  content: "";
  background-color: #c4c4c4;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1500px;
}
/*============= SECTION PILLARS ==========*/
.pillar-item{
  margin-bottom: 40px;
}
.pillar-item p{
  max-width: 450px;
  line-height: 1.5;
}
.hr_line{
  position: relative;
  border-top: 1px solid #c4c4c4;
  margin-top: 100px;
}
.hr_line.bottom{
  border-top:0;
  border-bottom: 2px solid #a8a8a8;
}
.block-icon{
  position: absolute;
  right: 0;
  bottom: 0;
}
.partners-slider .item img{
  width: 100%;
  height: 130px;
  object-fit: contain;
}
.partners-slider-nav button{
  width: 45px;
  height: 45px;
  border: 0;
}
.partners-prev{
  background-color: #d3d3d3;
}
.partners-next{
  background-color: #212121;
}
/*============ Testimonails ===========*/
.testimonials-slider{
  padding-left: 20px;
}
.testimonials-slider .item{
  display: flex;
  align-items: center;
  border: 1px solid #707070;
  border-radius: 10px;
  gap: 20px;
  padding: 50px 25px 45px 50px;
}
.testimonials-slider .item p{
  position: relative;
}
.testimonials-slider .item .ct-msg::after{
  content: "";
  background-image: url('../img/svg/ob2.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -35px;
  width: 36px;
  height: 21px;
}
.testimonials-slider .item .ct-img{
  width: 100%;
  height: 266px;
}
.testimonails-slider-nav button{
  width: 45px;
  height: 45px;
  border: 0;
}
.testimonails-slider-nav{
  justify-content: end;
  display: flex;
  gap: 10px;
  margin-top: 50px;
}
.testimonails-prev{
  background-color: #d3d3d3;
}
.testimonails-next{
  background-color: var(--bright-red);
}
.testimonials-slider .item {
  opacity: 1;
  transform: scale(1);
  transition: none;
}
.testimonials-slider .owl-item.active .item {
  animation: slideZoomIn 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes slideZoomIn {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.testimonials-slider .owl-item.active:nth-child(1) .item { animation-delay: 0.1s; }
.testimonials-slider .owl-item.active:nth-child(2) .item { animation-delay: 0.2s; }
.testimonials-slider .owl-item.active:nth-child(3) .item { animation-delay: 0.3s; }
/*============ SPOTLIGHT ===========*/
.section-spotlight .spotlight-slider .item{
  width: 100%;
  height: 557px;
}
.section-spotlight .spotlight-slider .item img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.section-spotlight .sm-heading-after::after{
  top: 8px;
}
.section-spotlight .owl-nav .owl-prev,
.section-spotlight .owl-nav .owl-next{
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: #3c3534cb !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.section-spotlight .owl-nav .owl-next{
  right: 10px;
}
.section-spotlight .owl-nav .owl-prev{
  left: 10px;

}
.section-spotlight .owl-nav .owl-next span,
.section-spotlight .owl-nav .owl-prev span{
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 63px;
  display: block;
  height: 63px;
  color: transparent;
}

.section-spotlight .owl-nav .owl-next span{
  background-image: url('../img/svg/arrow-right-long.svg');
}
.section-spotlight .owl-nav .owl-prev span{
  background-image: url('../img/svg/arrow-long-left.svg');
}
/*============ Footer ===========*/
.footer {
  background-color: var(--dark-red); /* Matches the red color in the image */
  color: white;
  padding: 45px 0 10px 0px;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer .social-icon {
  background-color: var(--bright-red);
  color: white;
  width: 51px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.3s;
}
.footer .social-icon:hover {
  background-color: #d4421d;
}
.footer-logo {
  width: 317px;
  height: 134px;
  object-fit: contain;
}
.copyright{
  background-color: #fff;
}
/*=========== Section Program Impact ==========*/
.section-program-impact{ padding-top: 230px;}
.section-program-impact .sm-heading-after::after{
  top: 8px;
}
.sub-box {
  background: #fff;
  padding: 15px;
  margin-top: 15px;
  border-radius: 0 0 4px 4px;
  padding-left: 80px;
  padding-top: 30px;
  position: relative;
  height: 344px;
}
.custom-img {
  width: 100%;
  height: 357px;
  position: absolute;
  left: 175px;
}
.divider {
  border-top: 1px solid #ccc;
}
.sub-box-2{
  background-color: #fff;
  padding: 60px 50px 43px 20px;
  width: 403px;
  margin-left: auto;
} 
.sub-box-3{
  background-color: #fff;
  padding: 80px 25px 80px 65px;
  width: fit-content;
}
.divder-line{
  position: relative;
}
.divder-line::after{
  content: "";
  height: 2px;
  background-color: #cccccc;
  width: 115%;
  left: 15%;
  bottom: 68px;
  position: absolute;
}
.border-bottom-2{
  border-bottom:2px solid #cccccc;
}
.over-bottom-img{
  position: absolute;
  bottom: -40px;
  right: 0;
}
.hr{
  background-color: #cccc;
  height: 2px !important;
  opacity: 1;
}
.concordia-wrap .container{
  position: relative;
}
.retreat-wrap-img{
  position: absolute;
  top: -225px;
  width: 704px;
  left: 0;
  height: 399px;
}
.circle-container {
  display: inline-block;
  text-align: center;
}
.circle-container a{
  display: block;
}
.circle-container img {
  display: block;
  transition: all .3s ease;
}
.circle-img{
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 30px;
}
.line {
  width: 100%;
  height: 3px;
  background: black;
  margin: 20px auto;
  position: relative;
}
.circle-container:hover .circle-img img{
  transform: scale(1.1);
}
.line::before,
.line::after {
  content: "";
  position: absolute;
  top: 0px;
  width: 10px;
  height: 3px;
  background: black;
  transform: rotate(90deg);
}
.line::before {
  left: -6px;
}
.line::after {
    right: -6px;
}
.circle-container .year {
  margin-top: 8px;
}
.circle-container .country {
  text-transform: uppercase;
}
/* POLICY CARDS */
.policy-event-item{
  background-color: #EFEFEF;
  padding: 30px 25px;
  border: 1px solid #EFEFEF;
  border-radius: 4px;
  position: relative;
}
.policy-event-card-wrap .col-xl-4:nth-child(2n) .policy-event-item {
  background-color: #fff;
  border: 1px solid #bcbcbc;
}
.policy-event-item h3{
  min-height: 68px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-arrow-up{
  display: block;
  width: 53px;
  text-align: end;
}
.policy-event-bottom{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.policy-event-bottom h5{
  width: calc(100% - 53px);
  max-width: 300px;
  min-height: 68px;
  display: flex;
  align-items: end;
  flex-wrap: wrap;
}
.section-ycl img.obj_fit {
    object-fit: cover;
    border-radius: 4px;
}
.section-ycl .sub-box {
    background: #fff;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.1);
}
.policy-event-slider-wrapper .policy-event-item{
  background-color: #fff;
}
/*================== SECTION YCL IMG ==============*/
.ycl-img{
  width: 100%;
  height: 300px;
}
.ycl-img-2{
  position: absolute;
  top: -273px;
  left: 0;
  width: 100%;
  height: 572px;
}

/*================== SECTION YCL CARD 2 ==============*/
.ycl-card {
  overflow: hidden;
  position: relative;
}
.ycl-card-image {
  width: 258px;
  height: 258px;
  object-fit: cover;
  flex-shrink: 0;
}
.ycl-card-image img{
  border-radius: 50%;  
  object-fit: contain;
  padding: 4px;
  background: #dd1818;
  background: -webkit-linear-gradient(to bottom, #dd1818, #333333);
  background: linear-gradient(to bottom, #dd1818, #424040);
}
.ycl-card a{
  display: block;
  line-height: 1.123;
  margin-bottom: 20px;
}
.ycl-card-body {
  flex: 1;
}
.ycl-card-body{
  padding-top: 30px;
}
/*  */
.spacer-top{
  padding-top: 230px;
}

/* Contact Page */
.support-form {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  padding: 30px;
}
.inner-banner{
  background-color: var(--lighter-gray);
}
.contact-logo{
  width: 100px;
  height: 100px;
}
.contact-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}































.owl-dots .owl-dot span {
  width: 3px !important;
  height: 30px !important;
  margin: 5px 10px !important;
  background: #c2b3aa !important;
}
.owl-dots .owl-dot.active span {
  background-color: var(--theme-color) !important;
}
.owl-nav.disabled + .owl-dots {
  margin-top: 80px !important;
}


/* .statsbox h2{font-size: 24px;}
.statsbox p{ font-size: 18px;} */

.stats_box_sec{
  display: flex;
    justify-content: center;
    text-align: center;
}


.stats_box_sec .statsbox{
/* width: 33%; */
padding: 0 20px;
}
.stats_box_sec .statsbox + .statsbox{ border-left: 1px solid #bababa;}

.partner_logo_box {
  border-right: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
}

/* Default: desktop first (5 per row) */
.partners-logo > div:nth-child(5n) {
  border-right: none;
}
.partners-logo > div:last-child {
  border-right: none;
}
/* For screens ≤ 1199px (4 per row) */
@media (max-width: 1199px) {
  .partners-logo > div:nth-child(5n) {
      border-right: 1px solid #d8d8d8; /* reset */
  }
  .partners-logo > div:nth-child(4n) {
      border-right: none;
  }
}
/* For screens ≤ 991px (3 per row) */
@media (max-width: 991px) {
  .partners-logo > div:nth-child(4n) {
      border-right: 1px solid #d8d8d8; /* reset */
  }
  .partners-logo > div:nth-child(3n) {
      border-right: none;
  }
}
/* For screens ≤ 767px (2 per row) */
@media (max-width: 767px) {
  .partners-logo > div:nth-child(3n) {
      border-right: 1px solid #d8d8d8; /* reset */
  }
  .partners-logo > div:nth-child(2n) {
      border-right: none;
  }
}
.user-signin-form .container-fluid {
    height: 100vh;
    padding: 0;
    max-width: 100%;
}
.user-signin-form .left-section {
    background: #f1f1f1;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px;
    color: white;
}
.user-signin-form .left-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%), linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%), linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%);
    background-size: 100px 100px;
    background-position: 0 0, 0 50px, 50px -50px, -50px 0;
    background-color: #ffffff;
    background-size: 100px 100px;
    background-position: 0 0, 0 50px, 50px -50px, -50px 0px;
    opacity: 0.3;
}
.user-signin-form .logo {
    position: relative;
    z-index: 1;
    width: 250px;
}
.user-signin-form .content-wrapper {
    position: relative;
    z-index: 1;
}
.user-signin-form .main-heading {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}
.user-signin-form .main-heading .wave {
    display: inline-block;
    font-size: 60px;
}
.user-signin-form .subtitle {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    color: #000;
}
.user-signin-form .right-section {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.user-signin-form .login-container {
    width: 100%;
    max-width: 480px;
    padding: 40px;
}
.user-signin-form .brand-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #1a1a1a;
}
.user-signin-form .welcome-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}
.user-signin-form .signup-text {
    color: #6c757d;
    margin-bottom: 50px;
    font-size: 15px;
}
.user-signin-form .signup-text a {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 500;
}
.user-signin-form .form-control {
    font-size: 16px;
    background: transparent;
    transition: border-color 0.3s;
    padding: 7px 7px 6px 19px;
    background: #f4f4f4;
    border-radius: 11px;
    border: 1px solid transparent;
}
.user-signin-form .form-control:focus {
    box-shadow: none;
    border-bottom-color: #1a1a1a;
    background: transparent;
}
.user-signin-form.form-label {
    display: none;
}
.btn-login {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    margin-top: 30px;
    margin-bottom: 20px;
    transition: background 0.3s;
}
.btn-login:hover {
    background: var(--dark-red);
    color: #fff;
}
.forgot-password {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #6c757d;
}
.forgot-password a {
    color: #1a1a1a;
    text-decoration: underline;
    font-weight: 500;
}
@media (max-width: 991px) {
    .left-section {
        padding: 40px;
    }

    .main-heading {
        font-size: 48px;
    }

    .user-signin-form .subtitle {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .left-section {
        display: none;
    }

    .right-section {
        padding: 20px;
    }
}
.user-dashboard-header {
  background-color: var(--dark-red);
  padding: 15px 30px;
}
.user-dashboard-profile .dropdown-toggle::after{
  color: #fff;
}
.menu_btn {
  color: white;
  margin-right: 10px;
  border: dashed 1px #fff;
  padding: 10px 20px;
  border-radius: 40px;
  display: inline-block;
    margin-top: 10px;
}
.menu_btn:focus,
.menu_btn:hover {
  background: #7f1f25 !important;
  color: white !important;
}
.user-dashboard-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.user-dashboard-logo img {
    width: 309px;
    height: 131px;
}
.user-dashboard-profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-dashboard-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0d6efd;
}

.user-dashboard-info h5 {
  margin: 0;
  font-weight: 600;
}

.user-dashboard-info small {
  color: #6c757d;
}
.user-dashboard-nav {
  background-color: var(--dark-red);
  padding: 10px 30px 20px;
  
}
.user-dashboard-nav .btn {
  margin-right: 10px;
}
.user-dashboard-profile .dropdown-toggle::after {
  margin-left: 10px;
}
.user-dashboard-profile .dropdown-menu {
  width: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e9ecef;
  padding: 10px 10px;
}
.user-dashboard-profile .dropdown-item {
  padding: 8px 16px;
  font-size: 14px;
  margin-bottom: 10px;
}
.user-dashboard-profile .dropdown-item:hover {
  background-color: #f8f9fa;
}
.user-dashboard-profile .dropdown-item.text-danger:hover {
  background-color: #f8d7da;
  color: #721c24 !important;
}
.info-box{
  background-color: #efefef;
  padding: 20px;
  border-radius: 8px;
}
.info-box label{
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-red);
}
/* User Dropdown Styles */
.user-dropdown .btn {
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}
.user-dropdown .btn:focus {
  box-shadow: none;
}
.user-dropdown .user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.user-dropdown .dropdown-toggle::after {
  display: none; /* Hide default caret */
}
.user-dropdown .dropdown-menu {
  border-radius: 0.75rem;
  padding: 0.5rem 0;
}
.user-dropdown .dropdown-item {
  font-size: 0.95rem;
  transition: background-color 0.2s ease;
}
.user-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
}
.btn-check:focus+.btn, .btn:focus{
  box-shadow: none;
}
.welcome-banner {
  width: 100%;
  background: linear-gradient(135deg, #ba2732 0%, #5c212b 100%);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.welcome-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.welcome-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}
.banner-content {
  position: relative;
  z-index: 1;
}
.welcome-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: white;
  font-weight: 500;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 600px) {
  .user-dashboard-logo img {
    width: 160px;
    height: 75px;
    object-fit: contain;
  }
  .user-dashboard-nav .theme_btn{
    width: 100%;
  }
}
@media (max-width: 768px) {
  .welcome-banner {
    padding: 30px 24px;
  }
  .user-dashboard-header .container{
    padding: 0;
    max-width: 100%;
    margin: 0;
    width: 100%;
  }
}
.fellow-attendees .ycl-card-image a{
  display: block;
  width: 250px;
  height: 250px;
}
.fellow-attendees .ycl-card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scroll_to_bar_wrap ul::-webkit-scrollbar {
  height: 5px;
  box-shadow: none;
}
.scroll_to_bar_wrap ul::-webkit-scrollbar-track {
  background-color: var(--theme-white);
  box-shadow: none;
}
.scroll_to_bar_wrap ul::-webkit-scrollbar-thumb {
  background-color: var(--dark-red);
  box-shadow: none;
}
.scroll_to_bar_wrap {
  position: sticky;
  top: 0px;
  z-index: 100;
  background: #fff;
  animation: 1s  ease fadeInUpSmall;
}
.scroll_to_bar_wrap ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
  padding: 10px 0;
}
.scroll_to_bar_wrap li a {
  font-size: 17px;
  line-height: 50px;
  color: #fff;
  font-weight: 600;
  display: block;
  border-radius: 30px;
  padding: 0 25px;
  background: linear-gradient(135deg, #ba2732 0%, #5c212b 100%);
}
.scroll_to_bar_wrap li a:hover{
  color: #fff;
  opacity: 0.8;
}
.scroll_to_bar_wrap li .active {
  font-weight: 600;
  display: block;
  height: 100%;
}
.accordion-custom .accordion-item {
  background-color: #ffffff;
  border: none;
  margin-bottom: 15px;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.accordion-custom .accordion-button {
  background-color: #ffffff;
  color: #333;
  font-size: 25px;
  padding: 25px 26px;
  font-weight: 700;
  box-shadow: none;
  border: none;
}
.accordion-custom .accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: #333;
  box-shadow: none;
}
.accordion-custom .accordion-button:not(.collapsed) span.text-dark-red{
  color: #fff !important;
}
.accordion-custom .accordion-button:not(.collapsed){
  background-color: var(--dark-red);
  color: #fff;
}
.accordion-custom .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.accordion-custom .accordion-button::after {
  background-image: none;
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--theme_dark-3);
  position: relative;
  top: -6px;
}
.accordion-custom .accordion-button:not(.collapsed)::after {
  transform: rotate(0deg);
  content: '−';
}
.accordion-custom .accordion-body {
  padding: 20px 20px 20px 27px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}
.accordion-custom .accordion-collapse {
  border: none;
}
.heading-tag{
  background-color: #f4f4f4;
  padding: 10px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
  color: var(--dark-red);
}
.wb{
  word-break: break-all;
}
.off-set-top{
  scroll-margin-top: 40px
}