/* About Content Section */
.about-content-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 50%, #ffffff 100%);
  padding: clamp(2rem, 3rem + 4vw, 6rem) 0;
  z-index: 1;
}

.about-main-title {
  color: var(--primaryColor);
  line-height: 1.25;
  letter-spacing: -0.5px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-title-highlight {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShine 3s ease-in-out infinite;
}

@keyframes titleShine {

  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.2);
  }
}


/*    Founder's Message Section */

.founder-card {
  background: white;
  border-radius: clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  padding: clamp(1.5rem, 1.1962rem + 1.519vw, 3rem);
  box-shadow: 0 10px 40px rgba(41, 20, 106, 0.08);
  border: 1px solid rgba(41, 20, 106, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.founder-card::before {
  content: '';
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: clamp(1.5rem, 1.25rem + 1vw, 2.5rem) clamp(1.5rem, 1.25rem + 1vw, 2.5rem) 0 0;
}


.founder-img-circle {
  border-radius: 12px;
  box-shadow: 0 10px 35px rgb(133 194 38 / 25%);
  border: 5px solid #29a03800;
  transition: all 0.4s ease;
}

.founder-img-circle:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 50px rgba(133, 194, 38, 0.3);
  border-color: rgba(133, 194, 38, 0.2);
}

.founder-img-circle img {
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.founder-img-circle:hover img {
  transform: scale(1.05);
}

.founder-badge {
  bottom: clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
  right: clamp(0.5rem, 0.4rem + 0.3vw, 0.75rem);
  width: clamp(2.5rem, 2.25rem + 1vw, 3.5rem);
  height: clamp(2.5rem, 2.25rem + 1vw, 3.5rem);
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(133, 194, 38, 0.5);
  border: 3px solid white;
  animation: badgeBounce 3s ease-in-out infinite;
}

@keyframes badgeBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.founder-badge svg {
  stroke: white;
}

.founder-quote-decoration {
  width: clamp(2rem, 1.75rem + 1vw, 3rem);
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 2px;
  transition: width 0.4s ease;
}


.founder-heading {
  letter-spacing: -0.3px;
}

.founder-signature-box {
  border-top: 1px solid rgba(133, 194, 38, 0.15);
}

.founder-divider {
  width: clamp(3rem, 2.5rem + 2vw, 5rem);
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 2px;
  transition: all 0.4s ease;
}

.founder-name {
  letter-spacing: -0.2px;
}


/* Mission & Vision Cards */
.mv-card {
  background: white;
  border-radius: clamp(1.25rem, 1rem + 1vw, 2rem);
  padding: clamp(2rem, 1.75rem + 1.5vw, 3.5rem);
  box-shadow: 0 8px 30px rgba(41, 20, 106, 0.08);
  border: 1px solid rgba(41, 20, 106, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(41, 20, 106, 0.15);
  border-color: rgba(133, 194, 38, 0.2);
}

.mission-card::before {
  content: '';
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: clamp(1.25rem, 1rem + 1vw, 2rem) 0 0 clamp(1.25rem, 1rem + 1vw, 2rem);
}

.vision-card::before {
  content: '';
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondaryColor) 0%, var(--themeColor) 100%);
  border-radius: 0 clamp(1.25rem, 1rem + 1vw, 2rem) clamp(1.25rem, 1rem + 1vw, 2rem) 0;
}

.mv-icon-box {
  width: clamp(4rem, 3.5rem + 2vw, 6rem);
  height: clamp(4rem, 3.5rem + 2vw, 6rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1), rgba(1, 146, 64, 0.1));
  border-radius: 50%;
  transition: all 0.4s ease;
}

.mv-card:hover .mv-icon-box {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.3);
}

.mv-icon-box svg {
  stroke: var(--themeColor);
  transition: stroke 0.4s ease;
}

.mv-card:hover .mv-icon-box svg {
  stroke: white;
}

.mv-title {
  color: var(--primaryColor);
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

.mv-card:hover .mv-title {
  color: var(--secondaryColor);
}

/* Method Card */
.method-card {
  background: white;
  border-radius: clamp(1.25rem, 1rem + 1vw, 2rem);
  padding: clamp(2rem, 1.75rem + 1.5vw, 3rem);
  box-shadow: 0 8px 30px rgba(41, 20, 106, 0.08);
  border: 1px solid rgba(41, 20, 106, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(41, 20, 106, 0.15);
  border-color: rgba(133, 194, 38, 0.2);
}

/* Number Badge */
.method-number-badge {
  top: clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  right: clamp(1.5rem, 1.25rem + 1vw, 2.5rem);
  width: clamp(3rem, 2.75rem + 1vw, 4rem);
  height: clamp(3rem, 2.75rem + 1vw, 4rem);
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  border-radius: 50%;
  color: white;
  box-shadow: 0 4px 20px rgba(133, 194, 38, 0.4);
  transition: all 0.4s ease;
}

.method-card:hover .method-number-badge {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 6px 30px rgba(133, 194, 38, 0.6);
}

/* Method Arrow */
.method-arrow {
  color: var(--themeColor);
  transition: all 0.3s ease;
}

.method-card:hover .method-arrow {
  color: var(--secondaryColor);
  transform: translateX(5px);
}

/* Method Step */
.method-step {
  transition: color 0.3s ease;
}

.method-card:hover .method-step {
  color: var(--secondaryColor);
}

/*  Two Most Effective Ways Section */
.about-method-card {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.03) 0%, rgba(1, 146, 64, 0.03) 100%);
  border-radius: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  padding: clamp(1.25rem, 1rem + 1.5vw, 1.7rem);
  border: 1px solid rgba(133, 194, 38, 0.15);
  transition: all 0.3s ease;
}

.about-method-card:hover {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08) 0%, rgba(1, 146, 64, 0.08) 100%);
  border-color: rgba(133, 194, 38, 0.3);
  transform: translateX(clamp(3px, 0.3rem + 0.2vw, 5px));
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.15);
}

.about-method-number {
  min-width: clamp(2.5rem, 2.25rem + 1vw, 3rem);
  height: clamp(2.5rem, 2.25rem + 1vw, 3rem);
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.3);
  color: var(--whiteColor);
  font-weight: 700;
  transition: all 0.3s ease;
}

.about-method-card:hover .about-method-number {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 6px 20px rgba(133, 194, 38, 0.5);
}

.method-arrow {
  margin: 0 clamp(0.125rem, 0.1rem + 0.1vw, 0.25rem);
  color: var(--secondaryColor);
}


/* Team Members Section */
.team-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 50%, #ffffff 100%);
  padding: clamp(3rem, 2.5rem + 2vw, 5rem) 0;
}

.team-card {
  background: white;
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem);
  overflow: hidden;
  border: 1px solid rgba(41, 20, 106, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 4px 6px rgb(32 154 62 / 53%);
  border-color: rgb(133 194 38 / 41%);
}

.team-img-wrapper {
  aspect-ratio: 6/6;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1), rgba(1, 146, 64, 0.1));
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
  transform: scale(1.1);
}

