/* CSS Variables for theme colors and fonts (should be defined in :root or body) */
:root {
  --primary: #0095ff;
  --plusJakartaSans: 'Plus Jakarta Sans', sans-serif;
  --iconColor: #0f57e8;
  --home5HeroBg: rgb(240, 245, 255);
  --bannerBg: rgb(36, 37, 73);
  --blackColor: rgba(0,0,0,0.10);
  --blackColor26: rgba(0,0,0,0.15);
  --whiteColor: #fff;
  --title: #1a1a1a;
  --dmSans: 'DM Sans', sans-serif;
  --textColor: #6b6b6b;
}

/* Banner Section Styles - from Banner.style.jsx */

.banner-section {
  min-height: 642px;
  background: var(--home5HeroBg);
  padding-bottom: 80px;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}
.banner-section::after {
  content: url(../images/saas/banner-bg-vector.svg);
  position: absolute;
  z-index: 1;
  left: 0px;
  bottom: 40%;
}
.banner-section .index-hero-content {
  padding-top: 210px;
  position: relative;
  z-index: 11;
}
.banner-section .index-hero-content .welcome-section {
  height: 40px;
  border: 1px solid var(--blackColor26);
  border-radius: 50px;
  background: var(--whiteColor);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  max-width: 210px;
  width: 100%;
  margin: auto;
  margin-bottom: 20px;
  color: var(--title);
}
.banner-section .index-hero-content .welcome-section img {
  margin-right: 5px;
  position: relative;
  top: -2px;
}
.banner-section .index-hero-content .banner-text .banner-title {
  margin-bottom: 28px;
  gap: 18px;
  font-weight: 700;
  font-size: 60px;
}
.banner-section .index-hero-content .banner-text .banner-title .brack-text {
  display: block;
}
.banner-section .index-hero-content .banner-text .banner-title .animation-text {
  padding: 0;
  margin: 0 auto !important;
  text-align: center;
}
.banner-section .index-hero-content .banner-text .banner-title .animation-text:after {
  display: none;
}
.banner-section .index-hero-content .banner-text .banner-title b {
  background: linear-gradient(90deg, #0095ff 2.79%, #0f57e8 57.47%, #f7578c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 700;
}
.banner-section .index-hero-content .banner-text p {
  font-family: var(--dmSans);
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  color: var(--title);
  max-width: 569px;
  width: 100%;
  margin: auto;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 38px;
}
.banner-section .index-hero-content form {
  max-width: 570px;
  margin: auto;
  height: 60px;
  margin-bottom: 6px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--whiteColor);
  box-shadow: 0px 5px 10px var(--blackColor);
  border-radius: 30px;
  overflow: hidden;
}
.banner-section .index-hero-content form button {
  height: 50px;
  max-width: 170px;
  width: 100%;
  padding: 0px;
}
.banner-section .index-hero-content form input {
  height: 100%;
  width: 100%;
  max-width: 350px;
  border: none;
  outline: none;
  padding: 8px 19px;
  background: transparent;
}
.banner-section .index-hero-img {
  position: relative;
  z-index: 10;
  max-width: 1170px;
  width: 100%;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 10%;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-section .index-hero-img img {
  width: 80%;
  transform: rotateX(40deg);
  transition: 0.5s;
}
.banner-section .index-scroll-carousel-section {
  position: relative;
  overflow: hidden;
}
.banner-section .index-scroll-carousel-section::after {
  content: "";
  height: 100%;
  width: 20%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background: linear-gradient(90deg, #f0f5ff 0%, rgba(240, 245, 255, 0) 100%);
  z-index: 11;
}
.banner-section .index-scroll-carousel-section::before {
  content: "";
  height: 100%;
  width: 20%;
  position: absolute;
  right: 0px;
  bottom: 0px;
  background: linear-gradient(90deg, rgba(240, 245, 255, 0) 0%, #f0f5ff 100%);
  z-index: 11;
}
.banner-section .index-scroll-carousel-section ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 33px;
  margin-bottom: 30px;
}
.banner-section .index-scroll-carousel-section ul.slide-left {
  justify-content: flex-start;
}
.banner-section .index-scroll-carousel-section ul.slide-right {
  justify-content: flex-end;
}
.banner-section .index-scroll-carousel-section ul li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}
.banner-section .index-scroll-carousel-section ul li span {
  min-width: max-content;
}
.banner-section .index-scroll-carousel-section ul li strong {
  font-family: var(--dmSans);
  font-size: 30px;
  font-weight: 500;
  line-height: 70px;
  color: var(--title);
  min-width: max-content;
}

@media screen and (max-width: 1199px) {
  .banner-section h1,
  .banner-section .index-hero-content .banner-text .banner-title {
    font-size: 54px;
  }
  .banner-section .index-hero-content .banner-text h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 991px) {
  .banner-section .index-hero-img {
    min-height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .banner-section .index-hero-content {
    padding-top: 150px;
  }
  .banner-section .index-hero-content .banner-text .banner-title {
    font-size: 38px;
  }
  .banner-section .index-hero-img {
    min-height: 270px;
  }
  .banner-section {
    padding-bottom: 60px;
  }
  .banner-section .index-hero-content .banner-text h2 {
    font-size: 36px;
    line-height: 40px;
  }
  .banner-section .index-hero-content .banner-text p {
    font-size: 16px;
    max-width: 460px;
  }
  .banner-section .index-scroll-carousel-section ul {
    gap: 15px;
    margin-bottom: 0px;
  }
  .banner-section .index-scroll-carousel-section ul li {
    gap: 5px;
  }
  .banner-section .index-scroll-carousel-section ul li strong {
    font-size: 20px;
  }
  .banner-section .index-scroll-carousel-section ul li span img {
    max-width: 60%;
    margin: auto;
    display: flex;
  }
}
@media screen and (max-width: 575px) {
  .banner-section .index-hero-content .banner-text h2 {
    font-size: 32px;
    line-height: 40px;
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .banner-section .index-hero-content .banner-text span,
  .banner-section .index-hero-content .banner-text h2 {
    display: block;
    min-height: 40px;
  }
  .banner-section .index-hero-img {
    min-height: 150px;
  }
}
@media screen and (max-width: 374px) {
  .banner-section .index-hero-content .banner-text .banner-title .animation-text {
    width: 100%;
  }
  .banner-section .index-hero-content .banner-text .banner-title {
    font-size: 35px;
  }
}

/* Brand Slider Section Styles - from BrandSlider.style.jsx */

.brands-section {
  padding: 20px 0 100px 0;
}
.brands-section .container {
  position: relative;
}
.brands-section.newslater {
  padding: 60px 20px;
}
.brands-section.newslater .brands-section-title {
  background: #eef2f5;
}
.brands-section.corporate-brands-section {
  padding: 100px 0px 100px 0px;
}
.brands-section.corporate-brands-section .brands-slider {
  display: flex;
  align-items: center;
}

.brands-section .brands-section-title {
  margin-bottom: 25px;
  text-align: center;
}
.brands-section .brands-section-title.brands-section-title-index2 {
  text-align: left;
}
.brands-section .brands-section-title h2 {
  font-size: 18px;
  font-weight: 800;
  line-height: 30px;
}
.brands-section .brands-section-title.brands-section-title-index8 {
  text-align: left;
  position: absolute;
  left: 0px;
  top: 2px;
  background: #fff;
  z-index: 2;
  padding-right: 30px;
}

.brands-section .brands-slider {
  position: relative;
  width: 100%;
  height: 50px;
  overflow: hidden;
}
.brands-section .brands-slider-container {
  width: calc(200px * 12);
  display: flex;
  align-items: center;
  gap: 0px;
  animation: smoothSlider 25s infinite linear;
}
.brands-section .slider-item {
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brands-section .brands-slider::before {
  position: absolute;
  z-index: 1;
  content: "";
  top: 0;
  left: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(-180deg);
}
.brands-section .brands-slider::after {
  position: absolute;
  z-index: 1;
  content: "";
  top: 0;
  right: 0;
  width: 120px;
  height: 100%;
  background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}
.brands-section .brands-slider.sass::after {
  background: linear-gradient(270deg, #f2f6fd 0%, rgba(255, 255, 255, 0) 100%);
}
.brands-section .brands-slider.sass::before {
  background: linear-gradient(270deg, #f8fbff 0%, rgba(255, 255, 255, 0) 100%);
}
.brands-section .brands-slider.v8 {
  height: 36px;
}
.brands-section .brands-slider.v8::before {
  left: 100px;
}
.brands-section .brands-slider.v8 .slider-item {
  height: 36px;
  max-width: 178px;
}
.brands-section .brands-slider.v8 .slider-item img {
  max-width: 105px;
}
.brands-section .brands-slider.newslater {
  height: 36px;
}
.brands-section .brands-slider.newslater::before {
  left: 330px;
  background: linear-gradient(270deg, #eef2f5 0%, rgba(238, 242, 245, 0) 100%);
  transform: rotate(180deg);
}
.brands-section .brands-slider.newslater::after {
  background: linear-gradient(270deg, #eef2f5 0%, rgba(238, 242, 245, 0) 100%);
}
.brands-section .brands-slider.newslater .slider-item {
  height: 36px;
  max-width: 178px;
}
.brands-section .brands-slider.newslater .slider-item img {
  max-width: 105px;
}
@keyframes smoothSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 6));
  }
}

@media screen and (max-width: 1199px) {
  .brands-section .brands-slider.v8 {
    padding: 40px 20px;
    margin-bottom: 72px;
  }
  .brands-section.corporate-brands-section {
    padding: 100px 0px;
  }
}
@media screen and (max-width: 991px) {
  .brands-section.corporate-brands-section {
    padding: 90px 0px;
  }
}
@media screen and (max-width: 767px) {
  .brands-section {
    padding-top: 70px;
  }
  .brands-section.newslater {
    padding: 40px 20px;
  }
  .brands-section.newslater .brands-section-title {
    position: inherit;
  }
  .brands-section.corporate-brands-section {
    padding: 60px 0px;
  }
  .brands-section.sass {
    padding-top: 40px;
  }
  .brands-section .brands-slider-container {
    gap: 50px;
  }
  .brands-section .slider-item {
    width: 95px;
    height: 18px;
  }
  .brands-section .brands-slider.newslater::before {
    left: 0px;
  }
}
@media screen and (max-width: 374px) {
  .brands-section .brands-section-title h2 {
    font-size: 16px;
  }
}

/* Consent Template Section Styles - from PowerfullTemplate.style.jsx */

.consent-template-section {
  margin-bottom: 140px;
  overflow-y: hidden;
  background: var(--whiteColor);
  position: relative;
  z-index: 2;
}
.consent-template-section .consent-template-content {
  margin-top: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}
.consent-template-section .consent-template-content .consent-template-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.consent-template-section .consent-template-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.consent-template-section .consent-template-row.active .consent-template-number {
  color: var(--whiteColor);
  background: var(--primary);
}
.consent-template-section .consent-template-row .consent-template-number {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  border: 10px solid var(--whiteColor);
  background: #e6e6e6;
  color: var(--title);
  font-family: var(--plusJakartaSans);
  font-weight: 700;
  line-height: 30px;
  position: absolute;
  top: 0px;
  z-index: 2;
  transition: 0.3s;
}
.consent-template-section .consent-template-row .consent-template-number.active {
  color: var(--whiteColor);
  background: var(--primary);
}
.consent-template-section .consent-template-row::before {
  z-index: 1;
  content: "";
  background: var(--blackColor);
  height: 100%;
  width: 2px;
  top: 50px;
  position: absolute;
}
.consent-template-section .consent-template-row::after {
  content: "";
  background: var(--primary);
  height: 0%;
  width: 2px;
  top: 50px;
  position: absolute;
  z-index: 1;
  transition: height 2s;
}
.consent-template-section .consent-template-img.consent-template-img-right {
  padding: 30px 0px 50px 70px;
  margin-top: 40px;
}
.consent-template-section .consent-template-img.consent-template-img-left {
  padding: 30px 70px 50px 0px;
  margin-top: 40px;
}
.consent-template-section .timeline-innerline {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--blackColor);
}
.consent-template-section .timeline-innerline .timeline-progress {
  width: 2px;
  height: 50px;
  background-color: var(--primary);
}
.consent-template-section .consent-template-text {
  padding-top: 75px;
  max-width: 457px;
  width: 100%;
}
.consent-template-section .consent-template-text ol,
.consent-template-section .consent-template-text ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.consent-template-section .consent-template-text.consent-template-text-right {
  padding-left: 80px;
}
.consent-template-section .consent-template-text h4 {
  margin-bottom: 24px;
}
.consent-template-section .consent-template-text h6 {
  margin-bottom: 10px;
  font-family: var(--dmSans);
}
.consent-template-section .consent-template-text p {
  margin-bottom: 16px;
}
.consent-template-section .consent-template-text ul li {
  color: var(--title);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  font-weight: 600;
}
.consent-template-section .consent-template-text ul li svg {
  color: var(--iconColor);
  font-size: 20px;
  font-weight: 800;
}
.consent-template-section .consent-template-text ol {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 26px;
}
.consent-template-section .consent-template-text ol li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  font-size: 15px;
  margin-right: 15px;
  color: var(--title);
}
.consent-template-section .consent-template-text ol li:last-child {
  margin-right: 0;
}
.consent-template-section .consent-template-text ol li img {
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .consent-template-section {
    margin-bottom: 85px;
  }
  .consent-template-section .consent-template-text.consent-template-text-left {
    padding-right: 20px;
  }
  .consent-template-section .consent-template-text.consent-template-text-right {
    padding-left: 20px;
  }
  .consent-template-section .consent-template-img {
    margin-top: 50px;
  }
  .consent-template-section .consent-template-img.consent-template-img-left {
    padding-right: 20px;
  }
  .consent-template-section .consent-template-img.consent-template-img-right {
    padding-left: 20px;
  }
  .consent-template-section .consent-template-text {
    padding-top: 60px;
  }
  .consent-template-section .consent-template-text h4 {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 26px;
  }
  .consent-template-section .consent-template-text ol {
    flex-wrap: wrap;
  }
  .consent-template-section .consent-template-text ol li {
    width: 50%;
    gap: 10px;
    margin-top: 15px;
  }
  .consent-template-section .consent-template-text ol li img {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .consent-template-section {
    margin-bottom: 40px;
  }
  .consent-template-section .consent-template-img.consent-template-img-left {
    padding: 0px;
  }
  .consent-template-section .consent-template-img.consent-template-img-right {
    padding: 0px;
  }
  .consent-template-section .consent-template-content {
    margin-top: 0;
  }
  .consent-template-section .consent-template-text {
    padding-top: 30px;
  }
  .consent-template-section .consent-template-img.consent-template-img-right {
    padding-left: 0;
  }
  .consent-template-section .consent-template-row::before,
  .consent-template-section .consent-template-row::after {
    display: none;
    background: transparent;
  }
  .consent-template-section .consent-template-row .consent-template-number {
    display: none;
  }
  .consent-template-section .consent-template-text {
    max-width: 100%;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .consent-template-section .timeline-innerline {
    display: none;
  }
  .consent-template-section .powerful-email-left .email-collaps-list .timeline-innerline {
    display: block;
  }
}
@media screen and (max-width: 575px) {
  .consent-template-section {
    margin-bottom: 40px;
  }
  .consent-template-section .consent-template-text ol {
    display: block;
    margin-top: 20px;
  }
  .consent-template-section .consent-template-text ol li {
    width: 100%;
    gap: 0;
  }
  .consent-template-section .powerful-email-left .email-collaps-list .email-collaps-item .email-collaps-number {
    min-height: 50px;
    min-width: 50px;
    max-width: 50px;
    max-height: 50px;
    font-size: 25px;
  }
  .consent-template-section .powerful-email-left .email-collaps-list .email-collaps-item .email-collaps-text h3 {
    font-size: 20px;
    margin-top: 7px;
  }
  .consent-template-section .powerful-email-left .email-collaps-list .timeline-innerline {
    left: 25px;
  }
}

/* Pricing Table Section Styles - from PricingTable.style.jsx */

.home-pricing-list {
  background: linear-gradient(90deg, #d3e1ff 0%, #ecf1f8 45.31%, #ffeaef 98.8%);
  padding: 120px 0 120px 0;
  border-radius: 50px;
}

.pricing-list {
  background-color: rgba(251, 242, 239);
  padding: 0px 0 120px 0;
}

.best-pricing-grid {
  width: 100%;
  display: flex;
  align-items: center;
  border-radius: 30px;
  justify-content: center;
}

.best-pricing-card {
  width: 25%;
  padding: 38px;
  background-color: var(--whiteColor);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.best-pricing-card .best-pricing-card-header h3 {
  margin-bottom: 0;
  line-height: 1;
}
.best-pricing-card .best-pricing-card-header h3 span {
  font-size: 15px;
  font-weight: 500;
}
.best-pricing-card:first-child {
  border-radius: 30px 0 0 30px;
}
.best-pricing-card:last-child {
  border-radius: 0 30px 30px 0;
  border: 1px solid var(--blackColor26);
  border-left: 0;
}
.best-pricing-card.meeting {
  border-left: 1px solid var(--blackColor26);
  border-right: 1px solid var(--blackColor26);
  z-index: 1;
}
.best-pricing-card.meeting .start-free-btn {
  background-color: var(--primary);
  color: var(--whiteColor);
  margin-top: 20px;
}
.best-pricing-card.meeting .start-free-btn span {
  color: var(--whiteColor);
}
.best-pricing-card.v2 {
  background-color: transparent;
}
.best-pricing-card .overlay {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 38px;
  border-radius: 10px 10px 0 0;
  background-color: var(--heroimg1Bg);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 38px;
  z-index: 2;
  box-sizing: border-box;
  justify-content: flex-start;
}
.best-pricing-card .overlay p,
.best-pricing-card .overlay .mb-0 {
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  color: var(--whiteColor);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  font-family: var(--dmSans);
  margin-bottom: 0;
}
.best-pricing-card .overlay img {
  width: 18px;
  height: 18px;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* Sadece En Popüler (meeting) overlay için özel arka plan rengi */
.best-pricing-card.meeting .overlay {
  background-color: #00CEC9;
}

@media screen and (max-width: 1199px) {
  .best-pricing-grid {
    flex-wrap: wrap;
  }
  .best-pricing-card {
    width: 50%;
  }
  .best-pricing-card:first-child {
    border-radius: 30px 0 0 0;
  }
  .best-pricing-card:nth-child(3) {
    border-radius: 0 0 0 30px;
  }
  .best-pricing-card:last-child {
    border-radius: 0 0 30px 0;
    border: 1px solid var(--blackColor26);
    border-left: 0;
  }
  .best-pricing-card.active {
    border-left: 1px solid var(--blackColor26);
    border-right: 1px solid var(--blackColor26);
  }
}
@media screen and (max-width: 991px) {
  .best-pricing-section {
    padding-top: 74px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .best-pricing-card {
    width: 100%;
    padding: 30px;
    border-radius: 30px !important;
    margin-bottom: 20px;
  }
  .best-pricing-card:not(:first-child) {
    border-left: 0;
  }
  .best-pricing-card:not(:last-child) {
    border-bottom: 1px solid var(--blackColor26);
  }
  .best-pricing-card:first-child {
    border-radius: 30px 30px 0 0;
    margin-bottom: 40px;
  }
  .best-pricing-card:nth-child(3) {
    border-radius: 0 0 0 0;
  }
  .best-pricing-card:last-child {
    border-radius: 0 0 30px 30px;
    border: 1px solid var(--blackColor26);
    border-left: 1px solid var(--blackColor26);
    margin-bottom: 0px;
  }
  .best-pricing-card .overlay {
    border-radius: 20px 20px 0 0;
    padding: 0 18px;
    height: 30px;
  }
  .best-pricing-card .overlay p,
  .best-pricing-card .overlay .mb-0 {
    font-size: 12px;
  }
  .best-pricing-card .overlay img {
    width: 16px;
    height: 16px;
    margin-left: 4px;
  }
  .best-pricing-card-body {
    color: #000000;
    margin-top: 25px;
  }
  .best-pricing-info {
    padding: 30px;
    gap: 10px;
  }
  .best-pricing-info-left .list {
    gap: 10px;
  }
  .best-pricing-info-right {
    gap: 20px;
  }
  .best-pricing-info-right a {
    gap: 10px;
  }
  .footer-card,
  .footer-widget {
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 20px;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 575px) {
  .best-pricing-header h2 {
    font-size: 30px;
  }
  .best-pricing-card-title h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 480px) {
  .best-pricing-header h2 {
    font-size: 24px;
  }
}

/* PricingTable styled-components ile birebir aynı detaylı stiller */

.best-pricing-selector {
  margin-bottom: 40px;
}
.best-pricing-selector form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.best-pricing-selector form button {
  font-weight: 500;
  color: var(--textColor);
  font-size: 18px;
  background: none;
  border: none;
  outline: none;
  border-radius: 30px;
  padding: 8px 24px;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.best-pricing-selector form button span {
  color: var(--heroimg1Bg);
}
.best-pricing-selector form button.active {
  color: var(--title);
  background: var(--primary);
  color: var(--whiteColor) !important;
}
.best-pricing-selector form input[type="checkbox"] {
  appearance: none;
  width: 50px;
  height: 24px;
  border: 1px solid var(--blackColor26);
  border-radius: 15px;
  background-color: var(--whiteColor);
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.best-pricing-selector form input[type="checkbox"]::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #0095ff80;
  transition: 0.3s;
}
.best-pricing-selector form input[type="checkbox"]:checked {
  background-color: var(--primary);
}
.best-pricing-selector form input[type="checkbox"]:checked::before {
  left: 28px;
  background-color: var(--whiteColor);
}

.best-pricing-card.meeting {
  border-left: 1px solid var(--blackColor26);
  border-right: 1px solid var(--blackColor26);
  z-index: 1;
}
.best-pricing-card.meeting .start-free-btn {
  background-color: var(--primary);
  color: var(--whiteColor);
}
.best-pricing-card.meeting .start-free-btn span {
  color: var(--whiteColor);
}

.compare-plans-btn {
  display: flex;
  align-items: center;
  gap: 13px;
  transition: 0.3s;
  font-weight: 800;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--primary);
  font-family: var(--dmSans);
  padding: 0;
}
.compare-plans-btn span {
  color: var(--primary);
  font-weight: 800;
  font-size: 16px;
  font-family: var(--dmSans);
}
.compare-plans-btn .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #0095ff4d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.compare-plans-btn .icon .iconify {
  font-size: 16px;
  color: var(--primary);
  transition: 0.3s;
}
.compare-plans-btn:hover .icon {
  background-color: var(--primary);
}
.compare-plans-btn:hover .icon .iconify {
  color: var(--whiteColor);
  transform: rotate(-45deg);
}

@media screen and (max-width: 1199px) {
  .best-pricing-grid {
    flex-wrap: wrap;
  }
  .best-pricing-card {
    width: 50%;
  }
  .best-pricing-card:first-child {
    border-radius: 30px 0 0 0;
  }
  .best-pricing-card:nth-child(3) {
    border-radius: 0 0 0 30px;
  }
  .best-pricing-card:last-child {
    border-radius: 0 0 30px 0;
    border: 1px solid var(--blackColor26);
    border-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .best-pricing-card {
    width: 100%;
    padding: 30px;
    border-radius: 30px !important;
    margin-bottom: 20px;
  }
  .best-pricing-card:not(:first-child) {
    border-left: 0;
  }
  .best-pricing-card:not(:last-child) {
    border-bottom: 1px solid var(--blackColor26);
  }
  .best-pricing-card:first-child {
    border-radius: 30px 30px 0 0;
    margin-bottom: 40px;
  }
  .best-pricing-card:nth-child(3) {
    border-radius: 0 0 0 0;
  }
  .best-pricing-card:last-child {
    border-radius: 0 0 30px 30px;
    border: 1px solid var(--blackColor26);
    border-left: 1px solid var(--blackColor26);
    margin-bottom: 0px;
  }
  .best-pricing-card .overlay {
    border-radius: 20px 20px 0 0;
    padding: 0 18px;
    height: 30px;
  }
}

/* PricingTable avatar listesi ve butonlar için eksik CSS */

.users-list {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.users-list li:not(:first-child) {
  margin-left: -4px;
}
.users-list li a {
  width: 36px;
  height: 36px;
  display: block;
}
.users-list li a img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--blackColor26);
  object-fit: cover;
  background: #fff;
}
.users-list li button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #0095ff4d;
  border: 2px solid var(--blackColor26);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  padding: 0;
  cursor: pointer;
}
.users-list li button img {
  width: 18px;
  height: 18px;
  transition: 0.3s;
}
.users-list li button:hover {
  background-color: var(--primary);
}
.users-list li button:hover img {
  filter: brightness(0) invert(1);
}

/* PricingTable buton stilleri */
.start-free-btn, .contact-us-btn {
  width: 100%;
  padding: 4px 0;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  background: var(--whiteColor);
  color: var(--primary);
  border: 1px solid var(--primary);
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 1;
  margin-top: 18px;
  margin-bottom: 18px;
  outline: none;
  cursor: pointer;
  overflow: hidden;
}
.start-free-btn .btn-inner, .contact-us-btn .btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.start-free-btn .btn-hover-text, .contact-us-btn .btn-hover-text {
  display: none;
}
.start-free-btn:hover, .contact-us-btn:hover {
  background: var(--primary);
  color: var(--whiteColor);
}
.start-free-btn:hover .btn-normal-text, .contact-us-btn:hover .btn-normal-text {
  opacity: 0;
}
.start-free-btn:hover .btn-hover-text, .contact-us-btn:hover .btn-hover-text {
  opacity: 1;
  color: var(--whiteColor);
}

/* Kart başlıkları ve spacing */
.best-pricing-card-header h3 {
  margin-bottom: 0;
  line-height: 1;
  font-size: 28px;
  font-weight: 700;
  color: var(--title);
}
.best-pricing-card-title h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
  display: inline-block;
}
.best-pricing-card-title img {
  width: 28px;
  height: 28px;
  margin-left: 8px;
  vertical-align: middle;
}
.best-pricing-card-header p {
  font-size: 15px;
  color: var(--textColor);
  margin-bottom: 18px;
}

/* Info kutusu ve ikon hizası */
.best-pricing-info {
  margin-top: 40px;
  background: var(--whiteColor);
  border-radius: 35px;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
}
.best-pricing-info .list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.best-pricing-info .list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.best-pricing-info .list-item .iconify {
  font-size: 18px;
  color: var(--primary);
  font-weight: 800;
  vertical-align: middle;
}
.best-pricing-info .list-item p {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 15px;
  color: var(--title);
  font-family: var(--dmSans);
}

/* Tüm planları karşılaştırın yazısı */
.best-pricing-info-right p {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 15px;
  color: var(--title);
  font-family: var(--dmSans);
}

/* Responsive avatar ve butonlar */
@media screen and (max-width: 767px) {
  .users-list li a, .users-list li button {
    width: 28px;
    height: 28px;
  }
  .users-list li a img, .users-list li button img {
    width: 28px;
    height: 28px;
  }
  .best-pricing-card-title img {
    width: 22px;
    height: 22px;
  }
  .start-free-btn, .contact-us-btn {
    font-size: 15px;
    padding: 10px 0;
  }
}

/* Overlay detayları (yükseklik, padding, z-index, font) */
.best-pricing-card .overlay {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 38px;
  border-radius: 10px 10px 0 0;
  background-color: var(--heroimg1Bg);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 38px;
  z-index: 2;
  box-sizing: border-box;
  justify-content: flex-start;
}
.best-pricing-card .overlay p,
.best-pricing-card .overlay .mb-0 {
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  color: var(--whiteColor);
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  font-family: var(--dmSans);
  margin-bottom: 0;
}
.best-pricing-card .overlay img {
  width: 18px;
  height: 18px;
  margin-left: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* .mb-0 yardımcı classı */
.mb-0 {
  margin-bottom: 0 !important;
}

/* SassWhyChoseUs Section Styles - styled-components'tan saf CSS'e */

.why-choose-us-section {
  padding-top: 132px;
  padding-bottom: 126px;
}
.why-choose-us-content {
  margin-top: 40px;
}
.why-choose-us-card {
  padding: 44px 20px;
  width: 100%;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  background: var(--whiteColor);
  transition: background 0.3s;
}
.why-choose-us-card.active {
  background: #f0f5ff; /* styled-components: theme.colors.cardBg */
}
.why-choose-us-card h5 {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 20px;
  color: var(--title);
  font-family: var(--dmSans);
}
.why-choose-us-card p {
  max-width: 330px;
  width: 100%;
  margin: auto;
  margin-bottom: 47px;
  font-size: 16px;
  color: var(--textColor);
  font-family: var(--dmSans);
}
.why-choose-us-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-us-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .why-choose-us-section {
    padding: 70px 0px 40px 0px;
  }
  .why-choose-us-content {
    margin-top: 0px;
  }
  .why-choose-us-card {
    padding: 30px 20px;
  }
  .why-choose-us-card p {
    margin-bottom: 30px;
  }
}

/* FAQ Section Styles - styled-components'tan saf CSS'e */

.faq-section {
  padding: 92px 0 140px 0;
}
.faq-section.v2 {
  padding: 132px 0 70px 0;
}
.faq-seciton-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}
.section-title {
  margin-bottom: 0px;
}
.faq-header-right img {
  max-width: 80px;
  height: auto;
}

/* Accordion Styles */
.template-accordion .accordion-item {
  border: 1px solid var(--blackColor26);
  border-radius: 15px;
}
.template-accordion .accordion-item:not(:first-child) {
  margin-top: 20px;
}
.template-accordion .accordion-item:first-child {
  border-top-left-radius: 15px !important;
  border-top-right-radius: 15px !important;
}
.template-accordion .accordion-item:last-child {
  border-bottom-left-radius: 15px !important;
  border-bottom-right-radius: 15px !important;
}
.template-accordion .accordion-header {
  border: 0 !important;
  border-radius: 15px !important;
  background-color: transparent;
}
.template-accordion .accordion-button {
  border-radius: 15px !important;
  font-family: var(--plusJakartaSans);
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--title);
  padding: 18px 20px 20px 50px;
  position: relative;
  background: none;
  box-shadow: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s;
}
.template-accordion .accordion-button::after {
  position: absolute;
  content: url('../images/icons/accordion-plus.png');
  top: 22px;
  left: 20px;
  width: 20px;
  height: 20px;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px !important;
  flex-shrink: 0;
  margin-left: auto;
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
.template-accordion .accordion-button:not(.collapsed)::after {
  content: url('../images/icons/accordion-minus.png');
}
.template-accordion .accordion-button:focus {
  box-shadow: none;
}
.template-accordion .accordion-collapse.show {
  border-radius: 15px;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.08);
}
.template-accordion .accordion-body {
  padding: 0 20px 20px 50px;
}

/* Responsive FAQ */
@media screen and (max-width: 991px) {
  .faq-section.v2 {
    padding-top: 72px;
  }
}
@media screen and (max-width: 767px) {
  .faq-section {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .faq-section.v2 {
    padding: 70px 0 60px 0;
  }
  .faq-seciton-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .template-accordion .accordion-button {
    font-size: 16px;
    line-height: 30px;
    padding-left: 44px;
  }
  .template-accordion .accordion-button::after {
    top: 24px;
    left: 15px;
  }
}
@media screen and (max-width: 575px) {
  .faq-section.v2 {
    padding: 70px 0 60px 0;
  }
}
@media screen and (max-width: 480px) {
  .section-title .title {
    font-size: 30px !important;
    line-height: 50px;
  }
}
@media screen and (max-width: 374px) {
  .section-title .title {
    font-size: 32px !important;
    line-height: 42px;
  }
}

/* Section Title Sub-title Styles */
.section-title .sub-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  font-family: var(--plusJakartaSans);
}

/* Footer Section Styles */

.footer-main-container {
  max-width: 100%;
  margin: auto;
  background-color: transparent;
}
.footer-main-section {
  background: #191c1f;
  border-radius: 20px 20px 0 0;
}
.footer-top {
  padding: 120px 0 70px 0;
}
.footer-card {
  max-width: 320px;
  background: none;
}
.footer-info {
  margin-bottom: 58px;
}
.footer-logo {
  margin-bottom: 37px;
  display: block;
  text-decoration: none;
}
.footer-logo h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 0;
}
.footer-info p {
  color: #ffffffb2;
  font-size: 16px;
  margin-bottom: 0;
}
.footer-follow {
  display: flex;
  align-items: center;
  gap: 20px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-link li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  transition: 0.3s;
  background: none;
}
.social-link li a:hover {
  border: 2px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.10);
}
.social-link .social-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  overflow: hidden;
  height: 18px;
  transition: 0.3s;
}
.social-link .social-icon img {
  margin-bottom: 10px;
  transition: 0.3s;
  width: 16px;
  height: 16px;
}
.footer-widget {
  margin-top: 23px;
}
.widget-title {
  margin-bottom: 25px;
}
.widget-title h6 {
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
}
.widget-body p {
  color: #fff;
  margin-bottom: 12px;
}
.widget-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-list li:not(:first-child) {
  margin-top: 20px;
}
.widget-list li a {
  color: #ffffffb2;
  font-weight: 500;
  line-height: 150%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: 0.3s;
  text-decoration: none;
}
.widget-list li a.btn {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.widget-list li a.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.widget-list li a.btn-outline-light:hover {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.footer-bottom {
  border-top: 1px solid #23262a26;
  padding: 30px 0;
}
.footer-copyright {
  text-align: center;
}
.footer-copyright p {
  color: #ffffffb2;
  margin-bottom: 0;
  font-size: 15px;
}
.footer-copyright a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}
.footer-copyright a:hover {
  color: #0095ff;
}
.privacy-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.privacy-menu li a {
  color: #ffffffb2;
  transition: 0.3s;
  text-decoration: none;
}
.privacy-menu li a:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .footer-top {
    padding: 80px 0 65px 0;
  }
  .footer-info {
    margin-bottom: 18px;
  }
  .footer-logo {
    margin-bottom: 24px;
  }
  .footer-card {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer-top {
    padding: 80px 0 65px 0;
  }
  .footer-copyright {
    text-align: center;
  }
  .privacy-menu {
    margin-bottom: 10px;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .privacy-menu li,
  .privacy-menu li a {
    line-height: 1;
  }
}
@media screen and (max-width: 575px) {
  .footer-info {
    margin-bottom: 40px;
  }
  .footer-logo {
    margin-bottom: 30px;
  }
  .footer-copyright {
    text-align: center;
  }
}

/* Banner BreadcumbsStyle - from Banner.style.jsx */
.banner-breadcrumb-section {
  margin-top: 90px;
  padding: 60px 0;
  background-color: var(--bannerBg);
  position: relative;
  z-index: 0;
}
.banner-breadcrumb-section .shape-img {
  position: absolute;
  z-index: -1;
}
.banner-breadcrumb-section .shape-img.img-1 {
  bottom: 0;
  left: 4%;
}
.banner-breadcrumb-section .shape-img.img-2 {
  bottom: 0;
  left: 34%;
}
.banner-breadcrumb-section.blog-details-breadcrumb-section {
  height: 436px;
}
.banner-breadcrumb-section.pricing-plan-breadcrumb-section {
  min-height: 580px;
  padding-top: 95px;
}
.banner-breadcrumb-section .pricing-plan-breadcrumb-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-top: 90px;
}
.banner-breadcrumb-section .pricing-plan-breadcrumb-right .best-pricing-selector form button {
  color: var(--whiteColor);
}
.banner-breadcrumb-section .best-pricing-selector {
  margin-bottom: 40px;
}
.banner-breadcrumb-section .best-pricing-selector form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.banner-breadcrumb-section .best-pricing-selector form button {
  color: var(--textColor);
}
.banner-breadcrumb-section .best-pricing-selector form button span {
  color: var(--home5HeroBg);
}
.banner-breadcrumb-section .best-pricing-selector form button.active {
  color: var(--title);
}
.banner-breadcrumb-section .best-pricing-selector form input[type="checkbox"] {
  appearance: none;
  width: 50px;
  height: 24px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 15px;
  background-color: var(--whiteColor);
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.banner-breadcrumb-section .best-pricing-selector form input[type="checkbox"]::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(0,149,255,0.5);
  transition: 0.3s;
}
.banner-breadcrumb-section .best-pricing-selector form input[type="checkbox"]:checked {
  background-color: var(--primary);
}
.banner-breadcrumb-section .best-pricing-selector form input[type="checkbox"]:checked::before {
  left: 28px;
  background-color: var(--whiteColor);
}
.banner-breadcrumb-section .breadcrumb-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.banner-breadcrumb-section .breadcrumb-list .breadcrumb-item {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--whiteColor);
}
.banner-breadcrumb-section .breadcrumb-list .breadcrumb-item.active {
  color: rgba(255,255,255,0.7);
}
.banner-breadcrumb-section .breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
  content: ".";
  font-size: 20px;
  margin: 0px 5px;
  color: rgba(255,255,255,0.7);
}
.banner-breadcrumb-section .breadcrumb-sec .breadcrumb-title {
  text-transform: capitalize;
  font-size: 50px;
  color: var(--whiteColor);
  margin-bottom: 0;
}
.banner-breadcrumb-section .breadcrumb-img {
  text-align: right;
}
@media screen and (max-width: 991px) {
  .banner-breadcrumb-section {
    margin-top: 70px;
  }
  .banner-breadcrumb-section .breadcrumb-sec .breadcrumb-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .banner-breadcrumb-section .breadcrumb-img {
    margin-top: 40px;
  }
  .banner-breadcrumb-section.blog-details-breadcrumb-section {
    height: 360px;
  }
  .banner-breadcrumb-section .breadcrumb-sec .breadcrumb-title {
    font-size: 40px;
    margin-top: 5px;
  }
  .banner-breadcrumb-section .breadcrumb-sec .breadcrumb-title br {
    display: none;
  }
  .banner-breadcrumb-section .pricing-plan-breadcrumb-right {
    justify-content: flex-start;
    margin-top: 40px;
  }
}
@media screen and (max-width: 374px) {
  .banner-breadcrumb-section h1,
  .banner-breadcrumb-section .breadcrumb-sec .breadcrumb-title {
    font-size: 35px;
    line-height: 50px;
  }
}

