@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
:root {
  --primary-color: #f84d50;
  --secondary-color: #510a88;
  --secondary-color-light: #7e4ca4;
  --light-color: #ffffff;
  --dark-color: #000000;
  --grey-bg: #fafafa;
  --para-color: #6c757d;
  --heading-color: #111111;
  --font1: "Nunito", sans-serif;
  --font2: "Nunito Sans", sans-serif;
  --font3: "Rubik", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  outline: none;
  font-family: "Rubik", sans-serif;
}

.w-md-50 {
  width: 50%;
}

.fw-3 {
  font-weight: 300 !important;
}
.fw-4 {
  font-weight: 400 !important;
}
.fw-5 {
  font-weight: 500 !important;
}
.fw-6 {
  font-weight: 600 !important;
}
.fw-7 {
  font-weight: 700 !important;
}
.fw-8 {
  font-weight: 800 !important;
}
.fw-9 {
  font-weight: 900 !important;
}
.section-space {
  padding: 80px 0;
}
.section-title {
  
  font-size: calc(1.4rem + 1.6vw);
  font-weight: 600;
  color: var(--heading-color);
  padding-bottom: 2rem;
  text-align: left;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  margin-top: 2px;
  border-radius: 2px;
}

.section-title em {
  font-style: italic;
  color: #666;
  font-weight: 400;
}

.section-sub-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0rem;
  color: var(--light-color);
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.5;
  font-size: 16px;
}
a:hover,
.toggle-btn:hover,
.btn:hover {
  cursor: pointer !important;
}
a {
  color: #f67155;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: rgb(209, 1, 1);
}
video {
  display: block;
}

img {
  width: 100%;
  display: block;
}

.page-content {
  width: 100%;
  margin-top: 80px;
}

.section-heading {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}
.bg-black {
  background-color: #000;
}
.bg-grey {
  background-color: #e7e7e7;
}
.text-white {
  color: rgb(248, 248, 248) !important;
}
ul {
  padding-left: 0;
}
/* button for all pages start ----------------------------- */
.btn {
  background: #ff4350;
  margin-top: 30px;
  color: white;
  padding: 10px 50px;
  border-radius: 25px;
  margin-top: 15px;
  display: inline-block;
  border: none;
  /* position: relative;
  overflow: hidden; */
}
.btn:hover {
  background: #ff1a29;
  color: rgb(255, 255, 255) !important;
}

.btn-white {
  background: rgba(0, 0, 0, 0.205);
  border: 2px solid white;
}
.btn-white:hover {
  background-color: white;
  color: #000000 !important;
  font-weight: 700;
}
.explore-btn {
  background: transparent;
  border: 1px solid #ddd;

  border: 1px solid #9e43ad;
  color: #333;
padding: 8px 15px;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.explore-btn:hover {
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
  transform: translateY(-1px);
}
.free-demo-btn {
  border: 1px solid #ff4350;
  background: #ff4350;
  color: #ffffff;
}
.free-demo-btn:hover {
  background: var(--secondary-color);
  border-color: var(--primary-color);
  border: 1px solid var(--secondary-color);
}

.bg2 {
  background-color: #f4f4f4;
}

.bg-2 {
  background-color: #fafafa;
}
.bg-even {
  background-color: #f5f5f5;
}

.btn-transperent {
  color: #000;
  padding: 7px 30px;
}

.flex-centet-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-centet-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-centet-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.point_list li {
  list-style: disc;
  margin-bottom: 12px;
}

.position-relative {
  position: relative;
}

.custom-container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

@media (min-width: 576px) {
  .custom-container {
    max-width: 580px;
  }
}

@media (min-width: 768px) {
  .custom-container {
    max-width: 780px;
  }
}

@media (min-width: 992px) {
  .custom-container {
    max-width: 1000px;
  }
}

@media (min-width: 1200px) {
  .custom-container {
    max-width: calc(100% - 100px);
  }
}

@media (min-width: 1400px) {
  .custom-container {
    max-width: 85%;
  }
}

/* ##### form style ######  */

.page-form-wrapper .form-control,
.page-form-wrapper .form-select,
.ant-select-selector,
textarea {
  width: 100%;
  border: 0;
  border: 1px solid #e1e1e1;
  border-bottom: 1px solid #ff4350;
  background: #ffffff00;
  padding: 15px;
  border-radius: 15px 15px 0 0;
}

/* CTA section: large image with right-side rounded card overlay */
.cta-section {
  padding: 48px 0;
}
.cta-section .cta-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #f6f6f6;
}
.cta-section .cta-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.cta-overlay {
  position: absolute;
  right: 10px;
  top: 10px;
  bottom: 10px;

  width: 380px;
  max-width: 42%;
  height: calc(100% - 20px);
  background: #fff;
  /* border-radius: 18px; */
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.12);
  padding: 22px 24px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 20px;
  z-index: 5;
}
.cta-overlay h2 {
  margin: 0;
  /* font-size: 28px; */
  color: #111827;
  line-height: 1.05;
}
.cta-overlay p {
  margin: 0;
  color: #596374;
  font-size: 14px;
}
.cta-button {
  color: #1d1d1d;
  border-radius: 30px;
  padding: 12px 20px;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  /* box-shadow: 0 10px 30px rgba(79, 45, 139, 0.18); */
  border: 1px solid black;
  background-color: #ffffff00;
  display: inline;
  color: var(--text-color);
  font-size: 16px;
  max-width: 180px;
   
}
.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(79, 45, 139, 0.22);
  outline: none;
}

/* Profile image corner inside overlay (optional) */
.cta-overlay .profile-img {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-end;
}
.cta-overlay .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .cta-section .cta-image img {
    height: 480px;
  }
  .cta-overlay {
    right: 24px;
    width: 340px;
    max-width: 48%;
  }
}
@media (max-width: 992px) {
  .section-space {
  padding: 60px 0;
}
}
@media (max-width: 768px) {
  .section-space {
  padding: 40px 0;
}
  .cta-section {
    padding: 28px 0 40px 0;
  }
  .cta-section .cta-image img {
    height: 420px;
  }
  .cta-overlay {
    position: absolute;
    transform: none;
    right: 16px;
    top: auto;
    margin: 20px auto 0 auto;
    width: calc(100% - 32px);
    max-width: none;
    border-radius: 12px;
  }
}
@media (max-width: 576px) {
  .section-space {
  padding: 20px 0;
}
}