.custom-container {
  padding: 120px 0;
}

.custom-hero-title {
  font-size: 75px;
  background: linear-gradient(90deg, #2e3f98 75%, #5f86bd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .custom-hero-title {
    font-size: 55px;
  }
  .custom-container {
    padding: 0 30px 60px;
  }
}

.custom-hero-image {
  width: 500px !important;
  height: auto !important;
  color: transparent;
}

.custom-hero-image-2 {
  width: 250px !important;
  height: auto !important;
  color: transparent;
}

.custom-section-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  background: linear-gradient(90deg, #2e3f98 75%, #5f86bd);
  color: #fbfbfc;
  border-bottom: none;
  font-family: var(--tp-ff-body);
  display: inline-block;
  padding: 8px 20px;
  border-radius: 12px;
}

.text-gradient {
  background: linear-gradient(90deg, #2e3f98 75%, #5f86bd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-gradient {
  position: relative;
  background: linear-gradient(135deg, #2e3f98 0%, #5f86bd 100%);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Animated shine effect */
.btn-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

/* Glow overlay */
.btn-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-gradient:hover {
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5),
    0 0 30px rgba(102, 126, 234, 0.5);
}

.btn-gradient:hover::before {
  left: 100%;
}

.btn-gradient:hover::after {
  opacity: 1;
}

.btn-gradient:active {
  transform: translateY(0px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.tp-account-item p,
.tp-account-item p font,
.tp-account-item p font font {
  font-family: var(--tp-ff-body);
  color: var(--tp-text-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
}

/* Bounce animation */
@keyframes bounceUpDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
    /* Adjust how high it bounces */
  }
}

/* Apply animation */
.bounce {
  animation: bounceUpDown 2s ease-in-out infinite;
  /* Adjust duration as needed */
}

/* Counter Section */
.gradient-counter-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2e3f98 0%, #fbfbfc 50%, #5f86bd 100%);
  background-size: 200% 200%;
  animation: gradientBackground 10s ease infinite;
  position: relative;
  overflow: hidden;
}

@keyframes gradientBackground {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Decorative Elements */
.gradient-counter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.gradient-counter-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

/* Container */
.gradient-counter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Individual Counter Item */
.gradient-counter-item {
  animation: fadeInScale 0.8s ease forwards;
  opacity: 0;
}

.gradient-counter-item:nth-child(1) {
  animation-delay: 0.1s;
}

.gradient-counter-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gradient-counter-item:nth-child(3) {
  animation-delay: 0.3s;
}

.gradient-counter-item:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }

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

/* Counter Card */
.gradient-counter-card {
  position: relative;
  padding: 40px 30px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
}

.gradient-counter-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Background Circle Effect */
.gradient-bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(102, 126, 234, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  transition: transform 0.6s ease;
  z-index: -1;
}

.gradient-counter-card:hover .gradient-bg-circle {
  transform: translate(-50%, -50%) scale(1);
}

/* Icon Styling */
.gradient-counter-icon {
  margin-bottom: 20px;
  display: inline-block;
}

.gradient-icon-circle {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(102, 126, 234, 0.1)
  );
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
  transition: all 0.4s ease;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(252, 238, 33, 0);
  }
}

.gradient-counter-card:hover .gradient-icon-circle {
  transform: rotate(360deg) scale(1.1);
  animation: none;
}

