@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}

h1,
h2,
h3,
h4 {
  font-weight: bold;
}

p {
  color: #727272;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
}

a,
a:active,
a:focus {
  text-decoration: none;
  transition-timing-function: ease-in-out;
  -ms-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-duration: 0.2s;
  -ms-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.text-center {
  text-align: center;
}

.pb-5 {
  padding-bottom: 50px;
}

.dpPurple {
  background: #1a093c;
}

.lightGray {
  background: #f0f0f0;
}

.lightGrayBg {
  background: #F5F5F5;
}

.white {
  color: #ffffff !important;
}

.mt {
  margin-top: 50px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.py {
  padding: 50px 0 !important;
}

.navbar {
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 170px;
  font-size: 24px;
  font-weight: bold;
  color: #000000;
}

.logo span {
  font-size: 16px;
  font-weight: 400;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #000000;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #8139C7;
}

.top .btn {
  background: #8139C7;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 40px;
  border-radius: 25px;
  transition: background 0.3s;
  border: 1px solid #8139C7;
  max-width: 230px;
  font-size: 20px;
}
.top .btn:hover {
  background: #ffffff;
  color: #8139C7;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: transparent;
  border: none;
  color: #000000;
  cursor: pointer;
}

.menuu {
  display: inline-block;
  cursor: pointer;
}

.bar1,
.bar2,
.bar3 {
  width: 35px;
  height: 4px;
  background-color: #333;
  margin: 4px 0;
  transition: 0.4s;
}

.change .bar1 {
  transform: translate(0, 8px) rotate(-45deg);
}

.change .bar2 {
  opacity: 0;
}

.change .bar3 {
  transform: translate(0, -8px) rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1100px) {
  .logo {
    width: 140px;
  }
  .top .btn {
    padding: 10px 30px;
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }
  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #ffffff;
    position: absolute;
    top: 74px;
    left: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  nav.active {
    display: flex;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  nav ul li {
    padding: 15px 0;
    width: 100%;
    text-align: center;
  }
  .btn {
    display: none;
    /* Hide the button in mobile view */
  }
}
@media (max-width: 480px) {
  .logo {
    width: 120px;
  }
  nav ul li:hover {
    background: #8139C7;
    color: #ffffff;
  }
  nav ul li:hover a {
    color: #ffffff;
    display: block;
  }
}
.banner {
  width: 100%;
  height: 100%;
  min-height: 560px;
  position: relative;
  margin-top: 105px;
  background: #2c0051;
  background: linear-gradient(45deg, rgb(44, 0, 81) 0%, rgb(67, 19, 152) 50%, rgb(44, 0, 81) 100%);
  padding: 60px 0 70px 0;
}

.banner img {
  width: 100%;
}

.content {
  position: absolute;
  z-index: 2;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
}
.content h1 {
  font-size: 60px;
  font-weight: 500;
  color: #ffffff;
}
.content h1 span {
  text-decoration: underline;
}
.content p {
  font-size: 30px;
  font-weight: 300;
  color: #E3B8FF;
  margin: 0px 0 20px 0;
  line-height: 40px;
}
.content h3 {
  font-size: 40px;
  font-weight: 300;
  color: #ffffff;
  margin: 0px 0 20px 0;
}
.content .buttons {
  margin-top: -13px;
}
.content .buttons .btn {
  display: inline;
  padding: 15px 30px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s;
  margin: 0 6px;
  font-weight: 500;
  border: 2px solid #9E3EFF;
}
.content .buttons .purple-btn {
  background: #9E3EFF;
  color: #ffffff;
}
.content .buttons .purple-btn:hover {
  background: #ffffff;
  color: #8139C7;
}
.content .buttons .white-btn {
  background: #ffffff;
  color: #8139C7;
}
.content .buttons .white-btn:hover {
  background: #9E3EFF;
  color: #ffffff;
}

.content .cta-border-wrapper {
  background: #f6eeff;
  background: linear-gradient(90deg, rgb(246, 238, 255) 0%, rgb(65, 17, 146) 40%, rgb(65, 17, 146) 60%, rgb(246, 238, 255) 100%);
  padding: 2px;
  border-radius: 14px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.content .cta-box {
  background: #431398;
  border-radius: 14px;
  padding: 20px 30px 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.content .cta-text {
  font-size: 35px;
  font-weight: 600;
  color: white;
  width: 100%;
  text-align: left;
}
.content .cta-text .highlight {
  color: #ffffff;
}

.cta-text {
  position: relative;
}

.headTextBox {
  max-width: 745px !important;
  width: 100%;
  margin: -30px auto 0 auto;
  padding: 35px 40px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 14px;
  position: relative;
  z-index: 999;
  background: #fff;
}
.headTextBox p {
  color: #575757;
  font-size: 22px;
  text-align: center;
  font-weight: 300;
}
.headTextBox p span {
  color: #9E3EFF;
  display: block;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .banner img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 991px) {
  .content h1 {
    font-size: 40px;
    font-weight: 600;
  }
  .content .cta-text {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .logo {
    width: 130px;
  }
  .navbar {
    padding: 10px 0;
  }
  .banner {
    margin-top: 74px;
    min-height: 430px;
  }
  .content h1 {
    font-size: 2rem;
  }
  .content h1 br {
    display: none;
  }
  .content p {
    font-size: 1.2rem;
  }
  .content .buttons .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  .content .cta-text {
    font-size: 27px;
  }
  .headTextBox {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .content .cta-text {
    font-size: 20px;
  }
}
@media (max-width: 567px) {
  .content .cta-text {
    font-size: 18px;
    text-align: center;
  }
  .content .cta-box {
    padding: 20px 15px 40px 15px;
    min-height: 120px;
    flex-wrap: wrap;
    text-align: center;
  }
  .content .cta-text .highlight {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    padding-left: 0;
  }
  .headTextBox p {
    font-size: 18px;
  }
  .content h1 {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  .content h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .content p br {
    display: none;
  }
  .content p {
    font-size: 1rem;
    line-height: 30px;
  }
  .content .buttons .btn {
    padding: 15px 20px;
    font-size: 1.2rem;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    font-weight: 500;
  }
  .banner {
    min-height: 540px;
  }
  .headTextBox {
    width: 94%;
    padding: 30px;
  }
  .content .cta-text {
    font-size: 24px;
    font-weight: 600;
    color: white;
  }
  .content .buttons {
    display: flex;
    flex-direction: column;
  }
}
.trusted-section {
  text-align: center;
  padding: 60px 20px 20px;
}
.trusted-section h3 {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  font-size: 42px;
  font-weight: 700;
  line-height: 45px;
  text-transform: capitalize;
}
.trusted-section h3 span {
  color: #8139C7;
}
.trusted-section .description {
  font-size: 22px;
  color: #000000;
  line-height: 1.8;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 10px;
}
.trusted-section .description .highlight {
  color: #8139C7;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .trusted-section {
    padding: 20px 20px 20px;
  }
}
@media (max-width: 768px) {
  .trusted-section .description {
    font-size: 1.2rem;
    line-height: 28px;
  }
  .trusted-section h3 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .trusted-section h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
.logo-section {
  padding: 25px 20px 40px;
  text-align: center;
  width: 100%;
  border-bottom: 1px solid #606060;
}

.logoContainer {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-content: center;
}
.logoContainer .logo-item {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 10px 14px 10px;
}
.logoContainer .logo-item img {
  width: 130px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.logoContainer .logo-item img:hover {
  transform: scale(1.1);
}
.logoContainer .logo-item p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #8139C7;
  text-transform: uppercase;
  margin-top: -10px;
}

/* Responsive Design */
@media (min-width: 1025px) {
  .logoContainer .logo-item:nth-child(5n)::after {
    background: none;
  }
  .logoContainer > *:nth-last-child(-n+4).logo-item::before {
    background: none;
  }
}
@media (max-width: 1024px) {
  .logoContainer {
    grid-template-columns: repeat(4, 1fr);
  }
  .logoContainer .logo-item:nth-child(4n)::after {
    background: none;
  }
  .logoContainer .logo-item img {
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  .logoContainer {
    grid-template-columns: repeat(4, 1fr);
  }
  .logoContainer .logo-item img {
    max-width: 90px;
  }
  .logoContainer .logo-item p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .logoContainer {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .logoContainer .logo-item img {
    max-width: 70px;
    max-height: 55px;
  }
  .logoContainer .logo-item p {
    font-size: 0.8rem;
    margin-top: 4px;
  }
}
.logo-section2 {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  padding: 40px 0 40px 0;
}

.slider-row {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-bottom: 30px;
}

.logo-track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-left 40s linear infinite;
}

.logo-track.reverse {
  animation: scroll-right 40s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

.logo-item2 {
  display: inline-block;
  width: 150px;
  margin: 0 10px;
  text-align: center;
}

.logo-item2 img {
  width: 130px;
  height: auto;
}

.logo-item2 p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #575757;
  text-transform: uppercase;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.swiper {
  width: 100%;
  height: 100%;
  padding: 20px 0px 30px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slider-container {
  max-width: 1350px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding-bottom: 50px;
  padding-left: 15px;
  padding-right: 15px;
}
.slider-container .slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slider-container .slide {
  min-width: 25%;
  box-sizing: border-box;
  padding: 10px;
}
.slider-container .swiper.howitwork {
  padding-top: 50px;
}
.slider-container .card {
  background: #ffffff;
  color: #000000;
  border-radius: 30px;
  padding: 40px 15px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s;
  position: relative;
  min-height: 412px;
  height: 100%;
  max-width: 306px;
}
.slider-container .card .card-number {
  font-size: 40px;
  font-weight: 400;
  opacity: 1;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 59px;
  height: 59px;
  background: #8139C7;
  color: #ffffff;
  border-radius: 50%;
}
.slider-container .card .card-img {
  max-width: 260px;
  height: auto;
  margin: 20px auto;
}
.slider-container .card h3 {
  font-size: 28px;
  line-height: 35px;
  color: #8139C7;
  text-align: start;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
  min-height: 70px;
}
.slider-container .card h3::before {
  content: "";
  position: absolute;
  width: calc(100% + 30px);
  height: 1px;
  background: #575757;
  left: -15px;
  right: -15px;
  top: -9px;
}
.slider-container .card p {
  font-size: 18px;
  line-height: 28px;
  color: #575757;
  text-align: start;
  font-weight: 400;
  min-height: 84px;
}
.slider-container .card p span {
  color: #8139C7;
}
.slider-container .card:hover {
  transform: translateY(-10px);
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  background: #e9e8e8;
}

/* Navigation buttons */
/* Pagination new */
.slider-container .pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  display: none;
}
.slider-container .pagination-dot {
  width: 15px;
  height: 15px;
  margin: 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.slider-container .pagination-dot.active {
  background: #7b2ff7;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 5px;
  background: #8139C7;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.swiper-pagination-bullet.active {
  background: #7b2ff7;
}

.swiper-pagination {
  margin-bottom: -10px;
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
  .slider-container .slide {
    min-width: 50%;
  }
  .slider-container .pagination {
    display: flex;
  }
}
@media (max-width: 768px) {
  .slider-container .slide {
    min-width: 100%;
  }
}
@media (max-width: 767px) {
  .slider-container .card {
    box-shadow: none;
  }
  .slider-container .card:hover {
    transform: translateY(0px);
  }
}
.planeSection {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.pln {
  display: flex;
}
.pln .card {
  background: #ffffff;
  border-radius: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  flex: 1;
  min-width: 320px;
  overflow: hidden;
  border: 1px solid #ccc;
}
.pln .card:hover {
  transform: translateY(-10px);
  border: 1px solid #8139C7;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.pln .card-header {
  background: #260042;
  color: #ffffff;
  padding: 20px 20px 10px 20px;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.pln .card-header p {
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
  padding: 0;
  text-transform: none;
  text-align: center;
}
.pln .card:hover .card-header {
  background: #8139C7;
}
.pln .card-body {
  padding: 30px 0px;
  text-align: center;
}
.pln .card-body .choosePlan button {
  padding: 5px 30px;
  background: #ffffff;
  border: 2px solid #8139C7;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  max-width: 220px;
  width: 100%;
  line-height: 38px;
  margin: 20px auto 5px auto;
}
.pln .card-body .choosePlan button:hover {
  background: #8139C7;
  color: #ffffff;
}
.pln .card-body .priceSale {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  color: #000000;
  margin-bottom: 10px;
  padding: 1px 10px 1px 40px;
}
.pln .card-body .priceSale span.oldPrice {
  text-decoration: line-through;
  margin-right: 5px;
}
.pln .card-body .priceSale span.save {
  background: rgba(132, 59, 188, 0.4);
  text-transform: uppercase;
  color: #ffffff;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 5px;
}
.pln h3 {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
  text-align: left;
  margin-bottom: 0px;
  padding: 1px 10px 1px 40px;
}
.pln p {
  font-size: 18px;
  color: #1F1F1F;
  margin: 5px 0;
  text-align: left;
  padding: 1px 10px 1px 40px;
}
.pln ul {
  margin: 20px 0;
  padding-left: 0px;
}
.pln ul li {
  font-size: 16px;
  color: #575757;
  padding: 7px 0;
  text-align: left;
  position: relative;
  padding-left: 50px;
  padding-right: 20px;
}
.pln ul li span {
  font-weight: 600;
}
.pln ul li:hover {
  color: #000000;
}
.pln ul li:nth-child(odd) {
  background: #f8f3ff url(../images/tick1.png) no-repeat;
  background-position: 15px 10px;
}
.pln ul li:nth-child(odd):hover {
  background: #E3B8FF url(../images/tick1.png) no-repeat;
  background-position: 15px 10px;
}
.pln ul li:nth-child(even) {
  background: #fff url(../images/tick1.png) no-repeat;
  background-position: 15px 10px;
}
.pln ul li:nth-child(even):hover {
  background: #E3B8FF url(../images/tick1.png) no-repeat;
  background-position: 15px 10px;
}
.pln ul li::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 5px;
}

.planeSce {
  padding-bottom: 50px;
}
.planeSce .btn {
  display: block;
  text-align: center;
  padding: 12px 30px;
  font-size: 16px;
  color: #ffffff;
  background: #8139C7;
  text-decoration: none;
  border-radius: 30px;
  margin: 30px auto;
  width: 200px;
  transition: background 0.3s, transform 0.3s;
  border: 1px solid #8139C7;
}
.planeSce .btn:hover {
  background: #ffffff;
  color: #8139C7;
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .card {
    min-width: 45%;
  }
  .pln .card {
    min-width: auto;
  }
}
@media (max-width: 768px) {
  .card {
    min-width: 300px;
  }
  .slider-container .card {
    text-align: center;
  }
}
.planPrice {
  margin: 0 auto;
  border: 0px solid #8139C7;
  text-align: center;
  display: none;
}
.planPrice .tabs {
  max-width: 400px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin: 0 auto;
}
.planPrice .tab-buttons {
  display: flex;
  background: #8139C7;
}
.planPrice .tab-btn {
  flex: 1;
  padding: 20px 12px;
  cursor: pointer;
  border: none;
  background: #260042;
  font-size: 16px;
  transition: 0.3s;
  text-align: center;
  color: #ffffff;
}
.planPrice .tab-btn.active {
  background: #8139C7;
  color: #ffffff;
  font-weight: bold;
}
.planPrice .tab-content {
  padding: 0px;
  display: none;
  font-size: 16px;
  /* line-height: 20px; */
}
.planPrice .tab-content.active {
  display: block;
}
.planPrice .btn {
  display: block;
  text-align: center;
  padding: 12px 30px;
  font-size: 16px;
  color: #ffffff;
  background: #8139C7;
  text-decoration: none;
  border-radius: 30px;
  margin: 30px auto;
  width: 200px;
  transition: background 0.3s, transform 0.3s;
  border: 1px solid #8139C7;
}
.planPrice .btn:hover {
  background: #ffffff;
  color: #8139C7;
  transform: scale(1.05);
}
.planPrice .priceSale {
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  color: #000000;
  margin-top: 10px;
  padding: 1px 10px 1px 40px;
}
.planPrice .priceSale span.oldPrice {
  text-decoration: line-through;
  margin-right: 5px;
}
.planPrice .priceSale span.save {
  background: rgba(132, 59, 188, 0.4);
  text-transform: uppercase;
  color: #ffffff;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 5px;
}
.planPrice .choosePlan button {
  padding: 5px 30px;
  background: #ffffff;
  border: 2px solid #8139c7;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  max-width: 220px;
  width: 100%;
  line-height: 38px;
  margin: 20px auto 5px auto;
}
.planPrice .choosePlan button:hover {
  background: #8139C7;
  color: #ffffff;
}

.planPrice ul {
  list-style: disc;
  padding-left: 0px;
  padding-top: 20px;
}

.planPrice ul li {
  font-size: 16px;
  color: #727272;
  padding: 7px 0;
  text-align: left;
  position: relative;
  list-style: none;
  padding-left: 50px;
  padding-right: 20px;
}

.planPrice ul li:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.planPrice ul li:nth-child(odd) {
  background: #f8f3ff url(../images/tick1.png) no-repeat;
  background-position: 15px 10px;
}

.planPrice ul li:nth-child(even) {
  background: #fff url(../images/tick1.png) no-repeat;
  background-position: 15px 10px;
}

.planPrice h3 {
  font-size: 48px;
  font-weight: 500;
  color: #8139C7;
  margin-bottom: 0px;
  text-align: left;
  padding-left: 40px;
}

.planPrice p {
  font-size: 18px;
  color: #1F1F1F;
  margin: 5px 0;
  text-align: left;
  padding-left: 40px;
}

.planPrice .tab-content {
  border: 1px solid #260042;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media (max-width: 767px) {
  .planeSce {
    display: none;
  }
  .planPrice {
    display: block;
    padding: 0 15px;
    margin-bottom: 40px;
  }
  .planPrice .tab-btn {
    font-size: 15px;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
  .planPrice .choosePlan button {
    max-width: 270px;
  }
}
.creativeMain {
  padding: 50px 0;
  background: rgb(61, 0, 103);
  background: linear-gradient(180deg, rgb(61, 0, 103) 0%, rgb(38, 0, 77) 100%);
  position: relative;
  overflow: hidden;
}
.creativeMain .creative {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.creativeMain .creative h3 {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  max-width: 80%;
  margin: 0 auto 40px;
  text-transform: capitalize;
}
.creativeMain .video-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.creativeMain .video-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.creativeMain .video-card img {
  width: 100%;
  height: auto;
  display: block;
}
.creativeMain .video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.creativeMain .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.creativeMain .play-button:hover {
  background: #7b2ff7;
}
.creativeMain .play-button::after {
  content: "▶";
  color: #FF0000;
  font-size: 24px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .creativeMain .video-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .creativeMain .creative h3 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .creativeMain .video-gallery {
    grid-template-columns: 1fr;
  }
  .creativeMain .creative h3 {
    font-size: 24px;
    max-width: 100%;
  }
}
.testimonials {
  text-align: center;
  padding: 60px 20px;
}
.testimonials h3 {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  margin-bottom: 40px;
  text-transform: capitalize;
}
.testimonials .slider-wrapper2 {
  position: relative;
  max-width: 1320px;
  margin: 20px auto 0 auto;
  overflow: hidden;
}
.testimonials .clntsr {
  display: flex;
  padding-top: 50px;
}
.testimonials .slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  padding: 60px 20px 30px 20px;
}
.testimonials .slide {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-radius: 10px;
  padding: 0px 30px 30px 30px;
  text-align: center;
  background: url(../images/commas.png) no-repeat;
  background-position: 30px 25px;
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 245px;
  border: 1px solid #ffffff;
}
.testimonials .slide:hover {
  transform: translateY(-10px);
  border-color: #8139C7;
  background: #8139C7;
  color: #ffffff;
}
.testimonials .slide img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  margin-top: -35px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials .slide:hover img {
  border: 1px solid #8139C7;
}
.testimonials h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.testimonials .role {
  color: #727272;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 15px;
}
.testimonials .quote {
  font-size: 16px;
  font-weight: 300;
  color: #727272;
  line-height: 1.5;
  min-height: 144px;
}
.testimonials .slide:hover .role {
  color: #ffffff;
}
.testimonials .slide:hover .quote {
  color: #ffffff;
}
.testimonials .prev-btn,
.testimonials .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #6c27b3;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 20px;
  border-radius: 5px;
}

.prev-btn:hover,
.next-btn:hover {
  background: #511a8b;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

@media (max-width: 1024px) {
  .slider-wrapper2 .slide {
    padding: 0px 20px 30px 20px;
  }
}
@media (min-width: 769px) {
  .slider-wrapper2 .slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    transform: none !important;
  }
  .slider-wrapper2 .slide {
    min-width: auto;
    margin-left: 15px;
    margin-right: 15px;
  }
  .slider-wrapper2 .prev-btn, .slider-wrapper2 .next-btn {
    display: none;
  }
}
@media (max-width: 480px) {
  .slider-wrapper2 .slide {
    margin: 15px;
  }
  .testimonials h3 {
    margin-bottom: 10px;
    font-size: 30px;
  }
  .testimonials .slider-wrapper2 {
    margin: 5px auto 0 auto;
  }
  .testimonials h3 {
    font-size: 30px;
  }
  .testimonials .swiper {
    padding-top: 0px;
  }
}
.faq-section {
  width: 100%;
  background: #F5F5F5;
  padding: 120px 15px 90px 15px;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.faq-container {
  display: flex;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.faq-left {
  width: 35%;
  background: url(../images/faq.png) no-repeat;
  padding: 20px;
  max-width: 320px;
}
.faq-left h3 {
  font-size: 45px;
  font-weight: 600;
  line-height: 56px;
  margin-bottom: 30px;
  color: #1a093c;
}

.faq-right {
  width: 65%;
}
.faq-right .faq-item {
  background: #5c0a92;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 25px;
}
.faq-right .faq-item.active {
  background: #5c0a92;
}
.faq-right .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s;
}
.faq-right .faq-question:hover {
  background: #3d2567;
}
.faq-right .faq-answer {
  background: #ffffff;
  padding: 20px;
  display: none;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #000000;
  font-weight: 300;
}
.faq-right .faq-answer ul {
  list-style: disc;
  margin-left: 30px;
}
.faq-right .faq-item.active .faq-answer {
  display: block;
}
.faq-right .icon {
  font-size: 20px;
  transition: transform 0.3s;
}
.faq-right .faq-item.active .icon {
  transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .faq-left h3 {
    font-size: 40px;
  }
  .faq-section {
    padding: 80px 15px 50px 15px;
  }
}
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }
  .faq-container {
    gap: 10px;
  }
  .faq-left {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    border-radius: 20px;
  }
  .faq-right {
    width: 100%;
  }
  .faq-section {
    padding: 50px 20px 25px;
  }
  .faq-question {
    font-size: 16px;
    padding: 15px;
  }
  .faq-answer {
    font-size: 14px;
    padding: 15px;
  }
  .faq-left h3 {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }
}
@media (max-width: 567px) {
  .faq-right .faq-question {
    padding: 20px;
    font-size: 20px;
  }
  .faq-right .faq-item {
    margin-bottom: 20px;
  }
}
.get-started {
  background: #34076b url(../images/bg1.png) no-repeat;
  background-position: center center;
  background-size: 100%;
  text-align: center;
  padding: 60px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.get-started h3 {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.get-started p {
  font-size: 18px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 30px;
}
.get-started .buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.get-started .btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  text-align: center;
  max-width: 270px;
  width: 100%;
  border: 1px solid #8139C7;
}
.get-started .purple {
  background: #ffffff;
  color: #8139C7;
}
.get-started .purple:hover {
  background: #8139C7;
  color: #ffffff;
}
.get-started .black {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.get-started .black:hover {
  background: #8139C7;
  color: #ffffff;
  border-color: #8139C7;
}

.purple-btn:hover {
  background: #ffffff;
  color: #8139C7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .get-started h3 {
    font-size: 40px;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 28px;
  }
  p {
    font-size: 16px;
  }
  .buttons {
    gap: 10px;
  }
  .get-started .btn {
    display: inline;
  }
}
@media (max-width: 480px) {
  .get-started .buttons {
    flex-direction: column;
  }
  .get-started .btn {
    max-width: 270px;
    margin: 0 auto;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    padding: 15px 30px;
  }
}
.upperFooter {
  background: #000000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
.footer-container .footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  width: 170px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}
.footer-nav li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer-nav li a:hover {
  color: #9E3EFF;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-nav {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0px;
  }
  .footer .footerLow {
    flex-direction: column;
    gap: 10px;
  }
  .footer-container .footer-logo {
    width: 140px;
  }
}
.footer {
  background: #3c3c3c;
  color: #ffffff;
  text-align: center;
  padding: 25px 10px;
  font-size: 14px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}
.footer .footerLow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footerLow ul.privacyNav li {
  color: #ffffff;
}
.footer .footerLow ul.privacyNav li a {
  color: #ffffff;
}
.footer .footerLow ul.privacyNav li a {
  color: #ffffff;
}
.footer .footerLow ul.privacyNav li a:hover {
  color: #9E3EFF;
}
.footer p {
  font-size: 12px;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 0px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    font-size: 12px;
    padding: 15px 5px;
  }
}
/* Animated floating shapes */
.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  animation: float-up 15s infinite linear;
}

.shape1 {
  width: 80px;
  height: 80px;
  bottom: -100px;
  left: 10%;
  animation-delay: 0s;
}

.shape2 {
  width: 60px;
  height: 60px;
  bottom: -120px;
  left: 50%;
  animation-delay: 2s;
}

.shape3 {
  width: 100px;
  height: 100px;
  bottom: -150px;
  left: 30%;
  animation-delay: 4s;
}

.shape4 {
  width: 50px;
  height: 50px;
  bottom: -80px;
  left: 85%;
  animation-delay: 3s;
}

.shape5 {
  width: 90px;
  height: 90px;
  bottom: -130px;
  left: 50%;
  animation-delay: 1s;
}

@keyframes float-up {
  0% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-110vh);
    opacity: 0;
  }
}
/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.close {
  position: absolute;
  top: -14px;
  right: -14px;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  z-index: 99;
  background: #8139C7;
  width: 30px;
  height: 30px;
  text-align: center;
  vertical-align: 30px;
  border-radius: 30px;
  color: #ffffff;
}

/* Responsive iFrame */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Modal Background end  */
.whoProeditMain {
  padding: 50px 0;
  background: #ffffff;
}

.whoProedit {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
.whoProedit .grid {
  display: flex;
  gap: 0px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.whoProedit .box {
  flex: 1 1 400px;
  border-radius: 10px;
  padding: 30px 20px;
}
.whoProedit .box h3 {
  font-size: 38px;
  margin-bottom: 25px;
  font-weight: 700;
  color: #000000;
}
.whoProedit .box h3 span {
  color: #8139C7;
}
.whoProedit .box .dots {
  display: inline-block;
}
.whoProedit .box .dot {
  display: inline-block;
  animation: blink 1.5s infinite;
  color: #000000;
}
.whoProedit .box .dot:nth-child(2) {
  animation-delay: 0.2s;
}
.whoProedit .box .dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.whoProedit .box .list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2px;
  padding: 12px 50px 12px 70px;
  border-radius: 8px;
  color: #575757;
  background: #ffffff;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(229, 229, 229) 100%);
  position: relative;
  min-height: 85px;
  font-size: 16px;
  font-weight: 400;
}
.whoProedit .box .list-item:hover {
  background: linear-gradient(180deg, rgb(229, 229, 229) 0%, rgb(255, 255, 255) 100%);
}
.whoProedit .box .list-item:before {
  content: "";
  position: absolute;
  background: url(../images/icon-green.png) no-repeat;
  width: 20px;
  height: 21px;
  left: 25px;
  top: 18px;
}
.whoProedit .box .list-item.iconRed:before {
  content: "";
  position: absolute;
  background: url(../images/icon-red.png) no-repeat;
  width: 20px;
  height: 21px;
  left: 25px;
  top: 18px;
}
.whoProedit .list-item img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-top: 2px;
}

.cta {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta a {
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}
.cta .pricing {
  max-width: 250px;
  width: 100%;
  color: #8139C7;
  line-height: 53px;
  text-align: center;
  background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 28px, transparent 28px) 0% 0%/30px 30px no-repeat, radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 28px, transparent 28px) 100% 0%/30px 30px no-repeat, radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 28px, transparent 28px) 0% 100%/30px 30px no-repeat, radial-gradient(circle at 0 0, #ffffff 0, #ffffff 28px, transparent 28px) 100% 100%/30px 30px no-repeat, linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 4px) calc(100% - 60px) no-repeat, linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 60px) calc(100% - 4px) no-repeat, linear-gradient(90deg, #f6eeff 0%, #1a0133 52%, #f6eeff 100%);
  border-radius: 30px;
  padding: 2px;
  box-sizing: border-box;
}
.cta .pricing:hover {
  background: #000000;
  color: #ffffff;
  background: radial-gradient(circle at 100% 100%, #000000 0, #000000 28px, transparent 28px) 0% 0%/30px 30px no-repeat, radial-gradient(circle at 0 100%, #000000 0, #000000 28px, transparent 28px) 100% 0%/30px 30px no-repeat, radial-gradient(circle at 100% 0, #000000 0, #000000 28px, transparent 28px) 0% 100%/30px 30px no-repeat, radial-gradient(circle at 0 0, #000000 0, #000000 28px, transparent 28px) 100% 100%/30px 30px no-repeat, linear-gradient(#000000, #000000) 50% 50%/calc(100% - 4px) calc(100% - 60px) no-repeat, linear-gradient(#000000, #000000) 50% 50%/calc(100% - 60px) calc(100% - 4px) no-repeat, linear-gradient(90deg, #1a0133 0%, #f6eeff 52%, #1a0133 100%);
  border-radius: 30px;
  padding: 2px;
  box-sizing: border-box;
}
.cta .book {
  max-width: 270px;
  width: 100%;
  background: #8139C7;
  color: #ffffff;
  text-align: center;
  border: 2px solid #8139C7;
}
.cta .book:hover {
  background: #ffffff;
  color: #8139C7;
}

@media (max-width: 768px) {
  .grid {
    flex-direction: column;
    align-items: stretch;
  }
  .whoProedit .box h3 {
    font-size: 27px;
  }
}
@media (max-width: 480px) {
  .whoProedit .box {
    padding: 30px 0px;
  }
  .whoProedit .box .list-item {
    padding: 12px 20px 12px 50px;
  }
  .whoProedit .box .list-item:before {
    left: 20px;
  }
  .whoProedit .box .list-item.iconRed:before {
    left: 20px;
  }
  .cta .pricing,
  .cta .book {
    max-width: 270px;
    font-weight: 500;
  }
}
@media (max-width: 375px) {
  .whoProedit .box h3 {
    font-size: 24px;
  }
}
.efficientMain {
  padding: 50px 0;
  background: #F5F5F5;
}
.efficientMain .cost-efficient {
  margin: 100px 0px;
  width: 100%;
  max-width: 953px;
  margin: 0 auto;
}
.efficientMain .feature-cost {
  display: flex;
  padding: 3px 0;
}
.efficientMain .feature-cost:hover .efficient-solutions, .efficientMain .feature-cost:hover .editing-services {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.efficientMain .efficient-solutions {
  flex: 1;
  font-weight: 600;
  color: #5c0a92;
  background: #f7ebff;
  padding: 18px 0px 12px 30px;
  font-size: 20px;
  border-radius: 15px 0px 0px 15px;
  transition: all 0.3s ease;
}
.efficientMain .editing-services {
  flex: 2;
  background: #ffffff;
  padding: 20px 20px 20px 50px;
  border-radius: 0px 15px 15px 0px;
  font-size: 18px;
  font-weight: 400;
  color: #575757;
  transition: all 0.3s ease;
}
.efficientMain .reliable-turnarounds {
  background-color: #ecd9ff;
}
.efficientMain .streamline-your-post {
  text-align: center;
  background-color: #5c0a92;
  padding: 23px;
  border-radius: 0 0 12px 12px;
}
.efficientMain .streamline-your-post p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.efficientMain .post-production span {
  color: #000;
}
.efficientMain .post-production h3 {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin: 0;
}
.efficientMain .post-production span {
  color: #000000;
}
.efficientMain .post-production p {
  font-size: 20px;
  text-align: center;
  color: #575757;
  font-weight: 500;
  margin-bottom: 50px;
}
.efficientMain .post-production span.highlight-animate {
  display: inline-block;
  background-image: linear-gradient(90deg, #ff007a, #7120c2, #ff007a);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmerMove 3s ease-in-out infinite, floatUpDown 2s ease-in-out infinite;
}
@keyframes shimmerMove {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 991px) {
  .efficientMain .editing-services {
    padding: 20px 20px 20px 21px;
    font-size: 15px;
    border-radius: 1px;
  }
  .efficientMain .efficient-solutions {
    padding: 18px 0px 12px 30px;
    font-size: 18px;
    border-radius: 1px;
  }
  .efficientMain .streamline-your-post {
    padding: 23px;
  }
  .streamline-your-post p {
    font-size: 18px;
  }
  .efficientMain .post-production h3 {
    font-size: 30px;
  }
  .efficientMain .feature-cost {
    padding: 4px 0;
  }
}
@media (max-width: 767px) {
  .efficientMain .feature-cost {
    flex-direction: column;
    text-align: center;
  }
  .efficientMain .efficient-solutions br {
    display: none;
  }
  .efficientMain .editing-services {
    font-size: 16px;
  }
  .efficientMain .editing-services br {
    display: none;
  }
  .efficientMain .efficient-solutions {
    font-size: 18px;
  }
  .streamline-your-post p br {
    display: none;
  }
}
.businessDriven {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.businessDriven .topTitle {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.businessDriven h2 {
  font-size: 38px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 10px;
}
.businessDriven h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}
.businessDriven h4 {
  font-size: 18px;
  font-weight: 600;
  color: #260042;
  margin-bottom: 10px;
}
.businessDriven p {
  font-size: 18px;
  line-height: 28px;
  color: #575757;
  font-weight: 400;
  margin: 0 auto 20px;
}
.businessDriven .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.businessDriven .grid .card {
  background: #fff;
  border-radius: 16px;
  padding: 15px 15px;
  font-weight: 600;
  color: #4b0082;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ccc;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.businessDriven .grid .card:hover {
  background: #9E3EFF;
  color: #ffffff;
  transform: translateY(-7px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #8139C7;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.edit-animate {
  display: inline-block;
  background-image: linear-gradient(90deg, #ff007a, #7120c2, #ff007a);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmerMove 3s ease-in-out infinite, floatLeftRight 2s ease-in-out infinite;
}

@keyframes floatLeftRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-4px);
    /* You can use positive for right, negative for left */
  }
}
@media (max-width: 600px) {
  .businessDriven h2 {
    font-size: 22px;
  }
  .card {
    padding: 20px;
    font-size: 15px;
  }
  .businessDriven h3 {
    font-size: 20px;
  }
}
.booking {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  margin: 150px auto 20px auto;
  gap: 30px;
}

.left-content {
  width: 50%;
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.left-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
}

.left-content p {
  font-size: 20px;
  color: #1F1F1F;
  line-height: 30px;
  margin-bottom: 25px;
}

.video-frame {
  border: 2px solid #000000;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 10px;
}

.video-frame iframe {
  max-width: 480px;
  max-height: 250px;
  width: 100%;
  height: 100%;
  min-height: 200px;
}

.calendar {
  background: #fff;
  border-radius: 10px;
  max-width: 50%;
  width: 100%;
  padding: 30px 0px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
}
.calendar .calTop {
  border-bottom: 1px solid #ccc;
  margin-bottom: 40px;
  padding: 0 100px;
}
.calendar .title {
  text-align: center;
  margin-bottom: 10px;
}
.calendar .title h2 {
  margin: 10px 0;
  color: #333;
}
.calendar .desc {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.calendar .desc p {
  margin-bottom: 20px;
}
.calendar .calMid {
  margin-bottom: 40px;
  padding: 0 19%;
}
.calendar .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.calendar .calendar-header button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #333;
}
.calendar .calendar-header h3 {
  margin: 0;
  font-size: 16px;
  color: #333;
}
.calendar .weekdays, .calendar .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}
.calendar .weekdays div {
  font-weight: 600;
  font-size: 14px;
  color: #888;
  padding: 8px 0;
}
.calendar .days div {
  padding: 10px 0;
  margin: 4px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: background 0.3s;
}
.calendar .days div:hover {
  background: #d0e8ff;
}
.calendar .days .selected {
  background: #007bff;
  color: #fff;
}
.calendar .timezone {
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
  color: #666;
}
.calendar .timezone span {
  font-weight: 600;
}
.calendar .cookie-settings {
  text-align: center;
  font-size: 13px;
  color: #007bff;
  margin-top: 15px;
  cursor: pointer;
}

.calendar:hover {
  border: 1px solid #8139C7;
}

.calendar:hover .calTop {
  border-bottom: 1px solid #8139C7;
}

@media (max-width: 1199px) {
  .calendar .calMid {
    padding: 0 15%;
  }
}
@media (max-width: 991px) {
  .booking {
    flex-direction: column;
  }
  .left-content {
    width: 70%;
    padding-right: 0px;
    margin: 0 auto;
  }
  .calendar {
    margin: 0 auto;
  }
  .video-frame {
    max-width: 504px;
    margin: 25px auto;
  }
}
@media (max-width: 600px) {
  .left-content {
    width: 100%;
  }
  .calendar {
    max-width: 100%;
  }
  .calendar .calTop {
    padding: 0 20px;
  }
  .calendar .calMid {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .booking {
    padding: 40px 20px;
    margin: 75px auto 20px auto;
    gap: 0px;
  }
  .left-content h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 50px;
  }
}
.banner-inner {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 400px;
  position: relative;
  margin-top: 105px;
  background: #2c0051;
  overflow: hidden;
  background: linear-gradient(45deg, rgb(44, 0, 81) 0%, rgb(67, 19, 152) 50%, rgb(44, 0, 81) 100%);
  text-align: center;
}
.banner-inner canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.banner-inner .banner_title {
  position: absolute;
  z-index: 11;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.banner-inner h1 {
  font-size: 55px;
  margin-bottom: 8px;
  color: #ffffff;
}
.banner-inner p {
  font-size: 40px;
  color: #ffffff;
}

.privacy-content {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
.privacy-content p {
  margin-bottom: 15px;
  font-size: 18px;
  color: #727272;
  font-weight: 400;
}
.privacy-content p.pFont {
  font-size: 24px;
  color: #8139C7;
  text-align: center;
  font-weight: 500;
  margin-bottom: 50px;
}
.privacy-content h2 {
  font-size: 35px;
  margin-bottom: 10px;
  color: #000000;
}
.privacy-content h3 {
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 10px;
  color: #000000;
}
.privacy-content ul {
  margin-left: 0px;
  margin-bottom: 20px;
  list-style: disc;
  list-style-position: inside;
  padding-left: 20px;
}
.privacy-content ul li {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #727272;
  text-indent: -1.2em;
  padding-left: 1em;
}
.privacy-content ul li strong {
  font-weight: 600;
}
.privacy-content .bg_gray {
  background-color: #f5f5f5;
  padding: 5px 20px;
  margin-bottom: 25px;
}
.privacy-content .bg_gray h4 {
  font-size: 19px;
  font-weight: 600;
  display: list-item;
  list-style-position: inside;
  line-height: 34px;
  text-indent: -1.2em;
  padding-left: 1em;
}
.privacy-content .bg_gray p {
  margin-bottom: 0;
  padding-left: 20px;
}
.privacy-content .bg_gray:nth-child(even) {
  background-color: #fff;
}
.privacy-content .bg_gray.mt20 {
  margin-top: 20px;
}

b {
  color: #000;
  font-weight: 600;
}

@media (max-width: 767px) {
  .banner-inner {
    min-height: 300px;
    margin-top: 75px;
  }
}
@media (max-width: 600px) {
  .banner-inner h1 {
    font-size: 34px;
  }
  .privacy-content h2 {
    font-size: 25px;
  }
  .privacy-content h3 {
    font-size: 22px;
    margin-top: 25px;
  }
  .banner-inner p {
    font-size: 30px;
    color: #ffffff;
  }
  .privacy-content ul li {
    font-size: 16px;
    line-height: 24px;
  }
  .mt100 {
    margin-top: 50px !important;
  }
}
/********************************** Responsive ***********************************/
@media (max-width: 480px) {
  .get-started h3 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .faq-left h3 {
    margin-bottom: 15px;
  }
}
.singular .entry-header {
  display: none;
}

.entry-content {
  margin: 0;
}/*# sourceMappingURL=style.css.map */