* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  background: #fff;
}

/* ================= HEADER ================= */
.ap24-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  height: 70px;
}

.ap24-header-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ap24-logo {
  flex: 1;
}

.ap24-logo img {
  width: 144px;
  height: auto;
  cursor: pointer;
}

.ap24-nav {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex: 2;
}

.ap24-nav a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.ap24-nav a:hover {
  color: #e10600;
}

.ap24-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #000;
  transition: 0.3s ease;
}

.ap24-nav a:hover::after {
  width: 100%;
}

.ap24-auth-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex: 1;
}

.ap24-btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  border: 2px solid #000;
  background: #fff;
}

.ap24-depth-btn {
  box-shadow: 0 6px 0 #000;
}

.ap24-depth-btn:hover {
  transform: translateY(6px);
  box-shadow: none;
}

.ap24-login-btn:hover {
  background: #ffffff;
}

.ap24-signup-btn {
  background: #ffffff;
  color: #0a0000;
}

.ap24-signup-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* ================= HERO ================= */
.ap24-hero-section {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f0fdfa 0%, #e8f4ff 100%);
	
}

.ap24-hero-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
}

.ap24-hero-left {
  flex: 1;
  max-width: 600px;
}

.ap24-hero-left h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  color: #111;
}

.ap24-story {
  margin-top: 20px;
  font-family: 'Brittany Signature';
  font-size: 100px;
  color: #e10600;
  transform: rotate(-26deg);
  display: inline-block;
  font-weight: 100;
  margin-left: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.ap24-hero-left p {
  margin-top: 24px;
  max-width: 480px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.ap24-enroll-btn {
  margin-top: 32px;
  padding: 12px 26px;
  border-radius: 30px;
  border: 2px solid #000;
  background: #fff;
  box-shadow: 0 6px 0 #000;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ap24-enroll-btn:hover {
  transform: translateY(6px);
  box-shadow: none;
  background: #ffffff;
}

/* ================= FORM ================= */
.ap24-hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.ap24-form-card {
  width: 420px;
  padding: 28px;
  border-radius: 22px;
  border: 2px solid #0000001e;
  background: #fff;
  box-shadow: 10px 10px 0px rgba(94, 94, 94, 0.051);
}

.ap24-form-card h3 {
  text-align: center;
  margin-bottom: 22px;
  font-size: 22px;
  color: #111;
  font-weight: 600;
}

.ap24-form-card label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  color: #333;
  font-weight: 500;
}

.ap24-form-card input,
.ap24-form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #999;
  margin-bottom: 16px;
  font-size: 14px;
  transition: border 0.3s ease;
}

.ap24-form-card input:focus,
.ap24-form-card textarea:focus {
  outline: none;
  border-color: #10c3b8;
  box-shadow: 0 0 0 2px rgba(16, 195, 184, 0.1);
}

.ap24-phone-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.ap24-phone-row .ap24-country-code {
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #999;
  font-size: 14px;
  background: #fff;
  font-weight: 500;
}

.ap24-phone-row input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #999;
  font-size: 14px;
  margin-bottom: 0;
}

.ap24-form-card textarea {
  height: 90px;
  resize: none;
}

.ap24-form-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: #10c3b8;
  color: #fff;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.ap24-form-btn:hover {
  background: #0da79e;
}


.ap24-role-card-link { text-decoration: none; color: inherit; display: block; }

.ap24-role-card img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; }

.ap24-role-card-placeholder {
  width: 220px;
  height: 160px;
  border: 1px dashed #ccc;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#777;
}





/* ================= TRUSTED SECTION ================= */
.ap24-trusted-section {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.ap24-trusted-section h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.ap24-logo-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.ap24-logo-slider {
  display: flex;
  gap: 50px;
  animation: ap24-scroll 20s linear infinite;
}

.ap24-logo-slider img {
  width: 180px;
  height: 150px;
  width: auto;
  flex-shrink: 0;
}

@keyframes ap24-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ap24-logo-slider-wrapper::before,
.ap24-logo-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
}

.ap24-logo-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.ap24-logo-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

/* ================= SUPPORT SECTION ================= */
.ap24-support-section {
  background: #ffffff;
  padding: 80px 20px;
  position: relative;
}

.ap24-container {
  max-width: 1200px;
  margin: auto;
}

.ap24-section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
  position: relative;
}

.ap24-section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.ap24-section-header p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

.ap24-floating-badge {
  position: absolute;
  left: -20px;
  top: -40px;
  padding: 10px 16px;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(135deg, #ff6a00, #ee0979, #f23cff) border-box;
  border: 1.5px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  color: #0f172a;
  transform: rotate(-6deg);
}

.ap24-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.ap24-support-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.ap24-support-card .ap24-icon {
  width: 44px;
  height: 44px;
  background: #eafffe;
  color: #ffffff;
  border-radius: 50%;
  border: 1px solid rgba(205, 203, 203, 0.234);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ap24-support-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.ap24-support-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.ap24-support-card a {
  font-size: 14px;
  color: #0ea5e9;
  font-weight: 500;
  text-decoration: none;
}

.ap24-support-card a:hover {
  text-decoration: underline;
}

/* ================= ROLES SECTION ================= */
.ap24-roles-section {
  padding: 0px 0px;
  background: #ffffff;
}

.ap24-roles-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
  position: relative;
}

.ap24-roles-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 15px;
}

.ap24-roles-header p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}

.ap24-roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ap24-role-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 15px 10px;
  text-align: center;
  border: 1px solid #7aa8a9ba;
  transition: all 0.3s ease;
}

.ap24-role-card img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
}

.ap24-role-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}

.ap24-role-card:hover,
.ap24-role-card.ap24-active {
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-6px);
}




/* ==========================================
   SKILLS SECTION – COMPLETE CSS (ISOLATED)
   Namespace: ap24-skills-
========================================== */
/* container */
.ap24-skills-slider {
  position: relative;
  width: 100%;
  margin-top: 40px;
  padding: 0 56px;
  box-sizing: border-box;
}
/* viewport hides overflow */
.ap24-skills-viewport {
  width: 100%;
  overflow: hidden;
}
/* track holds cards horizontally */
.ap24-skills-track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s ease;
  will-change: transform;
}
/* individual card */
.ap24-skills-card {
  position: relative;
  flex: 0 0 260px;
  width: 260px;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
/* image fills card and crops */
.ap24-skills-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* overlay */
.ap24-skills-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.8) 100%
  );
}
/* text */
.ap24-skills-overlay h4 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
/* arrows */
.ap24-skills-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 0 #000;
  transition: all 0.15s ease;
}
/* left arrow */
.ap24-skills-arrow-left {
  left: 0;
}
/* right arrow */
.ap24-skills-arrow-right {
  right: 0;
}
/* press effect */
.ap24-skills-arrow:active {
  transform: translateY(calc(-50% + 4px));
  box-shadow: none;
}
/* hover */
.ap24-skills-arrow:hover {
  background: #f5f5f5;
}
/* MOBILE BEHAVIOR */
@media (max-width: 768px) {
  .ap24-skills-track {
    flex-direction: column;
    transform: none !important;
  }
  .ap24-skills-card {
    width: 100%;
    max-width: 500px;
    height: 240px;
    margin: 0 auto;
  }
  .ap24-skills-arrow {
    display: none;
  }
}






