/* Hero Section */
.our-partner-brand-hero {
  background: linear-gradient(135deg, #53205a 0%, #53205a 100%);
  padding: 100px 0 80px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.our-partner-brand-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(76, 179, 229, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(244, 114, 33, 0.1) 0%,
      transparent 50%
    );
  animation: hero-float 20s ease-in-out infinite alternate;
}

@keyframes hero-float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-30px);
  }
}

.our-partner-brand-hero-content {
  position: relative;
  z-index: 2;
}

.our-partner-brand-hero-title {
  font-size: 48px;
  color: #000;
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.our-partner-brand-hero-icon {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.our-partner-brand-hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  opacity: 0.95;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-align: center;
}

/* Hero Stats */
.our-partner-brand-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px 16px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 100%;
}

.our-partner-brand-stat:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(244, 114, 33, 0.4);
}

.our-partner-brand-stat-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.our-partner-brand-stat-label {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.our-partner-brand-partners-section {
  padding: 60px 0;
}

/* Section Styles */
.our-partner-brand-section-title {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin-bottom: 16px;
  position: relative;
  text-align: center;
}

.our-partner-brand-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
  border-radius: 2px;
}

.our-partner-brand-section-subtitle {
  font-size: 20px;
  color: #222;
  font-size: 17px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Why Partner Cards */
.our-partner-brand-why-card {
  background: #ffffff;
  border-radius: 25px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 58, 157, 0.1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.our-partner-brand-why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.our-partner-brand-why-card:hover::before {
  transform: scaleX(1);
}

.our-partner-brand-why-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 15px 35px (45deg, #ff4b52, #ff9502, #ffc700);
  border-color: (45deg, #ff4b52, #ff9502, #ffc700);
}

.our-partner-brand-why-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(244, 114, 33, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.our-partner-brand-why-icon::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);

  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
  animation: icon-glow 3s ease-in-out infinite;
}

@keyframes icon-glow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
}

.our-partner-brand-why-card:hover .our-partner-brand-why-icon {
  transform: scale(1.1) rotateY(360deg);
}

.our-partner-brand-why-title {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.3;
}

.our-partner-brand-why-description {
  color: #222;
  line-height: 1.8;
  font-size: 16px;
  text-align: justify;
}

/* Category Filter Buttons */
.our-partner-brand-categories {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.our-partner-brand-category-btn {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #1c1b1b;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 58, 157, 0.1);
}

.our-partner-brand-category-btn:hover {
  transform: translateY(-2px);
  border-color: #53205a;
  box-shadow: 0 8px 25px rgba(0, 58, 157, 0.15);
  background: #f8fafc;
}

.our-partner-brand-category-btn.active {
  background: linear-gradient(135deg, #53205a 0%, #53205a 100%);
  color: #ffffff;
  border-color: #53205a;
  box-shadow: 0 10px 30px rgba(244, 114, 33, 0.3);
  transform: translateY(-2px) scale(1.05);
}

/* Partner Cards */
.our-partner-brand-partner-card {
  transition: all 0.3s ease;
}

.our-partner-brand-partner-card .card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid #53205a !important;
}

.our-partner-brand-partner-card:hover .card {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 58, 157, 0.2) !important;
}

.our-partner-brand-partner-logo {
  height: 140px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.our-partner-brand-partner-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.our-partner-brand-partner-card:hover .our-partner-brand-partner-logo::before {
  left: 100%;
}

.our-partner-brand-partner-logo img {
  max-width: 150px;
  max-height: 100px;
  filter: grayscale(0.1%);
  transition: all 0.4s ease;
}

.our-partner-brand-partner-card:hover .our-partner-brand-partner-logo img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.our-partner-brand-partner-name {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.our-partner-brand-partner-category {
  color: #55235c;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.our-partner-brand-partner-duration {
  color: #222;
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-partner-brand-partner-description {
  color: #222;

  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 24px;
}

.our-partner-brand-partner-btn {
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
  color: #ffffff;
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.our-partner-brand-partner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(244, 114, 33, 0.3);
  color: #ffffff;
}

/* Load More Button */
.our-partner-brand-load-more-btn {
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 58, 157, 0.15);
}

.our-partner-brand-load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 58, 157, 0.2);
  color: #ffffff;
}

/* Call to Action Section */
.our-partner-brand-cta-section {
  background: linear-gradient(135deg, #53215a 0%, #a71b8f 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.our-partner-brand-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 75% 25%,
      rgba(244, 114, 33, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 25% 75%,
      rgba(76, 179, 229, 0.1) 0%,
      transparent 50%
    );
}

.our-partner-brand-cta-content {
  position: relative;
  z-index: 2;
}

.our-partner-brand-cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.our-partner-brand-cta-description {
  font-size: 17px;
  color: #fff;
  opacity: 0.95;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.our-partner-brand-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.our-partner-brand-btn-primary {
  background: #ffffff;
  color: #000;
  font-size: 13px;
  border: 2px solid #ffffff;
  border-radius: 50px;
  padding: 13px 22px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px rgba(0, 58, 157, 0.15);
}

.our-partner-brand-btn-primary:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 58, 157, 0.2);
}

.our-partner-brand-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 13px;
  padding: 13px 22px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.our-partner-brand-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 58, 157, 0.15);
}

/* Animation Classes */
.our-partner-brand-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Performance Optimizations */
.our-partner-brand-partner-card,
.our-partner-brand-why-card,
.our-partner-brand-stat {
  will-change: transform;
  backface-visibility: hidden;
}




.footer-four
  .footer-three-single-wized
  .social-three-wrapper
  li
  a:hover::after {
  background: #ff9503 !important;
}
.footer-four .footer-three-single-wized .title {
  color: #ffc900 !important;
}

.footer-three-single-wized .body .info-wrapper .single .icon li::after {
  color: #ffc900 !important;
}
/* vision , mission, values */
.tsf-about-values-main-section {
  padding: 53px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.tsf-about-values-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(255, 75, 82, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 149, 2, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 199, 0, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.tsf-about-values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.tsf-about-values-header {
  text-align: center;
  margin-bottom: 80px;
  animation: tsf-about-values-fadeInDown 1s ease-out;
}

.tsf-about-values-header h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ff4b52, #ff9502);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tsf-about-values-header p {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.tsf-about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  align-items: stretch;
}

/* Mission Card Styles */
.tsf-about-mission-card {
  background: linear-gradient(145deg, #ff4b52, #e74c3c);
  border-radius: 25px;
  padding: 40px 30px;
  color: white;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(255, 75, 82, 0.2);
  animation: tsf-about-mission-slideInLeft 1s ease-out 0.2s both;
}

.tsf-about-mission-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.tsf-about-mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 75, 82, 0.3);
}

