/********** Template CSS **********/
.carousel-item {
    transition: opacity 1.5s ease-in-out !important;
  }
  
        .footer .btn.btn-link {
            display: block;
            margin-bottom: 5px;
            padding: 0;
            text-align: left;
            color: #FFFFFF;
            font-weight: normal;
            text-transform: capitalize;
            transition: .3s;
        }

        .footer .btn.btn-link::before {
            position: relative;
            content: "\f105";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            margin-right: 10px;
        }

        .footer .btn.btn-link:hover {
            letter-spacing: 1px;
            box-shadow: none;
            color: var(--primary);
        }

        .footer .btn.btn-square {
            width: 38px;
            height: 38px;
        }

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/* Tweak for language button to match primary CTA look */
.lang-btn {
    border-radius: 50px;
    padding-top: .45rem;
    padding-bottom: .45rem;
    padding-left: 1rem;
    padding-right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    transition: .25s;
}

.lang-btn:hover {
    background: #ec4899;
    color: #fff;
}

/* small-screen: hide label if the template still uses d-none d-md-inline */
@media (max-width: 575.98px) {
    .lang-btn #langText {
        display: none !important;
    }
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 20px 0; /* reduced vertical padding to make header smaller */
    color: var(--bs-white);
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    font-size: 14px;
}
.navbar .dropdown-menu .dropdown-item {
    font-size: 14px;
}



/* Only hover should change color — remove persistent active styling */
.navbar .navbar-nav .nav-link:hover {
    color: #ec4899;
}

/* remove any custom underline/active pseudo-element rules previously added */


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 80px; /* slightly reduced to lower header visual height */
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    width: 100%;
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 1000%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-white);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-white);
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

/* .service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3rem solid rgba(0, 0, 0, .5);
    border-radius: 300px;
    z-index: 1;
} */

.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(to right, var(--bs-secondary), var(--bs-dark));
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to left, var(--bs-secondary), var(--bs-dark));
}

/* Removed:
@media (max-width: 767.98px) { ... }
*/