/* ================= PRICING SECTION ================= */
.ap24-pricing-section {
  width: 100%;
  min-height: 100vh;
  margin-top: 50px;
  background: #ffffff;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
}

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

.ap24-pricing-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.ap24-pricing-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ap24-pricing-header p {
  color: #666;
  font-size: 15px;
}

.ap24-pricing-cards {
  display: flex;
  gap: 30px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.ap24-pricing-card {
  width: 350px;
  height: 450px;
  background: #f9f9f9;
  border-radius: 18px;
  padding: 30px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
}

.ap24-pricing-card:hover {
  background: #0f8b84;
  color: #fff;
  transform: translateY(-10px);
}

.ap24-pricing-card:hover .ap24-btn {
  background: #fff;
  color: #0f8b84;
}

.ap24-pricing-card.ap24-active {
  background: #0f8b84;
  color: #fff;
  position: relative;
}

.ap24-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #defff3;
  color: #000000;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
}

.ap24-plan-title,
.ap24-plan-desc,
.ap24-price {
  text-align: left;
}

.ap24-plan-title {
  font-size: 18px;
  font-weight: 600;
}

.ap24-plan-desc {
  font-size: 14px;
  margin: 10px 0 20px;
}

.ap24-price {
  font-size: 34px;
  font-weight: 700;
}

.ap24-price small {
  font-size: 14px;
}

.ap24-features {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.ap24-features li {
  font-size: 14px;
  margin-bottom: 12px;
  padding-left: 22px;
  position: relative;
}

.ap24-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0f8b84;
}

.ap24-pricing-card:hover .ap24-features li::before,
.ap24-pricing-card.ap24-active .ap24-features li::before {
  color: #fff;
}

.ap24-btn {
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.ap24-btn.ap24-white {
  background: #fff;
  color: #0f8b84;
}

/* ================= ABOUT SECTION ================= */
.ap24-about-section {
  width: 100%;
  height: 70vh;
  background: #eafaf8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-family: 'Inter', sans-serif;
}

.ap24-about-container {
  max-width: 100%;
  margin: auto;
  display: grid;
  padding: 20px 140px;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ap24-about-image {
  height: 400px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.ap24-about-image img {
  width: 700px;
  max-height: 80vh;
  object-fit: contain;
  position: absolute;
  top: -120px;
  left: -50px;
}

.ap24-about-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  margin-bottom: 16px;
}

.ap24-about-content h2 span {
  color: #1bb39a;
}

.ap24-about-content .ap24-subtitle {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.ap24-about-content .ap24-desc {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
}

.ap24-about-content ul {
  list-style: disc;
  padding-left: 18px;
  margin-bottom: 20px;
}

.ap24-about-content ul li {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.5;
}

.ap24-about-content .ap24-footer-text {
  font-size: 15px;
  color: #333;
}

.ap24-about-content .ap24-footer-text span {
  color: #1bb39a;
  font-weight: 600;
}

/* ================= SUBSCRIBE SECTION ================= */
.ap24-subscribe-section {
  width: 100%;
  height: 50vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: #b2ebea 1px solid;
}

.ap24-subscribe-container {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: center;
  position: relative;
}

.ap24-subscribe-left h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

.ap24-subscribe-left p {
  margin-top: 16px;
  font-size: 16px;
  color: #555;
  max-width: 420px;
}

.ap24-subscribe-image {
  position: relative;
  height: 100%;
}

.ap24-subscribe-image img {
  width: 320px;
  position: absolute;
  bottom: -90px;
  left: 50%;
  top: -80px;
  transform: translateX(-50%);
  object-fit: contain;
  overflow: hidden;
}

.ap24-subscribe-right h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

.ap24-subscribe-right input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  font-size: 15px;
  outline: none;
}

.ap24-subscribe-right button {
  margin-top: 28px;
  padding: 12px 34px;
  font-size: 15px;
  background: #fff;
  border: 2px solid #000;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 3px 3px 0 #000;
  transition: 0.3s;
}

.ap24-subscribe-right button:hover {
  box-shadow: 0 0 0 #000;
  transform: translate(3px, 3px);
}

/* ================= BLOG SECTION ================= */
.ap24-blog-section {
  width: 100%;
  height: 517px;
  padding: 60px 20px;
  margin-top: 120px;
}

.ap24-blog-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  position: relative;
}

.ap24-blog-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ap24-blog-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.ap24-blog-badge-wrapper {
  position: absolute;
  right: -30px;
  top: -46px;
  transform: rotate(8deg);
}

.ap24-blog-badge {
  padding: 18px 28px;
  border-radius: 16px;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(90deg, #fb00ff, #e0c3fc) border-box;
  border: 2px solid transparent;
  font-size: 18px;
  color: #000;
}

.ap24-blog-badge-image {
  margin-top: -14px;
  display: flex;
  justify-content: center;
}

.ap24-blog-badge-image img {
  width: 46px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
  position: absolute;
  right: 5px;
}

.ap24-blog-cards {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ap24-blog-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 14px;
  line-height: 1.4;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ap24-card-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

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

.ap24-card-overlay {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.ap24-author {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.ap24-author img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.ap24-author h4 {
  font-size: 14px;
}

.ap24-author span {
  font-size: 12px;
  opacity: 0.85;
}

.ap24-arrow {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ================= TESTIMONIAL SECTION ================= */
.ap24-testimonial-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0px 20px;
  margin-top: 120px;
  overflow: hidden;
  background-color: #ffffff;
}

.ap24-map-bg {
  position: absolute;
  right: 0;
  top: 30%;
  transform: translateY(-50%);
  width: 35%;
  z-index: 1;
}

.ap24-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.ap24-success-stories-badge {
  position: absolute;
  left: 180px;
  top: 10%;
  transform: translateY(-50%) rotate(-20deg);
  z-index: 3;
}

.ap24-badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.ap24-badge-text {
  display: block;
  padding: 12px 24px;
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  border: 2px solid transparent;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, #eec9ff, #f1b4ff, #d0f4ff) border-box;
  box-shadow: 0 4px 15px rgba(241, 204, 255, 0.1);
}

.ap24-header-content {
  margin-left: 80px;
  margin-bottom: 60px;
}

.ap24-header-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.ap24-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 18px;
  line-height: 1.6;
}

.ap24-slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.ap24-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ap24-slider-track {
  width: 100%;
  overflow: hidden;
}

.ap24-slider {
  display: flex;
  gap: 60px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px 0;
  width: max-content;
}

.ap24-card {
  flex: 0 0 330px;
  padding: 40px 30px;
  background: white;
  border-radius: 18px;
  transform: scale(0.95);
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
  border: 1px solid rgba(128, 128, 128, 0.436);
}

.ap24-card.ap24-active {
  opacity: 1;
  transform: scale(1);
  border: 2px solid #63636351;
  box-shadow: 0 20px 50px rgba(194, 249, 255, 0.201) inset;
}

.ap24-card-header {
  margin-bottom: 20px;
}

.ap24-card h1 {
  font-size: 48px;
  font-weight: 700;
  color: #111827;
}

.ap24-card h1 span {
  color: #22c55e;
}

.ap24-card .ap24-logo {
  width: 80px;
  height: auto;
  object-fit: contain;
  margin-bottom: 5px;
}

.ap24-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.ap24-card strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 16px;
}

.ap24-stars {
  color: #fbbf24;
  font-size: 30px;
  height: 30px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.ap24-testimonial-text {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.6;
}

.ap24-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: all 0.3s ease;
  z-index: 10;
}

.ap24-arrow:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.05);
  background: #cbfff2;
  color: rgb(0, 205, 209);
}

.ap24-arrow.ap24-left {
  left: -60px;
}

.ap24-arrow.ap24-right {
  right: -60px;
}

.ap24-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.ap24-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e5e7eb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ap24-dot.ap24-active {
  background: #22c55e;
  transform: scale(1.2);
}

.ap24-dot:hover {
  background: #d1d5db;
}

/* ================= FAQ SECTION ================= */
.ap24-faq-section {
  padding: 0px 8%;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 120px;
}

.ap24-faq-container {
  max-width: 900px;
  margin: auto;
}

.ap24-faq-header {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.ap24-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  transform: rotate(10deg);
  position: absolute;
  top: -30px;
  right: 20px;
  font-size: 14px;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(90deg, #fec4ff, #f4c5ff, #c8f0ff) border-box;
  border: 2px solid transparent;
}

.ap24-faq-badge-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 0, 0, 0);
  color: rgb(255, 64, 239);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
}

