:root {
  /* --primary-blue: #4f46e5; */
  --primary-blue: #327dc1;
  --primary-dark: #2e67b1;
  --secondary-blue: #6366f1;
  --accent-orange: #f59e0b;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-light: #9ca3af;
  --bg-primary: #ffffff;
  --bg-secondary: #e1e1e1;
  --bg-dark: #11161c;
  --bg-dark-secondary: #000;
  --border-light: #e5e7eb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

.section-bg {
  background-color: #f5f5f5;
}

/* Navigation - Landify Style */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--primary-blue) !important;
  text-decoration: none;
}

.navbar-brand img {
  width: 170px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary) !important;
  margin: 0 1rem;
  padding: 0 !important;
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-blue) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: var(--primary-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .navButton {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  border: 2px solid var(--primary-blue);
  border-radius: 50px;
  margin: 0;
  padding: 8px 32px;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  transition: all 0.2s linear;
}

.navbar-nav .navButton.login {
  background: transparent;
  color: #000;
}

.navbar-nav .navButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

.navbar-nav .navButton.login:hover {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: #fff;
}

/* heroBanner */
.heroBanner {
  margin-top: 85px;
}
/* heroBanner */

/* Hero Section - Landify Style */
.hero-section {
  padding: 100px 0;
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("https://images.unsplash.com/photo-1567184893427-49a9c7f085d7?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80")
    center/cover;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #000000;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  /* text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); */
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  opacity: 0.95;
  margin-bottom: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 0;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.heroBannerSwiper .swiper-pagination {
  bottom: 10px !important;
}
.heroBannerSwiper .swiper-pagination-bullet {
  background-color: #fff;
}

/* Section Styling - Landify Clean Style */
.section {
  padding: 100px 0;
}

.section-sm {
  padding: 80px 0;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-weight: 400;
}

.content-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.content-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Cards - Landify Style */
.feature-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  /* background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  ); */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: white;
}

/* Mission Section - New Design */
.mission-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* CTA Section - Landify Style */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 80%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: rotate(15deg);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary-custom {
  background: white;
  color: var(--primary-blue);
  border: none;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  margin: 0 0.75rem 1rem 0;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  background: var(--bg-dark);
  color: #fff;
}

.btn-secondary-custom {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  margin: 0 0.75rem 1rem 0;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--bg-dark);
  color: white;
  transform: translateY(-3px);
  background: var(--bg-dark);
  /* color: #fff; */
}

.ourPromiseContent ol {
  padding-left: 20px;
}

.ourPromiseContent ol li + li {
  margin-top: 10px;
}

.ourPromiseContent ol li::marker {
  color: var(--primary-blue) !important;
  font-weight: 700;
}

/* Footer - Landify Style */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 4rem 0 1.5rem;
}

.footer-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 200px;
}

.footer h6 {
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1rem;
}

.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 0.75rem;
}

.footer a:hover {
  color: var(--primary-blue);
  transform: translateX(5px);
}

.footer a.active {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  transition: all 0.3s ease;
  color: var(--text-light);
  text-decoration: none;
}

.social-links a + a {
  margin-left: 0.5rem;
}

.social-links a:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-3px);
}

.social-links a svg {
  width: 22px;
  fill: #fff;
}

/* Animations - Landify Style */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}
.delay-400 {
  transition-delay: 0.4s;
}

/* Image Styling */
.hero-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* Stats Counter */

.stats-section-wrapper {
  padding: 0px 0 50px;
}

.stats-section {
  position: relative;
  z-index: 10;
}

.stat-item {
  border-radius: 24px;
  background: white;
  text-align: center;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-light);
}

.stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-blue);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* line-height: 1; */
}

.stat-number-inner {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0.75rem 0 0;
  font-weight: 500;
}

/*** getInTouchWrapper **/