.team-overlay {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.95), rgba(1, 146, 64, 0.95));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social-icon {
  width: clamp(2.25rem, 2rem + 1vw, 3rem);
  height: clamp(2.25rem, 2rem + 1vw, 3rem);
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.team-card:hover .team-social-icon {
  transform: translateY(0);
  opacity: 1;
}

.team-card:hover .team-social-icon:nth-child(1) {
  transition-delay: 0.1s;
}

.team-card:hover .team-social-icon:nth-child(2) {
  transition-delay: 0.2s;
}

.team-card:hover .team-social-icon:nth-child(3) {
  transition-delay: 0.3s;
}

.team-social-icon svg {
  stroke: var(--themeColor);
  transition: stroke 0.3s ease;
}

.team-social-icon:hover {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  transform: translateY(-3px) scale(1.1);
}

.team-social-icon:hover svg {
  stroke: white;
}

.team-content {
  padding: clamp(1.25rem, 1rem + 1vw, 2rem);
  background: white;
}

.team-name {
  transition: color 0.3s ease;
}

.team-card:hover .team-name {
  color: var(--secondaryColor);
}

.team-role {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.team-card:hover .team-role {
  opacity: 1;
}

/* Service Overview Card Decorative Element */
.service-overview-decorative {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #4CAF50 0%, #81C784 100%);
  border-radius: 0 0 0 100%;

}

.service-icon-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.service-icon-badge i {
  font-size: 2.5rem;
}

.service-main-img {
  object-fit: cover;
  height: 400px;
}

.service-floating-badge {
  position: absolute;
  top: 0;
  left: 0;
  margin: 1rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/*  Video Section  */

.video-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.video-thumbnail-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.75) 0%, rgba(1, 146, 64, 0.85) 100%);
  z-index: 1;
}

.video-card {
  position: relative;
  min-height: clamp(350px, 400px + 10vw, 550px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-wrapper {
  position: relative;
  z-index: 3;
}

.video-play-circle {
  width: clamp(75px, 90px + 2vw, 110px);
  height: clamp(75px, 90px + 2vw, 110px);
  border-radius: 50%;
  background: white;
  border: 4px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.video-play-circle:hover {
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.play-icon-wrapper {
  position: relative;
  z-index: 3;
}

.play-icon-wrapper i {
  font-size: clamp(2.5rem, 3rem + 0.5vw, 3.5rem);
  color: #4CAF50;
  margin-left: clamp(6px, 8px + 0.2vw, 10px);
  transition: all 0.3s ease;
}

.video-play-circle:hover .play-icon-wrapper i {
  color: #66BB6A;
  transform: scale(1.1);
}

.play-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.6);
  animation: rippleEffect 3s ease-out infinite;
  z-index: 1;
}

.play-ripple.ripple-delay {
  animation-delay: 1.5s;
}

@keyframes rippleEffect {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.video-info-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: clamp(1rem, 1.5rem + 1vw, 2.5rem);
  z-index: 2;
}

.video-info-bar i {
  font-size: clamp(0.875rem, 1rem + 0.125vw, 1.125rem);
}

.video-iframe-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.video-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 50%, #ffffff 100%);
}

.pricing-table-card {
  border: 1px solid rgba(133, 194, 38, 0.15);
  transition: all 0.4s ease;
}

.pricing-table-card:hover {
  box-shadow: 0 20px 60px rgba(133, 194, 38, 0.15);
  border-color: rgba(133, 194, 38, 0.3);
}

/* Custom Scrollbar */
.table-responsive {
  scrollbar-width: thin;
  scrollbar-color: var(--themeColor) rgba(133, 194, 38, 0.1);
}

.table-responsive::-webkit-scrollbar {
  height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
  background: rgba(133, 194, 38, 0.1);
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--secondaryColor), var(--themeColor));
}

/* Table Styles */
.pricing-table {
  border-collapse: separate;
  border-spacing: 0;
}

.pricing-table thead tr {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
}

.pricing-table thead th {
  padding: clamp(0.875rem, 0.75rem + 0.5vw, 1.125rem);
  font-size: clamp(0.8125rem, 0.75rem + 0.25vw, 0.9375rem);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.pricing-table thead th:first-child {
  text-align: left;
  border-radius: clamp(1rem, 0.875rem + 0.5vw, 1.5rem) 0 0 0;
}

.pricing-table thead th:last-child {
  border-radius: 0 clamp(1rem, 0.875rem + 0.5vw, 1.5rem) 0 0;
}

.pricing-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(133, 194, 38, 0.1);
}

.pricing-table tbody tr:hover {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.05), rgba(1, 146, 64, 0.05));
  box-shadow: inset 4px 0 0 0 var(--themeColor);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody td {
  padding: clamp(0.75rem, 0.625rem + 0.5vw, 1rem);
  font-size: clamp(0.75rem, 0.6875rem + 0.25vw, 0.875rem);
  text-align: center;
  white-space: nowrap;
}

.pricing-table tbody td:first-child {
  text-align: left;
}

.pricing-type span {
  transition: color 0.3s ease;
}

.pricing-table tbody tr:hover .pricing-type span {
  color: var(--secondaryColor);
}

.pricing-note {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08), rgba(1, 146, 64, 0.08));
  border-top: 2px solid rgba(133, 194, 38, 0.2);
}

.pricing-note-icon {
  width: clamp(2rem, 1.875rem + 0.5vw, 2.5rem);
  height: clamp(2rem, 1.875rem + 0.5vw, 2.5rem);
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  border-radius: 50%;
  flex-shrink: 0;
}

/* Services Section */
.service-box {
  border: 1px solid rgba(133, 194, 38, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  background: white;
}

.service-box::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  transition: all 0.4s ease;
  z-index: 0;
}

.service-box:hover::before {
  height: 100%;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(133, 194, 38, 0.2);
  border-color: var(--themeColor);
}

.service-icon-box {
  width: clamp(70px, 80px + 1vw, 90px);
  height: clamp(70px, 80px + 1vw, 90px);
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  border-radius: 50%;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.service-icon-box i {
  font-size: clamp(2rem, 2.25rem + 0.5vw, 2.5rem);
  color: white;
  transition: all 0.4s ease;
}

.service-box:hover .service-icon-box {
  background: white;
  transform: scale(1.1);
}

.service-box:hover .service-icon-box i {
  color: var(--themeColor);
}

.service-box h5,
.service-box p {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.service-box:hover h5,
.service-box:hover p {
  color: white;
}

/* Featured Clients Section */
.clients-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
}

.clients-slider-wrapper {
  padding: clamp(1.5rem, 2rem + 1vw, 3rem) 0;
}

.clients-slider-wrapper::before,
.clients-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: clamp(80px, 100px + 2vw, 150px);
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-slider-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #fafbfd 0%, rgba(250, 251, 253, 0.8) 50%, transparent 100%);
}

.clients-slider-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #fafbfd 0%, rgba(250, 251, 253, 0.8) 50%, transparent 100%);
}

.clients-slider {
  gap: 24px;
  animation: slideLogos 30s linear infinite;
  width: max-content;
}

.clients-slider:hover {
  animation-play-state: paused;
}

@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  flex-shrink: 0;
  width: clamp(140px, 160px + 2vw, 200px);
  height: clamp(90px, 100px + 1vw, 120px);
  padding: 12px 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(250, 251, 253, 0.9));
  border: 2px solid rgba(134, 194, 38, 0.37);
  border-radius: clamp(0.875rem, 1rem + 0.25vw, 1.25rem);
  box-shadow: 0 4px 15px rgba(134, 194, 38, 0.247);
  transition: all 0.4s ease;
}