.ap24-faq-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.ap24-faq-header p {
  color: #555;
  font-size: 15px;
}

.ap24-faq-list {
  margin-top: 40px;
}

.ap24-faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}

.ap24-faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.ap24-faq-toggle {
  font-size: 26px;
  transition: 0.3s;
}

.ap24-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  padding-right: 30px;
}

.ap24-faq-item.ap24-active .ap24-faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.ap24-faq-item.ap24-active .ap24-faq-toggle {
  transform: rotate(45deg);
}


/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
  .ap24-success-stories-badge {
    left: -60px;
  }
  
  .ap24-header-content {
    margin-left: 70px;
  }
}

@media (max-width: 1024px) {
  .ap24-hero-container {
    gap: 40px;
  }
  
  .ap24-hero-left h1 {
    font-size: 54px;
  }
  
  .ap24-story {
    font-size: 100px;
  }
  
  .ap24-form-card {
    width: 380px;
  }
  
  .ap24-slider-wrapper {
    max-width: 700px;
  }
  
  .ap24-card {
    flex: 0 0 300px;
  }
  
  .ap24-success-stories-badge {
    left: -50px;
  }
  
 
}

@media (max-width: 992px) {
  .ap24-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ap24-roles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .ap24-hero-container {
    flex-direction: column;
    gap: 60px;
  }
  
  .ap24-hero-left {
    text-align: center;
    max-width: 100%;
  }
  
  .ap24-hero-left p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .ap24-hero-right {
    width: 100%;
    justify-content: center;
  }
  
  .ap24-about-section {
    height: auto;
    padding: 60px 20px;
  }
  
  .ap24-about-container {
    grid-template-columns: 1fr;
  }
  
  .ap24-about-image {
    justify-content: center;
  }
  
  .ap24-about-image img {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .ap24-header {
    flex-direction: column;
    height: auto;
    padding: 20px;
    gap: 20px;
  }
  
  .ap24-logo, .ap24-nav, .ap24-auth-buttons {
    flex: none;
    width: 100%;
    justify-content: center;
  }
  
  .ap24-nav {
    flex-wrap: wrap;
  }
  
  .ap24-auth-buttons {
    justify-content: center;
  }
  
  .ap24-hero-left h1 {
    font-size: 42px;
  }
  
  .ap24-story {
    font-size: 80px;
  }
  
  .ap24-form-card {
    width: 100%;
    max-width: 420px;
  }
  
  .ap24-roles-header h2,
  .ap24-section-header h2 {
    font-size: 28px;
  }
  
  .ap24-floating-badge {
    position: static;
    margin-bottom: 15px;
    transform: rotate(0);
    display: inline-block;
  }
  
  .ap24-blog-section {
    height: auto;
  }
  
  .ap24-blog-cards {
    grid-template-columns: 1fr;
  }
  
  .ap24-header-content {
    margin-left: 0;
  }
  
  .ap24-slider-wrapper {
    padding: 0 20px;
  }
  
  .ap24-arrow {
    width: 40px;
    height: 40px;
  }
  
  .ap24-arrow.ap24-left {
    left: -40px;
  }
  
  .ap24-arrow.ap24-right {
    right: -40px;
  }
  
  .ap24-card {
    flex: 0 0 280px;
    padding: 30px 20px;
  }
  
  .ap24-faq-header h2 {
    font-size: 28px;
  }
  
  .ap24-faq-badge {
    position: static;
    margin-bottom: 20px;
    transform: rotate(-4deg);
  }
  
  .ap24-footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ap24-testimonial-section {
    padding: 20px 10px;
  }
  
  .ap24-container {
    padding: 20px 10px;
  }
  
  .ap24-map-bg {
    width: 50%;
    opacity: 0.3;
  }
  
  .ap24-badge-content {
    flex-direction: column;
  }
  
  .ap24-slider-wrapper {
    padding: 0 10px;
  }
  
  .ap24-arrow.ap24-left {
    left: -30px;
  }
  
  .ap24-arrow.ap24-right {
    right: -30px;
  }
  
  .ap24-success-stories-badge {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }
  
  .ap24-badge-content {
    flex-direction: row;
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .ap24-support-grid,
  .ap24-roles-grid {
    grid-template-columns: 1fr;
  }
  
  .ap24-floating-badge {
    position: static;
    margin-top: 15px;
    transform: rotate(0);
    justify-content: center;
  }
  
  .ap24-section-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 550px) {
  .ap24-footer-container {
    grid-template-columns: 1fr;
  }
  
  .ap24-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .ap24-footer-links a {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .ap24-hero-left h1 {
    font-size: 36px;
  }
  
  .ap24-story {
    font-size: 60px;
  }
  
  .ap24-hero-left p {
    font-size: 14px;
  }
  
  .ap24-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .ap24-nav {
    gap: 12px;
  }
  
  .ap24-nav a {
    font-size: 14px;
  }
  
  .ap24-form-card {
    padding: 20px;
  }
}

















/* ===========   contact css ======================================== */



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  background: #ffffff;
}

/* ===== CONTACT FORM SECTION ===== */
.ct-contact-form-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.ct-form-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE */
.ct-form-left {
  flex: 1;
}

.ct-form-left h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.ct-form-left p {
  color: #666;
  max-width: 450px;
  line-height: 1.6;
}

.ct-form-info {
  margin-top: 25px;
  font-size: 16px;
}

/* RIGHT SIDE */
.ct-form-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* FORM CARD */
.ct-form-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  border: 2px solid #222;
}

.ct-form-card h2 {
  text-align: center;
  margin-bottom: 25px;
}

.ct-form-card label {
  display: block;
  margin: 12px 0 6px;
  font-size: 14px;
  text-align: left;
}

/* INPUT ICON */
.ct-input-box {
  position: relative;
}

.ct-input-box input {
  width: 100%;
  padding: 12px 40px 12px 14px;
  border-radius: 10px;
  border: 1px solid #bbb;
}

.ct-input-box i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

/* PHONE */
.ct-phone-row {
  display: flex;
  gap: 10px;
}

.ct-phone-row span {
  min-width: 60px;
  border: 1px solid #bbb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-phone-row input {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #bbb;
}

/* TEXTAREA */
.ct-form-card textarea {
  width: 100%;
  height: 100px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #bbb;
  resize: none;
}

.ct-count {
  text-align: right;
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

/* BUTTON */
.ct-submit-btn {
  width: 100%;
  margin-top: 18px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #18b7ad;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

.ct-submit-btn:hover {
  background: #129e96;
}

/* TABLET */
@media (max-width: 1024px) {
  .ct-form-left h1 {
    font-size: 48px;
  }
}

/* MOBILE LAYOUT */
@media (max-width: 900px) {
  .ct-form-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .ct-form-right {
    justify-content: center;
  }

  .ct-form-left p {
    margin: auto;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .ct-form-left h1 {
    font-size: 34px;
  }

  .ct-form-card {
    padding: 20px;
  }
}

/* ===== MAP SECTION ===== */
.ct-map-contact-section {
  padding: 60px 20px;
}

.ct-map-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* MAP */
.ct-map-box {
  flex: 1;
  height: 520px;
  width: 920px;
  border-radius: 16px;
  overflow: hidden;
}

.ct-map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.ct-map-content {
  flex: 1;
  max-width: 480px;
}

.ct-map-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}

/* INFO ROW */
.ct-info-row {
  display: flex;
  gap: 60px;
}

.ct-info-box h4 {
  color: #14b8b1;
  margin-bottom: 10px;
  font-size: 16px;
}

.ct-info-box p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

/* TABLET */
@media (max-width: 1024px) {
  .ct-map-wrapper {
    gap: 40px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .ct-map-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .ct-map-box {
    width: 100%;
    height: 280px;
  }

  .ct-map-content {
    max-width: 100%;
  }

  .ct-info-row {
    display: flex;
    gap: 40px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .ct-map-content h2 {
    font-size: 26px;
  }

  .ct-info-row {
    gap: 100px;
  }

  .ct-info-box p {
    font-size: 13px;
  }
}

/* ===== FAQ SECTION ===== */
.ct-faq-section {
  padding: 80px 8%;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.ct-faq-container {
  max-width: 900px;
  margin: auto;
}

.ct-faq-header {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.ct-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  transform: rotate(10deg);
  position: absolute;
  top: -30px;
  right: 20px;
  font-size: 14px;
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(90deg, #fec4ff, #f4c5ff, #c8f0ff) border-box;
  border: 2px solid transparent;
}

.ct-faq-badge-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 0, 0, 0);
  color: rgb(255, 64, 239);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
}

.ct-faq-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.ct-faq-header p {
  color: #555;
  font-size: 15px;
}

/* Accordion */
.ct-faq-list {
  margin-top: 40px;
}

.ct-faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}

.ct-faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.ct-faq-toggle {
  font-size: 26px;
  transition: 0.3s;
}

.ct-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  padding-right: 30px;
}

/* Active state */
.ct-faq-item.active .ct-faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.ct-faq-item.active .ct-faq-toggle {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .ct-faq-header h2 {
    font-size: 28px;
  }

  .ct-faq-badge {
    position: static;
    margin-bottom: 20px;
    transform: rotate(-4deg);
  }
}

















/* ============  projects css start ========================= */

/* ===== SIMULATION SECTION ===== */
.pj-simulation-section {
  width: 100%;
  padding: 80px 0px;
  background: url("../../assets/images/Property\ 1=Default.png") no-repeat center/cover;
  overflow: hidden;
}

.pj-simulation-container {
  max-width: 1060px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 0 20px;
}

/* Left */
.pj-simulation-content {
  flex: 1;
}

.pj-simulation-title {
  font-size: 56px;
  font-weight: 800;
  color: #1e1e1e;
  margin-bottom: 16px;
}

.pj-simulation-text {
  font-size: 18px;
  color: #555;
  max-width: 500px;
  margin-bottom: 30px;
}

/* Button */
.pj-simulation-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  color: #000;
  font-weight: 600;
  border-radius: 40px;
  border: 2px solid #000;
  text-decoration: none;
  box-shadow: 0px 6px 0 #000;
  transition: all 0.1s ease;
}

.pj-simulation-btn:hover {
  box-shadow: 0 0 0 transparent;
  transform: translate(6px, 6px);
}

/* Right Image */
.pj-simulation-image-wrap {
  position: relative;
  width: 480px;
  height: 420px;
  flex-shrink: 0;
}

.pj-simulation-image-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pj-simulation-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
  z-index: 2;
  border-radius: 20px;
}

/* Tablet */
@media (max-width: 992px) {
  .pj-simulation-container {
    flex-direction: column;
    text-align: center;
  }

  .pj-simulation-title {
    font-size: 42px;
  }

  .pj-simulation-image-wrap {
    width: 380px;
    height: 340px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .pj-simulation-title {
    font-size: 32px;
  }

  .pj-simulation-text {
    font-size: 16px;
  }

  .pj-simulation-image-wrap {
    width: 300px;
    height: 260px;
  }
}

/* ===== PROJECTS GRID SECTION ===== */
.pj-projects-section {
  padding: 80px 120px;
  background: #ffffff;
}

.pj-projects-header {
  text-align: center;
  margin-bottom: 40px;
}

.pj-projects-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 18px;
  border: 1.5px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(
        90deg,
        #ef95fd 0%,
        #78fcdf 28.37%,
        #8067fb 44.71%,
        #e245fa 78.85%,
        #8e5997 100%
      )
      border-box;
}

.pj-projects-title {
  font-size: 42px;
  margin: 15px 0;
}

.pj-projects-subtitle {
  color: #777;
}

/* Filters */
.pj-projects-filters {
  display: flex;
  gap: 25px;
  justify-content: center;
  margin-bottom: 40px;
}

.pj-projects-filter label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}

