/**
* Template Name: Gp
* Updated: Nov 25 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/gp-free-multipurpose-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #ffc451;
  text-decoration: none;
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffc451;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
}

.back-to-top:hover i {
  color: #ffc451;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #ffc451;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #ffc451;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #ffc451;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffc451;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #ffc451;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #ffc451;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: #ffc451;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Hero Slogan Styling */
.hero-slogan {
  font-size: 28px;
  font-weight: 600;
  color: #ffc451;
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out 0.5s both;
}

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

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

.overview-tagline {
  font-size: 18px;
  font-weight: 500;
  color: #666;
  margin-top: 10px;
  font-style: italic;
  text-align: center;
}


/* Responsive slogan sizing */
@media (max-width: 768px) {
  .hero-slogan {
    font-size: 20px;
    margin: 15px 0;
  }
}

@media (max-width: 480px) {
  .hero-slogan {
    font-size: 16px;
    margin: 10px 0;
  }
}
#hero {
  width: 100%;
  min-height: 100vh;
  background: url("/?originalUrl=https%3A%2F%2Fwbcdcompetition.github.io%2Fimg%2Fbackgrounds%2Fhero-bg.png") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #ffc451;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #ffc451;
}

#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#hero .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#hero .icon-box h3 a:hover {
  color: #ffc451;
}

#hero .icon-box:hover {
  border-color: #ffc451;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ffde9e;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}


/*--------------------------------------------------------------
# Table Styles
--------------------------------------------------------------*/
table {
  font-size: 16px;
}

div.num {
    border-bottom: 1px solid;
      text-align: center;
      font-size: 0.8em;
}

div.denom {
    font-size: 0.8em;
      border-top: 1px solid;
      text-align: center;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  background-size: cover;
  position: relative;
}


.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #ffc451;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #ffc451;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ffc451;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #ffc451;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.cta .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ffc451;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.cta .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.cta .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.cta .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.cta .icon-box h4 a:hover {
  color: #ffc451;
}

.cta .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.cta .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Portfolio2
--------------------------------------------------------------*/
.portfolio2 .portfolio-item {
  margin-bottom: 30px;
}

.portfolio2 #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio2 #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio2 #portfolio-flters li:hover,
.portfolio2 #portfolio-flters li.filter-active {
  color: #151515;
  background: #ffc451;
}

.portfolio2 #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio2 .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.portfolio2 .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio2 .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio2 .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio2 .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio2 .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio2 .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio2 .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio2 .portfolio-wrap .portfolio-links a:hover {
  color: #ffc451;
}

.portfolio2 .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio2 .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio2 .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio2 Details
--------------------------------------------------------------*/
.portfolio2-details {
  padding-top: 40px;
}

.portfolio2-details .portfolio2-details-slider img {
  width: 100%;
}

.portfolio2-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio2-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ffc451;
}

.portfolio2-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}

.portfolio2-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio2-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio2-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio2-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio2-details .portfolio-description {
  padding-top: 30px;
}

.portfolio2-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio2-details .portfolio-description p {
  padding: 0;
}





/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #151515;
  background: #ffc451;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(21, 21, 21, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #ffc451;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ffc451;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts .content {
  padding: 30px 0;
}

.counts .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts .content p {
  margin-bottom: 0;
}

.counts .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts .content .count-box i {
  display: block;
  font-size: 36px;
  color: #ffc451;
  float: left;
}

.counts .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}

.counts .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .content .count-box a:hover {
  color: #626262;
}

.counts .image {
  background: url("/?originalUrl=https%3A%2F%2Fwbcdcompetition.github.io%2Fimg%2Fcounts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts .image {
    text-align: center;
  }

  .counts .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Counts2
--------------------------------------------------------------*/
.counts2 .content {
  padding: 30px 0;
}

.counts2 .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts2 .content p {
  margin-bottom: 0;
}

.counts2 .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts2 .content .count-box i {
  display: block;
  font-size: 36px;
  color: #ffc451;
  float: left;
}

.counts2 .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}

.counts2 .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts2 .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts2 .content .count-box a:hover {
  color: #626262;
}