.client-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.client-logo:hover::before {
  opacity: 0.08;
}

.client-logo:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(133, 194, 38, 0.2);
  border-color: var(--themeColor);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08);
}

.form-container {
  z-index: 99;
}

.page-hero.city-inner-bg {
  background: url('../images/png/city-inner-banner-ing.webp') center/cover no-repeat;
}

.page-hero.services-inner-bg {
  background: url('../images/png/service-inner-banner-img.jpg') center/cover no-repeat;
}


/* Auto Slide Animation for Team Cards */
.team-cards-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 0 15px;
}

.team-cards-slider {
  display: flex;
  gap: 1.5rem;
  animation: autoSlideTeam 25s linear infinite;
}

.team-cards-slider:hover {
  animation-play-state: paused;
}

@keyframes autoSlideTeam {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-25% - 1.125rem));
  }
}

.team-card-clone {
  flex: 0 0 calc(25% - 1.125rem);
  max-width: calc(25% - 1.125rem);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .team-card-clone {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }

  @keyframes autoSlideTeam {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-50% - 0.75rem));
    }
  }

  .team-cards-slider {
    animation: autoSlideTeam 20s linear infinite;
  }
}

@media (max-width: 575px) {
  .team-card-clone {
    flex: 0 0 100%;
    max-width: 100%;
  }

  @keyframes autoSlideTeam {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-100% - 1.5rem));
    }
  }

  .team-cards-slider {
    animation: autoSlideTeam 15s linear infinite;
  }
}

/*   Detailed Services Section */

.detailed-services-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 50%, #ffffff 100%);
  padding: clamp(3rem, 4rem + 2vw, 6rem) 0;
}

.detailed-services-section::before {
  content: '';
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(133, 194, 38, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(1, 146, 64, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.service-detail-badge {
  padding: clamp(0.5rem, 0.625rem + 0.25vw, 0.75rem) clamp(1rem, 1.25rem + 0.5vw, 1.5rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1), rgba(1, 146, 64, 0.1));
  border-radius: clamp(1.5rem, 1.75rem + 0.5vw, 2rem);
  border: 1px solid rgba(133, 194, 38, 0.2);
  color: var(--secondaryColor);
  transition: all 0.3s ease;
}

.service-detail-badge i {
  color: var(--themeColor);
}

.service-detail-title {
  color: var(--primaryColor);
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.service-detail-desc {
  line-height: 1.7;
  color: #666;
}

.service-detail-image {
  border-radius: clamp(1rem, 1.25rem + 0.5vw, 1.5rem);
  box-shadow: 0 10px 40px rgba(41, 20, 106, 0.1);
  transition: all 0.4s ease;
  height: clamp(300px, 320px + 2vw, 350px);
}

.service-detail-image::before {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1), rgba(1, 146, 64, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-detail-image:hover::before {
  opacity: 1;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-detail-image:hover img {
  transform: scale(1.08);
}

.service-detail-image:hover {
  box-shadow: 0 20px 60px rgba(133, 194, 38, 0.2);
}

/* Service Detail Buttons - New Design */
.btn-know-more,
.btn-get-quote-service {
  padding: clamp(0.5rem, 0.625rem + 0.15vw, 0.75rem) clamp(1rem, 1.25rem + 0.3vw, 1.5rem);
  font-weight: 600;
  font-size: clamp(0.75rem, 0.8125rem + 0.1vw, 0.875rem);
  border-radius: clamp(0.5rem, 0.5rem + 0.15vw, 0.625rem);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-know-more {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: white;
}

.btn-know-more:hover {
  background: linear-gradient(135deg, var(--secondaryColor) 0%, var(--themeColor) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.3);
}

.btn-know-more:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.2);
}

.btn-know-more i {
  transition: transform 0.3s ease;
}

.btn-know-more:hover i {
  transform: translateX(5px);
}

.btn-get-quote-service {
  background: white;
  color: var(--secondaryColor);
  border: 2px solid var(--themeColor);
}

.btn-get-quote-service:hover {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.3);
}

.btn-get-quote-service:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.2);
}

.btn-get-quote-service i {
  transition: transform 0.3s ease;
}

.btn-get-quote-service:hover i {
  transform: scale(1.15);
}

.btn-get-quote-service i {
  transition: transform 0.3s ease;
}

.btn-get-quote-service:hover i {
  transform: scale(1.1);
}


/* Services Grid Section Header */
.services-grid-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 50%, #ffffff 100%);
  padding: clamp(3rem, 4rem + 2vw, 6rem) 0;
}

.services-grid-badge-wrapper {
  animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-grid-badge {
  padding: clamp(0.5rem, 0.625rem + 0.25vw, 0.75rem) clamp(1.25rem, 1.5rem + 0.5vw, 2rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1), rgba(1, 146, 64, 0.1));
  border-radius: clamp(1.5rem, 2rem + 0.5vw, 2.5rem);
  border: 2px solid rgba(133, 194, 38, 0.3);
  color: var(--secondaryColor);
  font-size: clamp(0.75rem, 0.8125rem + 0.125vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.services-grid-badge:hover {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.15), rgba(1, 146, 64, 0.15));
  border-color: rgba(133, 194, 38, 0.5);
  transform: translateY(-2px);
}

.services-grid-badge i {
  color: var(--themeColor);
  font-size: clamp(0.875rem, 1rem + 0.125vw, 1.125rem);
}