.pj-projects-filter select {
  display: grid;
  width: 220px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Grid */
.pj-projects-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


/* Card */
.pj-project-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pj-project-card:hover {
  transform: translateY(-6px);
}
.pj-project-card-inner {
  padding: 16px;
  border-radius: 16px;
  margin: 10px 10px 0px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pj-project-card-inner h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 76px;
}
.pj-project-card-inner p {
  font-size: 14px;
  margin: 0 0 auto 0;
}
.pj-project-tags {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  text-align: center;
  margin-top: 16px;
}
.pj-project-tags span {
  font-size: 12px;
  padding: 6.5px 12px;
  border-radius: 29px;
  background: #bbdbfd;
}
.pj-project-card-footer {
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}
.pj-project-card-footer button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f3f3f3;
  cursor: pointer;
}
/* Colors */
.pj-project-blue {
  background: #dbeafe;
}
.pj-project-mint {
  background: #d1fae5;
}
.pj-project-cyan {
  background: #cffafe;
}
.pj-project-green {
  background: #dcfce7;
}
/* Responsive */
@media (max-width: 1100px) {
  .pj-projects-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 768px) {
  .pj-projects-filters {
    flex-direction: column;
    align-items: center;
  }
  .pj-projects-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 480px) {
  .pj-projects-section {
    padding: 60px 20px;
  }
  .pj-projects-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== FAQ SECTION ===== */
.pj-faq-section {
  padding: 80px 8%;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.pj-faq-container {
  max-width: 900px;
  margin: auto;
}

.pj-faq-header {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.pj-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  transform: rotate(10deg);
  position: absolute;
  top: -30px;
  right: 20px;
  font-size: 14px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #fec4ff, #f4c5ff, #c8f0ff) border-box;
  border: 2px solid transparent;
}

.pj-faq-badge-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 0, 0, 0);
  color: rgb(255, 64, 239);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
}