.tsf-about-mission-card:hover::before {
  transform: rotate(45deg) translate(20%, 20%);
}

.tsf-about-mission-icon-container {
  position: relative;
  margin-bottom: 25px;
}

.tsf-about-mission-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.tsf-about-mission-icon i {
  font-size: 2rem;
  color: white;
}

.tsf-about-mission-content h3 {
  font-size: 30px !important;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  color: white;
}

.tsf-about-mission-content p {
  font-size: 16px !important;
  line-height: 1.7;
  opacity: 0.95;
  position: relative;
  z-index: 2;
  color: white;
  text-align: justify;
}

.tsf-about-mission-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: tsf-about-mission-expandWidth 2s ease-out 1.5s both;
}

/* Vision Card Styles */
.tsf-about-vision-card {
  background: linear-gradient(145deg, #8e44ad, #9b59b6);
  border-radius: 25px;
  padding: 40px 30px;
  color: white;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(142, 68, 173, 0.2);
  animation: tsf-about-vision-slideInUp 1s ease-out 0.4s both;
}

.tsf-about-vision-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(-45deg);
  transition: all 0.6s ease;
}

.tsf-about-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(142, 68, 173, 0.3);
}

.tsf-about-vision-card:hover::before {
  transform: rotate(-45deg) translate(-20%, -20%);
}

.tsf-about-vision-icon-container {
  position: relative;
  margin-bottom: 25px;
}

.tsf-about-vision-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.tsf-about-vision-icon i {
  font-size: 2rem;
  color: white;
}

.tsf-about-vision-content h3 {
  font-size: 30px !important;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.tsf-about-vision-content p {
  font-size: 16px;
  color: #fff;
  text-align: justify;
  line-height: 1.7;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

.tsf-about-vision-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: tsf-about-vision-expandWidth 2s ease-out 1.7s both;
}

/* Values Card Styles */
.tsf-about-values-card {
  background: linear-gradient(145deg, #27ae60, #2ecc71);
  border-radius: 25px;
  padding: 40px 30px;
  color: white;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(39, 174, 96, 0.2);
  animation: tsf-about-values-slideInRight 1s ease-out 0.6s both;
}

.tsf-about-values-card::before {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  transform: rotate(135deg);
  transition: all 0.6s ease;
}

.tsf-about-values-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(39, 174, 96, 0.3);
}

.tsf-about-values-card:hover::before {
  transform: rotate(135deg) translate(20%, -20%);
}

.tsf-about-values-icon-container {
  position: relative;
  margin-bottom: 25px;
}

.tsf-about-values-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.tsf-about-values-icon i {
  font-size: 2rem;
  color: white;
}

.tsf-about-values-content h3 {
  font-size: 32px !important;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.tsf-about-values-content p {
  font-size: 16px !important;
  color: #fff;
  text-align: justify;
  line-height: 1.7;
  opacity: 0.95;
  position: relative;
  z-index: 2;
}

.tsf-about-values-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  animation: tsf-about-values-expandWidth 2s ease-out 1.9s both;
}

/* Animations */
@keyframes tsf-about-values-fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tsf-about-mission-slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tsf-about-vision-slideInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tsf-about-values-slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes tsf-about-mission-expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 60px;
  }
}

@keyframes tsf-about-vision-expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 60px;
  }
}

@keyframes tsf-about-values-expandWidth {
  0% {
    width: 0;
  }
  100% {
    width: 60px;
  }
}

/* 
about section */

.about-us-page-tcf-hero-banner {
  position: relative;
  height: 355px;
  min-height: 355px;
  background-image: url("../../img/banner/1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-us-page-tcf-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-45deg, #ff4b52, #ff9502, #ffc700, #53205a);
  background-size: 400% 400%;
  opacity: 0.9;
  z-index: 1;
}

.about-us-page-tcf-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

.about-us-page-tcf-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 1000px;
  padding: 0 20px;
}

.about-us-page-tcf-content-container {
  animation: about-us-page-tcf-fadeInScale 1.5s ease-out;
}

.about-us-page-tcf-title-section h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(45deg, #ffffff, #f0f0f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-us-page-tcf-subtitle {
  font-size: 1.4rem;
  margin-bottom: 40px;
  opacity: 0.95;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.about-us-page-tcf-divider {
  color: #ffc700;
  margin: 0 15px;
  font-weight: bold;
}

.about-us-page-tcf-breadcrumb-container {
  margin-top: 30px;
}

.about-us-page-tcf-breadcrumb-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 18px 35px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-us-page-tcf-breadcrumb-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.about-us-page-tcf-breadcrumb-glass:hover::before {
  left: 100%;
}

.about-us-page-tcf-breadcrumb-glass:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.about-us-page-tcf-breadcrumb-glass a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.about-us-page-tcf-breadcrumb-glass a:hover {
  color: #ffc700;
  text-shadow: 0 0 10px rgba(255, 199, 0, 0.6);
}

.about-us-page-tcf-separator {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 15px;
  font-weight: 300;
}

/* Advanced Animations */
@keyframes about-us-page-tcf-gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes about-us-page-tcf-fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(60px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes about-us-page-tcf-scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateX(-50%) translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(15px);
    opacity: 0;
  }
}

/* about us page css end */

.home-violet
  .rts-sidebar-menu-desktop
  .body-mobile
  .mainmenu-nav
  .mainmenu
  li
  a.open {
  color: #551d5d !important;
}
.nav-main ul li:hover a.nav-link::before {
  color: #ff9200 !important;
}
.header-four .nav-main ul li:hover a.nav-link::before {
  color: #ff9200 !important;
}
.main-header.main-header-four .nav-main ul li a::after {
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700) !important;
}
.main-header.main-header-four .nav-main ul li .submenu {
  border-color: #ff9200;
}
.main-header.main-header-four .nav-main ul li .submenu::after {
  border-bottom-color: #ff9200;
}
.main-header .nav-main ul li a {
  color: #000 !important;
  font-weight: 600 !important;
  font-size: 17px !important;
  padding-left: 0 !important;
  margin-left: -4px !important;
}
.rts-btn.btn-primary-4 {
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
  border-radius: 5px;
  transform: skew(-3deg);
  font-size: 16px;
  letter-spacing: 1px;
  color: white;
  font-weight: 700;
}
.rts-btn.btn-primary-4:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 75, 82, 0.3);
  color: #fff !important;
  text-decoration: none !;
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
}