.counter-check-icon {
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Counter Number */
.gradient-counter-number {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin: 20px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 30px rgba(102, 126, 234, 0.1);
  line-height: 1;
  transition: all 0.4s ease;
}

.gradient-counter-card:hover .gradient-counter-number {
  transform: scale(1.1);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 40px rgba(102, 126, 234, 0.3);
}

.counter-value {
  display: inline-block;
}

.counter-symbol {
  font-size: 42px;
  margin-left: 4px;
}

/* Gradient Divider */
.gradient-counter-divider {
  margin: 20px auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.gradient-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(102, 126, 234, 0.8),
    transparent
  );
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.gradient-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.gradient-counter-card:hover .gradient-line {
  width: 80px;
  transition: width 0.4s ease;
}

/* Counter Text */
.gradient-counter-text {
  font-size: 18px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .gradient-counter-section {
    padding: 60px 20px;
  }

  .gradient-counter-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .gradient-counter-card {
    padding: 30px 20px;
  }

  .gradient-counter-number {
    font-size: 42px;
  }

  .counter-symbol {
    font-size: 32px;
  }

  .gradient-icon-circle {
    width: 60px;
    height: 60px;
  }

  .counter-check-icon {
    width: 30px;
    height: 30px;
  }

  .gradient-counter-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .gradient-counter-container {
    grid-template-columns: 1fr;
  }
}

.custom-title-paragraph {
  font-size: 20px;
  font-family: var(--tp-text-body);
}

@media (max-width: 768px) {
  .custom-title-paragraph {
    font-size: 16px;
    font-family: var(--tp-text-body);
  }
}

/* Property Showcase Section */
.property-showcase-section {
  background: initial;
  position: relative;
}

.property-alt-section {
  background: #ffffff;
}

.property-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
}