.services-grid-heading {
  font-size: clamp(1.75rem, 2rem + 1vw, 2.75rem);
  color: var(--primaryColor);
  line-height: 1.3;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-grid-highlight {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.services-grid-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 2px;
  opacity: 0.3;
}

.services-grid-desc {
  font-size: clamp(0.9375rem, 1rem + 0.125vw, 1.0625rem);
  line-height: 1.7;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 1s ease-out 0.4s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



/* Hero Section for Video Page */
.page-hero.video-bg {
  background: url('../images/png/video-banner-img.png') center/cover no-repeat;
}

.video-gallery-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  padding: clamp(4rem, 3.5rem + 2vw, 6rem) 0;
  position: relative;
}

.video-page-card {
  background: var(--whiteColor);
  border-radius: clamp(0.75rem, 0.875rem, 1rem);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.video-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.video-page-thumbnail-wrapper {
  height: clamp(180px, 200px, 220px);
  border-radius: clamp(0.75rem, 0.875rem, 1rem) clamp(0.75rem, 0.875rem, 1rem) 0 0;
}

.video-thumbnail {
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-page-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.video-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: clamp(0.75rem, 0.875rem, 1rem) clamp(0.75rem, 0.875rem, 1rem) 0 0;
}

.video-page-card:hover .video-overlay {
  opacity: 0.7;
}

.play-button {
  width: clamp(50px, 55px, 60px);
  height: clamp(50px, 55px, 60px);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(133, 194, 38, 0.7);
  }

  50% {
    box-shadow: 0 0 0 15px rgba(133, 194, 38, 0);
  }
}

.play-button:hover {
  background: var(--themeColor);
  transform: scale(1.1);
  animation: none;
}

.play-button svg {
  width: clamp(18px, 20px, 22px);
  height: clamp(18px, 20px, 22px);
  fill: var(--primaryColor);
  transition: fill 0.3s ease;
  margin-left: 3px;
}

.play-button:hover svg {
  fill: var(--whiteColor);
}

.video-duration-badge {
  bottom: clamp(10px, 12px, 14px);
  right: clamp(10px, 12px, 14px);
  background: rgba(0, 0, 0, 0.75);
  color: var(--whiteColor);
  padding: clamp(4px, 5px, 6px) clamp(8px, 10px, 12px);
  border-radius: clamp(4px, 5px, 6px);
  z-index: 5;
  backdrop-filter: blur(4px);
}

.video-content {
  padding: clamp(1rem, 1.25rem, 1.5rem);
}

.video-category-badge {
  background: rgba(133, 194, 38, 0.1);
  color: var(--secondaryColor);
  padding: clamp(4px, 5px, 6px) clamp(10px, 12px, 14px);
  border-radius: clamp(12px, 14px, 16px);
  border: 1px solid rgba(133, 194, 38, 0.2);
  transition: all 0.3s ease;
}

.video-card:hover .video-category-badge {
  background: var(--themeColor);
  color: var(--whiteColor);
  border-color: transparent;
}

.video-title {
  color: var(--primaryColor);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.video-card:hover .video-title {
  color: var(--secondaryColor);
}

.video-description {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  padding-top: clamp(8px, 10px, 12px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.video-meta span {
  color: rgba(0, 0, 0, 0.5);
}

.video-meta i {
  color: rgba(0, 0, 0, 0.4);
}


/* Hero Section Background */
.page-hero.blog-inner-bg {
  background: url('../images/png/DeclutterBeforeMoving.jpg') center/cover no-repeat;
}



/* ========================================
   Blog Content Section Styles - Premium Design
   ======================================== */

.blog-content-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 50%, #ffffff 100%);
  padding: clamp(3rem, 4rem + 2vw, 6rem) 0;
  position: relative;
}

.blog-content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(133, 194, 38, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(1, 146, 64, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Blog Meta Card - Premium */
.blog-meta-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(250, 251, 253, 0.95));
  border: 2px solid rgba(133, 194, 38, 0.15);
  box-shadow: 0 8px 30px rgba(41, 20, 106, 0.08);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.6s ease-out;
  transition: all 0.4s ease;
}

.blog-meta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(133, 194, 38, 0.15);
  border-color: rgba(133, 194, 38, 0.3);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.meta-icon-circle {
  width: clamp(2.5rem, 2.75rem + 0.5vw, 3rem);
  height: clamp(2.5rem, 2.75rem + 0.5vw, 3rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1), rgba(1, 146, 64, 0.1));
  border-radius: 50%;
  transition: all 0.3s ease;
}

.blog-meta-card:hover .meta-icon-circle {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  transform: scale(1.1) rotate(360deg);
}

.meta-icon-circle i {
  color: var(--themeColor);
  font-size: clamp(1rem, 1.125rem + 0.125vw, 1.25rem);
  transition: color 0.3s ease;
}

.blog-meta-card:hover .meta-icon-circle i {
  color: white;
}

.meta-label {
  color: #999;
  letter-spacing: 0.5px;
}

.blog-inner-category-badge {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  color: white;
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.3);
  transition: all 0.3s ease;
}

.blog-inner-category-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(133, 194, 38, 0.4);
}

/* Featured Image - Premium */
.blog-featured-image-wrapper {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-featured-image {
  box-shadow: 0 15px 50px rgba(41, 20, 106, 0.12);
  transition: all 0.5s ease;
}

.blog-featured-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(133, 194, 38, 0.2);
}

.blog-featured-image img {
  transition: transform 0.6s ease;
  height: clamp(350px, 400px + 5vw, 500px);
  object-fit: cover;
}

.blog-featured-image:hover img {
  transform: scale(1.08);
}

.blog-image-overlay {
  top: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-featured-image:hover .blog-image-overlay {
  opacity: 1;
}

.blog-views-badge {
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(133, 194, 38, 0.2);
  color: var(--secondaryColor);
  animation: fadeIn 1s ease-out 1s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.blog-views-badge i {
  color: var(--themeColor);
}

/* Blog Title - Premium */
.blog-detail-title {
  color: var(--primaryColor);
  line-height: 1.3;
  letter-spacing: -0.5px;
  animation: fadeIn 1s ease-out 0.4s both;
  padding-bottom: 1rem;
}

.title-underline {
  bottom: 0;
  left: 0;
  width: clamp(60px, 80px + 2vw, 100px);
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 2px;
  animation: expandWidth 0.8s ease-out 0.6s both;
}

@keyframes expandWidth {
  from {
    width: 0;
  }

  to {
    width: clamp(60px, 80px + 2vw, 100px);
  }
}

/* Blog Intro Box - Premium */
.blog-intro-box {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.05), rgba(1, 146, 64, 0.05));
  border: 2px solid rgba(133, 194, 38, 0.15);
  border-left: 5px solid var(--themeColor);
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.08);
  animation: fadeIn 1.2s ease-out 0.6s both;
  transition: all 0.3s ease;
}

.content-section {
  animation: fadeIn 1.4s ease-out 0.8s both;
}

.content-heading {
  color: var(--primaryColor);
  transition: all 0.3s ease;
}

.heading-number {
  width: clamp(2.25rem, 2.5rem + 0.25vw, 2.75rem);
  height: clamp(2.25rem, 2.5rem + 0.25vw, 2.75rem);
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  color: white;
  font-size: clamp(0.875rem, 0.9375rem + 0.0625vw, 1rem);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(133, 194, 38, 0.3);
  transition: all 0.3s ease;
}

.content-heading:hover .heading-number {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 6px 30px rgba(133, 194, 38, 0.5);
}

.content-section p {
  color: #555;
}

/* Highlight Box - Redesigned */
.blog-highlight-box {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.06), rgba(1, 146, 64, 0.06));
  border: 2px solid rgba(133, 194, 38, 0.2);
  border-left: 5px solid var(--themeColor);
  box-shadow: 0 8px 30px rgba(133, 194, 38, 0.1);
  animation: fadeIn 1.6s ease-out 1s both;
}

.highlight-icon-circle {
  width: clamp(2.75rem, 3rem + 0.25vw, 3.25rem);
  height: clamp(2.75rem, 3rem + 0.25vw, 3.25rem);
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  box-shadow: 0 6px 20px rgba(133, 194, 38, 0.3);
}

.highlight-icon-circle i {
  color: white;
}

.highlight-badge {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  color: white;
  letter-spacing: 0.8px;
  box-shadow: 0 3px 12px rgba(133, 194, 38, 0.25);
}

.highlight-content h3 {
  color: var(--secondaryColor);
}

.highlight-content p {
  color: #666;
  line-height: 1.7;
}

.blog-list {
  list-style: disc;
  padding-left: 1.5rem;
}

.blog-list li {
  color: #555;
}

.blog-footer-section {
  border-top: 1px solid rgba(133, 194, 38, 0.15);
  animation: fadeIn 1.8s ease-out 1.2s both;
}