.service-img .carousel {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.service-img .carousel-inner {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.service-img .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-img .carousel-control-prev,
.service-img .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(236, 72, 153, 0.7);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-img .carousel:hover .carousel-control-prev,
.service-img .carousel:hover .carousel-control-next {
    opacity: 1;
}

.service-img .carousel-control-prev {
    left: 10%;
}

.service-img .carousel-control-next {
    right: 10%;
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}

.footer {
	background-image: url(../img/footer-bg.png);
	background-position: 0px 0px;
    background-repeat: repeat-x;
	animation: footerAnimatedBg 50s linear infinite;
}

/* Language switch (compact) */
.lang-switch {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.lang-switch-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}
.lang-switch-slider {
    position: relative;
    width: 62px;
    height: 34px;
    background: transparent;
    border: 2px solid #ec4899;
    border-radius: 34px;
    padding: 2px;
    display: inline-flex;
    align-items: center;
    transition: background .25s, border-color .25s;
}
.lang-switch-flag {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: #fff;
    transform: translateX(0);
    transition: transform .25s;
    font-size: 16px;
}
/* Checked state moves flag to the right */
.lang-switch.lang-en .lang-switch-flag {
    transform: translateX(28px);
}
/* Hover effect */
.lang-switch:hover .lang-switch-slider {
    border-color: #ff6fb9;
}

/* Logo styling */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: auto;
    height: 80px;
    object-fit: contain;
}

.brand-text {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: #ec4899;
    transition: all 0.3s ease;
}

.brand-text:hover {
    background: linear-gradient(45deg, #ec4899, #ff6fb9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Navbar dropdown animations */
.navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-in-out;
}

.navbar .nav-item:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.navbar .nav-link {
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 15px;
    left: 0;
    background: linear-gradient(90deg, #ec4899, #ff6fb9);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.dropdown-item {
    transition: all 0.2s ease;
    position: relative;
    padding-left: 25px !important;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    width: 0;
    height: 2px;
    background: #ec4899;
    transition: width 0.2s ease;
    transform: translateY(-50%);
}

.dropdown-item:hover {
    color: #ec4899;
    background: rgba(236, 72, 153, 0.1);
    padding-left: 30px !important;
}

.dropdown-item:hover::before {
    width: 10px;
}









.service-img .carousel-inner {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.service-img .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Rasmlar har xil o‘lchamda bo‘lsa ham bir xil ko‘rinadi */
    border-radius: 50%;
    transition: transform 0.5s ease-in-out;
}

.service-img .carousel-item img:hover {
    transform: scale(1.05);
}

.service-img .carousel-control-prev,
.service-img .carousel-control-next {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: rgba(236, 72, 153, 0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.service-img:hover .carousel-control-prev,
.service-img:hover .carousel-control-next {
    opacity: 1;
}

/* ========== About Page Styles ========== */
.about-section {
  background: radial-gradient(circle at top left, #0a0a0a, #000);
  color: #fff;
  overflow: hidden;
}

.image-wrapper {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.image-wrapper:hover {
  transform: scale(1.03);
}

.image-wrapper img.main-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.5s ease;
}

.image-wrapper:hover img.main-img {
  transform: scale(1.07);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, rgba(164, 29, 110, 0.3), rgba(255, 204, 102, 0.2));
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.image-wrapper:hover .image-overlay {
  opacity: 0.6;
}

.content-box {
  padding: 1.5rem;
  border-left: 4px solid #a41d6e;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.highlight-tag {
  background: linear-gradient(90deg, #ffb84d, #ff6a3d);
  color: #000;
  font-weight: 600;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 1rem;
  transform: skewX(-8deg);
}

.highlight-tag p {
  margin: 0;
  transform: skewX(8deg);
}

.about-text {
  color: #ddd;
  line-height: 1.7;
  font-size: 1.05rem;
}

.about-list {
  color: #f3f3f3;
  padding-left: 1.5rem;
  list-style-type: "⦿ ";
}

.about-list li {
  margin-bottom: 6px;
}

.team-section {
  background: #0b0b0b;
  color: #fff;
}

.section-title {
  color: #ff8fb1;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.member-card {
  background: linear-gradient(145deg, #111, #1a1a1a);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 5px 25px rgba(164, 29, 110, 0.15);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(255, 105, 180, 0.25);
}

.member-img {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
}

.member-img img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid #ff6a8c;
  transition: all 0.4s ease;
  background: #1a1a1a;
}

.member-card:hover img {
  transform: scale(1.08);
  border-color: #ffc04a;
}

.member-card h5 {
  color: #ffb3d9;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.member-card p {
  color: #bbb;
  margin-bottom: 2px;
}

.member-card span {
  display: inline-block;
  color: #ff89ac;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========== Inspiration Page Styles ========== */
.inspiration-modern {
  background: radial-gradient(circle at top left, #1c052f 0%, #0a0012 80%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

.text-gradient {
  background: linear-gradient(90deg, #ff7cc0, #ffb84d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modern-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 140, 200, 0.25);
}

.modern-title span {
  background: linear-gradient(90deg, #ff4db8, #ffb84d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.modern-quote {
  font-size: 1.2rem;
  color: #ffeedd;
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #ff6fb8;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(255, 150, 200, 0.1);
}

.modern-text {
  font-size: 1.1rem;
  color: #e6e6e6;
  line-height: 1.8;
  margin-top: 1.5rem;
  max-width: 540px;
}

.modern-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modern-btn {
  display: inline-block;
  background: linear-gradient(90deg, #a41d6e, #ffb84d);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(164, 29, 110, 0.25);
}

.modern-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #ff7cb4, #ffd24d);
  box-shadow: 0 8px 30px rgba(255, 120, 190, 0.3);
  color: #fff;
}

.modern-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 350px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 120, 180, 0.25);
}

.modern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.modern-image:hover img {
  transform: scale(1.06);
}

.fade-in {
  animation: fadeIn 1.2s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Mini Film Page Styles ========== */
.documentary-section {
  background: linear-gradient(135deg, rgba(27, 9, 19, 0.4) 0%, rgba(17,17,17,1) 90%);
  color: #fff;
  min-height: 100vh;
  margin-top: 70px;
  overflow: hidden;
  animation: fadeInBg 1.5s ease-in-out forwards;
  padding-bottom: 60px;
}

.documentary-title {
  font-size: 3.3rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ec4899, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  text-shadow: 0 0 25px rgba(236,72,153,0.3);
}

.documentary-subtitle {
  font-size: 1.1rem;
  color: #ffe4f0;
  letter-spacing: 0.5px;
}

.film-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.film-item {
  background: linear-gradient(90deg, #fbbf24, #ec4899);
  color: #111;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 8px;
  font-size: 1.1rem;
  width: 90%;
  transform: skewX(-15deg);
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(236,72,153,0.3);
}

.film-item:hover {
  background: linear-gradient(90deg, #ec4899, #fbbf24);
  transform: skewX(-15deg) scale(1.05);
  box-shadow: 0 10px 30px rgba(236,72,153,0.5);
}

.film-item.active {
  background: linear-gradient(90deg, #f472b6, #facc15);
  box-shadow: 0 0 25px rgba(236,72,153,0.6);
}

.video-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  max-width: 520px;
  height: 320px;
  margin: 0 auto;
  transition: all 0.5s ease;
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.glow-border {
  box-shadow: 0 0 40px rgba(236,72,153,0.35);
  animation: pulseGlow 4s ease-in-out infinite;
}

.quote-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(236,72,153,0.3);
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 35px rgba(236,72,153,0.2);
  max-width: 520px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.quote-card p {
  font-style: italic;
  font-size: 1.15rem;
  color: #ffdfe9;
  margin-bottom: 10px;
}

.athlete-name {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.back-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ec4899, #fbbf24);
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.35s ease;
  box-shadow: 0 6px 20px rgba(236,72,153,0.3);
}

.back-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(90deg, #f472b6, #facc15);
  box-shadow: 0 10px 25px rgba(236,72,153,0.45);
  color: #fff;
}

@keyframes fadeInBg {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 35px rgba(236,72,153,0.25);
  }
  50% {
    box-shadow: 0 0 55px rgba(236,72,153,0.5);
  }
}

/* ========== Blog Page Styles ========== */
.blog-section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(17,17,17,1) 90%);
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
  animation: fadeInBg 1.5s ease-in-out forwards;
}

.blog-title {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ec4899, #fbbf24);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.blog-subtitle {
  font-size: 1.1rem;
  color: #fce7f3;
  margin-top: 0.5rem;
  letter-spacing: 0.5px;
}

.blog-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(236,72,153,0.3);
  border-radius: 14px;
  padding: 25px;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 35px rgba(236,72,153,0.4);
}

.blog-heading {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 10px;
  color: #fff;
}

.blog-text {
  color: #ffe6f0;
  line-height: 1.7;
  font-size: 1rem;
  margin-top: 10px;
}

.slide-up {
  animation: slideUp 1.2s ease-out forwards;
  opacity: 0;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Index/Home Page Styles ========== */
/* Custom Buttons */
.btn-outline-custom {
  border: 2px solid #ec4899;
  color: #fff;
  font-weight: 600;
  transition: all 0.4s ease;
  background: transparent;
}
.btn-outline-custom:hover {
  background: #ec4899;
  border-color: #ec4899;
  color: #fff;
  box-shadow: 0 0 18px rgba(236, 72, 153, 0.5);
}

/* Home Team Cards */
.home-team-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform .2s ease;
}
.home-team-item:hover { transform: translateY(-6px); }
.home-team-body { position: relative; overflow: hidden; height: 360px; }
.home-team-body img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.home-team-item:hover img { transform: scale(1.05); }
.home-team-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.6); color: #fff;
  opacity: 0; transition: opacity .3s ease;
}
.home-team-item:hover .home-team-overlay { opacity: 1; }

/* Home reaction icons */
.home-reaction-icon {
  background: none; border: none; color: #fff; font-size: 1.2rem;
  margin: 0 5px; cursor: pointer;
}
.home-reaction-icon:hover { color: #ffd700; }
.home-like-count, .home-dislike-count { margin-left: 4px; font-weight: 600; }

#comment {
  font-size: 18px;
  color: #f8f9fa;
  max-width: 800px;
  margin: 0 auto 20px auto;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

/* Floating Particles */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}
.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, rgba(255,255,255,0.9) 0%, rgba(236,72,153,0.6) 80%);
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0.8;
  filter: blur(1px);
}
@keyframes floatParticle {
  0% { transform: translateY(0) scale(1); opacity: 0.9; }
  100% { transform: translateY(100vh) scale(0.3); opacity: 0; }
}

/* Carousel fade animation */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.carousel-fade .carousel-item.active {
  opacity: 1;
  transition: opacity 1.5s ease-in-out;
}

/* Text fade in animation */
.fade-in {
  animation: fadeIn 2s ease forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

/* Gradient text for carousel */
.carousel-caption h1 {
  background: linear-gradient(90deg, #f9a8d4, #facc15);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  text-shadow: 0 0 25px rgba(0,0,0,0.4);
}

/* Carousel caption background */
.carousel-caption {
  position: absolute;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
  padding: 30px 40px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

/* Title center with decorative lines */
.title-center {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
}
.title-center::before,
.title-center::after {
  content: "";
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, #ec4899, #facc15);
  width: 60px;
  top: 50%;
  transform: translateY(-50%);
}
.title-center::before { left: -70px; }
.title-center::after { right: -70px; }

/* Outline light button */
.btn-outline-light {
  border: 2px solid #fff;
  font-weight: 600;
  transition: all 0.4s ease;
}
.btn-outline-light:hover {
  background: linear-gradient(90deg, #ec4899, #fbbf24);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 0 15px rgba(236,72,153,0.6);
}

/* ========== Only Age/Exercise Page Styles ========== */
/* Stylish Recommendation Box */
.styled-box {
  background: linear-gradient(135deg, #fff 0%, #fce7f3 100%);
  border-left: 5px solid #ec4899;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px;
  transition: all 0.3s ease;
}
.styled-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(236,72,153,0.4);
}
.description-text {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

/* Steps Section */
.steps-timeline-compact {
  position: relative;
  padding: 10px 0;
}
.step-item-compact {
  position: relative;
  margin-bottom: 15px;
}
.step-content-compact {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-left: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-content-compact:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.step-text-compact {
  flex: 1;
  padding-top: 5px;
}
.step-text-compact p {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* ========== Team Page Styles (Specific) ========== */
.team-page-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform .2s ease;
  height: 420px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
}
.team-page-item:hover { transform: translateY(-6px); }

.team-page-body {
  position: relative;
  height: calc(100% - 72px);
  overflow: hidden;
}
.team-page-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.team-page-item:hover .team-page-body img { transform: scale(1.05); }

.team-page-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.45) 100%);
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease;
}

.overlay-name, .overlay-experience {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
  transition: opacity .18s ease, transform .18s ease;
}
.overlay-experience { opacity: 0; transform: translateY(6px); }

.team-page-overlay .sohasi {
  color: #fff !important;
  font-size: 1rem;
  margin-top: 6px;
}

.team-page-item:hover .team-page-overlay {
  opacity: 1;
  transform: translateY(0);
}
.team-page-item:hover .overlay-name {
  opacity: 0;
  transform: translateY(-6px);
}
.team-page-item:hover .overlay-experience {
  opacity: 1;
  transform: translateY(0);
}

.team-page-name { 
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 50%, #fce7f3 100%);
  text-decoration: none; 
  color: inherit; 
  flex-shrink: 0;
  display: block;
  border-top: 2px solid #ec4899;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.team-page-name::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.15), transparent);
  transition: left 0.5s ease;
}
.team-page-item:hover .team-page-name::before {
  left: 100%;
}
.team-page-name:hover {
  background: linear-gradient(135deg, #fbcfe8 0%, #f9a8d4 50%, #fbcfe8 100%);
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.2);
}
.team-page-name-title { 
  font-size: 1.05rem;
  color: #be185d;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.team-page-reaction-icon {
  background: transparent;
  border: none;
  font-size: 1.15rem;
  margin: 0 6px;
  color: #fff;
  cursor: pointer;
  transition: transform 0.1s ease, color 0.15s ease;
}
.team-page-reaction-icon:hover { 
  transform: translateY(-2px); 
  color: #ffd700; 
}
.team-page-reaction-icon.active.like-icon { color: #2563eb; }
.team-page-reaction-icon.active.dislike-icon { color: #dc2626; }
.team-page-count { 
  font-weight: 600; 
  color: #fff; 
  margin-left: 6px; 
}

.overlay-name, .overlay-experience, .team-page-name-title {
  font-size: 1rem;
  line-height: 1.2;
}
.team-page-overlay .sohasi,
.team-page-overlay .small {
  font-size: 0.95rem;
  color: #fff !important;
}

.team-page-overlay p strong { 
  color: #ffffff; 
  font-weight:700; 
  margin-right:6px; 
}

.trainers-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.trainers-row > [class*="col-"] { 
  display: flex; 
  justify-content: center;
  padding: 0 15px;
  margin-bottom: 30px;
}

/* ========== Service Page Styles ========== */
.service-reaction-icon {
  background: transparent;
  border: none;
  padding: 6px;
  margin-right: 6px;
  font-size: 1.25rem;
  color: #a41d6e;
  cursor: pointer;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease, transform 0.12s ease;
}
.service-reaction-icon:hover { transform: translateY(-2px); }
.service-reaction-icon.active.like-icon { color: #2563eb; }
.service-reaction-icon.active.dislike-icon { color: #dc2626; }
.service-count { font-weight: 600; color: #333; margin-right: 12px; }

.service-item { margin-bottom: 1.25rem; }

/* Service Image Container */
.service-img-container {
  padding: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-main-carousel {
  position: relative;
  border-radius: 50%;
  overflow: visible;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
  width: 320px;
  height: 320px;
  margin: 0 auto;
}

.service-main-carousel .carousel-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.service-main-carousel .carousel-item {
  width: 100%;
  height: 100%;
}

.service-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.service-main-carousel .carousel-control-prev,
.service-main-carousel .carousel-control-next {
  width: 35px;
  height: 35px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(252, 231, 243, 0.95);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
}

.service-main-carousel:hover .carousel-control-prev,
.service-main-carousel:hover .carousel-control-next {
  opacity: 1;
}

.service-main-carousel .carousel-control-prev {
  left: 5px;
}

.service-main-carousel .carousel-control-next {
  right: 5px;
}

.service-main-carousel .carousel-control-prev:hover,
.service-main-carousel .carousel-control-next:hover {
  background: rgba(236, 72, 153, 0.95);
  transform: translateY(-50%) scale(1.15);
}

.service-main-carousel .carousel-control-prev-icon,
.service-main-carousel .carousel-control-next-icon {
  filter: brightness(0) saturate(100%) invert(27%) sepia(85%) saturate(1500%) hue-rotate(310deg) brightness(90%) contrast(90%);
  width: 16px;
  height: 16px;
}

.service-main-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.service-main-carousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

/* Thumbnails */
.service-thumbnails {
  display: flex;
  gap: 8px;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.service-thumb {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid #fff;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  background: #fff;
}

.service-thumb:hover {
  border-color: #ec4899;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.5);
}

.service-thumb.active {
  border-color: #be185d;
  border-width: 3px;
  box-shadow: 0 4px 12px rgba(190, 24, 93, 0.6);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-thumb:hover img {
  transform: scale(1.15);
}