.pj-faq-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.pj-faq-header p {
  color: #555;
  font-size: 15px;
}

/* Accordion */
.pj-faq-list {
  margin-top: 40px;
}

.pj-faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}

.pj-faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.pj-faq-toggle {
  font-size: 26px;
  transition: 0.3s;
}

.pj-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  padding-right: 30px;
}

/* Active state */
.pj-faq-item.active .pj-faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.pj-faq-item.active .pj-faq-toggle {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .pj-faq-header h2 {
    font-size: 28px;
  }

  .pj-faq-badge {
    position: static;
    margin-bottom: 20px;
    transform: rotate(-4deg);
  }
}






















/* =================  simulation start css ================================== */


.sim-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sim-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.sim-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.sim-hero-content h1 {
  font-size: 44px;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
  margin-bottom: 25px;
}

.sim-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #fff;
  color: #000;
  border-radius: 40px;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #000;
  box-shadow: 0 6px 0 #000;
  transition: all 0.2s ease;
}

.sim-hero-btn:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #000;
}

/* Tablet */
@media (max-width: 768px) {
  .sim-hero-content h1 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .sim-hero {
    min-height: 60vh;
  }

  .sim-hero-content h1 {
    font-size: 24px;
  }

  .sim-hero-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}


.sim-job-section {
  background: #ffffff;
  padding: 80px 120px;
}

.sim-job-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

.sim-job-left {
  flex: 2;
}

.sim-job-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sim-job-left h2,
.sim-job-left h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #111;
}

.sim-job-left h3 {
  margin-top: 40px;
  font-size: 26px;
}

.sim-job-points {
  padding-left: 20px;
  color: #555;
  line-height: 1.7;
}

.sim-job-points-small li {
  font-size: 15px;
}

.sim-how-card {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 20px;
}
.sim-how-icon {
  width: 58px;
  height: 45px;
  border-radius: 50%;
  border: 1.5px solid #00c6b8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00c6b8;
  font-size: 18px;
}

.sim-skill-box {
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 25px;
}

.sim-skill-box h4 {
  margin-bottom: 15px;
  font-size: 18px;
}

.sim-check-list {
  list-style: none;
  padding: 0;
}

.sim-check-list li {
  margin-bottom: 10px;
  color: #444;
}

.sim-check-list i {
  color: #00c6b8;
  margin-right: 8px;
}

.sim-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: column;
}

.sim-pill-group span {
  width: max-content;
  border: 1px solid #ccc;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  color: #555;
}

.sim-view-all {
  display: block;
  text-align: center;
  margin-top: 15px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* Hover effects */
.sim-how-card:hover,
.sim-skill-box:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* MOBILE */
@media (max-width: 900px) {
  .sim-job-section {
    padding: 60px 20px;
  }
  .sim-job-container {
    flex-direction: column;
  }

  .sim-job-left h2 {
    text-align: center;
    font-size: 26px;
    margin: 0px 30px;
  }
  .sim-how-card p {
    color: #555;
    line-height: 1.6;
  }
  .sim-how-icon {
    width: 175px;
    height: 45px;
    margin: 55px 0px;
  }

  .sim-job-left h3 {
    font-size: 22px;
    text-align: center;
    margin: 0px 30px;
  }
}



/* next card */
.sim-works {
  background: #ffffff;
  padding: 70px 120px;
}

.sim-works-container {
  max-width: 1200px;
  margin: auto;
}

.sim-works-title {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #111;
}

.sim-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.sim-card-item {
  background: #ffffff;
  padding: 14px;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.sim-card-item h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #111;
}

.sim-card-item ul {
  padding-left: 18px;
  color: #555;
  line-height: 1.7;
}

.sim-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.12);
}

/* Tablet */
@media (max-width: 900px) {
  .sim-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .sim-works {
    padding: 60px 20px;
  }
  .sim-works-title {
    text-align: center;
    font-size: 26px;
  }

  .sim-cards-grid {
    grid-template-columns: 1fr;
  }
}
/* Simulation Breakdown */
.sim-breakdown {
  background: #ffffff;
  padding: 80px 120px;
}

.sim-breakdown-container {
  max-width: 1100px;
  margin: auto;
}

.sim-breakdown-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #111;
}