a:hover {
  text-decoration: none !important;
}
ul li a:hover {
  text-decoration: none !important;
}
.progress-wrap::before {
  background: #57215f;
}
.progress-wrap svg {
  color: #55235c;
}
.home-violet .progress-wrap::after {
  border-color: #ffc500;
  color: #ff9401;
}
/* Contact Us Section - Custom TCF */
.custom-contact-us-tcf-section {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
  overflow: hidden;
}

.custom-contact-us-tcf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.custom-contact-us-tcf-wrapper {
  background: white;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

/* Left Side - Form */
.custom-contact-us-tcf-form-side {
  padding: 60px 50px;
}

.custom-contact-us-tcf-form-header {
  margin-bottom: 40px;
}

.custom-contact-us-tcf-title {
  font-size: 42px;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.2;
}

.custom-contact-us-tcf-subtitle {
  font-size: 17px;
  color: #222;
  line-height: 1.6;
  margin: 0;
}

/* Form Styles */
.custom-contact-us-tcf-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.custom-contact-us-tcf-form-group {
  position: relative;
}

.custom-contact-us-tcf-input-wrapper,
.custom-contact-us-tcf-textarea-wrapper {
  position: relative;
}

.custom-contact-us-tcf-input,
.custom-contact-us-tcf-textarea {
  width: 100%;
  padding: 18px 20px 18px 50px;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #f8f9fa;
  color: #333;
}

.custom-contact-us-tcf-input:focus,
.custom-contact-us-tcf-textarea:focus {
  outline: none;
  border-color: #55235c;
  background: white;
  box-shadow: 0 0 0 3px rgba(85, 35, 92, 0.1);
}

.custom-contact-us-tcf-input-icon,
.custom-contact-us-tcf-textarea-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #222;
  font-size: 16px;
  z-index: 2;
}

.custom-contact-us-tcf-textarea-icon {
  top: 25px;
  transform: none;
}

.custom-contact-us-tcf-label,
.custom-contact-us-tcf-textarea-label {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 16px;
  font-weight: 500;
  pointer-events: none;
  transition: all 0.3s ease;
  background: white;
  padding: 0 8px;
}

.custom-contact-us-tcf-textarea-label {
  top: 25px;
  transform: none;
}

.custom-contact-us-tcf-input:focus + .custom-contact-us-tcf-label,
.custom-contact-us-tcf-input:not(:placeholder-shown)
  + .custom-contact-us-tcf-label,
.custom-contact-us-tcf-textarea:focus + .custom-contact-us-tcf-textarea-label,
.custom-contact-us-tcf-textarea:not(:placeholder-shown)
  + .custom-contact-us-tcf-textarea-label {
  top: -2px;
  font-size: 12px;
  color: #55235c;
  font-weight: 600;
}

/* Submit Button */
.custom-contact-us-tcf-submit-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(255, 75, 82, 0.3),
    0 8px 16px rgba(255, 149, 2, 0.2), 0 12px 24px rgba(255, 199, 0, 0.1);
}

.custom-contact-us-tcf-submit-btn:hover {
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700, #ff4b52);

  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(255, 75, 82, 0.3),
    0 8px 16px rgba(255, 149, 2, 0.2), 0 12px 24px rgba(255, 199, 0, 0.1);
}

.custom-contact-us-tcf-btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.custom-contact-us-tcf-submit-btn:hover .custom-contact-us-tcf-btn-ripple {
  width: 300px;
  height: 300px;
}

/* Right Side - Illustration */
.custom-contact-us-tcf-info-side {
  background: linear-gradient(135deg, #f0f4ff, #e8f2ff);
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.custom-contact-us-tcf-illustration {
  position: relative;
  width: 300px;
  height: 300px;
  margin-bottom: 40px;
}

/* Person Illustration */
.custom-contact-us-tcf-person {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.custom-contact-us-tcf-person-head {
  width: 80px;
  height: 80px;
  background: #ffcc80;
  border-radius: 50%;
  margin: 0 auto 15px;
  position: relative;
}

.custom-contact-us-tcf-person-head::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 20px;
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  box-shadow: 20px 0 0 #333;
}

.custom-contact-us-tcf-person-head::after {
  content: "";
  position: absolute;
  top: 45px;
  left: 30px;
  width: 20px;
  height: 3px;
  background: #333;
  border-radius: 2px;
}

.custom-contact-us-tcf-person-body {
  width: 60px;
  height: 100px;
  background: #ffc700;
  border-radius: 30px 30px 0 0;
  margin: 0 auto;
  position: relative;
}

.custom-contact-us-tcf-person-arms {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 60px;
}

.custom-contact-us-tcf-envelope {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 50px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  animation: custom-contact-us-tcf-envelope-float 3s ease-in-out infinite;
}

.custom-contact-us-tcf-envelope i {
  font-size: 24px;
  color: #55235c;
}

/* Floating Icons */
.custom-contact-us-tcf-floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
}

.custom-contact-us-tcf-float-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  animation: custom-contact-us-tcf-float 4s ease-in-out infinite;
}

.custom-contact-us-tcf-phone {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.custom-contact-us-tcf-email {
  top: 30%;
  right: 10%;
  animation-delay: 1s;
}

.custom-contact-us-tcf-location {
  bottom: 25%;
  left: 20%;
  animation-delay: 2s;
}

.custom-contact-us-tcf-float-icon i {
  color: #55235c;
  font-size: 18px;
}

/* Contact Information */
.custom-contact-us-tcf-contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
}

.custom-contact-us-tcf-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.custom-contact-us-tcf-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.custom-contact-us-tcf-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #55235c, #a10d88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.custom-contact-us-tcf-info-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.custom-contact-us-tcf-info-content p {
  font-size: 14px;
  color: #222;
  margin: 0;
}

/* Background Decorations */
.custom-contact-us-tcf-bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.custom-contact-us-tcf-bg-circle {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: custom-contact-us-tcf-float 6s ease-in-out infinite;
}

.custom-contact-us-tcf-circle-1 {
  width: 60px;
  height: 60px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.custom-contact-us-tcf-circle-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 8%;
  animation-delay: 1s;
}

.custom-contact-us-tcf-circle-3 {
  width: 40px;
  height: 40px;
  bottom: 30%;
  left: 10%;
  animation-delay: 2s;
}

.custom-contact-us-tcf-circle-4 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  right: 15%;
  animation-delay: 3s;
}

.custom-contact-us-tcf-circle-5 {
  width: 50px;
  height: 50px;
  top: 60%;
  right: 25%;
  animation-delay: 4s;
}