/* ContactFormStyle - from ContactForm.style.jsx */
.contact-form-section {
  padding: 130px 0 65px 0;
}
.contact-form-section .contact-img {
  margin-right: 50px;
  position: relative;
}
.contact-form-section .contact-img > img {
  width: 100%;
}
.contact-form-section .contact-img .overlay-item {
  position: absolute;
}
.contact-form-section .contact-img .overlay-item .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact-form-section .contact-img .overlay-item.shape-1 {
  bottom: 130px;
  right: 0;
}
.contact-form-section .contact-img .overlay-item.shape-1 .icon img {
  width: 42px;
  height: 36px;
}
.contact-form-section .contact-img .overlay-item.shape-2 {
  bottom: 0;
  left: 186px;
}
.contact-form-section .contact-img .overlay-item.shape-2 .icon img {
  width: 20px;
  height: 20px;
}
.contact-form-section .contact-content-title {
  margin-bottom: 35px;
}
.contact-form-section .contact-content h3 {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.contact-form-section .form-input {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-form-section .form-input label {
  font-weight: 500;
  font-size: 15px;
  line-height: 30px;
  text-transform: uppercase;
  color: var(--title);
}
.contact-form-section .form-input input,
.contact-form-section .form-input textarea {
  border: 1px solid var(--blackColor26);
  border-radius: 10px;
  padding: 10px 15px;
  font-weight: 500;
  font-size: 15px;
  line-height: 28px;
  color: var(--title);
  transition: 0.3s;
}
.contact-form-section .form-input textarea {
  resize: none;
}
.contact-form-section .form-input-between {
  display: flex;
  align-items: center;
  gap: 30px;
}
.contact-form-section .form-input-between .form-input {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact-form-section {
    padding: 80px 0 30px 0;
  }
  .contact-form-section .contact-content-title {
    margin-bottom: 20px;
  }
  .contact-form-section .contact-content h3 {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .contact-form-section .contact-content h2 {
    font-size: 32px;
    line-height: 45px;
  }
}
@media screen and (max-width: 575px) {
  .contact-form-section .form-input-between {
    gap: 0px;
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .contact-form-section .contact-img .overlay-item.shape-1 {
    bottom: 60px;
    right: 0;
  }
  .contact-form-section .contact-img .overlay-item.shape-1 img {
    width: 100px;
  }
  .contact-form-section .contact-img .overlay-item.shape-1 .icon img {
    width: 30px;
    height: auto;
  }
  .contact-form-section .contact-img .overlay-item.shape-2 {
    bottom: 0;
    left: 80px;
  }
  .contact-form-section .contact-img .overlay-item.shape-2 img {
    width: 60px;
  }
  .contact-form-section .contact-img .overlay-item.shape-2 .icon img {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 374px) {
  .contact-form-section .contact-content h2 {
    font-size: 30px;
    line-height: 42px;
  }
}

/* ContactLocationStyle - from ContactLocation.style.jsx */
.contact-location-section {
  padding: 65px 0 130px 0;
}
.contact-location-section .map-content {
  position: relative;
  width: 100%;
  height: 450px;
}
.contact-location-section .contact-map {
  width: 100%;
  height: 100%;
}
.contact-location-section .contact-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.contact-location-section .map-info-card {
  position: absolute;
  z-index: 999;
  top: 30px;
  right: 30px;
  width: 350px;
  height: 390px;
  padding: 30px;
  background-color: var(--whiteColor);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.contact-location-section .map-info-card .list {
  padding: 0;
  list-style: none;
  margin: 0;
  height: 100%;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: width 0.3s;
}
.contact-location-section .map-info-card .list::-webkit-scrollbar {
  display: none;
}
.contact-location-section .map-info-card .list li:not(:first-child) {
  margin-top: 10px;
}
.contact-location-section .map-info-card .list .list-item {
  display: flex;
  gap: 19px;
}
.contact-location-section .map-info-card .list .list-item .list-icon {
  flex: 0 0 auto;
}
.contact-location-section .map-info-card .list .list-item img {
  width: 20px;
  height: 20px;
}
.contact-location-section .map-info-card .list .list-item h4 {
  font-size: 15px;
  line-height: 45px;
  margin-bottom: 0;
}
.contact-location-section .map-info-card .list .list-item p {
  margin-bottom: 0;
}
.contact-location-section .map-info-card .list .list-icon {
  line-height: 45px;
}
@media screen and (max-width: 767px) {
  .contact-location-section {
    padding: 30px 0 80px;
  }
}
@media screen and (max-width: 575px) {
  .contact-location-section .map-info-card {
    position: absolute;
    z-index: 10;
    top: 30px;
    right: 30px;
    width: 80%;
    height: calc(100% - 60px);
    padding: 20px;
  }
}

/* CoreFeatureStyle - from CoreFeature.style.jsx */
.core-feature-section {
  padding: 130px 0;
}
.core-feature-section .core-feature-title h3 {
  margin-bottom: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 30px;
  color: var(--primary);
}
.core-feature-section .core-feature-title p {
  margin-top: 30px;
}
.core-feature-section .core-feature-actions {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.core-feature-section .core-feature-item {
  margin-bottom: 30px;
  max-width: 88%;
  margin-left: auto;
}
.core-feature-section .core-feature-item-icon {
  margin-bottom: 30px;
}
.core-feature-section .core-feature-item-icon img {
  width: 72px;
  height: 72px;
}
.core-feature-section .core-feature-item h5 {
  margin-bottom: 10px;
  font-weight: 700;
}
@media screen and (max-width: 1199px) {
  .core-feature-section .core-feature-item {
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .core-feature-section .core-feature-content {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .core-feature-section {
    padding: 60px 0 40px 0px;
  }
  .core-feature-section .core-feature-title h3 {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
    line-height: 30px;
  }
  .core-feature-section .core-feature-title h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 45px;
  }
  .core-feature-section .core-feature-actions {
    margin-top: 20px;
  }
}
@media screen and (max-width: 374px) {
  .core-feature-section .contact-content h2,
  .core-feature-section .core-feature-title h2,
  .core-feature-section .skills-content h2,
  .core-feature-section .building-content h2,
  .core-feature-section .lets-talk-text h2,
  .core-feature-section .section-title .title,
  .core-feature-section .team-section .section-title h2,
  .core-feature-section .about-feature-section .about-feature-title h2,
  .core-feature-section .customer-content-text h2,
  .core-feature-section .feature-team-slider-for .slider-item h2,
  .core-feature-section .how-works-title h2,
  .core-feature-section .usability-card-title h2,
  .core-feature-section .faq-section-title h2,
  .core-feature-section .pricing-section-title h2,
  .core-feature-section .testimonial-title h2,
  .core-feature-section .marketing-content-title h2,
  .core-feature-section .section-title h2 {
    font-size: 32px !important;
    line-height: 42px;
  }
}

/* TestimonialStyleWrapper - from Testimonial.style.jsx */
.testimonial-section {
  padding: 140px 0;
}
.testimonial-section .testimonial-card {
  border-radius: 50px;
  background-color: var(--bannerBg);
  display: flex;
  align-items: center;
  position: relative;
}
.testimonial-section .testimonial-card-left,
.testimonial-section .testimonial-card-right {
  padding: 40px;
  width: 50%;
  height: 530px;
  flex: 0 0 auto;
}
.testimonial-section .testimonial-card-left {
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-section .testimonial-card-left::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.04);
}
.testimonial-section .testimonial-card-left .shape-img {
  position: absolute;
  z-index: -1;
}
.testimonial-section .testimonial-card-left .shape-img.img-1 {
  top: 49px;
  left: 0;
}
.testimonial-section .testimonial-card-left .shape-img.img-2 {
  bottom: 0;
  left: 96px;
}
.testimonial-section .testimonial-card-left .shape-img.img-3 {
  top: 40%;
  right: 0;
}
.testimonial-section .testimonial-card-left .shape-img.img-4 {
  top: 70px;
  right: 65px;
}
.testimonial-section .testimonial-card-left .shape-img.img-4 .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonial-section .testimonial-card-left .sass-testimonials-shapes .shape1 {
  position: absolute;
  left: 0px;
  top: 145px;
}
.testimonial-section .testimonial-card-left .sass-testimonials-shapes .shape2 {
  position: absolute;
  left: 40px;
  bottom: 71px;
  transition: 0.3s;
}
.testimonial-section .testimonial-card-left .sass-testimonials-shapes .shape3 {
  position: absolute;
  right: 40px;
  top: 67px;
}
.testimonial-section .testimonial-card-left .sass-testimonials-shapes .shape4 {
  position: absolute;
  right: 0px;
  bottom: 123px;
  z-index: 11;
  transition: 0.3s;
}
.testimonial-section .testimonial-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-section .testimonial-card .testimonial-slider-img img {
  width: 270px;
  height: 350px;
  border-radius: 135px;
}
.testimonial-section .testimonial-card .slider-img img {
  width: 270px;
  height: 350px;
  border-radius: 135px;
}
.testimonial-section .testimonial-card .slider-counter-box {
  position: absolute;
  bottom: 86px;
  right: 70px;
}
.testimonial-section .testimonial-title {
  margin-bottom: 40px;
}
.testimonial-section .testimonial-title h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: var(--primary);
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.testimonial-section .testimonial-title h2 {
  color: var(--whiteColor);
}
.testimonial-section .testimonial-title h2 svg {
  color: #f7578c;
}
.testimonial-section .testimonial-slider-nav .slick-list {
  padding: 0 !important;
}
.testimonial-section .testimonial-slider-nav .slick-track {
  width: 100% !important;
  transform: translate3d(0px, 0px, 0px) !important;
}
.testimonial-section .testimonial-slider-nav .slick-slide {
  position: relative;
  overflow: hidden;
  width: 270px !important;
  height: 350px !important;
  border-radius: 135px;
  background-color: rgba(255,255,255,0.08);
  transition: 0.3s;
  display: none;
}
.testimonial-section .testimonial-slider-nav .slick-slide img {
  width: 100%;
  height: 100%;
}
.testimonial-section .testimonial-slider-nav .slick-slide.slick-current,
.testimonial-section .testimonial-slider-nav .slick-slide.slick-active {
  display: block;
}
.testimonial-section .testimonial-slider-for .slick-slide .slider-item p {
  margin-bottom: 35px;
  font-size: 18px;
  line-height: 36px;
  color: var(--whiteColor);
  height: 146px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-section .testimonial-slider-for .slick-slide .slider-item .author-info {
  color: var(--whiteColor);
}
.testimonial-section .testimonial-slider-for .slick-slide .slider-item .author-info .name {
  font-weight: 700;
  margin-right: 10px;
}
.testimonial-section .testimonial-slider-for .slick-slide .slider-item .slider-item-user {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.testimonial-section .slider-info {
  position: relative;
  z-index: 10;
  width: fit-content;
  margin-top: -30px;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.testimonial-section .slider-info .slider-arrow {
  cursor: pointer;
}
.testimonial-section .slider-info .slider-arrow svg {
  color: var(--whiteColor);
}
.testimonial-section .slider-info .slider-counter p {
  color: var(--whiteColor);
  margin-bottom: 0;
}
.testimonial-section .testimonial-slider .slider-item .slider-img {
  display: none !important;
}
.testimonial-section .testimonial-slider .slider-item p {
  margin-bottom: 35px;
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  color: var(--whiteColor);
}
.testimonial-section .testimonial-slider .slider-item h2 {
  font-size: 15px;
  font-weight: 700;
  line-height: 26px;
  color: var(--whiteColor);
}
.testimonial-section .testimonial-slider .slider-item h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 26px;
  color: var(--whiteColor);
}
.testimonial-section .testimonial-slider .slider-item-user {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonial-section .testimonial-slider .owl-nav {
  margin-top: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 50px;
}
.testimonial-section .testimonial-slider .owl-nav button {
  margin: 0 !important;
}
.testimonial-section .testimonial-slider .owl-nav button svg {
  font-size: 20px;
  color: var(--whiteColor);
}
.testimonial-section .testimonial-slider .owl-nav button:hover {
  background: transparent !important;
}
.testimonial-section .sub-title {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  line-height: 30px;
  color: var(--primary);
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  display: block;
}
.testimonial-section .love-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.testimonial-section .love-icon svg {
  color: #f7578c;
}
@media screen and (max-width: 1499px) {
  .testimonial-section .testimonial-slider .slider-item p {
    font-size: 15px;
    line-height: 28px;
  }
}
@media screen and (max-width: 991px) {
  .testimonial-section {
    padding: 90px 0px;
  }
  .testimonial-section .testimonial-card {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .testimonial-section .testimonial-card-left,
  .testimonial-section .testimonial-card-right {
    width: 100%;
    min-height: 530px;
    height: unset;
  }
}
@media screen and (max-width: 767px) {
  .testimonial-section {
    padding: 70px 0px;
  }
  .testimonial-section .testimonial-card {
    border-radius: 30px;
  }
  .testimonial-section .testimonial-slider .owl-nav {
    margin-top: 0px;
    bottom: -30px;
    right: unset;
    left: 0;
    gap: 20px;
  }
  .testimonial-section .testimonial-seciton {
    padding: 60px 0px 60px;
  }
  .testimonial-section .testimonial-card .slider-counter-box {
    display: none;
    bottom: 43px;
    right: unset;
    left: 60px;
  }
  .testimonial-section .testimonial-card-left .shape-img.img-4 {
    top: auto;
    bottom: 19px;
    left: 36px;
    right: auto;
  }
  .testimonial-section .testimonial-card-left {
    min-height: auto;
    padding: 50px 20px 100px 20px;
  }
  .testimonial-section .testimonial-card-right {
    min-height: auto;
    padding: 42px 20px 44px 20px;
  }
  .testimonial-section .testimonial-title {
    margin-bottom: 17px;
  }
  .testimonial-section .testimonial-title h3 {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 9px;
  }
  .testimonial-section .testimonial-title h2 {
    font-size: 32px;
    line-height: 50px;
  }
  .testimonial-section .testimonial-slider-for .slider-item p {
    font-size: 15px;
    line-height: 30px;
    margin-bottom: 23px;
  }
  .testimonial-section .slider-info {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-section .sub-title {
    font-size: 16px;
  }
  .testimonial-section .love-icon {
    font-size: 36px;
  }
}
@media screen and (max-width: 480px) {
  .testimonial-section .testimonial-card-left,
  .testimonial-section .testimonial-card-right {
    padding: 30px 20px 40px;
  }
  .testimonial-section .testimonial-card-left .shape-img.img-4 {
    top: 20px;
    right: 33px;
  }
  .testimonial-section .testimonial-slider-for {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-section .testimonial-slider-for .slider-info {
    position: relative;
  }
}
@media screen and (max-width: 374px) {
  .testimonial-section .contact-content h2,
  .testimonial-section .core-feature-title h2,
  .testimonial-section .skills-content h2,
  .testimonial-section .building-content h2,
  .testimonial-section .lets-talk-text h2,
  .testimonial-section .section-title .title,
  .testimonial-section .team-section .section-title h2,
  .testimonial-section .about-feature-section .about-feature-title h2,
  .testimonial-section .customer-content-text h2,
  .testimonial-section .feature-team-slider-for .slider-item h2,
  .testimonial-section .how-works-title h2,
  .testimonial-section .usability-card-title h2,
  .testimonial-section .faq-section-title h2,
  .testimonial-section .pricing-section-title h2,
  .testimonial-section .testimonial-title h2,
  .testimonial-section .marketing-content-title h2,
  .testimonial-section .section-title h2 {
    font-size: 32px !important;
    line-height: 42px;
  }
}

/* ComparePlanStyle - from ComparePlan.style.jsx */
.compare-plan-section {
  background: var(--whiteColor);
  padding-top: 115px;
  padding-bottom: 140px;
}
.compare-plan-section .compare-plans-title {
  margin-bottom: 45px;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table {
  width: 100%;
  overflow-x: hidden;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table .table-header-sticky {
  background: var(--whiteColor);
  width: 100% !important;
  top: 0px !important;
  transition: 0.3s;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table .table-header-sticky.sticky {
  position: fixed;
  z-index: 111;
  left: 0;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table ol {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
  border-bottom: 1px solid var(--blackColor26);
  margin: 0;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table ol li {
  padding-bottom: 10px;
  vertical-align: bottom;
  width: 18%;
  min-width: 210px;
  margin-top: 33px;
  padding: 0px 30px 10px 30px;
  padding-top: 11px;
  display: block;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table ol li:nth-child(1) {
  width: 46%;
  padding-left: 0px;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table ol li:nth-last-child(2) {
  background: rgba(0, 0, 0, 0.03);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table ol li h5 {
  font-family: var(--dmSans);
  text-transform: uppercase;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table ol li h5 span {
  text-transform: lowercase;
  font-size: 12px;
  margin-left: 13px;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table ol li button {
  max-width: 150px;
  width: 100%;
  height: 40px;
  border: 2px solid rgba(0, 149, 255, 0.3);
  border-radius: 50px;
  font-weight: 700;
  color: var(--primary);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin: 10px 0px;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table ol li button::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: var(--primary);
  transform: translateX(-100%);
  transition: 0.3s;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table ol li button:hover {
  border: 2px solid var(--primary);
  color: var(--whiteColor);
}
.compare-plan-section .compare-plans-table-section .compare-plans-table ol li button:hover::before {
  transform: translateX(0%);
}
.compare-plan-section .compare-plans-table-section .compare-plans-table .table-body {
  margin-top: 0;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table .table-body ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table .table-body ul li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 50px;
}
.compare-plan-section .compare-plans-table-section .compare-plans-table .table-body ul li b {
  padding-bottom: 10px;
  padding-top: 33px;
  color: var(--title);
  font-weight: 700;
}
.compare-plan-section .pricing-table-row ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.compare-plan-section .pricing-table-row ul li:nth-child(1) {
  width: 46%;
  min-width: 210px;
  padding-left: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.compare-plan-section .pricing-table-row ul li:nth-child(2) {
  width: 18%;
  min-width: 210px;
  padding: 10px 30px;
}
.compare-plan-section .pricing-table-row ul li:nth-child(3) {
  width: 18%;
  min-width: 210px;
  padding: 10px 30px;
  background: rgba(0, 0, 0, 0.03);
}
.compare-plan-section .pricing-table-row ul li:nth-child(4) {
  width: 18%;
  min-width: 210px;
  padding: 10px 30px;
}
@media screen and (max-width: 991px) {
  .compare-plan-section .compare-plans-title {
    margin-bottom: 20px;
  }
  .compare-plan-section .compare-plans-table-section .compare-plans-table .table-body {
    overflow-y: auto;
  }
  .compare-plan-section .compare-plans-table-section .compare-plans-title {
    margin-bottom: 0px;
  }
  .compare-plan-section .compare-plans-table-section .compare-plans-table ol li {
    min-width: 33%;
    max-width: 33%;
    padding: 15px;
    margin-top: 0px;
    background: transparent;
  }
  .compare-plan-section .compare-plans-table-section .compare-plans-table ol li:nth-child(1) {
    display: none;
  }
  .compare-plan-section .compare-plans-table-section .compare-plans-table ol li:nth-last-child(2) {
    background: transparent;
  }
  .compare-plan-section .compare-plans-table-section .compare-plans-table ol li.active {
    background: rgba(0, 0, 0, 0.03);
  }
  .compare-plan-section .compare-plans-table-section .compare-plans-table .table-body .table-col2,
  .compare-plan-section .compare-plans-table-section .compare-plans-table .table-body .table-col3,
  .compare-plan-section .compare-plans-table-section .compare-plans-table .table-body .table-col4 {
    background: rgba(0, 0, 0, 0.03);
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
@media screen and (max-width: 767px) {
  .compare-plan-section {
    padding-bottom: 80px;
    padding-top: 70px;
  }
  .compare-plan-section .compare-plans-table-section .compare-plans-table .table-body .table-col1 {
    width: 50%;
  }
  .compare-plan-section .compare-plans-table-section .compare-plans-table .table-body ul {
    padding-right: 10px;
  }
}
@media screen and (max-width: 575px) {
  .compare-plan-section .compare-plans-table-section .compare-plans-table ol li h5 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .compare-plan-section .compare-plans-table-section .compare-plans-table ol li h5 span {
    margin-left: 0px;
  }
}
@media screen and (max-width: 425px) {
  .compare-plan-section .compare-plans-table-section .compare-plans-table ol li button {
    height: 30px;
    font-size: 10px;
  }
}

/* AboutUsContentStyle - from AboutUsContent.style.jsx */
.about-us-content-section {
  padding: 0;
}
.about-us-content-section .about-feature-title {
  margin-bottom: 50px;
}
.about-us-content-section .about-feature-title h3 {
  margin-bottom: 17px;
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.about-us-content-section .about-feature-tab .react-tabs__tab-list {
  margin: 0 0 45px;
  border-bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.about-us-content-section .about-feature-tab .react-tabs__tab {
  padding: 10px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--blackColor26);
  border-radius: 26px;
  font-weight: 700;
  color: var(--title);
  transition: 0.3s;
}
.about-us-content-section .about-feature-tab .react-tabs__tab--selected {
  border: 1px solid #e7f1fc;
  background-color: #e7f1fc;
  color: var(--primary);
}
.about-us-content-section .about-feature-tab .about-feature-tab-content h4 {
  margin-bottom: 20px;
  color: var(--title);
}
.about-us-content-section .about-feature-tab .about-feature-tab-content p {
  color: var(--textColor);
  margin-bottom: 0px;
}
.about-us-content-section .about-feature-tab .about-feature-tab-content .list {
  padding: 0;
  list-style: none;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 75px;
}
.about-us-content-section .about-feature-tab .about-feature-tab-content .list .list-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-us-content-section .about-feature-tab .about-feature-tab-content .list .list-item img {
  width: 50px;
  height: 50px;
  padding: 15px;
  border: 1px solid rgba(0,149,255,0.3);
  border-radius: 10px;
}
.about-us-content-section .about-feature-tab .about-feature-tab-content .list .list-item p {
  margin-bottom: 0;
  color: var(--title);
}
.about-us-content-section .about-feature-img {
  position: relative;
}
.about-us-content-section .about-feature-img .overlay-item {
  position: absolute;
}
.about-us-content-section .about-feature-img .overlay-item.reduction-time {
  top: 10px;
  left: 0;
}
.about-us-content-section .about-feature-img .overlay-item.success-rate {
  bottom: 30px;
  right: 30px;
}
.about-us-content-section .about-feature-img .overlay-item.wave-shape {
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
}
.about-us-content-section .about-feature-img .reduction-time {
  width: 170px;
  height: 90px;
  border-radius: 0 45px 0 0;
  background-color: var(--whiteColor);
  padding: 24px 24px 24px 0;
}
.about-us-content-section .about-feature-img .reduction-time-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-us-content-section .about-feature-img .reduction-time h3 {
  margin-bottom: 10px;
  line-height: 20px;
}
.about-us-content-section .about-feature-img .reduction-time p {
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}
.about-us-content-section .about-feature-img .success-rate {
  width: 170px;
  height: 170px;
}
.about-us-content-section .about-feature-img .success-rate-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-us-content-section .about-feature-img .pie_progress {
  width: 130px;
  height: 130px;
  margin: auto 0;
  background-color: transparent;
}
.about-us-content-section .about-feature-img .pie_progress__label {
  margin-top: 0px;
}
.about-us-content-section .about-feature-img .pie_progress__label h3 {
  margin-bottom: 0;
  line-height: 1.1;
  color: var(--title);
}
.about-us-content-section .about-feature-img .pie_progress__label p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}
@media screen and (max-width: 1199px) {
  .about-us-content-section .about-feature-tab .tab-body-list {
    gap: 25px;
  }
}
@media screen and (max-width: 991px) {
  .about-us-content-section .about-feature-img {
    margin-top: 40px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .about-us-content-section .about-feature-img .success-rate {
    max-width: 130px;
    max-height: 130px;
  }
  .about-us-content-section .about-feature-img .pie_progress {
    width: 110px;
    height: 110px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .about-us-content-section .benefits-img-bg .about-feature-img .overlay-item.success-rate {
    bottom: 10px;
    right: 0px;
  }
}
@media screen and (max-width: 767px) {
  .about-us-content-section .lets-talk-text h2,
  .about-us-content-section .section-title .title,
  .about-us-content-section .team-section .section-title h2,
  .about-us-content-section .about-feature-title h2 {
    font-size: 36px;
    line-height: 45px;
  }
}
@media screen and (max-width: 575px) {
  .about-us-content-section .about-feature-title {
    margin-bottom: 40px;
  }
  .about-us-content-section .about-feature-title h3 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 30px;
  }
  .about-us-content-section .about-feature-title h2 {
    font-size: 30px;
    line-height: 50px;
  }
}
@media screen and (max-width: 480px) {
  .about-us-content-section .about-feature-title h2 {
    font-size: 24px;
    line-height: 40px;
  }
  .about-us-content-section .about-feature-tab .nav.nav-tabs {
    gap: 12px;
  }
  .about-us-content-section .about-feature-tab .nav.nav-tabs .nav-link {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .about-us-content-section .about-feature-tab .nav.nav-tabs .nav-link .text {
    display: none;
  }
  .about-us-content-section .about-feature-tab .tab-content {
    margin-top: 40px;
  }
  .about-us-content-section .about-feature-tab .about-feature-tab-content .list {
    margin-top: 30px;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .about-us-content-section .benefits-img-bg .about-feature-img .overlay-item.success-rate {
    bottom: 10px;
    right: 0px;
  }
}
@media screen and (max-width: 374px) {
  .about-us-content-section .contact-content h2,
  .about-us-content-section .core-feature-title h2,
  .about-us-content-section .skills-content h2,
  .about-us-content-section .building-content h2,
  .about-us-content-section .lets-talk-text h2,
  .about-us-content-section .section-title .title,
  .about-us-content-section .team-section .section-title h2,
  .about-us-content-section .about-feature-title h2,
  .about-us-content-section .customer-content-text h2,
  .about-us-content-section .feature-team-slider-for .slider-item h2,
  .about-us-content-section .how-works-title h2,
  .about-us-content-section .usability-card-title h2,
  .about-us-content-section .faq-section-title h2,
  .about-us-content-section .pricing-section-title h2,
  .about-us-content-section .testimonial-title h2,
  .about-us-content-section .marketing-content-title h2,
  .about-us-content-section .section-title h2 {
    font-size: 32px !important;
    line-height: 42px;
  }
}

/* References Section Styles */
.references-section {
  padding: 100px 0;
  background-color: var(--whiteColor);
}
.references-section .references-header {
  margin-bottom: 60px;
}
.references-section .references-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 20px;
  line-height: 1.2;
}
.references-section .references-subtitle {
  font-size: 18px;
  color: var(--textColor);
  margin-bottom: 0;
  font-family: var(--dmSans);
}
.references-section .references-logos {
  margin-top: 40px;
}
.references-section .reference-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 20px;
  background: var(--whiteColor);
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.references-section .reference-logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--primary);
}
.references-section .reference-logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}
.references-section .reference-logo-item:hover img {
  filter: grayscale(0%);
}
@media screen and (max-width: 991px) {
  .references-section {
    padding: 80px 0;
  }
  .references-section .references-title {
    font-size: 36px;
  }
  .references-section .references-subtitle {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .references-section {
    padding: 60px 0;
  }
  .references-section .references-header {
    margin-bottom: 40px;
  }
  .references-section .references-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .references-section .references-subtitle {
    font-size: 15px;
  }
  .references-section .reference-logo-item {
    height: 100px;
    padding: 15px;
  }
  .references-section .reference-logo-item img {
    max-height: 50px;
  }
}
@media screen and (max-width: 575px) {
  .references-section .references-title {
    font-size: 26px;
  }
  .references-section .reference-logo-item {
    height: 80px;
    padding: 10px;
  }
  .references-section .reference-logo-item img {
    max-height: 40px;
  }
}

/* Footer bg-primary padding fix */
.footer-top .bg-primary {
  padding: 1.5rem !important;
}

.widget-list li a:hover {
  color: #fff;
}

/* Contact Location Info Styles */
.contact-location-info {
  padding: 40px 0;
}
.contact-location-info .list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-location-info .list li:not(:first-child) {
  margin-top: 30px;
}
.contact-location-info .list-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-location-info .list-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-location-info .list-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.contact-location-info .list-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 10px;
  font-family: var(--dmSans);
}
.contact-location-info .list-text p {
  font-size: 16px;
  color: var(--textColor);
  margin-bottom: 5px;
  font-family: var(--dmSans);
  line-height: 1.6;
}
.contact-location-info .list-text p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .contact-location-info {
    padding: 20px 0;
  }
  .contact-location-info .list li:not(:first-child) {
    margin-top: 20px;
  }
  .contact-location-info .list-item {
    gap: 15px;
  }
  .contact-location-info .list-icon {
    width: 40px;
    height: 40px;
  }
  .contact-location-info .list-icon img {
    width: 20px;
    height: 20px;
  }
  .contact-location-info .list-text h4 {
    font-size: 18px;
  }
  .contact-location-info .list-text p {
    font-size: 14px;
  }
}

/* Panel Girişi ve genel mavi buton için orijinal stil */
.bg-blue-btn {
  padding: 10px 24px;
  background-color: #0095ff;
  border-radius: 100px;
  color: #ffffff;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  z-index: 0;
  font-weight: 700;
}
.bg-blue-btn .btn-inner {
  display: inline-block;
}
.bg-blue-btn span {
  position: relative;
  z-index: 11;
  transition: opacity 0.6s, transform 0.8s;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  color: #fff;
}
.bg-blue-btn span:nth-child(2) {
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 80%);
  opacity: 0;
}
.bg-blue-btn:hover,
.bg-blue-btn:focus {
  color: #ffffff;
}
.bg-blue-btn:hover .btn-inner,
.bg-blue-btn:focus .btn-inner {
  transform: translateY(-150%);
}
.bg-blue-btn:hover span:nth-child(2),
.bg-blue-btn:focus span:nth-child(2) {
  transform: translate(-50%, 100%);
  opacity: 1;
}
.bg-blue-btn:hover span .btn-normal-text,
.bg-blue-btn:focus span .btn-normal-text {
  opacity: 0;
}

.start-free-btn {
  max-width: 100%;
  width: 212px;
  height: 60px;
  border: 1px solid #0095ff4d;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0095ff;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 0;
  font-weight: 700;
}
.start-free-btn .btn-inner {
  display: inline-block;
  transition: transform 0.8s cubic-bezier(0.15, 0.85, 0.31, 1);
}
.start-free-btn span {
  position: relative;
  z-index: 11;
  transition: opacity 0.6s, transform 0.8s;
  transition-timing-function: cubic-bezier(0.15, 0.85, 0.31, 1);
  color: #0095ff;
}
.start-free-btn .btn-normal-text {
  transition: opacity 0.6s;
}
.start-free-btn .btn-hover-text {
  display: inline-block;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 80%);
  opacity: 0;
  color: #0095ff;
  transition: opacity 0.6s, transform 0.8s;
}
.start-free-btn:hover,
.start-free-btn:focus {
  border: 1px solid #0095ff;
  color: #ffffff;
  background: #0095ff;
}
.start-free-btn:hover .btn-inner,
.start-free-btn:focus .btn-inner {
  transform: translateY(-150%);
}
.start-free-btn:hover .btn-hover-text,
.start-free-btn:focus .btn-hover-text {
  transform: translate(-50%, 100%);
  opacity: 1;
  color: #fff;
}
.start-free-btn:hover .btn-normal-text,
.start-free-btn:focus .btn-normal-text {
  opacity: 0;
}
.start-free-btn:hover span,
.start-free-btn:focus span {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer-top .bg-primary {
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
  }
}