.sim-accordion-item {
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.sim-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.sim-acc-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sim-acc-number {
  width: 40px;
  height: 40px;
  border: 1.5px solid #5f5e5e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.sim-acc-tool {
  font-weight: 600;
  color: #111;
  width: 70px;
}

.sim-acc-title {
  color: #555;
}

.sim-accordion-header i {
  transition: 0.3s;
}

.sim-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.sim-accordion-content ul {
  padding-left: 140px;
  margin-top: 15px;
  color: #555;
  line-height: 1.7;
}

/* Active */
.sim-accordion-item.sim-active .sim-accordion-content {
  max-height: 500px;
}

.sim-accordion-item.sim-active i {
  transform: rotate(180deg);
}

/* Mobile */
@media (max-width: 700px) {
  .sim-breakdown {
    padding: 60px 20px;
  }
  .sim-acc-left {
    flex-wrap: wrap;
    gap: 10px;
  }
  .sim-accordion-content {
    padding-left: 70px;
  }

  .sim-accordion-content ul {
    padding-left: 0;
  }

  .sim-acc-title {
    padding-left: 54px;
  }

  .sim-accordion-header i {
    margin: 0px 0px 30px 0px;
  }

  .sim-acc-tool {
    width: auto;
  }

  .sim-breakdown-title {
    text-align: center;
    font-size: 36px;
  }
}


.sim-testimonial-section {
  background: #ffffff;
  padding: 80px 120px;
}

.sim-testimonial-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.sim-testimonial-title {
  text-align: justify;
  color: #242426;
  font-size: 36px;
  font-weight: 600;
}

.sim-testimonial-sub {
  color: #5E5E5E;
  margin-bottom: 40px;
  text-align: left;
  font-size: 22px;
}

.sim-testimonial-slider {
  overflow: hidden;
  padding: 20px 40px;
}

.sim-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

.sim-testimonial-card {
  flex: 0 0 300px;
  height: auto;
  background: #fff;
  padding: 26px;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  box-shadow: 20px rgba(255, 255, 255, 0.25);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sim-testimonial-card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.sim-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sim-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ddd;
}

.sim-user h4 {
  margin: 0;
}

.sim-user span {
  color: #888;
  font-size: 13px;
}

.sim-dots {
  margin-top: 25px;
}

.sim-dot {
  width: 10px;
  height: 10px;
  background: #666;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
}

.sim-dot.sim-active {
  background: #00d2b4;
}

/* Mobile */
@media (max-width: 900px) {
  .sim-testimonial-card {
    min-width: 100%;
    box-shadow: 10px 25px 80px rgba(255, 255, 255, 0.25);
  }
}
@media (max-width: 768px) {
  .sim-testimonial-slider {
    padding: 0 20px;
  }
  .sim-testimonial-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 0px;
  }
  .sim-testimonial-sub {
    text-align: center;
    font-size: 18px;
    margin-top: 5px;
  }

  .sim-testimonial-section {
    padding: 60px 20px;
  }

  .sim-testimonial-card {
    flex: 0 0 280px;
    height: 240px;
    box-shadow: 10px 25px 80px rgba(255, 255, 255, 0.25);
  }
}


.sim-faq-section {
  padding: 80px 8%;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.sim-faq-container {
  max-width: 900px;
  margin: auto;
}

.sim-faq-header {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.sim-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  transform: rotate(10deg);
  position: absolute;
  top: -30px;
  right: 20px;
  font-size: 14px;

  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #fec4ff, #f4c5ff, #c8f0ff) border-box;

  border: 2px solid transparent;
}


.sim-faq-badge-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 0, 0, 0);
  color: rgb(255, 64, 239);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
}

.sim-faq-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.sim-faq-header p {
  color: #555;
  font-size: 15px;
}

/* Accordion */
.sim-faq-list {
  margin-top: 40px;
}

.sim-faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}

.sim-faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.sim-faq-toggle {
  font-size: 26px;
  transition: 0.3s;
}

.sim-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  padding-right: 30px;
}

/* Active state */
.sim-faq-item.sim-active .sim-faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.sim-faq-item.sim-active .sim-faq-toggle {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .sim-faq-header h2 {
    font-size: 28px;
  }

  .sim-faq-badge {
    position: static;
    margin-bottom: 20px;
    transform: rotate(-4deg);
  }
}































/* =============   testimonials styart css ============= */




/* WP Testimonials Hero Section */
.wp-ts-hero-section {
  padding: 80px 5%;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
  background: #f8f9fa;
}

.wp-ts-badge {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #ddd;
  border-radius: 30px;
  margin-bottom: 40px;
  font-size: 14px;
  color: #555;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #fec4ff, #f4c5ff, #c8f0ff) border-box;
  border: 2px solid transparent;
  font-weight: 500;
}

/* Slider */
.wp-ts-slider {
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  height: 150px;
}

.wp-ts-track {
  display: flex;
  gap: 30px;
  position: absolute;
  left: 0;
  top: 0;
  width: max-content;
  animation: wp-slide 20s linear infinite;
  padding: 10px 0;
}

.wp-ts-track img {
  width: 114px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: wp-float 4s ease-in-out infinite;
}

.wp-ts-track img:nth-child(odd) {
  transform: rotate(-5deg);
  animation-delay: 0s;
}

.wp-ts-track img:nth-child(even) {
  transform: rotate(5deg);
  animation-delay: 2s;
}

.wp-ts-track img:nth-child(3n) { animation-delay: 1s; }
.wp-ts-track img:nth-child(4n) { animation-delay: 3s; }
.wp-ts-track img:nth-child(5n) { animation-delay: 0.5s; }

/* Heading */
.wp-ts-heading {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
}

.wp-ts-heading span {
  color: #e63946;
  font-family: 'Brittany Signature', cursive;
  font-weight: normal;
  position: relative;
  display: inline-block;
  font-size: 100px;
}

.wp-ts-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.wp-ts-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid #222;
  border-radius: 40px;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 0 #222;
  transition: all 0.2s ease;
  background: white;
  font-size: 16px;
}

.wp-ts-btn:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #222;
  background: #f8f9fa;
}

/* Animations */
@keyframes wp-float {
  0%, 100% { transform: translateY(0) rotate(var(--rotate-angle, -5deg)); }
  50% { transform: translateY(-15px) rotate(var(--rotate-angle, -5deg)); }
}

@keyframes wp-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); }
}

.wp-ts-slider:hover .wp-ts-track {
  animation-play-state: paused;
}

/* WP Testimonials Cards Section */
.wp-tc-section {
  padding: 80px 6%;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.wp-tc-title { font-size: 34px; }
.wp-tc-subtitle {
  color: #666;
  margin: 20px auto 50px;
  max-width: 700px;
  font-size: 18px;
}

.wp-tc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}

.wp-tc-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s ease;
}

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

.wp-tc-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.wp-tc-card p { font-size: 14px; margin: 12px 0; }
.wp-tc-card h4 { font-size: 13px; }

.wp-tc-btn-wrapper { margin-top: 50px; }
.wp-tc-btn {
  padding: 14px 32px;
  border: 2px solid black;
  border-radius: 40px;
  background: white;
  box-shadow: 0 6px 0 black;
  cursor: pointer;
  font-weight: 600;
}