.property-section-title {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 20px 0;
  background: linear-gradient(to right, #2e3f98, #fbfbfc, #5f86bd);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.property-title-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #2e3f98, #fbfbfc, #5f86bd);
  margin: 0 auto;
  border-radius: 2px;
}

/* Property Cards Grid */
.property-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* Property Card */
.property-card {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.property-card:nth-child(1) {
  animation-delay: 0.1s;
}

.property-card:nth-child(2) {
  animation-delay: 0.2s;
}

.property-card:nth-child(3) {
  animation-delay: 0.3s;
}

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

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

.property-card-inner {
  background: #fbfbfc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.property-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(102, 126, 234, 0.1)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  pointer-events: none;
}

.property-card:hover .property-card-inner {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15),
    0 0 0 3px rgba(102, 126, 234, 0.4);
}

.property-card:hover .property-card-inner::before {
  opacity: 1;
}

/* Image Wrapper */
.property-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.property-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.property-card:hover .property-image {
  transform: scale(1.15);
}

/* Gradient Overlay */
.property-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.property-card:hover .property-gradient-overlay {
  opacity: 1;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Hover Icon */
.property-hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e3f98;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.property-card:hover .property-hover-icon {
  transform: translate(-50%, -50%) scale(1) rotate(90deg);
}

.property-card-featured .property-hover-icon {
  color: #2e3f98;
}

/* Content */
.property-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-title {
  font-family: var(--tp-ff-mont);
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 15px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.property-card:hover .property-title {
  background: linear-gradient(to right, #2e3f98, #fbfbfc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.property-description {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0 0 25px 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Property Link */
.property-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2e3f98;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
  position: relative;
}

.property-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #2e3f98, #fbfbfc);
  transition: width 0.3s ease;
}

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

.property-link svg {
  transition: transform 0.3s ease;
}

.property-link:hover svg {
  transform: translateX(5px);
}

.property-card-featured .property-link {
  color: #2e3f98;
}

.property-card-featured .property-link::after {
  background: linear-gradient(to right, #2e3f98, #fbfbfc);
}

/* Responsive */
@media (max-width: 768px) {
  .property-showcase-section {
    padding: 60px 15px;
  }

  .property-section-header {
    margin-bottom: 40px;
  }

  .property-section-title {
    font-size: 36px;
  }

  .property-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .property-image-wrapper {
    height: 220px;
  }

  .property-content {
    padding: 25px 20px;
  }

  .property-title {
    font-size: 20px;
  }

  .property-description {
    font-size: 14px;
  }
}

/* Alternate Animation for Featured Cards */
.property-card-featured {
  animation: fadeInScale 0.8s ease forwards;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

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

.testimonial-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.glide {
  padding: 20px 0 60px 0;
}

.testimonial-card {
  text-align: center;
  position: relative;
  border-radius: 20px;
  padding: 40px 30px;
  margin: 0 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  height: auto;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(102, 126, 234, 0.1) 25%,
    transparent 50%
  );
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text,
.testimonial-text p {
  flex: 1;
  color: #f0f0ef !important;
  font-family: var(--tp-text-body);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 300;
  position: relative;
  z-index: 1;
  font-style: italic;
}

@media (max-width: 991px) {
  .testimonial-text,
  .testimonial-text p {
    font-size: 16px;
  }
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: auto;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 600;
  font-family: var(--tp-ff-mont);
  background-color: #f0f0ef;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.star-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 2px;
}

.star {
  color: #2e3f98;
  font-size: 24px;
}

/* Glide customization */
.glide__bullets {
  bottom: 20px;
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  list-style: none;
}

/* Floating particles animation */
.testimonial-card::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #2e3f98;
  border-radius: 50%;
  top: 20%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover::after {
  opacity: 1;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Glass morphism effect */
.glass-overlay {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  transition: all 0.3s ease;
  opacity: 0;
}

.testimonial-card:hover .glass-overlay {
  opacity: 1;
  transform: rotate(45deg);
}

/* Responsive design */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
    margin: 0 5px;
    min-height: 300px;
  }

  .testimonial-text > p {
    font-size: 15px;
    margin-bottom: 25px;
  }
}

/* FAQs */
.faq-container {
  max-width: 800px !important;
  margin: 0 auto;
  margin-top: 30px;
}

.faq-item {
  position: relative;
  background: linear-gradient(
    135deg,
    #2e3f98 0%,
    #4a5bb3 25%,
    #6e7dd0 50%,
    #aab7eb 75%,
    #e8ebf9 100%
  ) !important;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(102, 126, 234, 0.3) 25%,
    transparent 50%
  );
  pointer-events: none;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 15px 30px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(102, 126, 234, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.faq-question {
  padding: 30px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #fbfbfc;
  font-family: var(--tp-ff-mont);
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #fbfbfc;
}

.faq-question-text {
  flex: 1;
  margin-right: 20px;
}

.faq-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1) 0%,
    rgba(102, 126, 234, 0.25) 50%,
    rgba(102, 126, 234, 0.2) 100%
  );
  border: 2px solid rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #2e3f98;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.25) 0%,
    rgba(102, 126, 234, 0.25) 50%,
    rgba(102, 126, 234, 0.2) 100%
  );
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
}

.faq-answer-content {
  padding: 0 30px 30px 30px;
  color: #fbfbfc;
  line-height: 1.7;
  font-size: 16px;
  position: relative;
  z-index: 1;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item.active .faq-answer-content {
  color: #fbfbfc;
}

.faq-item.active .faq-answer-content  p {
  color: #fbfbfc !important;
}

/* Floating particles animation */
.faq-item::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(102, 126, 234, 0.5);
  border-radius: 50%;
  top: 20%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover::after {
  opacity: 1;
}


@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
}

/* Glass morphism effect */
.glass-overlay {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  transition: all 0.3s ease;
  opacity: 0;
}

.faq-item:hover .glass-overlay {
  opacity: 1;
  transform: rotate(45deg);
}

/* Highlight border for active item */
.faq-item.active {
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 12px 24px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(102, 126, 234, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Responsive design */
@media (max-width: 768px) {
  .faq-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .faq-answer-content {
    padding: 0 20px 20px 20px;
    font-size: 14px;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Left Column - Info */
.contact-info {
  padding: 40px 0;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #fbfbfc;
}

.contact-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #fbfbfc;
  margin-bottom: 30px;
}

.contact-details {
  list-style: none;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fbfbfc;
}

.contact-details li a {
  color: inherit !important;
  text-decoration: none;
  display: inline-block;
  transition: color 0.4s ease, transform 0.3s ease;
  font-weight: 500;
}

.contact-details li a:hover {
  color: #2e3f98 !important;
  /* smooth color change */
  transform: scale(1.03);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.3) 0%,
    rgba(102, 126, 234, 0.6) 100%
  );
  border: 2px solid rgba(102, 126, 234, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-icon:hover {
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.15) 0%,
    rgba(102, 126, 234, 0.15) 100%
  );
  border-color: rgba(102, 126, 234, 0.15);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.contact-icon::before {
  color: #2e3f98;
  font-size: 20px;
  font-weight: bold;
}

.contact-icon.phone::before {
  content: "🕻";
}

.contact-icon.email::before {
  content: "✉︎";
}

.contact-icon.location::before {
  content: "➢";
}

.contact-icon.time::before {
  content: "⏱";
}

.custom-form {
  padding: 60px 10px;
}

.forming {
  width: 100%;
  border: 2px solid #e8ebf9;
  border-radius: 12px;
  padding: 25px;
  outline: none;
  font-size: 16px;
  font-family: var(--tp-ff-body);
  background-color: #fbfbfc;

  /* Force text color */
  color: #888 !important;
  /* Use !important if other rules override it */

  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Placeholder color (optional) */
.forming::placeholder {
  color: #888 !important;
}

/* Focus state */
.forming:focus {
  border-color: #2e3f98;
  box-shadow: 0 0 8px rgba(102, 126, 234, 0.3);
  color: #000 !important;
  /* ensure focus text is black */
}

.forming-header {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2f3938 !important;
  text-align: center;
  margin: 20px 0;
}

/* Cards Section */
.gradient-cards-section {
  padding: 30px 20px;
  background: inherit;
}

.gradient-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Individual Card */
.gradient-card {
  position: relative;
  height: 100%;
  min-height: 150px;
}

.gradient-card-inner {
  position: relative;
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px 10px;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Animated Gradient Border */
.gradient-card-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 3px;
  background: linear-gradient(135deg, #2e3f98, #fbfbfc, #2e3f98, #fbfbfc);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradientRotate 4s ease infinite;
  pointer-events: none;
}

@keyframes gradientRotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.gradient-card:hover .gradient-card-border {
  opacity: 1;
}

/* Card Content */
.gradient-card-content {
  position: relative;
  z-index: 1;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Icon Styling */
.gradient-card-icon {
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.gradient-icon-wrapper {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.3),
    rgba(102, 126, 234, 0.3),
    rgba(102, 126, 234, 0.3)
  );
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.gradient-icon-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.gradient-card:hover .gradient-icon-wrapper::before {
  left: 100%;
}

.gradient-card:hover .gradient-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.gradient-icon-wrapper svg,
.gradient-icon-wrapper i {
  font-size: 40px;
  width: 40px;
  height: 40px;
}

/* Title */
.gradient-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
  transition: all 0.4s ease;
}

.gradient-card:hover .gradient-card-title {
  background: linear-gradient(to right, #1f2937, #dee6e0, #1f2937);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 2s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* Content Text */
.gradient-card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 20px;
  flex: 1;
}

.gradient-card:hover .gradient-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Hover Effects */
.gradient-card:hover .gradient-card-inner {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(102, 126, 234, 0.1);
}

/* Alternate Card Styles */
.gradient-card:nth-child(even) .gradient-card-border {
  background: linear-gradient(-135deg, #1f2937, #dee6e0, #1f2937, #dee6e0);
  background-size: 300% 300%;
  animation: gradientRotate 5s ease infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .gradient-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gradient-card {
    min-height: 300px;
  }

  .gradient-card-inner {
    padding: 30px 20px;
  }

  .gradient-card-title {
    font-size: 20px;
  }

  .gradient-card-text {
    font-size: 14px;
  }

  .gradient-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .gradient-icon-wrapper svg,
  .gradient-icon-wrapper i {
    font-size: 30px;
    width: 30px;
    height: 30px;
  }
}

/* Loading Animation */
.gradient-card {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.gradient-card:nth-child(1) {
  animation-delay: 0.1s;
}

.gradient-card:nth-child(2) {
  animation-delay: 0.2s;
}

.gradient-card:nth-child(3) {
  animation-delay: 0.3s;
}

.gradient-card:nth-child(4) {
  animation-delay: 0.4s;
}

.gradient-card:nth-child(5) {
  animation-delay: 0.5s;
}

.gradient-card:nth-child(6) {
  animation-delay: 0.6s;
}

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

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

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.pricing-box {
  background: linear-gradient(135deg, #5365a7, #5365a7);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
}

.tier-title {
  display: block;
  text-align: center;
  font-family: var(--tp-ff-mont);
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 1px;
}

.tier-price {
  text-align: center;
  display: block;
  font-size: 22px;
  color: #e6e9f9;
  margin-bottom: 25px;
  font-weight: 600;
}

.features-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e6e9f9;
}

.feature-item:last-child {
  border-bottom: none;
}

.check-icon {
  min-width: 18px;
  width: 18px;
  height: 18px;
  margin-right: 12px;
}

.feature-text {
  font-family: var(--tp-ff-body);
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pricing-box {
    padding: 25px 15px;
  }
}

.footer-description {
  font-size: 14px !important;
  font-family: var(--tp-ff-body);
}

.footer-description a {
  color: #2e3f98 !important;
  font-family: var(--tp-ff-body);
  font-size: 14px !important;
  text-decoration: none;
  display: inline-block;
  transition: color 0.4s ease, transform 0.3s ease;
  font-weight: 600;
}

.footer-description a svg {
  font-size: 20px;
  color: #2e3f98;
  transition: color 0.4s ease, transform 0.3s ease;
}

.footer-description a:hover,
.footer-description a svg:hover {
  color: #2e3f98 !important;
  /* smooth color change */
  transform: scale(1.02);
  /* subtle zoom effect */
}

.footer-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-nav-item {
  margin-bottom: 5px !important;
}

.footer-nav-item a {
  font-size: 15px !important;
  font-family: var(--tp-ff-body);
  color: var(--tp-text-body);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.4s ease, transform 0.3s ease;
}

.footer-nav-item a:hover {
  font-weight: 500;
  color: #2e3f98 !important;
  /* smooth color change */
  transform: scale(1.02);
  /* subtle zoom effect */
}

.footer-contact-info {
  font-size: 15px;
  white-space: nowrap;
  font-family: var(--tp-ff-body);
}

.footer-contact-info a {
  font-size: 15px !important;
  font-family: var(--tp-ff-body);
  color: var(--tp-text-body);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.4s ease, transform 0.3s ease;
}

.footer-contact-info a:hover {
  font-weight: 500;
  color: #2e3f98 !important;
  /* smooth color change */
  transform: scale(1.02);
  /* subtle zoom effect */
}

.custom-bold {
  font-weight: 500;
}

.copyright span {
  font-family: var(--tp-ff-body);
  font-size: 14px;
  font-weight: 400;
}

.footer-animate-btn {
  transition: all 0.3s ease !important;
  position: fixed;
  bottom: 100px;
  right: 15px;
  z-index: 1000;
  display: none;
}

.footer-animate-btn:hover {
  transform: scale(1.05) !important;
}

.footer-animate-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2e3f98, #e8ebf9);
  /* subtle green gradient */
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* soft shadow */
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.footer-animate-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #2e3f98, #e8ebf9);
  /* subtle hover shift */
}

.footer-animate-btn a:hover {
  color: #fff;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.header-bottom__bar {
  font-size: 20px;
  cursor: pointer;
  position: absolute;
}

.sidebar-menu {
  width: 250px;
  height: 100%;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  position: fixed;
  top: 0;
  right: -250px;
  /* Başlangıçta menü gizli */
  transition: right 0.3s ease;
  z-index: 1000;
}

.sidebar-menu.active {
  right: 0;
  /* Menü görünecek */
}

.sidebar-menu.active:after {
  display: none !important;
}

.sidebar-menu ul li a {
  text-decoration: none;
}

.close-icon {
  font-size: 30px;
  cursor: pointer;
  display: block;
  text-align: right;
}

ul {
  list-style-type: none;
  padding: 0;
}

li {
  margin: 10px 0;
}

a {
  text-decoration: none;
  color: black;
}

.dropdown-content {
  display: none;
  position: relative;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  padding: 5px 10px;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 5px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content.active {
  display: block;
}

.dropdown-content.active:after {
  display: none !important;
}

.custom-page-content {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .custom-page-content {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