.blog-tags-wrapper h4,
.blog-share-wrapper h4 {
  color: var(--primaryColor);
}

.blog-tags-wrapper h4 i,
.blog-share-wrapper h4 i {
  color: var(--themeColor);
}

.blog-tag {
  padding: clamp(0.375rem, 0.4375rem + 0.0625vw, 0.5rem) clamp(0.75rem, 0.875rem + 0.125vw, 1rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08), rgba(1, 146, 64, 0.08));
  color: var(--secondaryColor);
  border-radius: clamp(1rem, 1.125rem + 0.125vw, 1.25rem);
  border: 1px solid rgba(133, 194, 38, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(133, 194, 38, 0.08);
}

.blog-tag:hover {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.25);
}

.blog-share-wrapper .footer-icon {
  width: clamp(2.25rem, 2.5rem + 0.25vw, 2.75rem);
  height: clamp(2.25rem, 2.5rem + 0.25vw, 2.75rem);
  border-radius: 50%;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08), rgba(1, 146, 64, 0.08));
  border: 1px solid rgba(133, 194, 38, 0.2);
  backdrop-filter: blur(10px);
}

.blog-share-wrapper .footer-icon img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(93%) saturate(500%) hue-rotate(66deg) brightness(95%) contrast(89%);
  width: clamp(0.875rem, 1rem + 0.125vw, 1.125rem);
  height: clamp(0.875rem, 1rem + 0.125vw, 1.125rem);
  object-fit: contain;
  transition: all 0.3s ease;
}

.blog-share-wrapper .footer-icon:hover {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-color: var(--themeColor);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 18px rgba(133, 194, 38, 0.3);
}

.blog-share-wrapper .footer-icon:hover img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

.blog-social-btn {
  width: clamp(2rem, 2.25rem + 0.125vw, 2.5rem);
  height: clamp(2rem, 2.25rem + 0.125vw, 2.5rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08), rgba(1, 146, 64, 0.08));
  border: 1px solid rgba(133, 194, 38, 0.2);
  color: var(--secondaryColor);
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(133, 194, 38, 0.08);
}

.blog-social-btn:hover {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  color: white;
  border-color: transparent;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.25);
}


/* ========================================
   Related Posts Section
   ======================================== */

.related-posts-section {
  background: #fafbfd;
}

.related-post-card {
  background: white;
  border-radius: clamp(0.75rem, 1rem + 0.25vw, 1.25rem);
  padding: clamp(0.75rem, 1rem + 0.25vw, 1.25rem);
  border: 1px solid rgba(133, 194, 38, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(133, 194, 38, 0.15);
  border-color: rgba(133, 194, 38, 0.3);
}

.related-post-image {
  height: clamp(180px, 200px + 2vw, 220px);
}

.related-post-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-post-card:hover .related-post-image img {
  transform: scale(1.1);
}

.related-post-content h3 a {
  color: var(--primaryColor);
  transition: color 0.3s ease;
}

.related-post-content h3 a:hover {
  color: var(--secondaryColor);
}

.related-post-link {
  color: var(--secondaryColor);
  transition: all 0.3s ease;
}

.related-post-link:hover {
  color: var(--themeColor);
  gap: 0.5rem !important;
}

.related-post-link i {
  transition: transform 0.3s ease;
}

.related-post-link:hover i {
  transform: translateX(3px);
}


/* ========================================
   Author Bio Section
   ======================================== */

.author-bio-section {
  background: white;
}

.author-bio-card {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.05), rgba(1, 146, 64, 0.05));
  border: 1px solid rgba(133, 194, 38, 0.15);
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.08);
}

.author-avatar {
  width: clamp(80px, 90px + 1vw, 100px);
  height: clamp(80px, 90px + 1vw, 100px);
  border: 3px solid var(--themeColor);
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.2);
}

.author-social-link {
  width: clamp(1.75rem, 2rem + 0.125vw, 2.25rem);
  height: clamp(1.75rem, 2rem + 0.125vw, 2.25rem);
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1), rgba(1, 146, 64, 0.1));
  border: 1px solid rgba(133, 194, 38, 0.2);
  color: var(--secondaryColor);
  transition: all 0.3s ease;
  text-decoration: none;
}

.author-social-link:hover {
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

/* ========================================
   Newsletter Section - Premium Design with Animations
   ======================================== */

.newsletter-section-premium {
  position: relative;
}

/* Animated Background Circles */
.newsletter-bg-circle {
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  z-index: 0;
}

.newsletter-bg-circle.circle-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(133, 194, 38, 0.15), transparent);
  top: -150px;
  left: -100px;
  animation: float-1 20s ease-in-out infinite;
}

.newsletter-bg-circle.circle-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99, 163, 0, 0.12), transparent);
  bottom: -100px;
  right: -80px;
  animation: float-2 18s ease-in-out infinite;
}

.newsletter-bg-circle.circle-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.1), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-3 22s ease-in-out infinite;
}


@keyframes float-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -30px) scale(1.1);
  }

  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

@keyframes float-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-25px, 25px) scale(1.05);
  }

  66% {
    transform: translate(20px, -20px) scale(0.95);
  }
}

@keyframes float-3 {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
  }
}


/* Newsletter Card */
.newsletter-card-premium {
  background: linear-gradient(135deg, #85c226 0%, #7cb342 50%, #689f38 100%);
  box-shadow: 0 25px 70px rgba(133, 194, 38, 0.35);
  z-index: 1;
}

.newsletter-gradient-overlay {
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent);
  z-index: 0;
}

.newsletter-glow-effect {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  top: -150px;
  right: -150px;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Floating Particles */
.newsletter-particle {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  z-index: 1;
}

.newsletter-particle.particle-1 {
  top: 15%;
  left: 10%;
  animation: particle-float-1 8s ease-in-out infinite;
}

.newsletter-particle.particle-2 {
  top: 25%;
  right: 15%;
  animation: particle-float-2 10s ease-in-out infinite;
}

.newsletter-particle.particle-3 {
  bottom: 20%;
  left: 20%;
  animation: particle-float-3 12s ease-in-out infinite;
}

.newsletter-particle.particle-4 {
  bottom: 30%;
  right: 25%;
  animation: particle-float-4 9s ease-in-out infinite;
}

.newsletter-particle.particle-5 {
  top: 50%;
  left: 50%;
  animation: particle-float-5 11s ease-in-out infinite;
}

@keyframes particle-float-1 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.6;
  }

  50% {
    transform: translate(20px, -30px);
    opacity: 1;
  }
}

@keyframes particle-float-2 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.5;
  }

  50% {
    transform: translate(-25px, 20px);
    opacity: 1;
  }
}

@keyframes particle-float-3 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.7;
  }

  50% {
    transform: translate(15px, 25px);
    opacity: 1;
  }
}

@keyframes particle-float-4 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.6;
  }

  50% {
    transform: translate(-20px, -20px);
    opacity: 1;
  }
}

@keyframes particle-float-5 {

  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.5;
  }

  50% {
    transform: translate(10px, -15px);
    opacity: 1;
  }
}

/* Icon with Rings */
.newsletter-icon-wrapper {
  position: relative;
}