.getInTouchWrapper {
  padding: 100px 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;

  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-item + .contact-item {
  margin-top: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 1.25rem;
}

.locationMap {
  height: 100%;
}

.locationMap iframe {
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Contact Form */

/* testimonialsWrapper */
.testimonialsWrapper {
  padding: 100px 0;
  /*  */
  height: 100%;
}

.testimonialsSwiper .swiper-slide {
  height: auto !important;
}

.testimonialsSwiper .item {
  padding: 50px 50px;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  background: white;
  height: 100% !important;
}

.testimonialsSwiper {
  padding: 0 0px 50px;
}

.testimonialsSwiper .item h4 {
  margin-bottom: 0;
  font-size: 18px;
}

.testimonialsSwiper .item img.quote {
  width: 40px;
}

.swiper-pagination-bullet {
  width: 22px;
  height: 7px;
  border-radius: 16px;
  transition: all 0.2s linear;
}

.swiper-pagination {
  bottom: -5px !important;
}

.swiper-pagination-bullet-active {
  width: 26px;
}

/* testimonialsWrapper */

/* faq-container */

.faq-container {
  padding: 100px 0;
}

.accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  background: white;
}

.accordion-header {
  border-radius: 15px 15px !important;
}

.accordion-button {
  background: #fff;
  border: none;
  color: #000;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 20px 25px;
  border-radius: 15px !important;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
  border-radius: 15px 15px 0 0 !important;
}

.accordion-button:hover {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
  border-color: transparent;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  filter: invert(1) brightness(100);
}

.accordion-collapse {
  border-radius: 0 0 15px 15px;
}

.accordion-body {
  background: white;
  color: #333;
  padding: 25px;
  font-size: 1rem;
  line-height: 1.6;
  border-radius: 0 0 15px 15px;
  border-top: 1px solid #e9ecef;
}

.faq-icon {
  margin-right: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
}

.highlight {
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 2.2rem;
  }

  .accordion-button {
    font-size: 1rem;
    padding: 15px 20px;
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #327dc1, #09457d);
  border-radius: 10px;
}

/* faq-container */

.sendMessageWrapper {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #ffffff 100%);
  padding: 100px 0;
}

.sendMessageWrapper .hero-subtitle {
  max-width: 100%;
}

.form-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.form-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 1rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--bg-secondary);
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background: white;
}

.form-control::placeholder {
  color: var(--text-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  border: none;
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.4);
}

/*** getInTouchWrapper **/

/*** propertyCard **/

.registeredTransactions {
  padding: 100px 0;
}

.propertyCardSwiper {
  padding-bottom: 50px;
}
.property-card {
  background: linear-gradient(135deg, #fff 0%, #fef7f7 100%);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.property-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.property-card .sold-info {
  flex: 1;
}

.property-card .sold-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.property-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.property-card .govt-seal {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

.property-card .property-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.property-card .property-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ff7f50, #ff6b35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.property-card .property-icon i {
  font-size: 16px;
  color: white;
}

.property-card .property-details h3 {
  margin: 0 0 4px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.property-card .property-location {
  color: #888;
  font-size: 14px;
  margin: 0;
}

.property-card .property-features {
  display: flex;
  gap: 20px;
  align-items: center;
}

.property-card .feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}

.property-card .feature-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #888;
  margin-bottom: 0;
}

.property-card .govt-seal i {
  font-size: 20px;
  color: white;
}

/*** propertyCard **/

/*** newsBlock **/

.newsSectionWrapper {
  padding: 100px 0;
}