.counts2 .image {
  background: url("/?originalUrl=https%3A%2F%2Fwbcdcompetition.github.io%2Fimg%2Fcounts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts2 .image {
    text-align: center;
  }

  .counts2 .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts2 .image img {
    max-width: 100%;
  }
}


/*--------------------------------------------------------------
# Counts3
--------------------------------------------------------------*/
.counts3 .content {
  padding: 30px 0;
}

.counts3 .content h3 {
  font-weight: 700;
  font-size: 34px;
  color: #151515;
}

.counts3 .content p {
  margin-bottom: 0;
}

.counts3 .content .count-box {
  padding: 20px 0;
  width: 100%;
}

.counts3 .content .count-box i {
  display: block;
  font-size: 36px;
  color: #ffc451;
  float: left;
}

.counts3 .content .count-box span {
  font-size: 36px;
  line-height: 30px;
  display: block;
  font-weight: 700;
  color: #151515;
  margin-left: 50px;
}

.counts3 .content .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 50px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #3b3b3b;
}

.counts3 .content .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #3b3b3b;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts3 .content .count-box a:hover {
  color: #626262;
}

.counts3 .image {
  background: url("/?originalUrl=https%3A%2F%2Fwbcdcompetition.github.io%2Fimg%2Fcounts-img.jpg") center center no-repeat;
  background-size: cover;
  min-height: 400px;
}

@media (max-width: 991px) {
  .counts3 .image {
    text-align: center;
  }

  .counts3 .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .counts3 .image img {
    max-width: 100%;
  }
}



/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.testimonials .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ffc451;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.testimonials .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.testimonials .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.testimonials .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.testimonials .icon-box h4 a:hover {
  color: #ffc451;
}

.testimonials .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.testimonials .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  width: 100%;
  min-height: 10vh;
  background: #fff;
  padding: 60px 0;
}


.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #151515;
  margin: 0 3px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  transition: ease-in-out 0.3s;
  color: #484848;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.team .member .social a:hover {
  color: #151515;
  background: #ffc451;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ffc451;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #ffc451;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ffcd6b;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #ffc451;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ffc451;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffc451;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffc451;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #ffc451;
  color: #151515;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #ffcd6b;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

.task-description {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.task-header {
  margin-bottom: 2rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 1rem;
}

.robot-badge {
  display: inline-block;
  background: #2ecc71;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.task-overview {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

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

.spec-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.version-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/*--------------------------------------------------------------
# Custom WBCD Styles
--------------------------------------------------------------*/
.task-section {
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.task-header {
  margin-bottom: 1.5rem;
}

.task-header h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
}

.robot-badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  background: #e8f4f8;
  border-radius: 4px;
  color: #2980b9;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #34495e;
  margin: 1.5rem 0 1rem 0;
}

h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #34495e;
  margin: 1rem 0 0.5rem 0;
}

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