.icon-ring {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.icon-ring.ring-1 {
  animation: ring-pulse-1 3s ease-in-out infinite;
}

.icon-ring.ring-2 {
  animation: ring-pulse-2 3s ease-in-out infinite 0.5s;
}

@keyframes ring-pulse-1 {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes ring-pulse-2 {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.newsletter-icon-premium {
  width: clamp(4.5rem, 5.5rem + 1vw, 6rem);
  height: clamp(4.5rem, 5.5rem + 1vw, 6rem);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.4);
  z-index: 2;
  animation: icon-bounce 3s ease-in-out infinite;
}

@keyframes icon-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.newsletter-icon-premium i {
  color: white;
  font-size: clamp(1.75rem, 2.25rem + 0.5vw, 2.75rem);
}

.newsletter-desc {
  color: rgba(255, 255, 255, 0.95);
}

/* Form Styling */
.newsletter-input-wrapper {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-input-wrapper:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}


.newsletter-input-premium {
  flex: 1;
}

.newsletter-input-premium:focus {
  outline: none;
  box-shadow: none;
}

.newsletter-input-premium::placeholder {
  color: #9e9e9e;
}

.newsletter-btn-premium {
  background: linear-gradient(135deg, #689f38, #558b2f);
  color: white;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-btn-premium:hover {
  background: linear-gradient(135deg, #558b2f, #33691e);
  transform: translateX(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.newsletter-btn-premium i {
  transition: transform 0.3s ease;
}

.newsletter-btn-premium:hover i {
  transform: translateX(4px);
}

.newsletter-privacy {
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.3);
}

/* ========================================
   Related Posts Section - Premium Design
   ======================================== */

.related-posts-section {
  background: #fafbfd;
}

.related-posts-bg-shape {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.05), rgba(99, 163, 0, 0.05));
  border-radius: 50%;
  top: -100px;
  right: -100px;
  filter: blur(80px);
  z-index: 0;
}

.related-post-card-premium {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.related-post-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(133, 194, 38, 0.2);
}

.related-post-image-wrapper {
  height: clamp(180px, 200px + 2vw, 220px);
}

.related-post-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.related-post-card-premium:hover .related-post-image-wrapper img {
  transform: scale(1.08);
}

.related-post-overlay {
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.related-post-card-premium:hover .related-post-overlay {
  opacity: 1;
}

.related-post-category {
  top: 1rem;
  left: 1rem;
  background: rgba(133, 194, 38, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.related-post-content-premium {
  background: white;
}

.related-post-date-premium,
.related-post-read-time {
  color: #6c757d;
}

.related-post-date-premium i,
.related-post-read-time i {
  color: var(--themeColor);
}

.related-post-title-link {
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.related-post-title-link:hover {
  color: var(--themeColor);
}

.related-post-link-premium {
  color: var(--themeColor);
  transition: all 0.3s ease;
}

.related-post-link-premium:hover {
  color: var(--secondaryColor);
  gap: 0.75rem !important;
}

.related-post-link-premium i {
  transition: transform 0.3s ease;
}

.related-post-link-premium:hover i {
  transform: translateX(4px);
}

.input-icon-wrapper {
  left: 24px;
}

/* Mobile Responsive Fixes for Newsletter */
@media (max-width: 767px) {
  .newsletter-section-premium {
    padding: 3rem 0 !important;
  }

  .newsletter-card-premium {
    padding: 2.5rem 1.5rem !important;
  }

  .newsletter-icon-premium {
    width: 4.5rem !important;
    height: 4.5rem !important;
  }

  .newsletter-icon-premium i {
    font-size: 2rem !important;
  }

  .icon-ring {
    display: none;
  }

  .newsletter-section-premium h2 {
    font-size: 1.5rem !important;
    line-height: 1.3 !important;
  }

  .newsletter-desc {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
  }



  .newsletter-privacy {
    font-size: 0.75rem !important;
  }


  .newsletter-divider {
    display: none;
  }

  /* Hide some background elements on mobile for performance */
  .newsletter-floating-shape,
  .newsletter-particle {
    display: none;
  }

  .newsletter-bg-circle {
    filter: blur(60px);
    opacity: 0.4;
  }

  .newsletter-glow-effect {
    display: none;
  }
}

@media (max-width: 575px) {
  .newsletter-card-premium {
    padding: 2rem 1.25rem !important;
  }

  .newsletter-icon-premium {
    width: 4rem !important;
    height: 4rem !important;
  }

  .newsletter-icon-premium i {
    font-size: 1.75rem !important;
  }

  .newsletter-section-premium h2 {
    font-size: 1.375rem !important;
  }

  .newsletter-desc {
    font-size: 0.8125rem !important;
  }

}



/* ========================================
   CITY INNER PAGE - CITY LINKS SECTION
======================================== */

.city-links-section {
  position: relative;
}

.city-links-grid {
  position: relative;
  overflow: hidden;
}

.city-links-grid::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.05) 0%, rgba(1, 146, 64, 0.05) 100%);
  border-radius: 50%;
  z-index: 0;
}

.city-links-grid::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(41, 20, 106, 0.03) 0%, rgba(133, 194, 38, 0.03) 100%);
  border-radius: 50%;
  z-index: 0;
}

.city-links-grid .row {
  position: relative;
  z-index: 1;
}

.city-link-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--textcolor);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.city-link-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(133, 194, 38, 0.05), transparent);
  transition: left 0.5s ease;
}

.city-link-item:hover::before {
  left: 100%;
}

.city-link-item svg {
  flex-shrink: 0;
  color: var(--themeColor);
  transition: transform 0.3s ease;
}

.city-link-item:hover {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.08) 0%, rgba(1, 146, 64, 0.08) 100%);
  border-color: rgba(133, 194, 38, 0.2);
  transform: translateX(5px);
  color: var(--primaryColor);
  box-shadow: 0 2px 8px rgba(133, 194, 38, 0.1);
}

.city-link-item:hover svg {
  transform: translateX(3px);
  color: var(--secondaryColor);
}

.city-link-item span {
  position: relative;
  z-index: 1;
}

.city-highlight {
  font-weight: 600;
  color: var(--primaryColor);
  transition: color 0.3s ease;
}

.city-link-item:hover .city-highlight {
  color: var(--secondaryColor);
}

/* City Links Responsive */
@media (max-width: 767px) {
  .city-link-item {
    padding: 10px 12px;
    font-size: 13px;
  }

  .city-links-grid {
    padding: 1.5rem !important;
  }
}

@media (max-width: 575px) {
  .city-link-item {
    padding: 8px 10px;
    font-size: 12px;
  }

  .city-link-item svg {
    width: 12px;
    height: 12px;
  }
}

/* City Links Animation */
.city-links-grid .col-12 {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.city-links-grid .col-12:nth-child(1) {
  animation-delay: 0.1s;
}

.city-links-grid .col-12:nth-child(2) {
  animation-delay: 0.2s;
}

.city-links-grid .col-12:nth-child(3) {
  animation-delay: 0.3s;
}

/* ========================================
   CITY INNER PAGE - CUSTOMER SUPPORT SECTION
======================================== */

.customer-support-section {
  background: #f8f9fa;
}

.support-main-content {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.support-text-content {
  position: relative;
  z-index: 1;
}

.support-feature-item {
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 8px;
}

.support-feature-item:hover {
  background: rgba(133, 194, 38, 0.05);
  transform: translateX(5px);
}

.support-feature-item svg {
  color: var(--themeColor);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(133, 194, 38, 0.2));
}

/* Contact Info */
.contact-info-item {
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  transform: translateY(-3px);
}

.contact-icon-simple {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-wrapper {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.15) 0%, rgba(1, 146, 64, 0.15) 100%);
  border-radius: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.15);
}