.wp-tc-stars { color: #f5b301; font-size: 16px; }

/* WP Story Section */
.wp-story-section {
  background: #e8fbf9;
  padding: 60px 10%;
}

.wp-story-label {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.wp-story-text {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.wp-story-btn {
  padding: 14px 32px;
  border: 2px solid black;
  border-radius: 40px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 0 black;
}

.wp-story-btn:hover {
  transform: translateY(6px);
  box-shadow: 0 3px 0 black;
}

/* WP Modal */
.wp-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.wp-modal-box {
  width: 420px;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  position: relative;
  animation: wp-popup 0.3s ease;
}

@keyframes wp-popup {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.wp-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  cursor: pointer;
  font-size: 20px;
}

.wp-form-group { margin-bottom: 18px; }
.wp-form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.wp-input-field {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
}

.wp-input-field .wp-icon { margin-right: 10px; }
.wp-input-field input {
  border: none;
  outline: none;
  width: 100%;
}

.wp-form-group textarea {
  width: 100%;
  height: 90px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: none;
}

.wp-rating-box p { font-weight: 600; margin-bottom: 6px; }
.wp-stars span {
  font-size: 22px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.wp-stars span.wp-active { color: #f5b301; }

.wp-action-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.wp-cancel-btn {
  background: none;
  border: none;
  color: #00b3a4;
  font-weight: 600;
  cursor: pointer;
}

.wp-submit-btn {
  background: #00b3a4;
  color: white;
  border: none;
  padding: 10px 26px;
  border-radius: 10px;
  cursor: pointer;
}

/* WP CTA */
.wp-cta-wave {
  position: relative;
  min-height: 30vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.wp-cta-content { max-width: 700px; }
.wp-cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.wp-cta-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.wp-cta-btn {
  background: #fff;
  border: 2px solid #000;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 0 #000;
  transition: 0.2s ease;
}

.wp-cta-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #000;
}

/* WP FAQ */
.wp-faq-section {
  padding: 80px 8%;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.wp-faq-container { max-width: 900px; margin: auto; }

.wp-faq-header { text-align: center; margin-bottom: 50px; position: relative; }

.wp-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  transform: rotate(10deg);
  position: absolute;
  top: -30px;
  right: 20px;
  font-size: 14px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #fec4ff, #f4c5ff, #c8f0ff) border-box;
  border: 2px solid transparent;
}

.wp-faq-badge-icon {
  width: 26px;
  height: 26px;
  color: rgb(255, 64, 239);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
}

.wp-faq-header h2 { font-size: 36px; margin-bottom: 10px; }
.wp-faq-header p { color: #555; font-size: 15px; }

.wp-faq-list { margin-top: 40px; }
.wp-faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}

.wp-faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.wp-faq-toggle {
  font-size: 26px;
  transition: 0.3s;
}

.wp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  padding-right: 30px;
}

.wp-faq-item.wp-active .wp-faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.wp-faq-item.wp-active .wp-faq-toggle {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 1000px) {
  .wp-tc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .wp-ts-heading { font-size: 36px; }
  .wp-ts-heading span { font-size: 70px; }
  .wp-ts-track img { width: 100px; height: 90px; }
  .wp-ts-slider { height: 130px; }
}

@media (max-width: 768px) {
  .wp-ts-hero-section { padding: 60px 5%; }
  .wp-ts-heading { font-size: 32px; }
  .wp-ts-desc { font-size: 15px; padding: 0 10px; }
  .wp-ts-track { gap: 25px; }
  .wp-ts-track img { width: 90px; height: 80px; }
  .wp-ts-slider { height: 110px; }
  .wp-ts-heading span { font-size: 50px; }
  .wp-tc-grid { grid-template-columns: 1fr; }
  .wp-tc-hidden-mobile { display: none; }
  .wp-faq-badge { position: static; margin-bottom: 20px; transform: rotate(-4deg); }
}

@media (max-width: 600px) {
  .wp-ts-heading { font-size: 28px; }
  .wp-ts-desc { font-size: 14px; }
  .wp-ts-track img { width: 80px; height: 70px; }
  .wp-ts-slider { height: 90px; }
  .wp-ts-btn { padding: 12px 24px; font-size: 14px; }
  .wp-ts-badge { font-size: 12px; padding: 6px 16px; margin-bottom: 30px; }
  .wp-faq-header h2 { font-size: 28px; }
}

@media (max-width: 500px) {
  .wp-modal-box { width: 90%; }
  .wp-story-text { font-size: 26px; }
}

@media (max-width: 400px) {
  .wp-ts-heading { font-size: 24px; }
  .wp-ts-track img { width: 45.5px; height: 45.5px; }
  .wp-ts-slider { height: 80px; }
  .wp-ts-track { gap: 20px; }
}


/* Testimonial */


/* ========== TESTIMONIAL SECTION ========== */
.cstm-testimonial-section {
  padding: 80px 5%;
  text-align: center;
  font-family: "Segoe UI", sans-serif;
  overflow: hidden;
  background: #f8f9fa;
}

.cstm-ts-badge {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #ddd;
  border-radius: 30px;
  margin-bottom: 40px;
  font-size: 14px;
  color: #555;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #fec4ff, #f4c5ff, #c8f0ff) border-box;
  border: 2px solid transparent;
  font-weight: 500;
}

/* Slider Container */
.cstm-ts-slider {
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  height: 150px;
}

/* Slider Track with Infinite Animation */
.cstm-ts-track {
  display: flex;
  gap: 30px;
  position: absolute;
  left: 0;
  top: 0;
  width: max-content;
  padding: 10px 0;
}

/* Individual Images with Floating Animation */
.cstm-ts-track img {
  width: 114px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: cstmFloat 4s ease-in-out infinite;
}

/* Alternating floating patterns */
.cstm-ts-track img:nth-child(odd) {
  transform: rotate(-5deg);
  animation-delay: 0s;
}

.cstm-ts-track img:nth-child(even) {
  transform: rotate(5deg);
  animation-delay: 2s;
}

/* Specific delays for more natural floating */
.cstm-ts-track img:nth-child(3n) {
  animation-delay: 1s;
}

.cstm-ts-track img:nth-child(4n) {
  animation-delay: 3s;
}

.cstm-ts-track img:nth-child(5n) {
  animation-delay: 0.5s;
}

/* Heading */
.cstm-ts-heading {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;
}

.cstm-ts-heading span {
  color: #e63946;
  font-family: 'Brittany Signature', cursive;
  font-weight: normal;
  position: relative;
  display: inline-block;
  font-size: 100px;
}

/* Description */
.cstm-ts-desc {
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Button */
.cstm-ts-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border: 2px solid #222;
  border-radius: 40px;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 6px 0 #222;
  transition: all 0.2s ease;
  background: white;
  font-size: 16px;
}

.cstm-ts-btn:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #222;
  background: #f8f9fa;
}

.cstm-ts-btn:active {
  transform: translateY(5px);
  box-shadow: 0 1px 0 #222;
}

/* Arrow in button */
.cstm-ts-btn::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.2s ease;
}

.cstm-ts-btn:hover::after {
  transform: translateX(4px);
}

/* Floating Animation */
@keyframes cstmFloat {
  0%,
  100% {
    transform: translateY(0) rotate(var(--rotate-angle, -5deg));
  }
  50% {
    transform: translateY(-15px) rotate(var(--rotate-angle, -5deg));
  }
}

/* Pause animation on hover */
.cstm-ts-slider:hover .cstm-ts-track {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 900px) {
  .cstm-ts-heading {
    font-size: 36px;
  }

  .cstm-ts-track img {
    width: 100px;
    height: 90px;
  }

  .cstm-ts-slider {
    height: 130px;
  }
  .cstm-ts-heading span {
    font-size: 70px;
  }
}

@media (max-width: 768px) {
  .cstm-testimonial-section {
    padding: 60px 5%;
  }

  .cstm-ts-heading {
    font-size: 32px;
  }

  .cstm-ts-desc {
    font-size: 15px;
    padding: 0 10px;
  }

  .cstm-ts-track {
    gap: 25px;
  }

  .cstm-ts-track img {
    width: 90px;
    height: 80px;
  }

  .cstm-ts-slider {
    height: 110px;
  }
   .cstm-ts-heading span {
    font-size: 50px;
  }
}

@media (max-width: 600px) {
  .cstm-ts-heading {
    font-size: 28px;
  }

  .cstm-ts-desc {
    font-size: 14px;
  }

  .cstm-ts-track img {
    width: 80px;
    height: 70px;
  }

  .cstm-ts-slider {
    height: 90px;
  }

  .cstm-ts-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .cstm-ts-badge {
    font-size: 12px;
    padding: 6px 16px;
    margin-bottom: 30px;
  }
}

@media (max-width: 400px) {
  .cstm-ts-heading {
    font-size: 24px;
  }

  .cstm-ts-track img {
    width: 45.5px;
    height: 45.5px;
  }

  .cstm-ts-slider {
    height: 80px;
  }

  .cstm-ts-track {
    gap: 20px;
  }
}

/* ========== TESTIMONIALS GRID SECTION ========== */
.cstm-tc-section {
  padding: 80px 6%;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
}

.cstm-tc-title {
  font-size: 34px;
}

.cstm-tc-subtitle {
  color: #666;
  margin: 20px auto 50px;
  max-width: 700px;
  font-size: 18px;
}

/* GRID */
.cstm-tc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}

/* CARD */
.cstm-tc-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
}