.custom-contact-us-tcf-bg-plus {
  position: absolute;
  color: rgba(255, 255, 255, 0.4);
  font-size: 30px;
  font-weight: 300;
  animation: custom-contact-us-tcf-rotate 8s linear infinite;
}

.custom-contact-us-tcf-plus-1 {
  top: 25%;
  left: 15%;
}

.custom-contact-us-tcf-plus-2 {
  bottom: 20%;
  right: 30%;
  animation-delay: 2s;
}

/* Animations */
@keyframes custom-contact-us-tcf-envelope-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes custom-contact-us-tcf-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes custom-contact-us-tcf-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Our Gallery Section - Modern 2x4 Grid Layout */
.our-gallery-tcf-section {
  position: relative;
  padding: 44px 0 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  overflow: hidden;
}

.our-gallery-tcf-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.our-gallery-tcf-header {
  text-align: center;
  margin-bottom: 80px;
}

.our-gallery-tcf-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  box-shadow: 0 8px 25px rgba(92, 90, 35, 0.3);
}

.our-gallery-tcf-badge i {
  font-size: 16px;
}

.our-gallery-tcf-title {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.our-gallery-tcf-subtitle {
  font-size: 17px;
  color: #222;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Gallery Grid - 2x4 Layout */
.our-gallery-tcf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

.our-gallery-tcf-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.our-gallery-tcf-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.our-gallery-tcf-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.our-gallery-tcf-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95);
}

.our-gallery-tcf-item:hover .our-gallery-tcf-image {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* Overlay Effects */
.our-gallery-tcf-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-gallery-tcf-item:hover .our-gallery-tcf-overlay {
  opacity: 1;
  visibility: visible;
}

.our-gallery-tcf-overlay-content {
  text-align: center;
  color: white;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.our-gallery-tcf-item:hover .our-gallery-tcf-overlay-content {
  transform: translateY(0);
}

.our-gallery-tcf-overlay-content i {
  font-size: 40px;
  margin-bottom: 15px;
  opacity: 0.9;
  animation: our-gallery-tcf-pulse 2s ease-in-out infinite;
}

.our-gallery-tcf-overlay-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.our-gallery-tcf-overlay-content p {
  font-size: 14px;
  margin: 0;
  opacity: 0.9;
}

/* CTA Button */
.our-gallery-tcf-cta {
  text-align: center;
}

.our-gallery-tcf-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #ffc700, #ff9502);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(255, 201, 0, 0.3);
  overflow: hidden;
}

.our-gallery-tcf-btn:hover {
  background: linear-gradient(135deg, #ff9502, #ff4b52);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 149, 2, 0.4);
}

.our-gallery-tcf-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.our-gallery-tcf-btn:hover i {
  transform: scale(1.2);
  color: #ffff;
}

.our-gallery-tcf-btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.our-gallery-tcf-btn:hover .our-gallery-tcf-btn-ripple {
  width: 300px;
  height: 300px;
}
.our-gallery-tcf-btn span {
  color: #ffff;
}
.our-gallery-tcf-btn span:hover {
  color: #ffff;
  text-decoration: none !important;
}
/* Background Decoration */
.our-gallery-tcf-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.our-gallery-tcf-bg-shape-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ff4b5215, #ff950215);
  border-radius: 50%;
  animation: our-gallery-tcf-float 8s ease-in-out infinite;
}

.our-gallery-tcf-bg-shape-2 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #a10d8815, #55235c15);
  border-radius: 30%;
  animation: our-gallery-tcf-float 10s ease-in-out infinite reverse;
}

.our-gallery-tcf-bg-shape-3 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ffc70015, #ff950215);
  transform: translate(-50%, -50%) rotate(45deg);
  animation: our-gallery-tcf-spin 12s linear infinite;
}

/* Animations */
@keyframes our-gallery-tcf-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes our-gallery-tcf-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes our-gallery-tcf-spin {
  from {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(405deg);
  }
}