.contact-icon-wrapper svg {
  color: var(--themeColor);
  transition: all 0.3s ease;
}

/* Response Badge */
.response-time-badge {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.3);
}

.quick-response-badge {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.4);
  position: relative;
  overflow: hidden;
}

.quick-response-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* Complaint Process */
.complaint-process-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.complaint-process-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(133, 194, 38, 0.1);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.complaint-process-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(41, 20, 106, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.process-step {
  position: relative;
  padding: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 16px;
}

.process-step:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(133, 194, 38, 0.03);
}

.process-step-simple {
  padding: 20px;
  transition: transform 0.3s ease;
}

.process-step-simple:hover {
  transform: translateY(-5px);
}

.process-step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.4);
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover .process-step-number {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 12px 35px rgba(133, 194, 38, 0.5);
}

.process-step-number::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.process-step-number::after {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 2px solid var(--themeColor);
  opacity: 0;
  animation: ripple 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.15);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.process-number-simple {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 15px rgba(133, 194, 38, 0.3);
}

/* Customer Support Responsive */
@media (max-width: 767px) {

  .support-main-content,
  .complaint-process-wrapper,
  .complaint-process-card {
    padding: 1.5rem !important;
  }

  .process-step-number {
    width: 65px;
    height: 65px;
  }

  .process-step-number span {
    font-size: 22px;
  }

  .process-number-simple {
    width: 60px;
    height: 60px;
  }

  .contact-icon-wrapper {
    width: 50px;
    height: 50px;
  }
}


/* ========================================
   CUSTOMER SUPPORT SECTION - REDESIGNED
======================================== */

.customer-support-redesign {
  background: #f5f5f5;
  position: relative;
}

/* Content Box */
.support-content-box {
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.support-section-title {
  font-size: clamp(1.25rem, 1.375rem + 0.25vw, 1.5rem);
  color: var(--primaryColor);
  font-weight: 700;
  line-height: 1.4;
}

.support-text {
  font-size: clamp(0.9375rem, 1rem, 1.0625rem);
  color: #555;
  line-height: 1.7;
}

.text-highlight {
  color: var(--themeColor);
  font-weight: 600;
}

/* List Styles */
.support-list-title {
  font-size: clamp(1.0625rem, 1.125rem + 0.125vw, 1.25rem);
  color: var(--primaryColor);
  font-weight: 600;
}

.support-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
}

.support-list-item svg {
  flex-shrink: 0;
  stroke: var(--themeColor);
  margin-top: 2px;
}

.support-list-item span {
  font-size: clamp(0.875rem, 0.9375rem, 1rem);
  color: #555;
  line-height: 1.5;
}

/* Contact Section */
.support-contact-section {
  position: relative;
}

.support-contact-title {
  font-size: clamp(1.375rem, 1.5rem + 0.25vw, 1.75rem);
  color: var(--primaryColor);
  font-weight: 700;
}

.contact-method-box {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-method-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(133, 194, 38, 0.3);
}

.contact-icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(133, 194, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.contact-method-box:hover .contact-icon-circle {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  transform: scale(1.1);
}

.contact-icon-circle svg {
  stroke: var(--themeColor);
  transition: all 0.3s ease;
}

.contact-method-box:hover .contact-icon-circle svg {
  stroke: white;
}

.contact-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-value {
  font-size: clamp(1rem, 1.0625rem + 0.125vw, 1.125rem);
  color: var(--primaryColor);
  font-weight: 700;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
  margin: 0;
}

.contact-value:hover {
  color: var(--themeColor);
}

/* Quick Response Box */
.quick-response-box {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(133, 194, 38, 0.3);
}

.quick-response-box svg {
  stroke: white;
}

.quick-response-title {
  font-size: clamp(1.0625rem, 1.125rem + 0.125vw, 1.25rem);
  color: white;
  font-weight: 700;
}

.quick-response-text {
  font-size: clamp(0.875rem, 0.9375rem, 1rem);
  color: white;
  margin: 0;
  opacity: 0.95;
}

/* File Complaint Section */
.file-complaint-section {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.file-complaint-title {
  font-size: clamp(1.375rem, 1.5rem + 0.25vw, 1.75rem);
  color: var(--primaryColor);
  font-weight: 700;
}

.complaint-step-box {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.complaint-step-box:hover {
  transform: translateY(-8px);
}

.step-number-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(133, 194, 38, 0.3);
  transition: all 0.3s ease;
}

.complaint-step-box:hover .step-number-circle {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(133, 194, 38, 0.4);
}

.step-number-circle span {
  font-size: 32px;
  color: white;
  font-weight: 700;
}

.step-title {
  font-size: clamp(1rem, 1.0625rem + 0.125vw, 1.125rem);
  color: var(--primaryColor);
  font-weight: 700;
  margin-bottom: 10px;
}

.step-description {
  font-size: clamp(0.875rem, 0.9375rem, 1rem);
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .support-content-box {
    padding: 2rem !important;
  }

  .file-complaint-section {
    margin-top: 40px;
    padding-top: 40px;
  }
}

@media (max-width: 767px) {
  .support-content-box {
    padding: 1.5rem !important;
  }

  .contact-method-box {
    padding: 15px;
  }

  .contact-icon-circle {
    width: 60px;
    height: 60px;
  }

  .step-number-circle {
    width: 70px;
    height: 70px;
  }

  .step-number-circle span {
    font-size: 28px;
  }

  .quick-response-box {
    padding: 20px;
  }
}


/* ========================================
   LATEST BLOG SECTION
======================================== */

.latest-blog-section {
  background: #f8f9fa;
}

/* Blog Card */
.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(133, 194, 38, 0.3);
}

/* Blog Image */
.blog-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image {
  transform: scale(1.1);
}

.blog-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.3);
}

/* Blog Content */
.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #666;
}

.blog-date svg,
.blog-read-time svg {
  stroke: var(--themeColor);
  flex-shrink: 0;
}

.blog-title {
  font-size: clamp(1.0625rem, 1.125rem + 0.125vw, 1.25rem);
  color: var(--primaryColor);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
  color: var(--themeColor);
}

.blog-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--themeColor);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-read-more svg {
  stroke: var(--themeColor);
  transition: transform 0.3s ease;
}

.blog-read-more:hover {
  color: var(--secondaryColor);
  gap: 10px;
}