.content-card {
  background: #f8f9fa;
  padding: 1.2rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.step-card {
  display: flex;
  flex-direction: column;
}

.step-card .step-images {
  margin-top: auto;
}

.step-images {
  margin-top: 0.75rem;
}

.step-images img,
.step-images video {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

.media-card .step-images {
  margin-top: 0;
}

p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4a5568;
  margin: 0.5rem 0;
}

.highlight-note {
  font-family: "Poppins", "Raleway", "Open Sans", sans-serif;
  font-weight: 600;
  font-style: italic;
  color: #1f6feb;
  background: #eaf2ff;
  border: 1px solid #c7ddff;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

ul {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
}

li {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #4a5568;
  margin: 0.3rem 0;
}

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

.task-stages .stage {
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .task-section {
    padding: 1rem;
  }

  .content-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

.timeline-item {
  margin: 10px 0;
}

.date {
  font-weight: bold;
  display: inline-block;
  width: 150px;
}

.spacer {
  display: inline-block;
  width: 40px;
}

.event {
  display: inline-block;
}

/* Competition Tracks Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.challenge-title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.challenge-title h2 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.tab-nav {
  margin-bottom: 20px;
}

.inline-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid #eee;
}

.inline-list li {
  margin: 0;
  flex: 0 0 25%;
    width: 25%;
}

.inline-list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 270px;
  padding: 20px;
  text-decoration: none;
  color: #fff;
  border-bottom: 4px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  font-weight: bold;
  font-size: 1.1rem;
}

.inline-list a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  z-index: 0;
}

.inline-list a:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

.inline-list a.active-challenge {
  border-bottom-color: #2196F3;
}

.inline-list a.active-challenge::before {
  background: rgba(33, 150, 243, 0.6);
}

.inline-list a span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Track Background Images */
.inline-list a[data-tab="lpi"] {
  background-image: url("/?originalUrl=https%3A%2F%2Fwbcdcompetition.github.io%2Fimg%2Ftasks%2Ftrack-covers%2Flogistics_picking.jpeg");
}
.inline-list a[data-tab="lp"] {
  background-image: url("/?originalUrl=https%3A%2F%2Fwbcdcompetition.github.io%2Fimg%2Ftasks%2Ftrack-covers%2Flogistics.png");
}

.inline-list a[data-tab="le"] {
  background-image: url("/?originalUrl=https%3A%2F%2Fwbcdcompetition.github.io%2Fimg%2Ftasks%2Ftrack-covers%2Flabexp.png");
}

.inline-list a[data-tab="dm"] {
  background-image: url("/?originalUrl=https%3A%2F%2Fwbcdcompetition.github.io%2Fimg%2Ftasks%2Ftrack-covers%2Fgarmentmanip.png");
}

.tab-content {
  min-height: 300px;
  padding: 30px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Ensure competition tracks page stays at top and prevent unwanted scrolling */
body.competition-page {
  scroll-behavior: auto;
}

/* Prevent unwanted scrolling to hash targets */
#lp,
#le,
#dm {
  scroll-margin-top: 0;
}
.version {
  padding: 1rem;
  border-radius: 6px;
  background: #f8f9fa;
}

.version.advanced {
  border-left: 4px solid #e74c3c;
}

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

.metric {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.object-properties {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.property {
  background: #e1f5fe;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

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

  .version-tabs {
      grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Custom WBCD Styles
--------------------------------------------------------------*/
.task-section {
  padding: 2rem;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.task-header {
  margin-bottom: 1.5rem;
}

.task-header h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
}

.robot-badge {
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  background: #e8f4f8;
  border-radius: 4px;
  color: #2980b9;
}

h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #34495e;
  margin: 1.5rem 0 1rem 0;
}

h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #34495e;
  margin: 1rem 0 0.5rem 0;
}

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

.content-card {
  background: #f8f9fa;
  padding: 1.2rem;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4a5568;
  margin: 0.5rem 0;
}

ul {
  margin: 0.5rem 0;
  padding-left: 1.2rem;
}

li {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #4a5568;
  margin: 0.3rem 0;
}

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

.task-stages .stage {
  margin-bottom: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .task-section {
    padding: 1rem;
  }

  .content-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

.timeline-item {
  margin: 10px 0;
}

.date {
  font-weight: bold;
  display: inline-block;
  width: 150px;
}

.spacer {
  display: inline-block;
  width: 40px;
}

.event {
  display: inline-block;
}

/* Competition Tracks Tab Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.challenge-title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.challenge-title h2 {
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 600;
}

.tab-nav {
  margin-bottom: 20px;
}

.inline-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid #eee;
}

.inline-list li {
  margin: 0;
  flex: 0 0 25%;
    width: 25%;
}

.inline-list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 270px;
  padding: 20px;
  text-decoration: none;
  color: #fff;
  border-bottom: 4px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  font-weight: bold;
  font-size: 1.1rem;
}

.inline-list a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
  z-index: 0;
}

.inline-list a:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

.inline-list a.active-challenge {
  border-bottom-color: #2196F3;
}

.inline-list a.active-challenge::before {
  background: rgba(33, 150, 243, 0.6);
}

.inline-list a span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Track Background Images */
.inline-list a[data-tab="lp"] {
  background-image: url("/?originalUrl=https%3A%2F%2Fwbcdcompetition.github.io%2Fimg%2Ftasks%2Ftrack-covers%2Flogistics.png");
}

.inline-list a[data-tab="le"] {
  background-image: url("/?originalUrl=https%3A%2F%2Fwbcdcompetition.github.io%2Fimg%2Ftasks%2Ftrack-covers%2Flabexp.png");
}

.inline-list a[data-tab="dm"] {
  background-image: url("/?originalUrl=https%3A%2F%2Fwbcdcompetition.github.io%2Fimg%2Ftasks%2Ftrack-covers%2Fgarmentmanip.png");
}

.tab-content {
  min-height: 300px;
  padding: 30px 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Ensure competition tracks page stays at top and prevent unwanted scrolling */
body.competition-page {
  scroll-behavior: auto;
}

/* Prevent unwanted scrolling to hash targets */
#lp,
#le,
#dm {
  scroll-margin-top: 0;
}
/*--------------------------------------------------------------
# Task Showcase Section (Main Page)
--------------------------------------------------------------*/
.task-showcase {
  padding: 60px 0;
  background: #f8f9fa;
}

.task-showcase h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #151515;
  margin-bottom: 1rem;
}

.task-showcase .text-center {
  text-align: center;
}

.task-showcase .mb-4 {
  margin-bottom: 1.5rem;
  color: #666;
}

.task-cards-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.task-card {
  flex: 1;
  min-width: 250px;
  max-width: 380px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.task-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.task-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.task-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.task-card:hover .task-card-image img {
  transform: scale(1.1);
}

.task-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.task-card:hover .task-card-overlay {
  opacity: 1;
}

.task-card-overlay i {
  font-size: 48px;
  color: #fff;
}

.task-card-content {
  padding: 20px;
}

.task-card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #151515;
  margin: 0 0 8px 0;
}

.task-card-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 12px 0;
}

.task-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 12px;
  background: #e8f4f8;
  border-radius: 20px;
  color: #2980b9;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Awards Section (Main Page)
--------------------------------------------------------------*/
.awards-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.awards-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}

.prize-banner {
  text-align: center;
  margin-bottom: 50px;
}

.prize-amount {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: #ffc451;
  text-shadow: 0 4px 20px rgba(255, 196, 81, 0.3);
  font-family: "Poppins", sans-serif;
}

.prize-label {
  display: block;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 8px;
}

.prizes-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.prize-card {
  flex: 1;
  min-width: 250px;
  max-width: 340px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.prize-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 196, 81, 0.3);
}

.prize-card.gold {
  background: linear-gradient(135deg, rgba(255, 196, 81, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-color: rgba(255, 196, 81, 0.3);
}

.prize-card.gold .prize-icon {
  font-size: 4rem;
}

.prize-card.silver .prize-icon,
.prize-card.bronze .prize-icon {
  font-size: 3rem;
}

.prize-icon {
  margin-bottom: 15px;
}

.prize-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px 0;
}

.prize-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 15px 0;
}

.prize-value {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffc451;
  padding: 8px 20px;
  background: rgba(255, 196, 81, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(255, 196, 81, 0.3);
}

/*--------------------------------------------------------------
# Competition Tracks Page - Additional Styles
--------------------------------------------------------------*/
.track-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.track-header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: #2c3e50;
}

.track-overview {
  background: #f0f7ff;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #2196F3;
  margin-bottom: 25px;
}

.track-overview p {
  margin: 0;
  color: #444;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.image-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.rate-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.rate-badge.high {
  background: #ffe0e0;
  color: #c0392b;
}

.rate-badge.medium {
  background: #fff3e0;
  color: #e67e22;
}

.rate-badge.low {
  background: #e0f7e0;
  color: #27ae60;
}

@media (max-width: 768px) {
  .task-cards-row {
    flex-direction: column;
    align-items: center;
  }
  
  .task-card {
    max-width: 100%;
  }
  
  .prizes-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .prize-card {
    max-width: 100%;
  }
  
  .prize-amount {
    font-size: 3rem;
  }
  
  .track-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*--------------------------------------------------------------
# Schedule Section (Main Page)
--------------------------------------------------------------*/
.schedule-section {
  padding: 60px 0;
  background: #fff;
}

.schedule-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #151515;
  margin-bottom: 2rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.schedule-column {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.schedule-column h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #151515;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 2px solid #ffc451;
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-column h3 i {
  color: #ffc451;
  font-size: 1.4rem;
}

/* Timeline Vertical Styles */
.timeline-vertical {
  position: relative;
  padding-left: 20px;
}

.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: linear-gradient(to bottom, #ffc451, #ff9800);
  border-radius: 3px;
}

.timeline-event {
  position: relative;
  padding: 12px 0 12px 25px;
  border-bottom: 1px solid #e9ecef;
}

.timeline-event:last-child {
  border-bottom: none;
}

.timeline-event::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 18px;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 3px solid #ffc451;
  border-radius: 50%;
  z-index: 1;
}

.timeline-event.highlight::before {
  background: #ffc451;
  border-color: #ff9800;
  box-shadow: 0 0 0 4px rgba(255, 196, 81, 0.3);
}

.timeline-event.highlight {
  background: rgba(255, 196, 81, 0.1);
  margin: 0 -15px;
  padding: 15px 15px 15px 40px;
  border-radius: 8px;
  border-bottom: none;
}

.timeline-date {
  font-weight: 700;
  color: #151515;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.timeline-content {
  color: #666;
  font-size: 0.9rem;
}

/* Phase Group Styles */
.phase-group {
  margin-bottom: 25px;
}

.phase-group:last-child {
  margin-bottom: 0;
}

.phase-group h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0 0 15px 0;
  padding: 8px 12px;
  background: linear-gradient(90deg, rgba(255, 196, 81, 0.2), transparent);
  border-left: 3px solid #ffc451;
  border-radius: 0 4px 4px 0;
}

/* Expandable List Styles */
.expandable-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expandable-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.expandable-item:hover {
  border-color: #ffc451;
}

.expandable-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.expandable-header:hover {
  background: rgba(255, 196, 81, 0.1);
}

.expand-icon {
  color: #ffc451;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.expandable-item.expanded .expand-icon {
  transform: rotate(180deg);
}

.expandable-header strong {
  color: #151515;
  font-size: 0.9rem;
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  background: rgba(248, 249, 250, 0.5);
  border-top: 1px solid transparent;
}

.expandable-item.expanded .expandable-content {
  max-height: 200px;
  padding: 12px 15px;
  border-top-color: #e9ecef;
}

/* Responsive Schedule */
@media (max-width: 992px) {
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .schedule-column {
    padding: 20px;
  }
  
  .timeline-event {
    padding-left: 20px;
  }
  
  .timeline-event.highlight {
    padding-left: 35px;
  }
}

/*--------------------------------------------------------------
# Organizers & Sponsors Section - Fixed Size Cards
--------------------------------------------------------------*/
.organizers-section .row,
.sponsors-section .row {
  justify-content: center;
}

.organizers-section .member,
.sponsors-section .member {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 20px;
}

.organizers-section .member .member-img img,
.sponsors-section .member .member-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.organizers-section .member .member-info,
.sponsors-section .member .member-info {
  padding: 15px 10px;
  min-height: 80px;
}

.organizers-section .member .member-info h4,
.sponsors-section .member .member-info h4 {
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.organizers-section .member .member-info span {
  font-size: 11px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

/* Fixed column widths for organizers */
.organizers-section .col-xl-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

@media (max-width: 1400px) {
  .organizers-section .member,
  .sponsors-section .member {
    max-width: 180px;
  }
}

@media (max-width: 1200px) {
  .organizers-section .col-xl-2 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width: 992px) {
  .organizers-section .col-lg-3,
  .sponsors-section .col-lg-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (max-width: 768px) {
  .organizers-section .col-md-4,
  .sponsors-section .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .organizers-section .member,
  .sponsors-section .member {
    max-width: 160px;
  }
}

@media (max-width: 576px) {
  .organizers-section .col-sm-6,
  .sponsors-section .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .organizers-section .member,
  .sponsors-section .member {
    max-width: 150px;
  }
  
  .organizers-section .member .member-img img,
  .sponsors-section .member .member-img img {
    height: 140px;
  }
}

/*--------------------------------------------------------------
# Sponsors - Show Full Image (override)
--------------------------------------------------------------*/
.sponsors-section .member .member-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  padding: 15px;
  min-height: 150px;
}

.sponsors-section .member .member-img img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
}

/*--------------------------------------------------------------
# Sponsors - Clean Style (no box shadow)
--------------------------------------------------------------*/
.sponsors-section .member {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.sponsors-section .member .member-img {
  background: transparent;
  padding: 10px;
  min-height: auto;
}

.sponsors-section .member .member-img img {
  max-height: 100px;
  transition: transform 0.3s ease;
}

.sponsors-section .member:hover {
  transform: none;
}

.sponsors-section .member:hover .member-img img {
  transform: scale(1.05);
}

.sponsors-section .member .member-info {
  background: transparent;
  padding: 10px 5px;
  min-height: auto;
}

.sponsors-section .member .member-info h4 {
  font-size: 14px;
  color: #333;
}

.sponsors-section .member .social {
  display: none;
}

/*--------------------------------------------------------------
# Sponsors Section - Tiered Layout
--------------------------------------------------------------*/
.sponsors-section {
  padding: 60px 0;
  background: #fff;
}

.sponsors-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #151515;
  margin-bottom: 2rem;
}

.sponsor-tier {
  margin-bottom: 40px;
  text-align: center;
}

.sponsor-tier:last-child {
  margin-bottom: 0;
}

.tier-label {
  font-size: 1rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.tier-label::before,
.tier-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #ddd;
}

.tier-label::before {
  right: 100%;
  margin-right: 15px;
}

.tier-label::after {
  left: 100%;
  margin-left: 15px;
}

.sponsor-logos {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    justify-items: center;
  align-items: center;
  max-width: 1000px;
    /* Maximum 4 sponsors per row at ~200px each + gaps */
    margin: 0 auto;
}

.sponsor-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.sponsor-logo:hover {
  transform: translateY(-5px);
}

.sponsor-logo img {
  object-fit: contain;
  transition: all 0.3s ease;
}

.sponsor-logo:hover img {
  filter: brightness(1.05);
}

.sponsor-name {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Platinum Tier - Largest */
.platinum-tier .tier-label {
  color: #1a1a2e;
}

.platinum-tier .tier-label::before,
.platinum-tier .tier-label::after {
  background: linear-gradient(90deg, transparent, #ffc451, transparent);
  height: 2px;
  width: 80px;
}

.platinum-tier .sponsor-logo img {
  max-height: 140px;
  max-width: 200px;
  width: 100%;
}

.platinum-tier .sponsor-name {
  font-size: 16px;
}

/* Gold Tier - Medium */
.gold-tier .tier-label {
  color: #b8860b;
}

.gold-tier .tier-label::before,
.gold-tier .tier-label::after {
  background: linear-gradient(90deg, transparent, #b8860b, transparent);
}

.gold-tier .sponsor-logo img {
  max-height: 100px;
  max-width: 160px;
}

.gold-tier .sponsor-name {
  font-size: 14px;
}

/* Silver Tier - Smaller */
.silver-tier .tier-label {
  color: #808080;
}

.silver-tier .tier-label::before,
.silver-tier .tier-label::after {
  background: linear-gradient(90deg, transparent, #808080, transparent);
}

.silver-tier .sponsor-logo img {
  max-height: 70px;
  max-width: 120px;
}

.silver-tier .sponsor-name {
  font-size: 13px;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .sponsor-logos {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 30px;
  }
  
  .platinum-tier .sponsor-logo img {
    max-height: 100px;
    max-width: 150px;
  }
  
  .gold-tier .sponsor-logo img {
    max-height: 80px;
    max-width: 130px;
  }
  
  .silver-tier .sponsor-logo img {
    max-height: 60px;
    max-width: 100px;
  }
  
  .tier-label::before,
  .tier-label::after {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .sponsor-logos {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
  }
  
  .platinum-tier .sponsor-logo img {
    max-height: 80px;
    max-width: 120px;
  }
}

/*----------------------------------------------------------------
# More Sponsors Section
--------------------------------------------------------------*/
.more-sponsors-section {
  margin-top: 50px;
  text-align: center;
}

.more-sponsors-content {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.more-sponsors-content h3 {
  color: #151515;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.more-sponsors-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.more-sponsors-content a {
  color: #ffc451;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.more-sponsors-content a:hover {
  color: #ff9800;
}

/* Improved sponsor name alignment */
.sponsor-name {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: center;
  min-height: 20px;
  /* Ensure consistent height */
  display: flex;
  align-items: center;
  justify-content: center;
}
/*--------------------------------------------------------------
# Support Cards (UMI Data, Simulation)
--------------------------------------------------------------*/
.support-cards-row {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.support-card {
  flex: 1;
  min-width: 300px;
  max-width: 480px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  border: 2px solid #e9ecef;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: #ffc451;
}

.support-card-image {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.support-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.placeholder-image i {
  font-size: 48px;
  margin-bottom: 10px;
  opacity: 0.9;
}

.placeholder-image span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.support-card-content {
  padding: 20px 25px;
}

.support-card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #151515;
  margin: 0 0 10px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.support-card-content h3 i {
  color: #ffc451;
}

.support-card-content p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .support-cards-row {
    flex-direction: column;
    align-items: center;
  }
  
  .support-card {
    max-width: 100%;
    min-width: auto;
    width: 100%;
  }
  
  .support-card-image {
    height: 140px;
  }
}

/*----------------------------------------------------------------
# Track Awards Cards
--------------------------------------------------------------*/
.tracks-awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.track-awards-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.track-awards-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.track-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 20px 25px;
  border-bottom: 1px solid #dee2e6;
}

.track-header h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #151515;
}


.track-prizes {
  padding: 20px 25px;
}

.prize-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.prize-item:hover {
  background: rgba(255, 196, 81, 0.05);
}

.prize-item.gold {
  border-left: 4px solid #ffd700;
}

.prize-item.silver {
  border-left: 4px solid #c0c0c0;
}

.prize-item.bronze {
  border-left: 4px solid #cd7f32;
}

.prize-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.prize-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.prize-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #151515;
}

.prize-value {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}


.awards-summary {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.awards-summary p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

/* Responsive adjustments for track awards */
@media (max-width: 768px) {
  .tracks-awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .track-header h3 {
    font-size: 1.1rem;
  }

  .prize-item {
    padding: 10px;
    gap: 12px;
  }

  .prize-icon {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .track-header {
    padding: 15px 20px;
  }

  .track-prizes {
    padding: 15px 20px;
  }
}
/*--------------------------------------------------------------
# WBCD 2025 Highlights Section
---------------------------------------------------------------*/
.wbcd-highlights-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.wbcd-highlights-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #151515;
  margin-bottom: 1rem;
}

.highlights-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: #666;
  margin-bottom: 3rem;
  font-style: italic;
}

/* Key Statistics Row */
.key-stats-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 200px;
  flex: 1;
  max-width: 250px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffc451;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  line-height: 1.4;
}

/* Media Gallery with Carousel */
.media-gallery {
  margin-bottom: 3rem;
}

.media-gallery h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #151515;
}

.media-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.carousel-arrow {
  background: white;
  border: 2px solid #ffc451;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffc451;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
  background: #ffc451;
  color: white;
  transform: scale(1.1);
}

.carousel-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-prev {
  margin-right: 10px;
}

.carousel-next {
  margin-left: 10px;
}

.media-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.media-carousel::-webkit-scrollbar {
  display: none;
}

.media-item {
  flex: 0 0 400px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  scroll-snap-align: start;
}

.media-item:hover {
  transform: translateY(-5px) scale(1.05);
}

.media-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.media-caption {
  padding: 1rem;
  font-weight: 500;
  color: #555;
  text-align: center;
  font-size: 0.9rem;
}

/* Quotes Section with Carousel */
.quotes-section {
  margin-bottom: 3rem;
}

.quotes-section h3 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #151515;
}

.quotes-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.quotes-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0;
  flex: 1;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quotes-carousel::-webkit-scrollbar {
  display: none;
}

.quote-card {
  flex: 0 0 400px;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  scroll-snap-align: start;
}

.quote-card blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-card cite {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .key-stats-row {
    gap: 1rem;
  }

  .stat-item {
    min-width: 150px;
    padding: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .media-item {
    flex: 0 0 300px;
  }

  .media-item img {
    height: 240px;
  }

  .quote-card {
    flex: 0 0 300px;
    padding: 1.5rem;
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .carousel-prev {
    margin-right: 5px;
  }

  .carousel-next {
    margin-left: 5px;
  }
}

@media (max-width: 576px) {
  .key-stats-row {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    width: 100%;
    max-width: 300px;
  }

  .media-item {
    flex: 0 0 250px;
  }

  .quote-card {
    flex: 0 0 250px;
  }
}