/* Why Choose Us Section - Complete CSS with Font Awesome Icons */
.custom-why-choose-us-tsf-section {
  position: relative;
  padding: 55px 0 5px;
  background: linear-gradient(135deg, #fafbff 0%, #f0f4ff 50%, #e8f0ff 100%);
  overflow: hidden;
}

.custom-why-choose-us-tsf-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.custom-why-choose-us-tsf-header {
  text-align: center;
  margin-bottom: 80px;
}

.custom-why-choose-us-tsf-subtitle {
  display: inline-block;
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.custom-why-choose-us-tsf-main-title {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin: 20px 0 30px 0;
  line-height: 1.2;
}

.custom-why-choose-us-tsf-description {
  font-size: 17px;
  color: #222;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Features Grid */
.custom-why-choose-us-tsf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

/* Feature Cards */
.custom-why-choose-us-tsf-card {
  position: relative;
  background: white;
  border-radius: 25px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.custom-why-choose-us-tsf-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.custom-why-choose-us-tsf-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Card Decorations */
.custom-why-choose-us-tsf-card-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px dashed transparent;
  border-radius: 25px;
  transition: all 0.4s ease;
  z-index: 1;
}

.custom-why-choose-us-tsf-card:hover .custom-why-choose-us-tsf-card-decoration {
  border-style: solid;
  animation: custom-why-choose-us-tsf-border-glow 2s ease-in-out infinite;
}

/* People-Centered Card */
.custom-why-choose-us-tsf-people {
  background: linear-gradient(135deg, #e8f9f0 0%, #d4f4dd 100%);
}

.custom-why-choose-us-tsf-people .custom-why-choose-us-tsf-card-decoration {
  border-color: #4ade80;
}

.custom-why-choose-us-tsf-people .custom-why-choose-us-tsf-circle {
  background: linear-gradient(135deg, #4ade80, #22c55e);
}

/* Transparent Card */
.custom-why-choose-us-tsf-transparent {
  background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
}

.custom-why-choose-us-tsf-transparent
  .custom-why-choose-us-tsf-card-decoration {
  border-color: #f472b6;
}

.custom-why-choose-us-tsf-transparent .custom-why-choose-us-tsf-circle {
  background: linear-gradient(135deg, #f472b6, #ec4899);
}

/* Grassroots Card */
.custom-why-choose-us-tsf-grassroots {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.custom-why-choose-us-tsf-grassroots .custom-why-choose-us-tsf-card-decoration {
  border-color: #fbbf24;
}

.custom-why-choose-us-tsf-grassroots .custom-why-choose-us-tsf-circle {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

/* Team Card */
.custom-why-choose-us-tsf-team {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

.custom-why-choose-us-tsf-team .custom-why-choose-us-tsf-card-decoration {
  border-color: #a855f7;
}

.custom-why-choose-us-tsf-team .custom-why-choose-us-tsf-circle {
  background: linear-gradient(135deg, #a855f7, #9333ea);
}

/* Illustration with Font Awesome Icons */
.custom-why-choose-us-tsf-illustration {
  margin-bottom: 30px;
}

.custom-why-choose-us-tsf-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  overflow: visible;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.custom-why-choose-us-tsf-circle i {
  font-size: 40px;
  color: white;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Card Hover Effects for Icons */
.custom-why-choose-us-tsf-card:hover .custom-why-choose-us-tsf-circle {
  transform: scale(1.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.custom-why-choose-us-tsf-card:hover .custom-why-choose-us-tsf-circle i {
  transform: scale(1.2);
}

/* Specific Icon Animations for Each Card */
.custom-why-choose-us-tsf-people .custom-why-choose-us-tsf-circle i {
  animation: custom-why-choose-us-tsf-users-bounce 2s ease-in-out infinite;
}

.custom-why-choose-us-tsf-transparent .custom-why-choose-us-tsf-circle i {
  animation: custom-why-choose-us-tsf-shield-glow 2.5s ease-in-out infinite;
}

.custom-why-choose-us-tsf-grassroots .custom-why-choose-us-tsf-circle i {
  animation: custom-why-choose-us-tsf-handshake-shake 3s ease-in-out infinite;
}

.custom-why-choose-us-tsf-team .custom-why-choose-us-tsf-circle i {
  animation: custom-why-choose-us-tsf-heart-beat 1.5s ease-in-out infinite;
}

/* Card Content */
.custom-why-choose-us-tsf-content {
  flex-grow: 1;
}

.custom-why-choose-us-tsf-card-title {
  font-size: 24px;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.custom-why-choose-us-tsf-card-description {
  font-size: 16px;
  color: #222;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

/* Bottom CTA */
.custom-why-choose-us-tsf-bottom-cta {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #55235c, #a10d88);
  border-radius: 25px;
  color: white;
  position: relative;
  overflow: hidden;
}

.custom-why-choose-us-tsf-bottom-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: custom-why-choose-us-tsf-rotate 10s linear infinite;
}

.custom-why-choose-us-tsf-cta-content {
  position: relative;
  z-index: 2;
}

.custom-why-choose-us-tsf-bottom-cta h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.custom-why-choose-us-tsf-bottom-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.custom-why-choose-us-tsf-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.custom-why-choose-us-tsf-btn-primary,
.custom-why-choose-us-tsf-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-why-choose-us-tsf-btn-primary {
  background: #ffc700;
  color: #55235c;
}

.custom-why-choose-us-tsf-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.custom-why-choose-us-tsf-btn-primary:hover {
  background: #ff9502;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 201, 0, 0.3);
}

.custom-why-choose-us-tsf-btn-secondary:hover {
  background: white;
  color: #55235c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Background Elements */
.custom-why-choose-us-tsf-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.custom-why-choose-us-tsf-bg-shape-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #ff4b5215, #ff950215);
  border-radius: 50%;
  animation: custom-why-choose-us-tsf-float 8s ease-in-out infinite;
}

.custom-why-choose-us-tsf-bg-shape-2 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #a10d8815, #55235c15);
  border-radius: 30%;
  animation: custom-why-choose-us-tsf-float 10s ease-in-out infinite reverse;
}

.custom-why-choose-us-tsf-bg-shape-3 {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ffc70015, #ff950215);
  transform: rotate(45deg);
  animation: custom-why-choose-us-tsf-spin 12s linear infinite;
}

/* Animations */
@keyframes custom-why-choose-us-tsf-border-glow {
  0%,
  100% {
    border-width: 3px;
    opacity: 0.6;
  }
  50% {
    border-width: 4px;
    opacity: 1;
  }
}

@keyframes custom-why-choose-us-tsf-users-bounce {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes custom-why-choose-us-tsf-shield-glow {
  0%,
  100% {
    filter: brightness(1);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.2);
    transform: scale(1.05);
  }
}

@keyframes custom-why-choose-us-tsf-handshake-shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

@keyframes custom-why-choose-us-tsf-heart-beat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.15);
  }
}

@keyframes custom-why-choose-us-tsf-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes custom-why-choose-us-tsf-spin {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}

@keyframes custom-why-choose-us-tsf-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*───────────────────────────────────────────────
  Terapia-Social-Foundation  Hero Slider  (UI rev-2)
  – keeps your existing Swiper markup & JS intact
───────────────────────────────────────────────*/

/* —— SLIDER CONTAINER —— */
.terapia-social-foundation-swiper {
  width: 100%;
  height: 470px;
  position: relative;
  --swiper-theme-color: #fff; /* arrows & dots colour */
}

/* —— SLIDE —— */
.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* content sticks left like reference */
  padding-left: min(8vw, 120px);
  overflow: hidden;
}

/* background photo */
.terapia-social-foundation-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(1.1);
  transition: transform 6s ease; /* slow zoom-in */
}
.swiper-slide-active .terapia-social-foundation-bg {
  transform: scale(1.08); /* subtle Ken Burns */
}

/* —— CONTENT BLOCK —— */
.terapia-social-foundation-content {
  position: absolute;
  top: 150px; /* distance from top */
  left: 50px; /* distance from left */
  max-width: 550px;
  z-index: 2;
  animation: fadeUp both 1s ease-out both;
}
@keyframes fadeUp {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.terapia-social-foundation-content h1 {
  font-size: 50px;
  color: white;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 30px;
}

/* secondary line */
.terapia-social-foundation-content h2 {
  font-size: 17px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: normal;
}

/* description / hashtag strip */
.terapia-social-foundation-content p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2.2rem;
  display: inline-block;
  background: #53215a;
  color: #fff !important;
  padding: 13px 16px;
  border-radius: 0.35rem;
  white-space: nowrap;
}

/* CT A  button */
.terapia-social-foundation-content button {
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
  padding: 16px 46px;
  border: none !important;
  cursor: pointer;
  border-radius: 5px;
  transform: skew(-3deg);
  font-size: 16px;
  letter-spacing: 1px;
  color: white;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 10px 25px rgba(255, 75, 82, 0.3);
}
.terapia-social-foundation-content button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 75, 82, 0.3);
  color: #fff !important;
  text-decoration: none !;
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
}

/* —— ARROWS —— */

.swiper-button-next,
.swiper-button-prev {
  width: 76px;
  height: 76px;
  border: 2px solid #ff9206;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  color: #ff9206 !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 13px !important;
  font-weight: 800;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #feca04;
}

/* —— PAGINATION DOTS —— */
.swiper-pagination-bullets {
  bottom: 28px !important;
}
.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.7);
  opacity: 1;
  transition: 0.25s;
}
.swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.25);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* About Us Custom TSF Section */
.about-us-custom-tsf-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.about-us-custom-tsf-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-us-custom-tsf-row {
  display: flex;
  align-items: center;
  gap: 60px;
  min-height: 600px;
}

/* Left Column - Images */
.about-us-custom-tsf-col-left {
  flex: 0 0 45%;
  position: relative;
}

.about-us-custom-tsf-image-container {
  position: relative;
  height: 500px;
}

.about-us-custom-tsf-main-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(85, 35, 92, 0.15);
  z-index: 2;
}

.about-us-custom-tsf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-us-custom-tsf-main-image:hover .about-us-custom-tsf-img {
  transform: scale(1.05);
}

.about-us-custom-tsf-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #55235c20, #a10d8820);
  z-index: 1;
}

.about-us-custom-tsf-experience-badge {
  position: absolute;
  top: -30px;
  right: -30px;
  z-index: 5;
}

.about-us-custom-tsf-badge-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #ff4b52, #a10d88);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 15px 30px rgba(255, 75, 82, 0.3);
  animation: about-us-custom-tsf-pulse 3s ease-in-out infinite;
}