.blog-read-more:hover svg {
  stroke: var(--secondaryColor);
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .blog-image-wrapper {
    height: 200px;
  }

  .blog-content {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .blog-image-wrapper {
    height: 180px;
  }

  .blog-content {
    padding: 18px;
  }

  .blog-title {
    font-size: 1.0625rem;
  }
}


/* Payment Form Section */
.payment-form-section {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 50%, #ffffff 100%);
  padding: clamp(3rem, 4rem + 2vw, 6rem) 0;
  position: relative;
}

.payment-form-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(133, 194, 38, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(1, 146, 64, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.payment-form-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbfd 100%);
  border-radius: clamp(1.25rem, 1.5rem + 0.5vw, 2rem);
  padding: clamp(2rem, 3rem + 1.5vw, 3rem);
  box-shadow: 0 10px 40px rgba(41, 20, 106, 0.08);
  border: 1px solid rgba(41, 20, 106, 0.05);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.payment-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: clamp(1.25rem, 1.5rem + 0.5vw, 2rem) clamp(1.25rem, 1.5rem + 0.5vw, 2rem) 0 0;
}

.payment-form-card:hover {
  box-shadow: 0 20px 60px rgba(41, 20, 106, 0.12);
  transform: translateY(-5px);
}

.payment-form-header {
  padding-bottom: clamp(1.5rem, 2rem + 0.5vw, 2.5rem);
  border-bottom: 2px solid rgba(133, 194, 38, 0.1);
  margin-bottom: clamp(2rem, 2.5rem + 0.5vw, 3rem);
}

.payment-form-title {
  font-size: clamp(1.75rem, 2rem + 0.75vw, 2.5rem);
  color: var(--primaryColor);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.payment-form-subtitle {
  font-size: clamp(0.9375rem, 1rem + 0.125vw, 1.0625rem);
  color: #666;
  margin-bottom: 0;
  line-height: 1.6;
}

.payment-type-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(140px, 150px + 2vw, 180px), 1fr));
  gap: clamp(0.875rem, 1rem + 0.25vw, 1.25rem);
}

.payment-radio {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
}

.payment-radio .form-check-input {
  width: 1.35rem;
  height: 1.35rem;
  border: 2px solid rgba(133, 194, 38, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 0;
  margin-right: 0;
  flex-shrink: 0;
}

.payment-radio .form-check-input:checked {
  background-color: var(--themeColor);
  border-color: var(--themeColor);
  box-shadow: 0 0 0 4px rgba(133, 194, 38, 0.15);
}

.payment-radio .form-check-input:focus {
  border-color: var(--themeColor);
  box-shadow: 0 0 0 0.25rem rgba(133, 194, 38, 0.25);
}

.payment-radio .form-check-input:hover {
  border-color: var(--themeColor);
  transform: scale(1.05);
}

.payment-radio .form-check-label {
  font-size: clamp(0.9375rem, 1rem + 0.125vw, 1.0625rem);
  color: var(--primaryColor);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0.625rem;
  line-height: 1.35rem;
  padding-top: 0;
  margin-bottom: 0;
}

.payment-radio .form-check-input:checked~.form-check-label {
  color: var(--secondaryColor);
  font-weight: 600;
}

.payment-radio:hover .form-check-label {
  color: var(--secondaryColor);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .payment-type-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .payment-type-options {
    grid-template-columns: 1fr;
  }

  .payment-form-card {
    padding: clamp(1.5rem, 2rem + 1vw, 2.5rem);
  }
}


/* Contact Page Premium Design */
.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
  position: relative;
}

/* Premium Contact Cards - Compact & Elegant */
.premium-contact-card {
  background: linear-gradient(145deg, #ffffff 0%, rgba(133, 194, 38, 0.04) 50%, #ffffff 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(41, 20, 106, 0.08), 0 2px 8px rgba(133, 194, 38, 0.12);
  border: 1px solid rgba(133, 194, 38, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.premium-contact-card:hover {
  box-shadow: 0 8px 35px rgba(133, 194, 38, 0.2), 0 4px 15px rgba(41, 20, 106, 0.1);
  border-color: rgba(133, 194, 38, 0.3);
  transform: translateY(-5px);
}

.premium-card-header {
  background: linear-gradient(135deg, rgba(133, 194, 38, 0.1) 0%, rgba(1, 146, 64, 0.08) 100%);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.premium-card-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  animation: headerShine 4s infinite;
}

@keyframes headerShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.premium-card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(133, 194, 38, 0.35);
  transition: all 0.4s ease;
  position: relative;
}

.premium-card-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--themeColor), var(--secondaryColor));
  opacity: 0.2;
  filter: blur(6px);
  z-index: -1;
}

.premium-contact-card:hover .premium-card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(133, 194, 38, 0.5);
}

.premium-card-icon i {
  font-size: 19px;
  color: var(--whiteColor);
}

.premium-card-header h3 {
  color: var(--primaryColor);
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.premium-contact-card:hover .premium-card-header h3 {
  color: var(--secondaryColor);
  transform: translateX(3px);
}

.premium-card-body {
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(133, 194, 38, 0.02) 100%);
  position: relative;
}

.premium-card-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--themeColor) 0%, var(--secondaryColor) 50%, var(--themeColor) 100%);
  background-size: 200% 100%;
  animation: shimmerTop 3s ease-in-out infinite;
}

@keyframes shimmerTop {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.premium-card-body p {
  margin-bottom: 7px;
  line-height: 1.5;
  color: var(--textcolor);
}

.premium-card-body p:last-child {
  margin-bottom: 0;
}

.premium-card-body strong {
  color: var(--primaryColor);
  font-weight: 600;
}

.contact-info-link {
  color: var(--textcolor);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-info-link i {
  font-size: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-link:hover {
  color: var(--secondaryColor);
}

.contact-info-link:hover i {
  transform: scale(1.2) rotate(10deg);
}

.contact-info-link span {
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .premium-card-header {
    padding: 12px 16px;
  }

  .premium-card-icon {
    width: 38px;
    height: 38px;
  }

  .premium-card-icon i {
    font-size: 17px;
  }

  .premium-card-header h3 {
    font-size: 16px;
  }

  .premium-card-body {
    padding: 12px 16px;
  }
}

/* Network Cards - Theme Color Design */
.network-card {
  background: linear-gradient(145deg, #ffffff 0%, rgba(133, 194, 38, 0.03) 100%);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(41, 20, 106, 0.1);
  border: 1px solid rgba(133, 194, 38, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.network-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.15;
  transition: all 0.4s ease;
}

.network-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(133, 194, 38, 0.25);
  border-color: rgba(133, 194, 38, 0.4);
}

.network-card:hover::before {
  opacity: 0.25;
  width: 120px;
  height: 120px;
}

.network-card-header {
  background: linear-gradient(135deg, var(--themeColor) 0%, var(--secondaryColor) 100%);
  padding: 16px 20px;
  position: relative;
  overflow: hidden;
}

.network-card-header::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  animation: headerShine 4s infinite;
}

.network-card-header h3 {
  color: var(--whiteColor);
  font-weight: 700;
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.network-card-body {
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(133, 194, 38, 0.02) 100%);
}

.network-card-body p {
  color: var(--textcolor);
  line-height: 1.6;
}

.network-card-body .semibold {
  color: var(--primaryColor);
  border-top: 2px solid rgba(133, 194, 38, 0.2);
  padding-top: 12px;
  margin-top: 8px;
}

.network-card-body p:last-child {
  color: var(--secondaryColor);
  font-weight: 500;
}

@media (max-width: 768px) {
  .network-card-header {
    padding: 14px 18px;
  }

  .network-card-body {
    padding: 18px;
  }
  
  .network-card::before {
    width: 80px;
    height: 80px;
  }
}
.contact-container{
  gap: clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
}