.cstm-tc-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

.cstm-tc-card p {
  font-size: 14px;
  margin: 12px 0;
}

.cstm-tc-card h4 {
  font-size: 13px;
}

.cstm-tc-stars {
  color: #ffc107;
}

/* BUTTON */
.cstm-tc-btn-wrapper {
  margin-top: 50px;
}

.cstm-tc-btn {
  padding: 14px 32px;
  border: 2px solid black;
  border-radius: 40px;
  background: white;
  box-shadow: 0 6px 0 black;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.cstm-tc-btn:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 black;
}

/* TABLET */
@media (max-width: 1000px) {
  .cstm-tc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .cstm-tc-grid {
    grid-template-columns: 1fr;
  }

  .cstm-tc-hidden-mobile {
    display: none;
  }
}

/* ========== STORY SECTION ========== */
.cstm-story-section {
  background: #e8fbf9;
  padding: 60px 10%;
  font-family: "Segoe UI", sans-serif;
}

.cstm-story-label {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cstm-story-text {
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 30px;
}

.cstm-story-btn {
  padding: 14px 32px;
  border: 2px solid black;
  border-radius: 40px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 0 black;
  transition: all 0.2s ease;
}

.cstm-story-btn:hover {
  transform: translateY(6px);
  box-shadow: 0 3px 0 black;
}

/* MODAL */
.cstm-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.cstm-modal-box {
  width: 420px;
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  position: relative;
  animation: cstmPopup 0.3s ease;
}

@keyframes cstmPopup {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.cstm-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  cursor: pointer;
  font-size: 20px;
}

/* FORM */
.cstm-form-group {
  margin-bottom: 18px;
}

.cstm-form-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.cstm-input-field {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
}

.cstm-input-field .cstm-icon {
  margin-right: 10px;
}

.cstm-input-field input {
  border: none;
  outline: none;
  width: 100%;
}

.cstm-form-group textarea {
  width: 100%;
  height: 90px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  resize: none;
  font-family: inherit;
}

/* RATING */
.cstm-rating-box p {
  font-weight: 600;
  margin-bottom: 6px;
}

.cstm-stars span {
  font-size: 22px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.cstm-stars span.cstm-active {
  color: #f5b301;
}

/* BUTTONS */
.cstm-action-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

.cstm-cancel-btn {
  background: none;
  border: none;
  color: #00b3a4;
  font-weight: 600;
  cursor: pointer;
}

.cstm-submit-btn {
  background: #00b3a4;
  color: white;
  border: none;
  padding: 10px 26px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}

.cstm-submit-btn:hover {
  background: #009688;
}

/* RESPONSIVE */
@media(max-width: 500px){
  .cstm-modal-box {
    width: 90%;
  }
  .cstm-story-text {
    font-size: 26px;
  }
}

/* ========== CTA WAVE ========== */
.cstm-cta-wave {
  position: relative;
  min-height: 30vh;
  background: #fff url("../../assets/images/CTA.png") center bottom no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
}

.cstm-cta-content {
  max-width: 700px;
}

.cstm-cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cstm-cta-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Button */
.cstm-cta-btn {
  background: #fff;
  border: 2px solid #000;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 0 #000;
  transition: 0.2s ease;
  position: relative;
  overflow: hidden;
}

.cstm-cta-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 #000;
}

/* Ripple effect */
@keyframes cstmRipple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cstm-cta-content h2 {
    font-size: 30px;
  }

  .cstm-cta-content p {
    font-size: 16px;
  }
}

/* ========== FAQ SECTION ========== */
.cstm-faq-section {
  padding: 80px 8%;
  background: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.cstm-faq-container {
  max-width: 900px;
  margin: auto;
}

.cstm-faq-header {
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}

.cstm-faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  transform: rotate(10deg);
  position: absolute;
  top: -30px;
  right: 20px;
  font-size: 14px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #fec4ff, #f4c5ff, #c8f0ff) border-box;
  border: 2px solid transparent;
}

.cstm-faq-badge-icon {
  width: 26px;
  height: 26px;
  background: rgba(255, 0, 0, 0);
  color: rgb(255, 64, 239);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: bold;
}

.cstm-faq-header h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.cstm-faq-header p {
  color: #555;
  font-size: 15px;
}

/* Accordion */
.cstm-faq-list {
  margin-top: 40px;
}

.cstm-faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
}

.cstm-faq-question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.cstm-faq-toggle {
  font-size: 26px;
  transition: 0.3s;
}

.cstm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
  padding-right: 30px;
}

/* Active state */
.cstm-faq-item.active .cstm-faq-answer {
  max-height: 200px;
  margin-top: 10px;
}

.cstm-faq-item.active .cstm-faq-toggle {
  transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
  .cstm-faq-header h2 {
    font-size: 28px;
  }

  .cstm-faq-badge {
    position: static;
    margin-bottom: 20px;
    transform: rotate(-4deg);
  }
}

/* Parallax effect */
.cstm-parallax-bg {
  transition: transform 0.1s ease-out;
}
