
.about-area {
  position: relative;
  display: block;
}

.about-left {
  position: relative;
  display: block;
  margin-right: 50px;
}

.about-img{
  position: relative;
}

.about-img img{
  border-radius: 50%;
  border: 10px solid var(--color-white);
  box-shadow: var(--box-shadow);
}

.about-img .img-2{
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 280px;
  box-shadow: none;
}

.about-img .img-3{
  position: absolute;
  right: -30px;
  top: -30px;
  width: 200px;
  box-shadow: none;
}

.about-right {
  position: relative;
  display: block;
  padding-left: 30px;
}

.about-experience{
  background: var(--theme-gradient);
  box-shadow: var(--box-shadow);
  position: absolute;
  left: -30px;
  bottom: 80px;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
}

.about-experience h5{
  color: var(--color-white);
  font-size: 20px;
}

.about-experience span{
  color: var(--color-white);
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  display: inline-block;
}

.about-list-wrap {
  position: relative;
  display: block;
  margin-top: 25px;
  margin-bottom: 35px;
}

.about-list {
  position: relative;
  display: block;
}

.about-list li {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.about-list li:last-child{
  border-bottom: none;
}

.about-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-list li .icon i {
  font-size: 50px;
  color: var(--theme-color);
}

.about-list li .icon img{
  width: 50px;
}

.about-list li .about-item h4 span{
  color: var(--theme-color);
  margin-right: 10px;
}

.about-list li .about-item p {
  margin-top: 5px;
}

@media all and (max-width: 991px) {
  .about-right {
    margin-top: 90px;
  }
}

@media all and (max-width: 767px) {
  .about-right {
    padding-left: 0;
  }

  .about-title {
    font-size: 30px;
  }

  .about-left {
    margin-right: 0;
  }

  .about-left-content {
    bottom: -70px;
  }

  .about-img{
    width: 90%;
  }

  .about-experience{
    left: -7px;
    padding: 20px 10px;
  }

  .about-img .img-3{
    width: 140px;
  }

  .about-img .img-2{
    width: 150px;
    right: -10px;
  }
}

.site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.site-title-tagline {
  display: block;
  font-family: var(--heading-font2);
  text-transform: uppercase; 
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color);
  margin-bottom: 8px;
  position: relative;
}

.site-title-tagline i{
  line-height: 0;
  font-size: 21px;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 35px;
  color:  var(--color-dark);
  margin-bottom: 0;
}

.site-title span{
  color: var(--theme-color);
  font-weight: 500;
}

.site-heading p {
  margin-top: 15px;
}

.site-shadow-text{
  position: absolute;
  right: 0px;
  top: 0px;
  line-height: 0;
  font-size: 100px;
  font-family: var(--heading-font2);
  font-weight: bold;
  color: var(--color-gray);
  text-transform: uppercase;
  z-index: -1;
}