.hero-title {
  font-size: 36px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.newsBlock {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* margin-bottom: 30px; */
  overflow: hidden;
  height: 100%;
}

.newsBlockImage {
  height: 250px;
  overflow: hidden;
}

.newsBlockImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newsBlockContent {
  padding: 20px;
}

.newsBlockTitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newsBlockContentTop p {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 15px;
  height: 30px;
}

.newsBlockContentTop span {
  color: #007bff;
  font-weight: 500;
}

.newsBlockDescription {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.85rem;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #0056b3;
  color: white;
  text-decoration: none;
}

.loading {
  text-align: center;
  padding: 40px;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 5px;
  margin: 0 0 10px;
}

.api-config {
  background: white;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.api-config input,
.api-config select {
  margin-bottom: 10px;
}

.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.swiper-button-next,
.swiper-button-prev {
  width: 35px;
  height: 35px;
  top: 45%;
  background-color: #007bff;
  padding: 20px;
  box-sizing: border-box;
}

.newsSwiper .swiper-button-next:after,
.newsSwiper .swiper-button-prev:after {
  font-size: 14px;
  color: #fff;
}

.newsSwiper .swiper-wrapper {
  padding: 50px 0;
}
/*** newsBlock **/

/*** knowYourScoreWrappr **/

.knowYourScoreWrappr {
  padding: 100px 0;
}

.scoreSwiper .swiper-wrapper {
  padding: 15px 0;
}

.scoreSwiperBlock {
  padding: 30px 25px;
  background-color: #fff;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 16px;
}

.scoreSwiperBlock h3 {
  font-size: 18px;
}

.scoreSwiperBlock p {
  margin-bottom: 0;
}

.stepsBox {
  background-color: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 30px 30px;
  height: 100%;
}

.stepNumber {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ff7f50, #ff6b35);
  border-radius: 9px;
  color: #fff;
  margin-bottom: 10px;
}

.stepTitle h3 {
  font-size: 18px;
  font-weight: 700;
}

.stepDesc p {
  margin-bottom: 0;
}

/*** knowYourScoreWrappr **/

.floatingIconWrapper {
  bottom: 50px;
  right: 30px;
  z-index: 5;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}

.floatingIcon {
  transform: translatey(0px);
  animation: float 6s ease-in-out infinite;
}
.floatingIcon img {
  width: 50px;
}

.getYourScoreCard {
  padding: 100px 0;
}

/*** pricing ***/

.pricimgWrapper {
  padding: 100px 0;
}

.pricimgWrapper .pricing-header {
  text-align: center;
  margin-bottom: 50px;
  color: white;
}

.pricimgWrapper .pricing-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricimgWrapper .pricing-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.pricimgWrapper .pricing-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.pricimgWrapper .pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.pricimgWrapper .pricing-card.featured {
  transform: scale(1.05);
  border: 3px solid #ffd700;
}

.pricimgWrapper .pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricimgWrapper .pricing-header-card {
  padding: 30px 30px 20px;
  text-align: center;
  position: relative;
}

.pricimgWrapper .plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.pricimgWrapper .plan-price {
  font-size: 3rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 10px;
}

.pricimgWrapper .plan-period {
  color: #666;
  font-size: 1rem;
}

.pricimgWrapper .featured-badge {
  position: absolute;
  top: -5px;
  right: 20px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #333;
  padding: 8px 20px;
  border-radius: 0 0 15px 15px;
  font-weight: 600;
  font-size: 0.9rem;
}

.pricimgWrapper .pricing-features {
  padding: 0 30px 30px;
}

.pricimgWrapper .feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.pricimgWrapper .feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 35px;
}

.pricimgWrapper .feature-list li:last-child {
  border-bottom: none;
}

.pricimgWrapper .feature-list li i {
  color: #28a745;
  position: absolute;
  left: 0;
  top: 15px;
}

.pricimgWrapper .feature-list li.feature-unavailable i {
  color: red;
}

.pricimgWrapper .feature-unavailable {
  color: #999;
  text-decoration: line-through;
}

.pricimgWrapper .feature-unavailable i {
  color: #dc3545;
}

.pricimgWrapper .pricing-button {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  border: none;
  transition: all 0.3s ease;
}

.pricimgWrapper .btn-primary-custom {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.pricimgWrapper .btn-primary-custom:hover {
  background: linear-gradient(45deg, #5a6fd8, #6a4190);
  transform: translateY(-2px);
}

.pricimgWrapper .btn-outline-custom {
  border: 2px solid #667eea;
  color: #667eea;
  background: transparent;
}

.pricimgWrapper .btn-outline-custom:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.pricimgWrapper .btn-gold-custom {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: #fff;
}

.pricimgWrapper .btn-gold-custom:hover {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: #fff;
}

.pricimgWrapper .pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}
/*** pricing ***/

.btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 2;
}

.modal-dialog {
  width: 450px;
  max-width: 100%;
}

.modal-body {
  padding: 50px 30px 30px;
}

.modal .btn-secondary-custom {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  border: 2px solid rgb(92 105 235);
  padding: 10px 40px;
  display: inline-block;
}

.form-control {
  padding: 12px 15px;
}

/* how it works  */

.howitWorksWrapper {
  background: url("../img/pageBg.png") no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0 100px;
}

.howitWorksWrapperInner {
  padding: 50px 50px;
  background: url("../img/sectionBg.png") no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 25px;
  background-attachment: fixed;
}

.howitWorksWrapperOuter {
  border-radius: 25px;
  overflow: hidden;
}

.howitWorksWrapperInnerBox h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.howitWorksWrapperInnerBox p {
  color: #fff;
  font-size: 16px;
}

@media (max-width: 767px) {
  .howitWorksWrapper {
    padding: 100px 0 60px;
  }
}
.stepBox {
  color: #fff;
  position: relative;
}

.stepBox + .stepBox {
  margin-top: 40px;
}
.stepBox h2 {
  font-size: 20px;
  font-weight: 700;
}
/* Step box: layout list items in a responsive grid: 3 cols (desktop), 2 cols (tablet), 1 col (mobile) */
.stepBox ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 18px 22px;
  /* list-style: none; */
  padding-left: 15px;
  margin: 0;
}