.about-us-custom-tsf-years {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.about-us-custom-tsf-years-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
}

.about-us-custom-tsf-small-image {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 180px;
  height: 140px;
  border-radius: 15px;
  overflow: hidden;
  border: 5px solid white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.about-us-custom-tsf-img-small {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Column - Content */
.about-us-custom-tsf-col-right {
  flex: 0 0 50%;
}

.about-us-custom-tsf-content {
  padding: 0 20px;
}

.about-us-custom-tsf-header {
  margin-bottom: 40px;
}

.about-us-custom-tsf-subtitle {
  font-size: 48px;
  font-weight: 400;
  color: #ffc700;
  margin: 0;
  line-height: 1;
  font-family: "Georgia", serif;
  font-style: italic;
}

.about-us-custom-tsf-title {
  font-size: 48px;
  font-weight: 800;
  color: #55235c;
  margin: -10px 0 20px 0;
  line-height: 1;
  letter-spacing: 3px;
}

.about-us-custom-tsf-title-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff4b52, #ff9502);
  border-radius: 2px;
}

.about-us-custom-tsf-description {
  margin-bottom: 40px;
}

.about-us-custom-tsf-text-primary {
  font-size: 17px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 20px;
  font-weight: 400;
  text-align: justify;
}

.about-us-custom-tsf-text-secondary {
  font-size: 17px;
  line-height: 1.8;
  color: #222;
  margin-bottom: 20px;
  text-align: justify;
  font-weight: 400;
}

/* Features */
.about-us-custom-tsf-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.about-us-custom-tsf-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-us-custom-tsf-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-us-custom-tsf-feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.about-us-custom-tsf-feature-item:nth-child(1)
  .about-us-custom-tsf-feature-icon {
  background: linear-gradient(135deg, #ff4b52, #ff9502);
}

.about-us-custom-tsf-feature-item:nth-child(2)
  .about-us-custom-tsf-feature-icon {
  background: linear-gradient(135deg, #a10d88, #55235c);
}

.about-us-custom-tsf-feature-item:nth-child(3)
  .about-us-custom-tsf-feature-icon {
  background: linear-gradient(135deg, #ffc700, #ff9502);
}

.about-us-custom-tsf-feature-item:nth-child(4)
  .about-us-custom-tsf-feature-icon {
  background: linear-gradient(135deg, #55235c, #a10d88);
}

.about-us-custom-tsf-feature-item span {
  font-weight: 600;
  color: #222;
  font-size: 14px;
}

/* CTA Button */
.about-us-custom-tsf-cta {
  position: relative;
}

.about-us-custom-tsf-btn {
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  background: #ff4b52;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  border-radius: 0;
  overflow: hidden;
  z-index: 2;
  transition: all 0.3s ease;
}

.about-us-custom-tsf-btn-brush {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
  z-index: -1;
  border-radius: 0;
  transform: skew(-10deg);
}

.about-us-custom-tsf-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 75, 82, 0.3);
  color: #fff !important;
  text-decoration: none !;
}

/* Background Elements */
.about-us-custom-tsf-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.about-us-custom-tsf-shape-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ffc70020, #ff950220);
  border-radius: 50%;
  animation: about-us-custom-tsf-float 6s ease-in-out infinite;
}

.about-us-custom-tsf-shape-2 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ff4b5220, #a10d8820);
  border-radius: 30%;
  animation: about-us-custom-tsf-float 8s ease-in-out infinite reverse;
}

.about-us-custom-tsf-shape-3 {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #55235c20, #ffc70020);
  transform: rotate(45deg);
  animation: about-us-custom-tsf-rotate 10s linear infinite;
}

/* Animations */
@keyframes about-us-custom-tsf-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes about-us-custom-tsf-float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes about-us-custom-tsf-rotate {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}

/* Our Activities Section - Custom TSF with Images */
.custom-activities-tsf-section {
  position: relative;
  padding: 60px 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f2ff 50%, #f8f9fa 100%);
  overflow: hidden;
}

.custom-activities-tsf-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Header */
.custom-activities-tsf-header {
  text-align: center;
  margin-bottom: 80px;
}

.custom-activities-tsf-subtitle {
  display: inline-block;
  background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700);
  color: white;
  padding: 8px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.custom-activities-tsf-main-title {
  font-size: 48px;
  font-weight: 800;
  color: #000;
  margin: 20px 0;
  line-height: 1.2;
}

.custom-activities-tsf-description {
  font-size: 17px;
  color: #222;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stats Section */
.custom-activities-tsf-stats-section {
  text-align: center;
  margin-bottom: 60px;
}

.custom-activities-tsf-impact-title {
  font-size: 24px;
  color: #55235c;
  margin: 0;
  font-weight: 300;
}

.custom-activities-tsf-impact-number {
  font-size: 72px;
  font-weight: 900;
  color: #ff4b52;
  margin: 10px 0;
  line-height: 1;
}

.custom-activities-tsf-plus {
  color: #ff9502;
  font-size: 48px;
}

.custom-activities-tsf-impact-text {
  font-size: 18px;
  color: #666;
  margin: 0;
}

/* Activities Grid */
.custom-activities-tsf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

/* Activity Cards */
.custom-activities-tsf-card {
  position: relative;
  padding: 40px 30px;
  border-radius: 25px;
  color: white;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-activities-tsf-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.custom-activities-tsf-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.custom-activities-tsf-card:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(-50%, -50%);
}

/* Card Backgrounds */
.custom-activities-tsf-education {
  background: linear-gradient(135deg, #ff4b52, #ff6b6b);
}

.custom-activities-tsf-health {
  background: linear-gradient(135deg, #a10d88, #c44db8);
}

.custom-activities-tsf-mental {
  background: linear-gradient(135deg, #55235c, #7b3f8a);
}

.custom-activities-tsf-food {
  background: linear-gradient(135deg, #ff9502, #ffad33);
}

.custom-activities-tsf-winter {
  background: linear-gradient(135deg, #ffc700, #ffd633);
}

.custom-activities-tsf-women {
  background: linear-gradient(135deg, #ff4b52, #a10d88);
}

/* Card Icon with Image */
.custom-activities-tsf-card-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.custom-activities-tsf-card:hover .custom-activities-tsf-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.custom-activities-tsf-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.custom-activities-tsf-icon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  opacity: 0;
  transition: all 0.3s ease;
}

.custom-activities-tsf-card:hover .custom-activities-tsf-icon-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}

.custom-activities-tsf-card:hover .custom-activities-tsf-icon-image {
  transform: scale(1.1);
  filter: blur(1px);
}

/* Card Number */
.custom-activities-tsf-card-number {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Card Content */
.custom-activities-tsf-card-content {
  z-index: 2;
  position: relative;
}

.custom-activities-tsf-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #fff !important;
}

.custom-activities-tsf-card-description {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
  color: #fff !important;
  text-align: justify;
}

/* CTA Section */
.custom-activities-tsf-cta {
  text-align: center;
  padding: 39px 40px;
  background: linear-gradient(135deg, #55235c, #a10d88);
  border-radius: 25px;
  color: white;
  position: relative;
  overflow: hidden;
}

.custom-activities-tsf-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.8s ease;
}

.custom-activities-tsf-cta:hover::before {
  left: 100%;
}

.custom-activities-tsf-cta h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
}

.custom-activities-tsf-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;

  color: #fff;
}

.custom-activities-tsf-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 35px;
  background: #ffc700;
  color: #55235c;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-activities-tsf-cta-button:hover {
  background: #ff9502;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 201, 0, 0.3);
}

/* Background Elements */
.custom-activities-tsf-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.custom-activities-tsf-bg-shape-1 {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ff4b5215, #ff950215);
  border-radius: 50%;
  animation: custom-activities-tsf-float 8s ease-in-out infinite;
}

.custom-activities-tsf-bg-shape-2 {
  position: absolute;
  top: 60%;
  right: 8%;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #a10d8815, #55235c15);
  border-radius: 30%;
  animation: custom-activities-tsf-float 10s ease-in-out infinite reverse;
}

.custom-activities-tsf-bg-shape-3 {
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #ffc70015, #ff950215);
  transform: rotate(45deg);
  animation: custom-activities-tsf-rotate 12s linear infinite;
}

/* Animations */
@keyframes custom-activities-tsf-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

@keyframes custom-activities-tsf-rotate {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .tsf-about-values-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .tsf-about-values-header h2 {
    font-size: 3rem;
  }
  .custom-activities-tsf-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .about-us-custom-tsf-row {
    gap: 40px;
  }

  .about-us-custom-tsf-col-left,
  .about-us-custom-tsf-col-right {
    flex: 0 0 48%;
  }

  .custom-why-choose-us-tsf-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  .our-gallery-tcf-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
  }

  .our-gallery-tcf-stats {
    gap: 60px;
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .custom-contact-us-tcf-wrapper {
    grid-template-columns: 1fr;
  }

  .custom-contact-us-tcf-info-side {
    order: -1;
    padding: 40px 30px;
  }

  .custom-contact-us-tcf-form-side {
    padding: 40px 30px;
  }

  .custom-contact-us-tcf-illustration {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .our-partner-brand-hero {
    padding: 80px 0 60px;
  }

  .our-partner-brand-hero-title {
    flex-direction: column;
    gap: 8px;
  }

  .our-partner-brand-why-card {
    padding: 32px 24px;
  }

  .our-partner-brand-why-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .our-partner-brand-categories {
    gap: 8px;
  }

  .our-partner-brand-category-btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  .our-partner-brand-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .our-partner-brand-btn-primary,
  .our-partner-brand-btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .our-partner-brand-why-description {
    font-size: 15px;
  }
  .our-partner-brand-section-subtitle {
    font-size: 15px;
  }
  .our-partner-brand-cta-description {
    font-size: 15px;
  }
  .our-partner-brand-stat {
    padding: 24px 8px;
  }
  .our-partner-brand-section-title {
    font-size: 32px;
  }
  .our-partner-brand-stat-number {
    font-size: 32px;
  }

  .our-partner-brand-why-title {
    font-size: 18px;
  }

  .our-partner-brand-categories {
    flex-direction: column;
    align-items: center;
  }

  .our-partner-brand-category-btn {
    width: 200px;
    justify-content: center;
  }

  .custom-contact-us-tcf-info-icon {
    height: 35px;
    width: 35px;
    font-size: 12px;
  }
  .custom-contact-us-tcf-info-item {
    padding: 9px;
    margin-left: -10px;
  }
  .tsf-about-values-main-section {
    padding: 33px 0;
  }

  .tsf-about-values-header {
    margin-bottom: 50px;
  }

  .tsf-about-values-header h2 {
    font-size: 32px;
  }

  .tsf-about-values-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .tsf-about-mission-card,
  .tsf-about-vision-card,
  .tsf-about-values-card {
    padding: 30px 25px;
  }

  .tsf-about-mission-content h3,
  .tsf-about-vision-content h3,
  .tsf-about-values-content h3 {
    font-size: 25px !important;
  }
  .tsf-about-mission-content p,
  .tsf-about-vision-content p,
  .tsf-about-values-content p {
    font-size: 16px !important;
  }
  .tsf-about-mission-icon,
  .tsf-about-vision-icon,
  .tsf-about-values-icon {
    width: 70px;
    height: 70px;
  }
  .about-us-page-tcf-hero-banner {
    height: 275px;
    min-height: 275px;
  }
  .about-us-page-tcf-breadcrumb-glass {
    padding: 12px 24px;
  }
  .about-us-page-tcf-breadcrumb-container {
    margin-top: -22px;
  }
  .about-us-page-tcf-title-section h1 {
    font-size: 25px;
  }
  .custom-contact-us-tcf-section {
    padding: 33px 0;
  }

  .custom-contact-us-tcf-container {
    padding: 0 15px;
  }

  .custom-contact-us-tcf-form-side,
  .custom-contact-us-tcf-info-side {
    padding: 30px 20px;
  }

  .custom-contact-us-tcf-title {
    font-size: 32px;
    text-align: center;
  }
  .custom-contact-us-tcf-subtitle {
    font-size: 15px;
    text-align: justify;
  }

  .custom-contact-us-tcf-input,
  .custom-contact-us-tcf-textarea {
    padding: 16px 15px 15px 54px;

    font-size: 14px;
  }

  .custom-contact-us-tcf-submit-btn {
    padding: 15px 30px;
    font-size: 16px;
  }

  .our-gallery-tcf-section {
    padding: 33px 0 0;
  }

  .our-gallery-tcf-title {
    font-size: 32px;
  }
  .our-gallery-tcf-subtitle {
    font-size: 15px;
    text-align: justify;
  }
  .our-gallery-tcf-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 35px;
    margin-top: -47px;
  }

  .our-gallery-tcf-stats {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }

  .our-gallery-tcf-btn {
    padding: 15px 30px;
    font-size: 16px;
  }
  .custom-why-choose-us-tsf-section {
    padding: 33px 0;
    padding-bottom: 0;
  }

  .custom-why-choose-us-tsf-main-title {
    font-size: 32px;
  }
  .custom-why-choose-us-tsf-description {
    font-size: 15px;
    text-align: justify;
  }
  .custom-why-choose-us-tsf-header {
    margin-bottom: 35px;
  }
  .custom-why-choose-us-tsf-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .custom-why-choose-us-tsf-card {
    padding: 30px 25px;
    min-height: 350px;
  }

  .custom-why-choose-us-tsf-circle {
    width: 100px;
    height: 100px;
  }

  .custom-why-choose-us-tsf-circle i {
    font-size: 45px;
  }
  .custom-why-choose-us-tsf-card-description {
    font-size: 16px;
  }
  .custom-why-choose-us-tsf-bottom-cta {
    padding: 40px 20px;
  }

  .custom-why-choose-us-tsf-bottom-cta h3 {
    font-size: 28px;
  }

  .custom-why-choose-us-tsf-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .custom-why-choose-us-tsf-btn-primary,
  .custom-why-choose-us-tsf-btn-secondary {
    width: 250px;
    justify-content: center;
  }

  .custom-activities-tsf-section {
    padding: 36px 0;
  }

  .custom-activities-tsf-main-title {
    font-size: 32px;
  }

  .custom-activities-tsf-impact-number {
    font-size: 56px;
  }

  .custom-activities-tsf-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .custom-activities-tsf-card {
    padding: 30px 25px;
    min-height: 235px;
  }
  .custom-activities-tsf-description {
    font-size: 15px;
  }

  .custom-activities-tsf-header {
    margin-bottom: 24px;
  }
  .custom-activities-tsf-card-number {
    font-size: 32px;
    margin-bottom: 7px;
  }
  .custom-activities-tsf-card-title {
    margin-bottom: 17px;
  }

  .custom-activities-tsf-card-description {
    font-size: 16px;
  }
  .custom-activities-tsf-card-icon {
    width: 70px;
    height: 70px;
    top: 15px;
    right: 15px;
  }

  .custom-activities-tsf-cta {
    padding: 27px 20px;
    margin-top: -32px;
  }

  .custom-activities-tsf-cta h3 {
    font-size: 28px !important;
  }
  .custom-activities-tsf-cta p {
    font-size: 17px !important;
  }
  .custom-activities-tsf-cta-button {
    padding: 10px 32px;
    font-size: 15px;
  }
  .about-us-custom-tsf-row {
    flex-direction: column;
    gap: 50px;
  }

  .about-us-custom-tsf-col-left,
  .about-us-custom-tsf-col-right {
    flex: none;
    width: 100%;
  }

  .about-us-custom-tsf-subtitle,
  .about-us-custom-tsf-title {
    font-size: 32px !important;
  }
  .about-us-custom-tsf-cta {
    position: relative;
    left: 18%;
  }
  .about-us-custom-tsf-title-underline {
    margin-left: 36%;
  }
  .about-us-custom-tsf-features {
    grid-template-columns: 1fr;
  }

  .about-us-custom-tsf-image-container {
    height: 400px;
  }

  .about-us-custom-tsf-main-image {
    height: 320px;
  }

  .about-us-custom-tsf-badge-circle {
    width: 100px;
    height: 100px;
  }
  .about-us-custom-tsf-small-image {
    left: 0;
    width: 202px;
    height: 126px;
  }
  .about-us-custom-tsf-description {
    margin-bottom: 11px;
    margin-top: -17px;
  }
  .about-us-custom-tsf-header {
    margin-bottom: 40px;
    text-align: center;
  }
  .about-us-custom-tsf-text-primary {
    font-size: 16px;
    text-align: justify;
  }
  .about-us-custom-tsf-text-secondary {
    font-size: 16px;
    text-align: justify;
  }
  .about-us-custom-tsf-content {
    padding: 0 5px !important;
  }
  .about-us-custom-tsf-section {
    padding: 33px 0;
  }
  .about-us-custom-tsf-btn {
    font-size: 14px;
  }
  .terapia-social-foundation-swiper {
    width: 100%;
    height: 300px;
  }

  .swiper-slide {
    justify-content: center;
    padding-left: 0;
    text-align: center;
  }
  .terapia-social-foundation-content {
    max-width: auto !important;
    padding: 0 1rem !important;

    position: absolute;
    top: 120px; /* distance from top */
    left: 0px; /* distance from left */
  }
  .terapia-social-foundation-content h1 {
    font-size: 20px !important;
  }
  .terapia-social-foundation-content h2 {
    font-size: 12px !important;
  }
  .terapia-social-foundation-content p {
    font-size: 0.95rem;
    margin-bottom: 1.6rem;
    padding: 5px 7px;
    margin-top: 70px;
  }
  .terapia-social-foundation-content button {
    padding: 12px 14px;
    font-size: 14px !important;
    top: 80px;
    left: 34%;
    position: absolute;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 46px;
    height: 46px;
  }
  .footer-three-single-wized.left {
    padding-right: 0 !important;
  }
  .home-violet .quote-btnmenu {
    background: linear-gradient(45deg, #ff4b52, #ff9502, #ffc700) !important;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
}