.heading-divider {
  display: inline-block;
  position: relative;
  border-bottom: 4px solid var(--theme-color);
  width: 90px;
  height: 4px;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  height: 6px;
  width: 15px;
  border-radius: 0px;
  background-color: var(--color-white);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(75px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(75px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@media all and (max-width: 991px) {
  .site-shadow-text{
    line-height: 1;
    top: -70px !important;
  }
}

@media all and (max-width: 767px) {
  .site-shadow-text{
    font-size: 65px !important;
    top: -40px !important;
  }
}


.theme-btn {
  font-size: 16px;
  color: var(--color-white);
  padding: 10px 24px;
  transition: all 0.5s;
  text-transform: capitalize;
  position: relative;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  border: none;
  background: var(--theme-gradient);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--theme-color2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.theme-btn:hover {
  color: var(--color-white);
}

.theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.theme-btn i {
  margin-left: 10px;
  transform: rotate(-35deg);
  transition: var(--transition2);
}

.theme-btn:hover i{
  transform: rotate(0);
}

.theme-btn span {
  margin-right: 5px;
}

.theme-btn2{
  background: var(--color-white);
  color: var(--theme-color);
}

.theme-btn2::before{
  background: var(--theme-color);
}

.theme-btn2:hover{
  color: var(--color-white);
}

/*====================
22. Feature css 
======================*/

.feature-area {
  position: relative;
}

.feature-area.fa-negative{
  margin-top: -120px;
}

.feature-item {
  padding: 25px 25px;
  text-align: center;
  position: relative;
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
}

.feature-item:hover{
  transform: translateY(-10px);
}

.feature-item .count{
  font-size: 120px;
  font-weight: 800;
  -webkit-text-stroke: 2px var(--theme-color);
  -webkit-text-fill-color: transparent;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: .15;
  z-index: -1;
}

.feature-icon {
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-icon img {
  width: 80px;
}

.feature-item:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-item h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}


/* ===================
27. Counter css 
====================== */

.counter-area {
  position: relative;
  background-image: url(../img/shape/02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.counter-info {
  padding-right: 20px;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  position: relative;
  background: var(--color-white);
  padding: 30px 25px 30px 25px;
  border-radius: 15px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}

.counter-box .icon {
  width: 70px;
  height: 70px;
  line-height: 60px;
  font-size: 35px;
  border-radius: 50px;
  text-align: center;
  color: var(--color-white);
  background: var(--theme-gradient);
  position: relative;
}

.counter-box .icon::before{
  content: "";
  position: absolute;
  left: -7px;
  top: -7px;
  bottom: -7px;
  right: -7px;
  border: 2px dashed var(--theme-color);
  border-radius: 50%;
  transition: all .5s ease-in-out;
  z-index: -1;
}

.counter-box .icon img{
  width: 42px;
  filter: brightness(0) invert(1);
}

.counter-box .counter-info{
  display: flex;
  align-items: center;
  gap: 2px;
}

.counter-box .counter-unit{
  color: var(--color-dark);
  font-weight: 600;
  font-size: 25px;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: var(--color-dark);
  font-size: 50px;
  font-weight: 900;
}

.counter-box .title {
  color: var(--color-dark);
  margin-top: 5px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}


.team-area{
  position: relative;
  overflow: hidden;
}

.team-item {
  position: relative;
  text-align: center;
  transition: var(--transition);
}

.team-item:hover{
  transform: translateY(-8px);
}

.team-img{
  padding: 6px;
  border: 3px solid var(--theme-color);
  border-radius: 50%;
}

.team-img img{
  border-radius: 50%;
  width: 100%;
}

.team-content .social{
  position: relative;
  background: var(--theme-color);
  width: fit-content;
  padding: 0 8px;
  margin: -20px auto 0 auto;
  border-radius: 50px;
  z-index: 1;
}

.team-content .social a{
  width: 25px;
  color: var(--color-white);
}

.team-content .social a:hover{
  color: var(--color-dark);
}

.team-content .info{
  margin-top: 15px;
}

.team-content .info h4{
  font-size: 20px;
  color: var(--color-dark);
}

.team-content .info span{
  color: var(--theme-color);
  font-weight: 500;
}

/* team-area 2 */
.team-area2 .team-item{
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  padding-bottom: 12px;
}

.team-area2 .team-img{
  border: none;
}

.team-area2 .team-img img{
  border-radius: 15px;
}

.team-area2 .team-content .social{
  background: var(--color-white);
}

.team-area2 .team-content .social a{
  color: var(--theme-color);
}

.team-area2 .team-content .social a:hover{
  color: var(--theme-color2);
}




/*====================
29. Team single css 
======================*/

.team-single{
  position: relative;
}

.team-single-content{
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: 15px;
  padding: 20px;
}

.team-single-img img{
  border-radius: 15px;
}

.team-details .name{
  color: var(--color-dark);
  margin-bottom: 5px;
}

.team-details .designation{
  color: var(--theme-color);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 3px;
}

.team-details-info{
  margin-top: 10px;
  margin-bottom: 20px;
}

.team-details-info ul{
  margin-top: 15px;
}

.team-details-info ul li{
  margin: 10px 0;
  color: var(--color-dark);
}

.team-details-info ul li a span{
  width: 110px;
  display: inline-block;
  font-weight: 500;
  color: var(--color-dark);
}

.team-details-info ul li i{
  color: var(--theme-color);
  width: 25px;
}

.team-details-social a{
  width: 30px;
  color: var(--theme-color2);
}

.team-details-social a:hover{
  color: var(--theme-color);
}

/* team-session */
.team-session .session-item {
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.team-session .session-item .day{
  color: var(--theme-color2);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.team-session .session-meta{
  display: flex;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.team-session .session-meta li{
  color: var(--body-text-color);
}

.team-session .session-meta li i{
  color: var(--theme-color);
  margin-right: 5px;
}

.team-session .session-content p{
  margin-top: 15px;
  color: var(--body-text-color);
}

.team-session .session-content p span{
  color: var(--color-dark);
  font-weight: 500;
}

.team-session .session-content p i{
  color: var(--theme-color);
  margin-right: 5px;
}

.team-session .session-content .theme-btn{
  margin-top: 20px;
}



/*====================
30. Cta css 
======================*/

.cta-area{
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.cta-area::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--theme-gradient);
  opacity: .85;
  z-index: -1;
}

.cta-content{
  text-align: center;
}

.cta-content h6{
  font-size: 25px;
  color: var(--theme-color2);
  text-transform: uppercase;
  font-family: var(--heading-font2);
  letter-spacing: 3px;
}

.cta-content h1{
  font-family: var(--heading-font2);
  color: var(--color-white);
  font-size: 50px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.cta-content p{
  color: var(--color-white);
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-content .theme-btn{
  background: var(--theme-color);
  color: var(--color-white);
}



/*====================
31. Choose css 
======================*/

.choose-area { position: relative; }

/* Tab Buttons: gradient & multi-color hover */
.custom-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.custom-tabs .tab-btn {
  flex: 1;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border: none;
  color: #fff;
  padding: 12px 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.custom-tabs .tab-btn i { font-size: 16px; }
.custom-tabs .tab-btn.active { 
  background: linear-gradient(135deg, #e34545, #b059cf);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Tab content */
.tabs-content .tab-content-item {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.tabs-content .tab-content-item.active { display: block; }

/* Single Notice: different colors */
.single-notice-item {
  background: #f8f9fa;
  padding: 12px 15px;
  border-left: 4px solid;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: 0.3s;
}
.single-notice-item:hover { background: #e9f1ff; }
.notice-blue { border-color: #2575fc; }
.notice-purple { border-color: #6a11cb; }
.notice-teal { border-color: #0dc9c9; }

/* Notice Date */
.notice-date {
  font-weight: 600;
  margin-bottom: 5px;
}

/* Tables: Modern styling per tab */
.table-modern {
  border-radius: 10px;
  overflow: hidden;
}
.table-modern thead { color: #fff; }
.table-purple thead { background: linear-gradient(135deg, #6a11cb, #2575fc); }
.table-teal thead { background: linear-gradient(135deg, #0dc9c9, #38ef7d); }
.table-modern tbody tr:nth-child(even) { background: #f2f4f8; }
.table-modern tbody tr:hover { background: #e6f0ff; }

/* Fade in animation */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 991px) { .choose-content { margin-top: 30px; } }




/*====================
 Venue css 
======================*/

.venue-area {
    position: relative;
    overflow-x: hidden; /* prevent horizontal scroll */
}

.venue-item {
    position: relative;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.venue-img {
    position: relative;
    width: 100%;
}

.venue-img img {
    width: 100%;
    height: 425px; /* fixed height for desktop alignment */
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.venue-content {
    position: absolute;   /* overlay on desktop */
    bottom: 20px;
    right: 20px;
    width: 230px;
    background: var(--color-white);
    border-radius: 15px;
    padding: 15px;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.venue-content span {
    color: var(--theme-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 13px;
}

.venue-content h6 {
    margin: 5px 0;
}

.venue-content p {
    color: var(--body-text-color);
    margin: 0;
}

.venue-play {
    margin-top: 10px;
}

.venue-play i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: var(--theme-gradient);
    border-radius: 50%;
    color: #fff;
    text-align: center;
}

/* ====================
   Responsive Mobile
==================== */
@media (max-width: 767.98px) {
    .venue-img img {
        height: 425px; /* auto height on tablets and smaller screens */
    }
}

@media (max-width: 575.98px) {
    .venue-content {
        position: relative; /* stack below image */
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 10px;
    }

    .row.g-3 {
        margin-left: 0;
        margin-right: 0;
        gap: 15px; /* reduce gap on very small screens */
    }

    .venue-img img {
        border-radius: 10px;
    }
}

/* ====================
   Final Global Fix
==================== */
html, body {
    overflow-x: hidden;
}

/* responsive: mobile stacking */
@media (max-width: 575.98px) {
  .venue-img img {
    height: 425px;   /* let image shrink naturally on mobile */
  }
  .venue-content {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 15px;
  }
}

@media (max-width: 425px) {
  .venue-img img {
    height: 425px;   /* let image shrink naturally on mobile */
  }
  .venue-content {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 15px;
  }
}

@media (max-width: 375px) {
  .venue-img img {
    height: 300px;   /* let image shrink naturally on mobile */
  }
  .venue-content {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 15px;
  }
}

@media (max-width: 280px) {
  .venue-img img {
    height: 300px;   /* let image shrink naturally on mobile */
  }
  .venue-content {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 15px;
  }
}

.venue-content span {
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 14px;
}

.venue-content h6 {
  margin-top: 10px;
  margin-bottom: 5px;
}

.venue-content p {
  color: var(--body-text-color);
}

.venue-play {
  margin-top: 15px;
}

.venue-play .popup-youtube {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.venue-play .popup-youtube i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--theme-gradient);
  border-radius: 50px;
  color: var(--color-white);
  text-align: center;
}

/* ====================
   Responsive Tweaks
   ==================== */
@media (max-width: 575.98px) {
  .venue-content {
    position: relative; /* stack below image */
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 15px;
  }
}

/* ====================
   Venue Single Styles
   ==================== */
.venue-single {
  position: relative;
}

.venue-list li {
  margin: 8px 0;
  display: flex;
  align-items: center;
}

.venue-list li span {
  font-weight: 500;
  color: var(--color-dark);
}

.venue-list li span:first-child {
  width: 140px;
  display: inline-block;
}

.venue-list li span:first-child span {
  font-weight: 400;
}

.venue-capacity .venue-list li span:nth-child(2) {
  width: 50px;
}

.venue-info .venue-list li span:first-child {
  width: 80px;
}

.venue-info .venue-list li span:nth-child(2) {
  width: 20px;
}

.venue-info .venue-list li span:last-child {
  flex: 1;
}

.venue-detail-img img {
  border-radius: 15px;
}

.venue-detail-info .video-content,
.venue-detail-info .video-content::before {
  border-radius: 20px;
}

.venue-single-list li {
  margin: 8px 0;
}

.venue-single-list li i {
  color: var(--theme-color);
  margin-right: 10px;
}

/* ====================
   Global Overflow Fix
   ==================== */
html, body {
  overflow-x: hidden;
}


.speaker-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #eee; /* placeholder background */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.speaker-photo i {
  font-size: 22px;
  color: #666;
}

/*====================
32. Venue css 
======================*/

.venue-area{
  position: relative;
}

.venue-item{
  position: relative;
}

.venue-img{
  width: 85%;
}

.venue-img img{
  border-radius: 15px;
}

.venue-content{
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 230px;
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.venue-content span{
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  font-size: 14px;
}

.venue-content h6{
  margin-top: 10px;
  margin-bottom: 5px;
}

.venue-content p{
  color: var(--body-text-color);
}

.venue-play{
  margin-top: 15px;
}

.venue-play .popup-youtube{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.venue-play .popup-youtube i{
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--theme-gradient);
  border-radius: 50px;
  color: var(--color-white);
  text-align: center;
}

.venue-play i.venue-icon {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--theme-gradient);
  border-radius: 50px;
  color: var(--color-white);
  text-align: center;
}

.td-btn .td-arrow-angle i {
  font-size: 14px; /* matches the old SVG arrow size */
  line-height: 1;
}



/*====================
33. Venue single css 
======================*/

.venue-single{
  position: relative;
}

.venue-list li{
  margin: 8px 0;
  display: flex;
  align-items: center;
}

.venue-list li span{
  font-weight: 500;
  color: var(--color-dark);
}

.venue-list li span:first-child{
  width: 140px;
  display: inline-block;
}

.venue-list li span:first-child span{
  font-weight: 400;
}

.venue-capacity .venue-list li span:nth-child(2){
  width: 50px;
}

.venue-info .venue-list li span:first-child{
  width: 80px;
}

.venue-info .venue-list li span:nth-child(2){
  width: 20px;
}

.venue-info .venue-list li span:last-child{
  flex: 1;
}

.venue-detail-img img{
  border-radius: 15px;
}

.venue-detail-info .video-content,
.venue-detail-info .video-content::before{
  border-radius: 20px;
}

.venue-single-list li{
  margin: 8px 0;
}

.venue-single-list li i{
  color: var(--theme-color);
  margin-right: 10px;
}




.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
  z-index: 1;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--hero-overlay);
  opacity: 0.65;
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 40px;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-family: var(--heading-font2);
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--color-white);
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--color-white);
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: '\f101';
  font-family: 'Font Awesome 6 Pro';
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: var(--color-white);
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--theme-color);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--theme-color);
}



.team-area{
  position: relative;
  overflow: hidden;
}

.team-item {
  position: relative;
  text-align: center;
  transition: var(--transition);
}

.team-item:hover{
  transform: translateY(-8px);
}

.team-img{
  padding: 6px;
  border: 3px solid var(--theme-color);
  border-radius: 50%;
}

.team-img img{
  border-radius: 50%;
  width: 100%;
}

.team-content .social{
  position: relative;
  background: var(--theme-color);
  width: fit-content;
  padding: 0 8px;
  margin: -20px auto 0 auto;
  border-radius: 50px;
  z-index: 1;
}

.team-content .social a{
  width: 25px;
  color: var(--color-white);
}

.team-content .social a:hover{
  color: var(--color-dark);
}

.team-content .info{
  margin-top: 15px;
}

.team-content .info h4{
  font-size: 20px;
  color: var(--color-dark);
}

.team-content .info span{
  color: var(--theme-color);
  font-weight: 500;
}

/* team-area 2 */
.team-area2 .team-item{
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  padding-bottom: 12px;
}

.team-area2 .team-img{
  border: none;
}

.team-area2 .team-img img{
  border-radius: 15px;
}

.team-area2 .team-content .social{
  background: var(--color-white);
}

.team-area2 .team-content .social a{
  color: var(--theme-color);
}

.team-area2 .team-content .social a:hover{
  color: var(--theme-color2);
}




/*====================
29. Team single css 
======================*/

.team-single{
  position: relative;
}

.team-single-content{
  background: var(--color-white);
  box-shadow: var(--box-shadow);
  border-radius: 15px;
  padding: 20px;
}

.team-single-img img{
  border-radius: 15px;
}

.team-details .name{
  color: var(--color-dark);
  margin-bottom: 5px;
}

.team-details .designation{
  color: var(--theme-color);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 3px;
}

.team-details-info{
  margin-top: 10px;
  margin-bottom: 20px;
}

.team-details-info ul{
  margin-top: 15px;
}

.team-details-info ul li{
  margin: 10px 0;
  color: var(--color-dark);
}

.team-details-info ul li a span{
  width: 110px;
  display: inline-block;
  font-weight: 500;
  color: var(--color-dark);
}

.team-details-info ul li i{
  color: var(--theme-color);
  width: 25px;
}

.team-details-social a{
  width: 30px;
  color: var(--theme-color2);
}

.team-details-social a:hover{
  color: var(--theme-color);
}

/* team-session */
.team-session .session-item {
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.team-session .session-item .day{
  color: var(--theme-color2);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.team-session .session-meta{
  display: flex;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.team-session .session-meta li{
  color: var(--body-text-color);
}

.team-session .session-meta li i{
  color: var(--theme-color);
  margin-right: 5px;
}

.team-session .session-content p{
  margin-top: 15px;
  color: var(--body-text-color);
}

.team-session .session-content p span{
  color: var(--color-dark);
  font-weight: 500;
}

.team-session .session-content p i{
  color: var(--theme-color);
  margin-right: 5px;
}

.team-session .session-content .theme-btn{
  margin-top: 20px;
}


.text-center {
    text-align: center !important;
}


.choose-area {
  position: relative;
}

.choose-content-wrap{
  margin-top: 30px;
}

.choose-item{
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.choose-item-icon{
  width: 60px;
  height: 60px;
  line-height: 55px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  box-shadow: var(--box-shadow);
}

.choose-item-icon img{
  width: 35px;
  filter: brightness(0) invert(1);
}

.choose-item-info h4{
  margin-bottom: 5px;
}

.choose-item-info{
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 20px;
  flex: 1;
}

.choose-item:last-child .choose-item-info{
  border-bottom: none;
}

.choose-img{
  position: relative;
  text-align: end;
  margin-right: 30px;
}

.choose-img img{
  border-radius: 20px;
}

.choose-img::before{
  content: "";
  position: absolute;
  left: 15px;
  top: 40px;
  background: var(--theme-color);
  border-radius: 20px;
  width: 70%;
  height: 88%;
  transform: rotate(-8deg);
  z-index: -1;
}

.choose-img .theme-btn{
  position: absolute;
  left: 0;
  bottom: 80px;
}

@media all and (max-width: 991px) {
  .choose-content{
    margin-top: 50px;
  }

  .choose-img{
    text-align: left;
    padding-left: 40px;
  }
}

.rts-notice-section .nav-tabs {
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}
.rts-notice-section .nav-tabs .nav-link {
  border: none;
  font-weight: 600;
  color: #333;
  padding: 10px 20px;
}
.rts-notice-section .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #c72127;
  border-radius: 5px;
}
.rts-notice-section .nav-tabs .nav-link i {
  margin-right: 6px;
}

/* Notice items */
.rts-notice-section .single-notice-item {
  margin-bottom: 15px;
  padding: 12px;
  border-left: 3px solid #c72127;
  background: c72127;
  border-radius: 6px;
}
.rts-notice-section .single-notice-item .notice-date {
  font-size: 24px;
  font-weight: 600;
  color: #5a6317;
  margin-bottom: 5px;
}

/* Table style */
.notice-table td {
  padding: 10px 15px;
  vertical-align: middle;
}
.notice-table .notice-date {
  font-size: 18px;
  font-weight: 600;
  color: #c72127;
}

.registration-table {
  border: 1px solid #ddd;
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
}

.registration-table th,
.registration-table td {
  padding: 6px 16px;
  border: 1px solid #ddd;
  text-align: left;
}

.registration-table thead {
  background-color: #212529; /* dark header */
  color: #fff;
}

.registration-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.registration-table tbody tr:hover {
  background-color: #e9ecef;
}

/* Why Join Section */
.counter-area {
  position: relative;
  background-image: url(../img/breadcrumb/why_rmda.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}

.counter-info {
  padding-right: 20px;
}

.counter-box {
  text-align: center;
  background: var(--color-white);
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.counter-box .icon {
    width: 70px;
    height: 70px;
    line-height: 60px;
    font-size: 35px;
    border-radius: 50px;
    text-align: center;
    color: var(--color-white);
    background: var(--theme-gradient);
    position: relative;
}

.counter-box .icon::before {
    content: "";
    position: absolute;
    left: -7px;
    top: -7px;
    bottom: -7px;
    right: -7px;
    border: 2px dashed var(--theme-color);
    border-radius: 50%;
    transition: all .5s ease-in-out;
    z-index: -1;
}

.counter-box .icon img {
    width: 40px;      /* scale image to fit inside the circle */
    height: 40px;     /* maintain square ratio */
    object-fit: contain;
}

.counter-box .title {
  color: var(--color-dark);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.counter-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}