.stepBox ul li {
  /* background: rgba(255, 255, 255, 0.03); */
  border-radius: 8px;
  padding: 0px 0px;
  box-sizing: border-box;
  color: #fff;
}

.stepBox ul li h5 {
  margin: 0 0 6px 0;
  font-size: 13px;
  font-weight: 700;
}

.stepBox ul li span {
  display: block;
  margin: 0;
  /* color: #555; */
  font-size: 11px;
  line-height: 1.35;
}

.stepBox.step-2 {
  transform: translate(-15%, -20%);
}

.step-3 {
  transform: translate(0, -30%);
}

.stepBoximg span {
  font-size: 14px;
  color: #fff;
  font-weight: 700;
}

.stepBox p {
  font-size: 14px;
  line-height: 1.6;
}
/* how it works  */

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .navbar {
    padding: 0.5rem 0;
  }

  .heroBanner {
    margin-top: 78px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section {
    padding: 60px 0;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }

  .navbar-nav .navButton {
    display: inline-block;
    margin: 0;
  }

  .hero-section {
    padding: 60px 0;
    /* min-height: 80vh; */
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    font-size: 14px;
  }

  /* Mission Section Mobile */
  .mission-visual {
    height: 300px;
    margin-bottom: 3rem;
  }

  .mission-circles {
    width: 280px;
    height: 280px;
  }

  .circle {
    width: 80px;
    height: 80px;
  }

  .circle i {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
  }

  .circle span {
    font-size: 0.7rem;
  }

  .mission-icon-main {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .mission-content {
    padding-left: 0;
    text-align: center;
  }

  .mission-title {
    font-size: 2rem;
  }

  .locationMap iframe {
    height: 300px;
  }

  .sendMessageWrapper {
    padding: 0px 0 60px;
  }

  .getYourScoreCard,
  .knowYourScoreWrappr {
    padding: 60px 0;
  }

  .newsBlockContentTop p {
    height: auto;
  }
  .getYourScoreCard .col-md-4 + .col-md-4 {
    margin-top: 2rem;
  }

  .floatingIconWrapper {
    bottom: 20px;
    right: 10px;
  }

  .floatingIcon img {
    width: 40px;
  }

  .newsSwiper .swiper-wrapper {
    padding: 30px 0 50px;
  }

  .pricimgWrapper .pricing-card.featured {
    transform: none;
    margin-top: 0;
  }

  .pricimgWrapper .pricing-header h1 {
    font-size: 2rem;
  }

  .modal-dialog {
    max-width: 95%;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 26px;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    display: block;
    margin: 0 0 0.5rem 0;
    text-align: center;
    padding: 12px 14px;
    font-size: 12px;
  }

  /* Mission Section Small Mobile */
  .mission-visual {
    height: 250px;
  }

  .mission-circles {
    width: 220px;
    height: 220px;
  }

  .circle {
    width: 60px;
    height: 60px;
  }

  .circle i {
    font-size: 1.1rem;
  }

  .circle span {
    font-size: 0.6rem;
  }

  .mission-icon-main {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .mission-title {
    font-size: 1.75rem;
  }

  .mission-text-main {
    font-size: 1.1rem;
  }

  .testimonialsWrapper,
  .newsSectionWrapper,
  .registeredTransactions,
  .faq-container,
  .pricimgWrapper,
  .getInTouchWrapper {
    padding: 60px 0;
  }

  .stat-item {
    border-radius: 16px;
    padding: 2.2rem 1rem;
    height: 155px;
  }

  .stat-number-inner {
    font-size: 2.5rem;
  }

  .stats-section .col-6:nth-child(n + 3) {
    margin-top: 15px;
  }
  .cta-text {
    font-size: 16px;
    margin-bottom: 1.5rem;
  }

  .newsSectionWrapperBlock .col-md-4 + .col-md-4 {
    margin-top: 1.5rem;
  }

  .testimonialsSwiper .item {
    padding: 40px 30px;
  }

  .ctaGroup {
    gap: 5px;
  }

  .howitWorksWrapperInnerLeftimg img {
    width: 150px;
  }

  .howitWorksWrapperInner {
    padding: 50px 30px;
  }

  .stepBox.step-2,
  .step-3 {
    transform: none;
  }
}
@media (max-width: 991px) {
  .stepBox ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: single column */
@media (max-width: 767px) {
  .stepBox ul {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1536px) {
  .stepBox ul li h5 {
    font-size: 16px;
  }
  .stepBox ul li span {
    font-size: 14px;
  }
}
