*{
  margin:0; 
  padding:0; 
  outline:none;
}
html {
  overflow-x: hidden;
}
body{
  background: #040019 !important;
  padding: 0 !important;
  overflow: hidden;

}

body {
  min-height: 100vh;
  margin: 0;
  transition: background 0.2s linear;
}
.home #header {
  padding: 20px 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background: unset;

}

#header {
  padding: 20px 0;

}
/* ===================== Banner ===================== */

#banner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 0 80px;
  background: #040019;
  border-bottom: 1px solid #FFFFFF1A;
}

/* -- Radial glow wings -- */
.banner-glow-left,
.banner-glow-right {
  position: absolute;
  top: 50%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 0;
}
.banner-glow-left {
  left: -18vw;
  background: radial-gradient(circle, #7c3aed 0%, #4f1d96 50%, transparent 80%);
}
.banner-glow-right {
  right: -18vw;
  background: radial-gradient(circle, #7c3aed 0%, #4f1d96 50%, transparent 80%);
}
.banner-glow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 40vw;
  max-width: 800px;
  max-height: 500px;
  background: radial-gradient(ellipse at center, rgba(183,148,252,.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* -- Heading -- */
.banner-heading {
  padding-top: 0;
  margin-bottom: 40px;
}
.banner-heading h1 {
  font-family: Archivo, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  color: #FFFFFF;
  margin: 0;
}

/* -- Glassy orb -- */
.banner-orb {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}
.banner-orb-inner {
    width: 250px;
    height: 250px;
  border-radius: 50%;
  background: #FFFFFF1A;
  border: 1.5px solid rgba(255,255,255,.22);
  box-shadow:
    0 8px 48px rgba(124,58,237,.45),
    inset 0 2px 16px rgba(255,255,255,.12),
    inset 0 -4px 24px rgba(124,58,237,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: banner-orb-float 4s ease-in-out infinite;
}
.banner-orb-label {
    color: #7D59FB;
    line-height: 1;
    user-select: none;
    font-family: Archivo;
    font-weight: 700;
    font-style: Bold;
    font-size: 128px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
}
@keyframes banner-orb-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* -- Subtitle -- */
.banner-subtitle {
    color: #FFFFFF;
    max-width: 560px;
    margin: 0 auto 40px;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 30px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
}

/* -- CTA row: line — button — line -- */

/* Shimmer sweep travels left→right on left line, right→left on right line */
@keyframes ctaLineShimmerL {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}
@keyframes ctaLineShimmerR {
  0%   { transform: translateX(400%); }
  100% { transform: translateX(-100%); }
}
/* Dot glow pulse */
@keyframes ctaDotPulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 0 0 rgba(255,255,255,0.7), 0 0 8px rgba(255,255,255,0.9); }
  50%       { opacity: 0.6; box-shadow: 0 0 0 5px rgba(255,255,255,0),  0 0 16px rgba(255,255,255,0.4); }
}

.banner-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

/* Each line is a bordered box */
.banner-cta-line {
  display: flex;
  align-items: center;
  width: 160px;
  height: 44px;
  padding: 0 16px;
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* LEFT box: ●————————————————  */
.banner-cta-line:first-child {
  background:
    radial-gradient(circle, #fff 50%, transparent 51%) left 23px center / 12px 12px no-repeat,
    linear-gradient(to right, rgba(255,255,255,0.7), rgba(255,255,255,0.08)) 29px center / calc(100% - 29px - 16px) 2px no-repeat;
}

/* RIGHT box: ————————————————●  */
.banner-cta-line:last-child {
  background:
    radial-gradient(circle, #fff 50%, transparent 51%) right 23px center / 12px 12px no-repeat,
    linear-gradient(to left, rgba(255,255,255,0.7), rgba(255,255,255,0.08)) 16px center / calc(100% - 29px - 16px) 2px no-repeat;
}

/* Shimmer overlay via ::after — runs along the line track */
.banner-cta-line::before {
  display: none !important;
}
.banner-cta-line::after {
  display: block !important;
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 2px;
  margin-top: -1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
  border-radius: 2px;
  pointer-events: none;
}
/* Left line shimmer: left side, sweeping right */
.banner-cta-line:first-child::after {
  left: 35px;
  right: 16px;
  width: auto;
  animation: ctaLineShimmerL 3s ease-in-out infinite;
  animation-delay: 0.5s;
}
/* Right line shimmer: right side, sweeping left */
.banner-cta-line:last-child::after {
  left: 16px;
  right: 35px;
  width: auto;
  animation: ctaLineShimmerR 3s ease-in-out infinite;
  animation-delay: 1.2s;
}

.banner-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 36px;
  border-radius: 99px;
  background: #7B61FF;
  color: #ffffff !important;
  font-family: Inter, Archivo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none !important;
  box-shadow: 0 4px 24px rgba(123, 97, 255, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.banner-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(123, 97, 255, 0.65);
  color: #ffffff !important;
}

/* ===================== End Banner ===================== */
.banner-top-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: rotate(-17.86deg);

}
.banner-top-box {
  position: absolute;
  top: 0;
  right: 0;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 18px 26px;
}
.banner-topbox-content h5 {
  font-family: Archivo;
  font-weight: 700;
  font-style: Bold;
  font-size: 17px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #B794FC;
  margin: 0;
  padding: 0;
}
.banner-topbox-content h6 {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #B794FC;
  padding: 3px 0;
}
.banner-top-box {
  position: absolute;
  top: 80px;
  right: 114px;
  transform: rotate(-17.86deg);
}
.banner-topbox-image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin: 0 -7px;
  object-fit: cover;
  border: 2px solid #FFFFFF;
}
.banner-top-image {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  position: absolute;
  top: 90px;
  left: 88px;
  animation: upDown 3s infinite;
}

.banner-center-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: rotate(-17.86deg);

}
.banner-center-image {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  position: absolute;
  top: 100px;
  right: 0;
  animation: upDown 3s infinite;

}
.banner-top-image::after {
  content: "";
  width: 30px;
  height: 30px;
  clip-path: polygon(95.68% 76.181%, 95.68% 76.181%, 95.83% 79.686%, 95.336% 83.028%, 94.255% 86.148%, 92.649% 88.986%, 90.576% 91.481%, 88.097% 93.573%, 85.272% 95.202%, 82.16% 96.306%, 78.822% 96.827%, 75.316% 96.704%, 16.326% 89.005%, 16.326% 89.005%, 12.118% 87.956%, 8.48% 86.075%, 5.461% 83.505%, 3.111% 80.386%, 1.477% 76.863%, 0.609% 73.078%, 0.556% 69.173%, 1.367% 65.292%, 3.089% 61.577%, 5.773% 58.17%, 56.605% 6.94%, 56.605% 6.94%, 59.991% 4.23%, 63.693% 2.478%, 67.568% 1.638%, 71.473% 1.66%, 75.265% 2.499%, 78.8% 4.105%, 81.937% 6.431%, 84.531% 9.429%, 86.44% 13.053%, 87.521% 17.253%, 95.68% 76.181%);
  background: #fff;
  position: absolute;
  bottom: -4px;
  right: -6px;
  z-index: -1;
}
.banner-center-image::after {
  content: "";
  width: 30px;
  height: 30px;
  clip-path: polygon(95.68% 76.181%, 95.68% 76.181%, 95.83% 79.686%, 95.336% 83.028%, 94.255% 86.148%, 92.649% 88.986%, 90.576% 91.481%, 88.097% 93.573%, 85.272% 95.202%, 82.16% 96.306%, 78.822% 96.827%, 75.316% 96.704%, 16.326% 89.005%, 16.326% 89.005%, 12.118% 87.956%, 8.48% 86.075%, 5.461% 83.505%, 3.111% 80.386%, 1.477% 76.863%, 0.609% 73.078%, 0.556% 69.173%, 1.367% 65.292%, 3.089% 61.577%, 5.773% 58.17%, 56.605% 6.94%, 56.605% 6.94%, 59.991% 4.23%, 63.693% 2.478%, 67.568% 1.638%, 71.473% 1.66%, 75.265% 2.499%, 78.8% 4.105%, 81.937% 6.431%, 84.531% 9.429%, 86.44% 13.053%, 87.521% 17.253%, 95.68% 76.181%);
  background: #fff;
  position: absolute;
  bottom: -4px;
  right: -6px;
  z-index: -1;
}
.banner-bottom-image::after {
  content: "";
  width: 30px;
  height: 30px;
  clip-path: polygon(95.68% 76.181%, 95.68% 76.181%, 95.83% 79.686%, 95.336% 83.028%, 94.255% 86.148%, 92.649% 88.986%, 90.576% 91.481%, 88.097% 93.573%, 85.272% 95.202%, 82.16% 96.306%, 78.822% 96.827%, 75.316% 96.704%, 16.326% 89.005%, 16.326% 89.005%, 12.118% 87.956%, 8.48% 86.075%, 5.461% 83.505%, 3.111% 80.386%, 1.477% 76.863%, 0.609% 73.078%, 0.556% 69.173%, 1.367% 65.292%, 3.089% 61.577%, 5.773% 58.17%, 56.605% 6.94%, 56.605% 6.94%, 59.991% 4.23%, 63.693% 2.478%, 67.568% 1.638%, 71.473% 1.66%, 75.265% 2.499%, 78.8% 4.105%, 81.937% 6.431%, 84.531% 9.429%, 86.44% 13.053%, 87.521% 17.253%, 95.68% 76.181%);
  background: #fff;
  position: absolute;
  bottom: -4px;
  right: -6px;
  z-index: -1;
}
.banner-bottom-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: rotate(-17.86deg);

}
.banner-bottom-image {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
  position: absolute;
  bottom: 59px;
  right: 100px;
  animation: upDown 3s infinite;

}
/*  Support me if you like it */
.support {
	position: absolute;
	right: 20px;
	bottom: 20px;
}

.support a {
  color: #292c35;
  font-size: 32px;
  backface-visibility: hidden;
  display: inline-block;
  transition: transform 0.2s ease;
}

.support a:hover{
  transform: scale(1.1);
}
img{
  margin:0; 
  padding:0; 
  border:none; 
  max-width:100%; 
  height:auto;  
}

h1,
h2,
h3,
h4,
h5,
h6{ 
  margin:0;
  padding:10px 0;

}
p{
  margin:0 0 15px; 
  padding:0;
  font-size:15px;
  font-weight:300;
}
.header-contact-content a:hover {
  color: #B794FC;
  transition: 0.3s ease-in;
}
.appointment-details-box h3 span {
  color: #F16517;
  margin-left: 10px;
}
a{
  text-decoration: none !important;
}
.search-icon i:hover {
  color: #F16517;
  transition: 0.4s;
}
.header-right-sidebar i {
  color: #FFFFFF;
  font-size: 26px;
}
.header-right-sidebar i {
  font-size: 14px;
  color: #F16517;
  background: #fff;
  padding: 7px 8px;
  border-radius: 7px;
  width: 24px;
  height: 24px;
  display: flex
;
  justify-content: center;
  align-items: center;
}
.header-right-sidebar i:hover {
  color: #F16517;
  transition: 0.4s;
}
.offcanvas-header{
  flex-direction: column;
}
.offcanvas-start{
  right: 0 !important;
  left: unset !important;  
  transform: translateX(0%) !important;

}
.header-contact-content p {
  margin-bottom: 0;
}
.header-phone-number {
  margin-bottom: 20px;
}
.header-phone-number a p{
  font-family: Outfit;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
}
.banner-button-box {
  margin-top: 34px;
}
.banner-button-box a {
  background: #FFFFFF;
  padding: 14px 30px;
  border-radius: 60px;
  position: relative;
  z-index: 1;
}
.banner-button-box a span {
  color: transparent;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: capitalize;
  background: linear-gradient(90deg, #9744E9 0%, #7D59FB 100%);
  background-clip: text;
  padding: 0;
  position: relative;
  z-index: 1;
}

.banner-button-box a::after {
  content: "";
  background: #B794FC;
  position: absolute;

  width: 0%;
  height: 0%;
  border-radius: 60px;
}
.banner-button-box a:hover:after{
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-button-box:hover a span {
  color: #fff;
  transition: 0.3s ease-in;
}



.header-mail-id a p{ 
  font-family: Outfit;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;

}
.faq-heading-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.slider-image img {
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  height: 661px;
  object-fit: cover;
}
.header-social-icons a i:hover {
  background: #fff;
  color:#FFFFFF;
  transition: 0.3s ease-in;
}
.offcanvas-header {
  align-items: flex-start !important;
}
.header-right-sidebar .btn-close {
  position: absolute;
  top: 50px;
  right: 28px;
  color: #fff;
  background: unset;
  opacity: 1 !important;
}
.slider-image {
  overflow: hidden;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  height: 661px;
}
.slider-image img {
  overflow: hidden;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  height: 661px;
  object-fit: cover;
  animation: pulse 15s infinite;
  width: 100%;
}
.banner-image1 img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 30px;
}
.banner-image1 {
  height: 552px;
  box-shadow: 0px 5px 24px 0px #B794FC1A;
  border-radius: 30px;
}
.banner-image2 img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  border-radius: 30px;  
}
.banner-image2 {
  height: 552px;
  box-shadow: 0px 5px 24px 0px #B794FC1A;
  border-radius: 30px;
}
.services-button-box a::after {
  content: "";
  position: absolute;
  background: #7D59FB;
  width: 0%;
  height: 0%;
  border-radius: 60px;
}
.services-button-box a:hover:after{
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-button-box:hover a span {
  color: #fff;
  transition: 0.3s ease-in;
}
.entry-title {
  padding: 0;
  margin-bottom: 20px;
  font-family: Archivo;
  font-weight: 900;
  font-style: Black;
  font-size: 42px;
  line-height: 55px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #FFFFFF;

}
.navigation a:hover {
  background: #FFAB37;
  color: #fff;
}
.navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 35px;
}
.navigation a {
  background: #B794FC;
  padding: 11px 20px 8px 20px;
  color: #fff;
  font-family: 'Archivo';
  font-weight: 500;
  margin: 0 5px;
  border-radius: 10px;
}
a.next.page-numbers {
  margin-left: 0;
}
.navigation span {
  padding: 11px 20px 8px 20px;
  color: #fff;
  font-family: 'Archivo';
  font-weight: 500;
  background: #7D59FB;
  border-radius: 10px;

}
.bradcrumbs a {
  margin-right: 25px;
  z-index: 1;
  position: relative;
  text-align: left;
  font-family: 'Archivo';
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #FFFFFF;
  max-width: fit-content;
  border-radius: 6px;
  padding: 7px 13px;
}
.entry-content p {
  font-family: 'Archivo';
  font-weight: 300;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0%;
  color: #FFFFFF;
  padding: 10px 0;
  margin: 0;
}
.bradcrumbs {
  font-family: 'Archivo';
  font-weight: 400;
  font-size: 18px;
  line-height: 170%;
  letter-spacing: 3%;
  color: #FFFFFF;
  text-align: left;
  margin: 0;
  display: flex
;
  align-items: center;
  justify-content: flex-start;
  
}

section#term-of-use {
  padding: 50px 0;
}
.widget_recent_entries img {
  width: 100%;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
}
/* .recent-post-box .media-post-image{
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
  width: 130px;
  
} */
.recent-post-box:hover  img {
transform: scale(1.1);
transition: 0.4s ease-in-out;
}
div#single-projects-page {
  padding: 60px 0;
}
.btn-close:focus {
  box-shadow: unset !important;
}
div#sidebar ul li {
  margin-bottom: 12px;
  color: rgba(183, 148, 252, 0.5);
  border-bottom: 1px solid rgba(150, 68, 233, 0.1);
  padding-bottom: 10px;
}
div#sidebar ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.post-date {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(183, 148, 252, 0.65);
  margin: 2px 0 0;
  padding: 0;
}
#sidebar ul {
  padding-left: 0;
}
#sidebar ul li {
  list-style: none;
}
.header-social-icons {
  display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
      margin-top: 38px;
}
.header-social-icons a i {
  width: 35px;
  height: 35px;
  background: #F16517;
  display: flex
;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 50%;
  margin-right: 16px;
  color: #FFFFFF;
}
.about-us-menu p {
  text-align: left;
  font-family: Outfit;
  font-weight: 400;
  font-size: 16px;
  line-height: 181%;
  letter-spacing: 0%;
  color: #FFFFFF;

}
.offcanvas-start {
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.offcanvas-start.show {
  transform: translateX(0);
  opacity: 1;
}

.offcanvas-header {
  padding: 82px 30px !important;
}
.offcanvas{
  background: #B794FC !important;
}




/* Banner IMage */

#slider {
  background: #FFFFFF;
}


.banner-image {
  position: relative;
  padding: 80px 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #040019;
  overflow: hidden;
  z-index: 1;
  background-attachment: fixed;
}
.slider-content-box h1
{
  font-family: Instrument Serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 96px;
  line-height: 84px;
  letter-spacing: 0.2px;
  text-align: center;
  text-shadow: 4px 0px #B794FC40;
  color: #FFFFFF;
}


.carousel-caption {
  position: absolute;
  right: 0 !important;
  bottom: 70px !important;
  left: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  color: #fff;
  text-align: center;
  top: 0 !important;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.slider-content-box p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  color: #FFFFFF;
}



/* Steps Sections */

#Steps {
 background: #FFFFFF0D;
  margin: 0 60px;
  border-radius: 30px;
  height: 572px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #FFFFFF4D
 
}
.steps-heading-box h2 {
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 35px;
  leading-trim: NONE;
  line-height: 45px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FC;
  text-align: left;
}
.steps-heading-box p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FCB2;
  text-align: left;
}
.Steps-left-images {
  position: absolute;
  bottom: 0;
  right: -14px;
  animation: shake 8s infinite;
}
.step-images-box {
  display: flex;
      align-items: center;
      justify-content: flex-start;
      margin-top: 42px;
  
}
.step-image-box1 {
  width: 215px;
  height: 60px;
  border-radius: 10px;
}

.step-image-box2 {
  width: 215px;
  height: 60px;
  border-radius: 10px;
  margin-left: 30px;
}

.step-image-box1 img {
      width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
}
.step-image-box2 img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;}




/* Our Brands */

#our-brands {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.our-brands-heading-box h6 {
  color: transparent;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: capitalize;
  background: linear-gradient(90deg, #9744E9 0%, #7D59FB 100%);
  background-clip: text !important;
  padding: 0;
  text-align: left;
  margin: 0;
}

.our-brands-heading-box h2 {
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: capitalize;
  color: #B794FC;
}
.our-brands-heading-box p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FCB2;
  width: 84%;
}

.our-brands-box .brands-item {
  background: #ED5565;
  border-radius: 325px;
}

.our-brands-box .brands-item:nth-child(1) {
  background: #AD2620;
  width: 158px;
  height: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: -36px;
  margin: auto;
  animation: tada 4s infinite;


}
.our-brands-box .brands-item:nth-child(2) {
  background: #C84D18;
  width: 117px;
  height: 117px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 100px;
  position: absolute;
  animation: tada 6s infinite;
}
.our-brands-box .brands-item:nth-child(3) {
  background: #009581;
  width: 133px;
  height: 133px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  position: absolute;
  left: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  animation: flipInY 3s infinite;
}
.our-brands-box .brands-item:nth-child(4) {
  background: #6E1122;
  width: 154px;
  height: 154px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -20px;
  animation: swing 3s infinite;
}
.our-brands-box .brands-item:nth-child(5) {
  background: #180899;
  width: 167px;
  height: 167px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 60px;
  right: 0;
  animation: tada 5s infinite;

}
.our-brands-box .brands-item:nth-child(6) {
  background: #8E0021;
  width: 187px;
  height: 187px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  animation: flipInY 4s infinite;
}
.our-brands-box {
    border-radius: 50%;
    width: 609px;
    height: 609px;
    background: #110D24;
    position: relative;
    border: 1px solid #B794FCB2;
}

.our-brands-box::before {
  content: "";
  width: 400px;
  height: 400px;
  background: #B794FC33;
  position: absolute;
  border-radius: 50%;
  left: -47px;
  bottom: 52px;
  z-index: -1;
}


.our-brands-box::after {
  content: "";
  width: 400px;
  height: 400px;
  background: #B794FC33;
  position: absolute;
  border-radius: 50%;
  right: -47px;
  top: 52px;
  z-index: -1;
}
.accordion-button{
  background: unset !important;
}


/* Our Plans */

#our-plans {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}
.our-plans-heading-box {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-plans-heading-box h6 {
    color: #7D59FB;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    padding: 0;
    max-width: max-content;
}
.our-plans-heading-box h2 {
  color: #B794FC;
  font-family: Archivo;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
}
.plans-content-box {
    border-radius: 20px;
    padding: 40px 25px;
    background: #040019;
    border: 1px solid #FFFFFF4D;
}
.plan-price-content h5 {
  color: #7D59FB;
  font-family: Archivo;
  font-weight: 500;
  font-style: Italic;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  margin: 0;
  padding: 0;
}
.plans-content-box h4 {
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #7D59FB;
  margin: 0;
}
.plans-content-box p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 13px;
  leading-trim: NONE;
  line-height: 23px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FCB2;
  margin: 0;
}
.plan-price-content {
  margin-top: 75px;
}
.buy-regular-button a span {
    color: #B794FC;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    padding: 10px;
}
.buy-regular-button a {
    border-radius: 60px;
    padding: 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border: 1px solid #B794FC;
}
.faq-social-icons a:hover {
  background: #7D59FB;
  color: #fff;
  transition: 0.3s ease-in;

}
.faq-content-svg {
  position: absolute;
  top: -12px;
  right: 85px;
}
.panel-body {
  position: relative;
}
.faq-social-icons a:hover i{
  color: #fff;
  transition: 0.3s ease-in;
}
.owl-nav button:hover {
  background: #7D59FB;
  color: #fff;
  transition: 0.3s ease-in;

}
.owl-nav button:hover i{
    color: #fff;
    transition: 0.3s ease-in;
    background: #7D59FB;
}

.custom-social-icons a:hover{
  background: #7D59FB;
  color: #fff;
  transition: 0.3s ease-in;
}
.custom-social-icons a:hover i{
  color: #fff;
  transition: 0.3s ease-in;
}

.search-icon:hover svg path {
  fill: #FFAB37;
  transition: 0.3s ease-in;
}
.buy-regular-button a::after {
  content: "";
  background: #7D59FB;
  position: absolute;
  background: #7D59FB;

  width: 0%;
  height: 0%;
  border-radius: 60px;
}
.buy-regular-button a:hover:after{
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-regular-button:hover a span {
  color: #fff;
  transition: 0.3s ease-in;
}
.plans-inner-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.buy-regular-button {
  margin-top: 42px;
}
.plan-point {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.plans-inner-points h6 {
  font-family: Inter;
  font-weight: 400;
  font-size: 13px;
 line-height: 37px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FCB2;
  width: 100%;
  margin: 0;
  padding: 0 0 0px 10px;
}
.plans-inner-points {
  width: 100%;
}
.innermenubox {
    background: #FFFFFF0D;
    border: 1px solid #FFFFFF33;
    border-radius: 30px;
    padding: 6px 38px;
    max-width: fit-content;
    margin: auto;
}
/* Most Recent POst */
#most-recent-blog {
  padding: 0 0 60px 0;
  position: relative;
  z-index: 1;
  background: #FFFFFF;
}
.blogs-admin-box h6 span {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #97989F;
  margin: 0;
  padding-left: 0;
}
.most-recent-date {
  padding-left: 14px;
}
.most-recent-blogs-metadata {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 20px;
}
.blogs-admin-box h6 {
  margin: 0;
  padding: 0 0px 8px 0;
}
.blogs-admin-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.blogs-category-verified i {
  background: #36B37E;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  color: #fff;
}
.blogs-category-verified {
  display: flex;
  align-items: center;
  justify-content: center;
}
span.author-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.author-box {
  width: 36px;
  height: 36px;
  display: flex;
  border-radius: 50%;
}


.most-recent-date h6 {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #97989F;
  margin: 0;
}
.most-recent-image {
  height: 454px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  margin-top: -82px;

}
.about-left-images:hover .about-image1 img {
  animation: fadeInUp 800ms linear;
}
.resources-images:hover img{
  animation: fadeInUp 800ms linear;

}
.most-recent-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.most-recent-image:hover img {
  animation: fadeInUp 500ms linear;
}
.recent-post-content-box {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 50px 54px 50px 30px;
  box-shadow: 0px 12px 24px -6px #181A2A1F;
  border: 1px solid #E8E8EA;
  margin-top: -150px;
  margin-right: -56px;
  position: relative;
}

.blogs-inner-details:hover  .most-recent-image::after{
  animation: bounceIn  1s linear;

}
.blogs-inner-details:hover  .recent-post-content-box::after{
  animation: bounceIn  1s linear;

}
.most-recent-image::after {
  background: linear-gradient(180deg, #505AE0 0%, #B227D3 100%);
  width: 40%;
  height: 40%;
  position: absolute;
  top: -25px;
  right: -25px;
  z-index: -1;
  content: "";
  border-radius: 12px;
}
.recent-post-content-box::after {
  content: "";
  background: linear-gradient(180deg, #505AE0 0%, #B227D3 100%);
  position: absolute;
  width: 100%;
  height: 89%;
  left: -25px;
  top: 68px;
  z-index: -9;
  border-radius: 12px;
}
.most-recent-blog-title a {
  font-family: Inter;
  font-weight: 900;
  font-style: Black;
  font-size: 40px;
  line-height: 58px;
  letter-spacing: 0%;
  color: #181A2A;
}
.most-recent-blog-title a:hover {
  color: #BF00FF;
  transition: 0.2s ease-in-out;
}
.most-recent-blog-heading h2 {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: linear-gradient(90deg, #BF00FF 0%, #6052DB 100%);
  max-width: fit-content;
  padding: 10px 22px;
  border-radius: 6px;
  color: #fff;
}

.blogs-slidernav-inner-details:hover .slider-nav-blog-image img{
animation: pulse 0.4s linear;
}
.blogs-inner-details:hover .slider-blogs-image img{
  animation: pulse 0.4s linear;

}




.blog-learnmore-button a{
  font-family: Inter;
font-weight: 400;
font-style: Regular;
font-size: 14px;
leading-trim: NONE;
line-height: 32px;
letter-spacing: 0%;
color: #B794FC;
border: 1px solid #B794FC;
box-shadow: 0px 4px 4px 0px #B794FC40;
padding: 8px 20px;
border-radius: 30px;


}




.blog-learnmore-button a:hover i{

  color: #FFFFFF;

}

.blog-learnmore-button a{
  position: relative;
}



.blog-learnmore-button a:hover{

  color: #FFFFFF;

}

.blog-learnmore-button a span{
  position: relative;
  z-index: 1;
}


.blog-learnmore-button a:before{
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#B794FC;
	transition:all 0.3s ease-out;
	-webkit-transition:all 0.3s ease-out;
	-moz-transition:all 0.3s ease-out;
	transform:scaleX(0);
	-webkit-transform:scaleX(0);
	-moz-transform:scaleX(0);
  border-radius: 30px;
}
.blog-learnmore-button a:hover:before{
	transform:scaleX(1);
	-webkit-transform:scaleX(1);
	-moz-transform:scaleX(1);
}






.blog-learnmore-button{
  margin-top: 15px;
}

.joinnow-contact-button a:hover{

  color: #FFFFFF;

}

.joinnow-contact-button a span{
  position: relative;
  z-index: 1;
}


.joinnow-contact-button a:before{
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#B794FC;
	transition:all 0.3s ease-out;
	-webkit-transition:all 0.3s ease-out;
	-moz-transition:all 0.3s ease-out;
	transform:scaleX(0);
	-webkit-transform:scaleX(0);
	-moz-transform:scaleX(0);
  border-radius: 10px;
}
.joinnow-contact-button a:hover:before{
	transform:scaleX(1);
	-webkit-transform:scaleX(1);
	-moz-transform:scaleX(1);
}



.joinnow-contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}



/* Blog Category */

#blog-category {
  background: #F5F6FF;
  padding: 60px 0;
  position: relative;
}

#blog-category  .owl-dots{
  display: none;
}
.blogs-category-content-box:hover .blogs-category-verified i{
  animation: bounceIn 1s linear;
}

.up-to-off:hover .category-image img{
  animation: bounce 800ms linear;

}
.category-blogs-meta h5 {
  font-family: Open Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #FFFFFF;
  font-style: italic;
  margin: 0px 0px 0 8px ;
  padding: 0;
}
.category-blogs-meta {
  padding-left: 16px;
}
#blog-category  .blogs-admin-box h6 span{
  color: #fff;
  font-family: Open Sans;
font-weight: 600;
font-size: 16px;
line-height: 100%;
letter-spacing: 0px;

}
.faq-social-icons a{
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 50%;
    margin-right: 10px;
    animation: swing 4s infinite;
    border: 1.5px solid #7D59FB;
}
.ask-anything-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 40px;
  
}
.ask-anything-button a span {
  color: #FFFFFF;
  border-radius: 60px;
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  position: relative;
  z-index: 1;
}
.ask-anything-button a  {
  padding: 16px 36px;
  border-radius: 60px;
  background: #7D59FB;
  position: relative;
  z-index: 1;
}
.ask-anything-button a::after {
  content: "";
  background: #B794FC;
  position: absolute;

  width: 0%;
  height: 0%;
  border-radius: 60px;
}
.ask-anything-button a:hover:after{
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ask-anything-button:hover a span {
  color: #fff;
  transition: 0.3s ease-in;
}



.faq-social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.faq-social-icons a i {
    color: #040019;
    font-size: 23px;
    border-radius: 50%;
    font-weight: 900;
}

.accordion-image-faq {
  height: 114px;
  border-radius: 10px;
  margin-right: 18px;
  width: 60%;
}
.accordion-inner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-image-faq img {
  width: 100%;
  height: 100%;
  border-radius: 10px;

}

.category-metadata {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.category-blog-date h6 {
  font-family: Open Sans;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: right;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
}

.category-image {
  height: 595px;
  overflow: hidden;
  border-radius: 16px;

}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

.blog-category-heading-box h6 {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: linear-gradient(90deg, #BF00FF 0%, #6052DB 100%);
  max-width: fit-content;
  padding: 10px 22px;
  border-radius: 6px;
  color: #fff;
}




#blog-latest .latest-blog-headings h6 {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: linear-gradient(90deg, #BF00FF 0%, #6052DB 100%);
  max-width: fit-content;
  padding: 10px 22px;
  border-radius: 6px;
  color: #fff;
}

.blogcategory-heading-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.viewall-blogcategorypost-button a:hover i {
  color: #FFFFFF;
}
.viewall-blogcategorypost-button a {
  border: 2px solid #BF00FF;
  border-radius: 8px;
  padding: 15px 30px;
  display: flex
;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
}
.viewall-blogcategorypost-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.viewall-blogcategorypost-button a {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  color: #BF00FF;
  padding: 18px 35px 18px 12px;
}
.viewall-blogcategorypost-button a{
  position: relative;
}
.viewall-blogcategorypost-button a i {
  font-weight: 700;
  font-size: 16px;
  color: #BF00FF;
  position: relative;
  z-index: 1;
  padding-left: 36px;
}

.viewall-blogcategorypost-button a:hover{

  color: #FFFFFF;

}

.viewall-blogcategorypost-button a span{
  position: relative;
  z-index: 1;
}


.viewall-blogcategorypost-button a:before{
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#BF00FF;
	transition:all 0.3s ease-out;
	-webkit-transition:all 0.3s ease-out;
	-moz-transition:all 0.3s ease-out;
	transform:scaleX(0);
	-webkit-transform:scaleX(0);
	-moz-transform:scaleX(0);
  border-radius: 6px;
}
.viewall-blogcategorypost-button a:hover:before{
	transform:scaleX(1);
	-webkit-transform:scaleX(1);
	-moz-transform:scaleX(1);
}




.blog-category-heading-box h2 {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 65px;
  letter-spacing: 0%;
  color: #B794FC;
}
.blog-category-heading-box p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 34px;
  letter-spacing: 0%;
  color: #B794FC; 
  margin: 0;
}

.blogs-category-content-box {
  background: linear-gradient(180deg, rgba(24, 59, 86, 0.0001) 0%, #BF00FF 100%);
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
}
.blogs-category-content-box a {
  font-family: Inter;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.2px;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
}
.blogs-category-content-box p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #FFFFFF;
  text-align: left;
  margin: 0;
  padding: 34px 0;
}
.testimonial-double-quotes svg {
    opacity: 10%;
}

.testimonial-double-quotes {
  text-align: center;
  margin-bottom: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex
;
  align-items: center;
  justify-content: center;
  z-index: -1;
  animation: swing 4s infinite;

}
.items-testimonial {
  padding: 50px 0;
}

/* Our Best Facilities */
.counter_box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#best-facilities {
    padding: 60px 0;
    background: #FFFFFF0D;
    margin: 0 60px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    border: 1px solid #FFFFFF80;
}
.counter-image-icon {
  width: 70px;
  height: 70px;
  background: #B794FC;
  object-fit: contain;
  border-radius: 50%;
  padding: 14px;

}
.counter-image-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#counter .number span {
  font-family: Archivo;
  font-weight: 700;
  font-style: Bold;
  font-size: 34px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #B794FC;
}

#counter .number  {
margin: 0;
padding:0 0 8px;
}
.text-counter h6 {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 17px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #B794FC;
  margin: 0;
  padding: 0;
}
.counter-details {
  padding-left: 12px;
}
.facilities-heading-box h6 {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color: #7D59FB;
  margin: 0;
}
.facilities-heading-box h2 {
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color: #B794FC;
}
.facilities-content-box {
  background: #FFFFFF;
  box-shadow: 0px 2px 14px 0px #B794FC1A;
  border-radius: 20px;
  padding: 28px 15px;
  position: relative;
  margin-top: 80px;
  animation: facilitiesFloat 4s ease-in-out infinite;
}

@keyframes facilitiesFloat {
  0%   { transform: translateY(0px);    box-shadow: 0px 2px 14px 0px #B794FC1A; }
  50%  { transform: translateY(-14px);  box-shadow: 0px 16px 30px 0px #B794FC33; }
  100% { transform: translateY(0px);    box-shadow: 0px 2px 14px 0px #B794FC1A; }
}

.facilities-item:nth-child(1) .facilities-content-box { animation-delay: 0s; }
.facilities-item:nth-child(2) .facilities-content-box { animation-delay: 1s; }
.facilities-item:nth-child(3) .facilities-content-box { animation-delay: 2s; }
.facilities-item:nth-child(4) .facilities-content-box { animation-delay: 3s; }
.plan-point svg {
  animation: tada 3s infinite;
}



.facilities-content-box::after {
  content: "";
  border: 3px solid #FFFFFF;
  background: #7D59FB;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  position: absolute;
  top: -55px;
  border-radius: 50%;
  left: 107px;
  animation: flipInY 2s infinite;
}
.facilities-content-box h4 {
  font-family: Archivo;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #040019;
  margin: 0;
  padding: 0 0 0 10px;
}
.facilities-content-box p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #040019;
  margin: 0;
}
.facilities-icon-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 8px;
}
.facilities-contents {
  margin: 176px 0 42px;
  border-bottom: 1px solid #ffffffA1;
  padding-bottom: 90px;
  margin-top: 32px;
  overflow: hidden;
}

.facilities-content-box::before {
  content: "";
  clip-path: polygon(41.164% 6.315%, 41.164% 6.315%, 42.507% 4.362%, 44.042% 2.842%, 45.721% 1.757%, 47.496% 1.106%, 49.318% 0.889%, 51.141% 1.106%, 52.915% 1.757%, 54.594% 2.842%, 56.129% 4.362%, 57.472% 6.315%, 96.461% 75.041%, 96.461% 75.041%, 97.713% 77.868%, 98.406% 80.832%, 98.575% 83.831%, 98.261% 86.763%, 97.499% 89.525%, 96.328% 92.015%, 94.786% 94.13%, 92.909% 95.768%, 90.737% 96.825%, 88.307% 97.201%, 10.33% 97.201%, 10.33% 97.201%, 7.899% 96.825%, 5.727% 95.768%, 3.851% 94.13%, 2.308% 92.015%, 1.137% 89.525%, 0.375% 86.763%, 0.061% 83.831%, 0.231% 80.832%, 0.923% 77.868%, 2.175% 75.041%, 41.164% 6.315%);
  background: #fff;
  width: 40px;
  height: 29px;
  position: absolute;
  top: -22px;
  left: 100px;
}

.facilities-waves {
  position: absolute;
  top: 210px;
  margin: auto;
  display: flex
;
  align-items: center;
  z-index: -1;
  left: 0;
  right: 0;
  justify-content: center;
}



 
.facilities-box-item .row .facilities-item:nth-child(1) {
  margin-top: 200px;
}
.facilities-box-item .row .facilities-item:nth-child(3) {
  margin-top: 200px;
} 




/* Services Section */
#services {
  margin: 0 60px;
  padding: 80px 0;
  position: relative;
  background: #FFFFFF0D;
  border-radius: 20px;
}



#services .owl-nav {
  display: block !important;
}

#services .owl-nav button:hover{
  background: #BF00FF;
  transition: 0.4s ease-in;
}
#services .owl-nav button {
  background: #B794FC;
  border: unset;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 18px;
}


.services-button-box a span {
     color: #B794FC;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 10px;
}
.services-button-box a {
  border-radius: 60px;
  padding: 6px 24px;
border: 1px solid #B794FC;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

#services .owl-nav .owl-prev {
  position: absolute;
  top: 0;
  left: -100px;
  bottom: 0;
  margin: auto;
}
#services .owl-nav .owl-next {
  position: absolute;
  top: 0;
  right: -100px;
  bottom: 0;
  margin: auto;
}



.services-heading-box {
  position: relative;
}
.services-heading {
  position: relative;
}
.services-inner-content-box {
    background: #040019;
    padding: 42px 15px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 0.5px solid #FFFFFF80;
}
#need-information .row:nth-child(2) .information-points:nth-child(3) {
  display: none;
}
.copyright-right-button a span {
  font-family: Barlow;
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #FFFFFF;
}
.terms-and-condition-button {
  padding-left: 28px;
}
.copyright-right-button {
  display: flex;
  align-items: center;
  justify-content: end;
}
.services-title{
  text-align: left;
  margin-top: 20px;
}
.services-heading-box {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-heading-box h6 {
    color: #7D59FB;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    padding: 0;
}
.services-title a {
  font-family: Archivo;
  font-weight: 500;
  font-style: Medium;
  font-size: 23px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #B794FC;

}
.blog-contents-box:hover .blog-title a {
  color: #7D59FB;
}
.services-inner-content-box:hover .services-title a {
  color: #7D59FB;
}
.services-inner-content-box:hover .services-images {
    transition: 0.4s ease-in-out;
    animation: bounceIn 1s linear;
    background: #7D59FB !important;
}
.services-heading h2 {
  font-family: Outfit;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #F16517;
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
.services-content-box {
  margin-top: 60px;
}
.services-content p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 27px;
  letter-spacing: 0%;
  text-align: center;
  color: #B794FCB2;
  padding: 10px 0;
  margin: 0;
}
.services-heading-box h3 {
  color: #B794FC;
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
}
.services-heading p {
  font-family: Outfit;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0%;
  color: #5D666F;
  margin: 0;
  width: 52%;
}
.services-images {
  width: 80px;
  height: 80px;
  background: #FBEFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.items-services:nth-child(1) .services-images{
  background: #B794FC;
}
.items-services:nth-child(2) .services-images{
  background: #B794FC;
}
.items-services:nth-child(3) .services-images{
  background: #B794FC;
}
.items-services:nth-child(4) .services-images{
  background: #B794FC;
}
.items-services:nth-child(5) .services-images{
  background: #B794FC;
}
.items-services:nth-child(6) .services-images{
  background: #B794FC;
}
.services-button a {
  font-family: Outfit;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 2%;
  text-align: center;
  color: #B794FC;
  border: 1px solid #B3B0B0;
  padding: 10px 17px;
  background: #FFFFFF;
  border-radius: 10px;
  position: relative;
}

.services-button a::after{
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  background: #F16517;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 10px;

}

.services-inner-content-box:hover .services-button a{
  color: #fff;
  transition: 0.3s ease-in;
  border: unset;

}
.services-button a span{
  position: relative;
  z-index: 1;
}
.services-button a::before{
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  background: #F16517;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 10px;

}
.services-inner-content-box:hover .services-button a::after{
  height: 100%;
  bottom: 0;
  transition: 0.3s ease-in;
}
.services-inner-content-box:hover .services-button a::before{
  height: 100%;
  bottom: 0;
  transition: 0.3s ease-in;
}



.services-button {
  margin-top: 20px;
}


.service-background-stroke h3 {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 82px;
  line-height: 100%;
  letter-spacing: 2%;
  -webkit-text-stroke: 1px #D4D4D4;
  color: transparent;
  margin: 0;
  padding: 0;
}


/* Recent Blogs section */

#blog-latest {
  padding: 60px 0;
  position: relative;
  background: #FFFFFF;
}
.latest-verified-blogs i {
  background: #36B37E26;
  width: 20px;
  height: 20px;
  display: flex
;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  color: #36B37E;
}

.latest-box-meta {
  margin-left: 18px;
}
.latest-verified-blogs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.latest-verified-blogs h5 {
  font-family: Open Sans;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #5A7184;
  font-style: italic;
  margin: 0px 0px 0 8px;
  padding: 0;
}
#blog-latest .blogs-inner-details {
  border: 1px solid #E5EAF4;
  box-shadow: 0px 10px 35px 0px #B794FC08;
  background: #FFFFFF;
  border-radius: 16px;
}
.latest-blogs-blog-date h6 {
  font-family: Open Sans;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: right;
  color: #5A7184;
  margin: 0;
  padding: 0;
}
.latest-blogs-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.latest-blogs-metadata {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#blog-latest  .blogs-admin-box h6 span {
  font-family: Open Sans;
  font-weight: 600;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  color: #183B56;
}

#blog-latest .latest-blog-headings h6 {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: linear-gradient(90deg, #BF00FF 0%, #6052DB 100%);
  max-width: fit-content;
  padding: 10px 22px;
  border-radius: 6px;
  color: #fff;
}

.latest-blogs-heading-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.viewall-latestblogpost-button a:hover i {
  color: #FFFFFF;
}
.viewall-latestblogpost-button a {
  border: 2px solid #BF00FF;
  border-radius: 8px;
  padding: 15px 30px;
  display: flex
;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
}

#blog-latest .owl-nav button:hover {
  background:#FFFFFF;
  transition: 0.2s ease-in;
}
#faqs .sec-faqbox {
  padding: 10px 0;
}
.viewall-latestblogpost-button a {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  color: #BF00FF;
  padding: 18px 35px 18px 12px;
}
.viewall-latestblogpost-button a{
  position: relative;
}
.viewall-latestblogpost-button a i {
  font-weight: 700;
  font-size: 16px;
  color: #BF00FF;
  position: relative;
  z-index: 1;
  padding-left: 36px;
}

.viewall-latestblogpost-button a:hover{

  color: #FFFFFF;

}

.viewall-latestblogpost-button a span{
  position: relative;
  z-index: 1;
}


.viewall-latestblogpost-button a:before{
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#BF00FF;
	transition:all 0.3s ease-out;
	-webkit-transition:all 0.3s ease-out;
	-moz-transition:all 0.3s ease-out;
	transform:scaleX(0);
	-webkit-transform:scaleX(0);
	-moz-transform:scaleX(0);
  border-radius: 6px;
}
.viewall-latestblogpost-button a:hover:before{
	transform:scaleX(1);
	-webkit-transform:scaleX(1);
	-moz-transform:scaleX(1);
}





.recent-postimage {
  height: 481px;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
.recent-postimage img {
  height: 100%;
  width: 100%;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}
.blogs-inner-details:hover .recent-postimage img {
  animation: pulse 400ms linear;
}
.ecent-post-title a {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: 0.2px;
  color: #B794FC;
}
.ecent-post-title a:hover {
  color: #BF00FF;
  transition: 0.3s ease-in-out;
}
.latest-blog-headings h2 {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 65px;
  letter-spacing: 0%;
  color: #B794FC;
}


.ecent-post-content p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
    line-height: 32px;
  letter-spacing: 0px;
  color: #5A7184;
}

#blog-latest .owl-dots{
  display: none;
}


#blog-latest .owl-nav {
  display: block !important;
}

#blog-latest .owl-nav button {
  background: linear-gradient(180deg, #BF00FF 0%, #6251DC 100%);
  border: unset;
  color: #fff;
  width: 68px;
  height: 71px;
  border-radius: 50%;
  font-size: 18px;
}

#blog-latest .owl-nav .owl-prev {
  position: absolute;
  top: 0;
  left: -36px;
  bottom: 0;
  margin: auto;
}
#blog-latest .owl-nav .owl-next {
  position: absolute;
  top: 0;
  right: -36px;
  bottom: 0;
  margin: auto;
}

#blog-latest .recent-post-category a {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #BF00FF;
  background: #F5F6FF;
  padding: 12px 29px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
}
#blog-latest .latest-blogs-box {
  padding: 32px 20px;
}
.ecent-post-title {
  padding: 20px 0;
}











/* Services single page */
.services-page {
  padding: 60px 0;
  position: relative;
}
.services-page  .services-inner-content-box {
  margin: 20px 0;
}

.single-services-contact-details h5 {
  font-family: Outfit;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #F16517;
  margin: 0;
  padding: 0;
}
.single-services-contact-details h6 {
  font-family: Outfit;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #B794FC;
  margin: 0;
}
.single-services-button a {
  font-family: Outfit;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 2%;
  background: #F16517;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 20px 30px;
  position: relative;
}



.single-services-button a:hover{
  color: #fff;
  transition: 0.3s ease-in;
  border: unset;

}
.single-services-button a span{
  position: relative;
  z-index: 1;
}
.single-services-button a::before{
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  background: #B794FC;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 7px;

}

.single-services-button a::after{
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  background: #B794FC;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 7px;

}

 .single-services-button a:hover::after{
  height: 100%;
  bottom: 0;
  transition: 0.3s ease-in;
}
 .single-services-button a:hover::before{
  height: 100%;
  bottom: 0;
  transition: 0.3s ease-in;
}




.single-services-contact-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 34px;
}

.single-services-contact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 50px;

}

.single-services-contact-details {
  margin-left: 14px;
}












/* About us */

#about {
  position: relative;
  padding: 60px 0;
}

.about-image1 {
  -webkit-mask-image: url(mask.png);
  -webkit-mask-repeat: no-repeat;
  height: 100%;
  width: 100%;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.about-content-box h2 {
  color: #B794FC;
  font-family: Archivo;
  font-weight: 700;
  font-style: Bold;
  font-size: 42px;
  leading-trim: NONE;
  line-height: 55px;
  letter-spacing: 0%;
  text-transform: capitalize;
}
.about-content-box h6 {
    padding: 0;
    font-family: Roboto;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;

    color: #7D59FB;

}
.about-content-box p {
  color: #B794FCB2;
  position: relative;
  padding: 0;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
  text-transform: capitalize;
}


.about-learn-button a {
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  background: #7D59FB;
}

.about-learn-button a{
  position: relative;
}


.about-learn-button a:hover{

  color: #FFFFFF;

}

.about-learn-button a span{
  position: relative;
  z-index: 1;
}


.about-learn-button a:before{
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#B794FC;
	transition:all 0.3s ease-out;
	-webkit-transition:all 0.3s ease-out;
	-moz-transition:all 0.3s ease-out;
	transform:scaleX(0);
	-webkit-transform:scaleX(0);
	-moz-transform:scaleX(0);
  border-radius: 60px;
}
.about-learn-button a:hover:before{
	transform:scaleX(1);
	-webkit-transform:scaleX(1);
	-moz-transform:scaleX(1);
}



.about-learn-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 45px;
}
.about-image1 {
  overflow: hidden;
  border-radius: 11px;
}

.about-image1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 11px;
}

.about-image2 {
  overflow: hidden;
}
.about-image2 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.about-experience-box {
  background: #7D59FB;
  border-radius: 10px;
  max-width: fit-content;
  padding: 14px;
  flex-direction: column;
  display: flex
;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 14px 0px #B794FC40;}
.about-experience-box h6 {
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
}
.about-experience-icon {
  background: #FFFFFF;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 14px;
}
.about-experience-count-box h5 {
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  font-family: Archivo;
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  margin: 0;
  padding: 0;
}
.about-experience-count-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.about-experience-count-box span {
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  font-family: Archivo;
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  margin: 0;
  padding: 0;
}





#about .about-left-images {
  display: grid;
  grid-template-columns: repeat(17, 1fr);
  grid-template-rows: repeat(17, 30px);
  position: relative;
}



#about .about-left-images .about-image1 {
  grid-column-start: 4;
  grid-row-start: 1;
  grid-row-end: 18;
  grid-column-end: 18;
  position: relative;
  overflow: hidden;
  height: 550px;
}
.about-image2 img:hover {
  animation: pulse 0.6s linear;
}

#about .about-left-images .about-image2 {
  grid-column-start: 1;
  grid-column-end: 10;
  grid-row-start: 9;
  grid-row-end: 16;
  z-index: 9;
  position: relative;
  overflow: hidden;
  border: 10px solid #FFFFFF;

  border-radius: 11px;

}

.about-experience-box {
  grid-column-start: 4;
  grid-column-end: 8;
  grid-row-start: 20;
  grid-row-end: 12;
  z-index: 9;
  position: relative;
  overflow: hidden;
  border-radius: 11px;
  z-index: 1;
  bottom: 24px;
  animation: swing 4s infinite;
}

.about-point h4 {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 41px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FCB2;
  margin: 0;
  padding: 0 0px 0 10px;
}
.about-point {
  display: flex;
  align-items: center;
  justify-content: left;
}
.about-inner-points-content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.about-content-box1 h5 {
  font-family: Archivo;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #B794FC;
  margin: 0;
  padding: 0 0px 7px;
}

.about-content-box2 h5 {
  font-family: Archivo;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #B794FC;
  margin: 0;
  padding: 0 0px 7px;
}



.about-content-box1 p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0;
}

.about-content-box2 p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0;
}

.about-content-box1 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.about-content-box2 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.about-content-box1 svg {
  background: #7D59FB;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 8px;
}
.about-content-box2 svg {
  background: #7D59FB;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 8px;
}
.about-details-main {
  padding: 12px;
}


/* Need Information */

#need-information {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.need-information-content h2 {
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 55px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FC;
  margin: 0;
  padding: 0;
}
#need-information .row:nth-child(even) {
  flex-direction: row-reverse;
}
.need-information-content p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FCB2;
}
.need-information-imagebox {
    background: #FFFFFF0D;
    border-radius: 20px;
    padding: 30px;
    border: 0.5px solid #FFFFFF80;
}
.information-details h5 {
  font-family: Archivo;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #B794FC;
  margin: 0;
  padding: 0;
}
.information-details p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 193%;
  letter-spacing: 0%;
  color: #B794FCB2;
  margin: 0;
}
.information-points-box .information-points {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
  box-shadow: 0px 5px 24px 0px #B794FC1A;
  border: 0.5px solid #9644E94D;
  max-width: fit-content;
  padding: 13px 15px;
  border-radius: 15px;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}
.information-points-box .information-points:hover {
  border-color: rgba(150,68,233,0.7);
  box-shadow: 0 0 22px rgba(154,68,233,0.3), 0px 5px 24px 0px #B794FC1A;
  transform: translateY(-3px);
}


.information-points-box {
  margin-top: 38px;
}
.need-information-image img {
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.65s ease;
  will-change: transform, filter;
}
.need-information-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.need-information-image:hover img {
  transform: scale(1.06);
  filter: brightness(1.1) drop-shadow(0 0 18px rgba(154,68,233,0.4));
}
/* Shimmer sweep on hover */
.need-information-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(183,148,252,0.12) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.8s ease;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}
.need-information-image:hover::after {
  background-position: 200% 0;
}
.information-details {
  padding-left: 12px;
}
.information-points-box .information-points:nth-child(1) svg {
  background: #7D59FB;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  padding: 10px;
  border: 0.5px solid #9644E94D;
  animation: bounceIn 3s infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  flex-shrink: 0;
}
.information-points-box .information-points:nth-child(1):hover svg {
  transform: scale(1.18) rotate(-4deg);
  box-shadow: 0 0 16px rgba(125,89,251,0.6);
  filter: brightness(1.2);
  animation: none;
}
.information-points-box .information-points:nth-child(2) svg {
  background: #7D59FB;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  padding: 10px;
  border: 0.5px solid #9644E94D;
  animation: bounceIn 3s infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  flex-shrink: 0;
}
.information-points-box .information-points:nth-child(2):hover svg {
  transform: scale(1.18) rotate(4deg);
  box-shadow: 0 0 16px rgba(125,89,251,0.6);
  filter: brightness(1.2);
  animation: none;
}
.information-points-box .information-points:nth-child(3) svg {
  background: #7D59FB;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  padding: 10px;
  border: 0.5px solid #9644E94D;
  animation: bounceIn 3s infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  flex-shrink: 0;
}
.information-points-box .information-points:nth-child(3):hover svg {
  transform: scale(1.18) rotate(-4deg);
  box-shadow: 0 0 16px rgba(125,89,251,0.6);
  filter: brightness(1.2);
  animation: none;
}
#need-information .row:nth-child(2) .information-points:nth-child(2) svg{
  background: #7D59FB;

}
.need-information-image {
  width: 100%;
  height: 458px;
  object-fit: contain;

  border-radius: 20px;
}

/* Data Overview */

#data-overview {
  background: #FFFFFF0D;
  border-radius: 20px;
  margin: 0 60px;
  padding: 60px 0;
}
.overview-data-content h2 {
  font-family: Archivo;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #7D59FB;
}
.overview-data-content p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 27px;
  letter-spacing: 0%;
  color: #B794FCB2;
}

.overview-data-point h6 {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 27px;
  letter-spacing: 0%;
  color: #B794FCB2;
  margin: 0;
  padding-left: 12px;
}
.overview-data-point {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.data-overview-mainbox1 {
    background: #040019;
    box-shadow: 0px 2px 14px 0px #B794FC1A;
    border-radius: 20px;
    padding: 60px;
    border: 1px solid #FFFFFF4D;
} 

.data-overview-image1,
.data-overview-image2,
.data-overview-image3 {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  transition: box-shadow 0.45s ease;
}

/* Zoom on all data overview images */
.data-overview-image1 img,
.data-overview-image2 img,
.data-overview-image3 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.65s ease;
  will-change: transform, filter;
      border-radius: 30px;
}
.data-overview-image1:hover img,
.data-overview-image2:hover img,
.data-overview-image3:hover img {
  transform: scale(1.06);
  filter: brightness(1.1) drop-shadow(0 0 18px rgba(154,68,233,0.45));
}

/* Glow border on hover */
.data-overview-image1:hover,
.data-overview-image2:hover,
.data-overview-image3:hover {
  box-shadow: 0 0 32px rgba(154,68,233,0.35), 0 0 6px rgba(183,148,252,0.2);
}

/* Shimmer sweep on hover */
.data-overview-image1::after,
.data-overview-image2::after,
.data-overview-image3::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(183,148,252,0.12) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.8s ease;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}
.data-overview-image1:hover::after,
.data-overview-image2:hover::after,
.data-overview-image3:hover::after {
  background-position: 200% 0;
}

.data-overview-imagebox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-overview-mainbox2 {
  background: #040019;
  border: 1px solid #9644E9;
  border-radius: 20px;
  padding: 60px;
  margin: -45px 45px 0;
    border: 1px solid #FFFFFF4D;

} 



.data-overview-mainbox3 {
  background: #040019;
border: 1px solid #FFFFFF4D;
  border-radius: 20px;
  padding: 60px;
  margin: -45px 92px 0;
} 



/* Features section */
#features {
  padding: 60px 0;
  position: relative;
}
.feature-right-image img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  object-fit: cover;
}
.feature-right-image {
  height: 819px;
  overflow: hidden;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
}
.feature-right-image:hover img {
  animation: pulse 0.6s linear;
}

.features-points-text:hover{
  background: #F16517;
  transition: 0.4s ease-in-out;

}

.features-points-text:hover i{
  background: #fff;
  transition: 0.4s ease-in-out;

}
.features-points-text:hover
 h6{
  color: #fff;
  transition: 0.4s ease-in-out;

}
.features-heading-box h2 {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 82px;
  line-height: 100%;
  letter-spacing: 2%;
  -webkit-text-stroke: 1px #D4D4D4;
  color: transparent;
  margin: 0;
  padding: 0;
  text-align: left;
  position: relative;
}
.features-contents h3 {
  font-family: Outfit;
  font-weight: 700;
  font-size: 44px;
  line-height: 130%;
  letter-spacing: 2%;
  color: #B794FC;
}
.features-contents p {
  font-family: Outfit;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 3%;
  color: #5D666F;
}
.features-heading-box {
  position: relative;
}
.features-heading-box h4 {
  font-family: Outfit;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #F16517;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
}
.features-points-text h6 {
  font-family: Outfit;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #B794FC;
  margin: 0;
  padding: 0;
  padding-left: 14px;
}
.features-points-text {
  border: 1px solid #EAEAEA;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}
.features-points-text i {
  color: #F16517;
  width: 23px;
  height: 23px;
  background: rgba(241, 101, 23, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
}
.feature-button-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
}
.feature-button-box a {
  font-family: Outfit;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 2%;
  background: #F16517;
  color: #FFFFFF;
  border-radius: 10px;
  padding: 20px 30px;
  position: relative;
}



 .feature-button-box a:hover{
  color: #fff;
  transition: 0.3s ease-in;
  border: unset;

}
.feature-button-box a span{
  position: relative;
  z-index: 1;
}
.feature-button-box a::before{
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  background: #B794FC;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 10px;

}

.feature-button-box a::after{
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  background: #B794FC;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 10px;

}

 .feature-button-box a:hover::after{
  height: 100%;
  bottom: 0;
  transition: 0.3s ease-in;
}
 .feature-button-box a:hover::before{
  height: 100%;
  bottom: 0;
  transition: 0.3s ease-in;
}




/* Best Plan */
#best-plan {
  padding: 60px 0;
  position: relative;
  background: #F6F6F6;
}
.plans-heading h6 {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 82px;
  line-height: 100%;
  letter-spacing: 2%;
  -webkit-text-stroke: 1px #D4D4D4;
  color: transparent;
  margin: 0;
  padding: 0;
  text-align: center;
  position: relative;
}

.plans-heading h2 {
  font-family: Outfit;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #F16517;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  bottom: 0;
}
.bestplans-contentinner-box h2 {
  font-family: Outfit;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #5D666F;
  text-align: center;
  margin: 0;
}
.bestplans-contentinner-box h3 {
  font-family: Outfit;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #B794FC;
  text-align: center;
  margin: 0;
  margin: 0;
  padding: 0;
}
.bestplans-contentinner-box {
  box-shadow: 0px 4px 22px 0px #EBA4A440;
  padding: 29px 20px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;

}

.bestplans-contentouter-box p {
  font-family: Outfit;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 3%;
  color: #5D666F;
  margin: 0;
}
#best-plan .owl-item.active.center {
  animation: bounceIn 1s linear;
}
.best-plan-points h5 {
  font-family: Outfit;
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 3%;
  vertical-align: middle;
  color: #B794FC;
  margin: 0;
  padding: 0;
  padding-left: 10px;

}
.best-plan-points {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 0;
}
.best-plan-points .fa-check {
  color: #F16517;
}
.best-plan-points .fa-xmark {
  color: #292D32;
}
.bestplan-bottom-content-box {
  padding: 24px 38px;
}
.bestplans-contentinner-box h5 {
  color: #F16517;
  font-family: Outfit;
  font-weight: 500;
  font-size: 16px;
  line-height: 185%;
  letter-spacing: 3%;
  background: #FFD9D9;
  border-radius: 10px;
  max-width: max-content;
  padding: 2px 22px;
  margin: 15px 0 0;

}
.best-plan-button-box a {
  font-family: Outfit;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #F16517;
  border: 1px solid var(--Red, #F16517);
  border-radius: 10px;
  padding: 15px 30px;
  position: relative;
}




.best-plan-button-box a::after{
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  background: #F16517;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 10px;
}

.bestplans-contentouter-box:hover .best-plan-button-box a{
  color: #fff;
  transition: 0.3s ease-in;
  border: unset;

}
.best-plan-button-box a span{
  position: relative;
  z-index: 1;
}
.best-plan-button-box a::before{
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  background: #F16517;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 10px;
}
.bestplans-contentouter-box:hover .best-plan-button-box a::after{
  height: 100%;
  bottom: 0;
  transition: 0.3s ease-in;
}
.bestplans-contentouter-box:hover .best-plan-button-box a::before{
  height: 100%;
  bottom: 0;
  transition: 0.3s ease-in;
}




.best-plan-button-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 22px;
}
.best-plan-checked i {
  border: 1.5px solid #292D32;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex
;
  align-items: center;
  justify-content: center;
  color: #292D32;
}
.best-plan-checked {
  position: absolute;
  top: 12px;
  right: 18px;
}



.bestplans-contentouter-box {
  position: relative;
}

.plans-heading {
  position: relative;
}


#best-plan .bestplans-contentouter-box:hover .bestplans-contentinner-box {
  background: #F16517;
  border-radius: 7px;
  transition: 0.5s ease-in-out;
}

#best-plan .bestplans-contentouter-box:hover  {

  transition: 0.5s ease-in-out;
  transform: translate(0px, -20px);
}


.bestplans-contentouter-box:hover .best-plan-checked i{
  background: #FFFFFF;
  color: #F16517;
  border: 1.5px solid #FFFFFF;
  transition: 0.5s ease-in-out;

}

.bestplans-contentouter-box:hover .bestplans-contentinner-box h3{
  color: #fff;
  transition: 0.5s ease-in-out;


}
.bestplans-contentouter-box:hover .bestplans-contentinner-box h2{
  color: #fff;
  transition: 0.5s ease-in-out;


}
.testimonial-box {
  margin: 0 1px;
}

/* Blogs */
#our-blogs {
  position: relative;
  padding: 60px 0;
}
.blog-heading h6 {
  color: transparent;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: capitalize;
  background: linear-gradient(90deg, #9744E9 0%, #7D59FB 100%);
  background-clip: text !important;
  padding: 0;
  text-align: center;
  margin: 0;
}

.blog-heading h2 {
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color: #B794FC;
}
.blog-title a {
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FC;
}
.blogs-content p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 23px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FCB2;
}
.blogs-button {
border: 1px solid #B794FC;
  border-radius: 60px;
}
.blogs-button:hover a {
  transition: 0.2s ease-in;
  color: #fff;
}
.blogs-button:hover{
  background: #7D59FB;
  transition: 0.5s ease-in;
}
.blogs-button a {
color: #B794FC;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    text-transform: capitalize;
    background: unset;
    padding: 0;
    text-align: center;
    margin: 0;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#our-blogs .owl-dots {
  display: none;
}
.blog-date {
  background: #7D59FB;
  border-radius: 10px;
  max-width: fit-content;
}
.blog-date h6 {
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 21px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  text-align: center;
}
.blog-date h5 {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
}

.blog-title {
  padding: 24px 0 4px;
}
.blog-contents-box {
background: #040019;
    border-radius: 20px;
    padding: 13px;
    position: relative;
    border: 1px solid #FFFFFF4D;
}
.blog-comments-author {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  justify-content: flex-start;
}
.blog-author-admin {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 32px;
  
}
.author-name {
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 168%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FC;
}
.blog-author-date {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.entry-comments {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FCB2;
}

.blogs-inner-box {
  height: 291px;
  border-radius: 15px;
  overflow: hidden;
}
.blog-contents-box:hover .blogs-inner-box img {
  animation: bounceInUp 0.2s linear;
}
.blogs-inner-box img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.blog-date {
  position: absolute;
  background: #7D59FB;
  border-radius: 10px;
  max-width: fit-content;
  padding: 15px 12px;
  top: 21px;
  left: 28px;
  animation: swing 4s infinite;
}









/* Single blogs page */
.blog-single-container {
  padding: 60px 0;
}


/* Single Services page */
#singleService {
  padding: 60px 0;
}
.service-single-heading h4 {
  color: transparent;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  text-transform: capitalize;
  background: linear-gradient(90deg, #9744E9 0%, #7D59FB 100%);
  background-clip: text;
  padding: 0;

}
#singleService p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 27px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FC;

}

.services-points-box-details h4 {
  color:#FFFFFF;
  font-family: 'Urbanist';
  font-weight: 800;
  font-size: 34px;
  line-height: 48px;
  letter-spacing: 0px;
  margin: 0;
}
.services-single-points h6 {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 41px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FC;
  margin: 0;
}

#singleService #pills-tab {
  position: relative;
  margin: 0px 0 0;
  border: 1px solid #9644E980;
  box-shadow: 0px 2px 14px 0px #B794FC1A;
  border-radius: 20px;
  padding: 12px 25px;
  background: #FFFFFF;
}
.single-services-title {
  font-family: 'Urbanist';
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  line-height: 65px;
  letter-spacing: 0px;
  color:#FFFFFF;
  margin: 20px 0 0;
  padding: 0;
}
.service-para {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 27px;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #B794FC;

}
#singleService  .nav-item {
  width: 100%;
}
#singleService  .nav-pills .nav-link {
  background: 0 0;
  border: 0;
  font-family: Archivo;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  color: #B794FC;
  padding: 15px 0;

}

#singleService .nav-pills .nav-link.active{
  color: transparent;
  background: linear-gradient(90deg, #9744E9 0%, #7D59FB 100%);
  background-clip: text !important;

}
#singleService .services-meta-images {
  height: 400px;
}
.services-meta-images img{
  width: 100%;
  height: 100%;

  object-fit: cover;
}


.singleservices-meta-details h4 {
  font-family: Outfit;
  font-weight: 700;
  font-size: 44px;
  line-height: 130%;
  letter-spacing: 2%;
  color: #B794FC;
}
.singleservices-meta-details p {
  font-family: Outfit;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 3%;
  color: #5D666F;
}

.single-services-points-box h6 {
  font-family: Outfit;
  font-weight: 400;
  font-size: 20px;
  line-height: 149%;
  letter-spacing: 2%;
  color: #B794FC;
  margin: 0;
  padding: 0;
}

.single-services-points-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
  height: 100%;
}

.single-services-points-box i {
  color: #F16517;
  width: 20px;
  height: 20px;
  background: rgba(224, 10, 10, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  margin-right: 13px;
}

.slider-bottom-shape path:nth-child(1) {
  animation: slideInRight 4s linear;
}
.slider-bottom-shape path:nth-child(2) {
  animation: bounceInDown 4s linear;
}
.slider-bottom-shape path:nth-child(3) {
  animation: slideInRight 4s linear;
}









/* Our Teams */
#team {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: #F5F6FF;
}



#team .owl-dot {
  width: 34px;
  height: 34px;
  border: unset;
  background: #2B2B2B;
  border-radius: 50%;
  margin: 0 4px;
  position: relative;
}
#team .owl-dot.active {  
  width: 34px;
  height: 34px;
  border: unset;
  background: linear-gradient(238.66deg, #0283E9 -18.13%, #FC01CA 120.27%);
  border-radius: 50%;
  margin: 0 4px;
  position: relative;
}

#team .owl-dots {
  display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 50px;
}
#team .owl-dot span {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  background: #2B2B2B;
  border: 6px solid #FFF;
}
#team .owl-dot.active span {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  background: linear-gradient(238.66deg, #0283E9 -18.13%, #FC01CA 120.27%);
  border: 6px solid #FFF;
}


.team-member-images {
  width: 144px;
  height: 144px;
  border-radius: 50%;
}
.team-member-images img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.team-social-icons-box {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: tada 4s infinite;
}
.team-inner-box {
  background: #FFFFFF;
  padding: 36px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}
.team-inner-box:hover::after {
  width: 100%;
  height: 100%;
  transition: 0.3s ease-in;
}

.team-inner-box::after {
  content: "";
  width: 0%;
  height: 0%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, #B906FC 0%, #674CDE 100%);
  z-index: -1;
  border-radius: 5px;
  right: 0;
  margin: auto;
}
.team-title a {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 22px;
  line-height: 40px;
  letter-spacing: -1px;
  text-align: center;
  color: #232536;
}

.team-inner-box:hover .team-title a {
  color: #fff;
}
.team-inner-box:hover .team-designation h6 {
  color: #fff;
}

.team-inner-box:hover .team-social-icons-box a i{
  color: #fff;

}


.team-title {
  text-align: center;
  margin-top: 12px;
}
.team-heading h2 {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -2px;
  text-align: center;
  color: #232536;
}
.team-heading h3 {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
  color: #B794FC;
}
.team-social-icons-box a i {
  color: #232536;
  font-size: 16px;
  margin: 0 7px;
}
.team-designation h6 {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  color: #6D6E76;
  margin: 0;
  padding: 4px 0 18px;
}

.team-member {
  display: flex ;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Testimonial section */
#testimonial {
  margin: 0 60px;
  padding: 80px 0;
  position: relative;
  background: #FFFFFF0D;
  border-radius: 20px;
}

.testimonial-inner-box {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  box-shadow: 0px 16px 24px 0px #B794FC26;
  margin-top: -57px;
animation: swing 4s infinite;
}
.testimonial-inner-box img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0px 16px 24px 0px #B794FC26;
}

.testimonial-heading h2 {
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color: #B794FC;
}
.testimonial-content p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: #B794FCB2;
}
.testimonial-stars span i {
  color: #FFCC00;
  font-size: 16px;
}
.testi-title a {
  color: #7D59FB;
  font-family: Archivo;
  font-weight: 500;
  font-style: Medium;
  font-size: 21px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}
.testi-title a:hover {
  color: #7D59FB;
}

.testimonial-inner-details {
    background: #040019;
    border-radius: 20px;
    padding: 0 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    border: 1px solid #FFFFFF80;
}
.testi-title {
  text-align: center;
  margin-top: 22px;
}

.testimonial-designation h6 {
  color: #7D59FB;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 10px;
  letter-spacing: 0%;
  text-align: center;
}

#testimonial .owl-dots {
  display: none;
}

.testimonial-heading h6 {
color: #7D59FB;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    text-transform: capitalize;
    padding: 0;
    text-align: center;
    margin: 0;
}


















/* Appointment */
#appointment {
  padding: 60px 0;
  position: relative;
}
.appointment-form-arrow svg path {
  stroke: white;
  stroke-width: 2;
  fill: none; /* hide fill so stroke drawing is visible */
  stroke-linejoin: round;
  stroke-linecap: round;

  /* Approximate lengths, tweak if needed */
  stroke-dasharray: 450;    /* first path length estimate */
  stroke-dashoffset: 450;
  animation: draw 3s ease infinite;
}

.appointment-form-arrow svg path:nth-of-type(2) {
  stroke-dasharray: 90;     /* second path length estimate */
  stroke-dashoffset: 90;
  animation-delay: 3s;      /* delay so it starts after first path */
  animation-duration: 1.5s;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}


.appointment-details-box {
  background: #B794FC;
  box-shadow: -300px 0px 0 #B794FC;
  padding: 140px 0 0;
}
.appointment-form-box {
  background: #F6F6F6;
  padding: 32px 0;
}
  
.appointment-details-box h3 {
  font-family: Outfit;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #FFFFFF;
}
.appointment-details-box p {
  font-family: Outfit;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 3%;
  color: #9FA2A4;
  margin: 0;
  padding: 32px 172px 32px 0px;
}
.appointment-content-contact-box {
  background: #F16517;
  padding: 34px;

}
.appointment-contact-details h4 a{
  font-family: Outfit;
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
}

.appointment-contact-details h4 a:hover{
  color: #B794FC;
  transition: 0.4s ease-in;
}

.appointment-contact-details h4 {
  margin: 0;
  padding: 0;
}
.appointment-contact-des-icon svg {
  animation: tada 4s infinite;
}
.appointment-contact-details h6 {
  font-family: Outfit;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #FFFFFF;
  margin: 0;
  padding: 0 0 8px;
}
.appointment-contact-details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.contact-phone-icon{
  background: #FFFFFF;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 25px;
}
.contact-email-icon{
  background: #FFFFFF;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 25px;
}
.appointment-contact-details i{
  color: #292D32;
  font-size: 20px;
  animation: tada 4s infinite;
}
.appointment-details-box h2 {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 82px;
  line-height: 100%;
  letter-spacing: 2%;
  -webkit-text-stroke: 1px #D4D4D44d;
  color: transparent;
  margin: 0;
  padding: 0;
  text-align: left;
}
.appointment-heading-box{
  position: relative;
}
  
.appointment-details-box h3 {
  font-family: Outfit;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #FFFFFF;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.appointment-form-box h4 {
  margin: 0;
  padding: 0;
  font-family: Outfit;
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #B794FC;
  margin-bottom: 38px;
}
.appointment-form-box h4  a{
  font-family: Outfit;
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #B794FC;
  margin-bottom: 26px;

}

.appointment-form-box a:hover{
  color: #B794FC;
  transition: 0.4s ease-in;
}
.appointment-form-box input[type='text'], .appointment-form-box input[type='email'], .appointment-form-box input[type='tel'], .appointment-form-box textarea {
  width: 100%;
  height: 100%;
  padding: 20px 18px;
  border: 1px solid #D4D7D9;
  border-radius: 7px;
}
.appointment-form-box ::placeholder
{
  font-family: Outfit;
font-weight: 300;
font-size: 14px;
line-height: 100%;
letter-spacing: 2%;
color: #5D666F;

}
.appointment-form-box input.wpcf7-form-control.wpcf7-submit.has-spinner {
  font-family: Outfit;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #FFFFFF;
  border: unset;
background: unset;
  position: relative;
  border-radius: 7px;
  z-index: 1;
}
.wpcf7-spinner{
  position: absolute;
  right: 0;
}
.appointment-submit-btn:hover input{
  color: #F16517 !important;
  transition: 0.3s ease-in;
}
.appointment-submit-btn p {
  margin: 0;
}
.appointment-submit-btn{
  position: relative;
  background: #F16517;
  padding: 20px 60px;
  border-radius: 7px;
  max-width: max-content;
}
.appointment-submit-btn .wpcf7-spinner {
  position: absolute;
  right: -45px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.appointment-submit-btn a span{
  position: relative;
  z-index: 1;
}
.appointment-submit-btn::before{
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 7px;

}

.appointment-submit-btn::after{
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  background: #FFFFFF;
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 7px;

}

 .appointment-submit-btn:hover::after{
  height: 100%;
  bottom: 0;
  transition: 0.3s ease-in;
}
 .appointment-submit-btn:hover::before{
  height: 100%;
  bottom: 0;
  transition: 0.3s ease-in;
}




.appointment-contact-description h6 {
  font-family: Outfit;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #F16517;
  margin: 0;
}
.appointment-form-box h4 span {
  color: #F16517;
}
.appointment-form-box {
  background: #F6F6F6;
  padding: 120px 0;
  box-shadow: 300px 0px 0 #F6F6F6;
  position: relative;
}
.appointment-contact-description {
  padding-left: 22px;
}
.appointment-contact-des-details {
  padding-left: 20px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.appointment-contact-description h4 {
  font-family: Outfit;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #B794FC;
}
.appointment-form-arrow {
  position: absolute;
  top: 0;
  right: 108px;
}
.appointment-form-arrow svg path {
  fill: #FFFFFF;
}
.appointment-form-box textarea {
  height: 139px;
}
.appointment-form-box::before {
  content: "";
  background: #F6F6F6;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100px;
  left: -100px;
}

/* FAqs  Section */
.sec-faqbox {
  padding: 60px 0;
}
#faqs {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}
.faqs-heading h2 {
color: #7D59FB;
    font-family: Inter;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    text-transform: capitalize;
    padding: 0;
    max-width: fit-content;
}
.faqs-heading p {
  font-family: Inter;
  font-weight: 300;
  font-style: Light;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 26px;
  letter-spacing: 0%;
  color: #B794FC;
}
.faqs-heading h3 {
  letter-spacing: 0%;
  color: #B794FC;
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
}
.faq-card {

  border-bottom: 1px solid #B794FC !important;
  width: 100%;
  border-radius: unset !important;
}

.all-posts-tags li {
  list-style: none;
}

.viewall-faq-button a {
  border: 2px solid #BF00FF;
  border-radius: 8px;
  padding: 15px 30px;
  display: flex
;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
}

.viewall-faq-button a {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  color: #BF00FF;
  padding: 18px 35px 18px 12px;
}
.accordion-button::after {
  content: "\2b" !important; /* plus sign */
  font-family: 'Font Awesome 5 Free'; /* for FA5+, adjust if using FA4 */
  font-weight: 900; /* needed for solid icons */
  font-size: 24px;
  display: inline-block;
  width: 24px !important;
  height: 24px !important;
  text-align: center;
  line-height: 24px;

  background: linear-gradient(45deg, #9A44E9, #5845E5) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;

  transition: transform 0.3s;
}
.accordion-collapse.show .order-faq-number {
  font-size: 40px !important;
}
.order-faq-number {
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 25px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #B794FC;
  padding-right: 30px;
}
.accordion-item:last-of-type .accordion-collapse {
animation: fadeInUp 0.2s linear;
  padding: 12px 0 32px;
}
.accordion-button:not(.collapsed)::after{
content: "\f068" !important;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
    display: inline-block;
    width: 24px !important;
    height: 24px !important;
    text-align: center;
    line-height: 24px;
    color: #7D59FB;

  transition: transform 0.3s;
}
.all-posts-tags h6 {
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #FFFFFF;
  margin: 0;
  padding-right: 14px;
}
.all-posts-tags {
  display: flex;
      align-items: center;
      justify-content: flex-start;
      margin: 20px 0 0;
      padding: 0;
}
.viewall-faq-button a:hover i{

  color: #FFFFFF;

}
#search .searchBox {
  width: 100%;
  position: relative;
}
.header-search-box {
  display: flex
;
  align-items: center;
  justify-content: center;
}
.slider-post-search-tag-box {
  width: 82%;
}
.all-posts-tags li a:hover {
  background: #FFFFFF;
  transition: 0.6s ease-in-out;
  color:#FFFFFF;
}
.all-posts-tags li a {
  border: 1px solid #FFFFFF;
  background: #B794FC33;
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
  color: #fff;
  height: 32px;
  display: flex;
  justify-content: center;
  backdrop-filter: blur(20px);
  border-radius: 4px;
  padding: 17px 10px;
  margin: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.viewall-faq-button a{
  position: relative;
}
.viewall-faq-button a i {
  font-weight: 700;
  font-size: 16px;
  color: #BF00FF;
  position: relative;
  z-index: 1;
  padding-left: 36px;
}

.viewall-faq-button a:hover{

  color: #FFFFFF;

}

.viewall-faq-button a span{
  position: relative;
  z-index: 1;
}


.viewall-faq-button a:before{
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#BF00FF;
	transition:all 0.3s ease-out;
	-webkit-transition:all 0.3s ease-out;
	-moz-transition:all 0.3s ease-out;
	transform:scaleX(0);
	-webkit-transform:scaleX(0);
	-moz-transform:scaleX(0);
  border-radius: 6px;
}
.viewall-faq-button a:hover:before{
	transform:scaleX(1);
	-webkit-transform:scaleX(1);
	-moz-transform:scaleX(1);
}







.accordion-button{
  color: #B794FC !important;
  padding: 0 !important;
  font-family: Archivo;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px !important;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
}
.accordion-button:not(.collapsed) {
  background-color: unset !important;
  box-shadow: unset !important;
}

.accordion-button:focus {
  border-color: unset !important;
  box-shadow: unset !important;
}
.accordion-button:not(.collapsed) {
    color: #7D59FB !important;
}
.panel-body p {
  color: #B794FCB2;
  margin: 0;
  padding: 0;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0%;
  margin: 0;
  text-align: left;
  padding: 0;
}


.accordion-item {
  background-color: unset !important;
  border: unset !important;
  width: 100%;
}
.accordion-body {
  padding: 0 !important;
}


.faq-card{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0;
}



.owl-nav button {
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  display: flex
;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 12px;
  background: linear-gradient(white, white) padding-box, linear-gradient(96.62deg, #9344E9 -2.84%, #5745E5 102.13%) border-box;
  border: 1px solid transparent;
}

.owl-nav button i{
  width: 46px;
  height: 46px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #7D59FB;
  border: 1.5px solid #7D59FB;
}

#our-blogs .owl-nav {
  margin-top: 52px;
}
.owl-nav {
  display: flex
;
  align-items: center;
  justify-content: center;
}

/* Join Now Section */

#join-now {
  background: #F5F6FF;
  padding: 80px 0;
  position: relative;
}







/* newsletter */

.best-aticles-form p {
  position: relative;
}
#best-aticles {
  padding: 80px 0 140px;
  position: relative;
  background: #fff;
}
.best-aticles-heading h2 {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 54px;
  letter-spacing: 0.2px;
  color: #B794FC;
}
.best-aticles-heading p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  color: #5A7184;
}
.best-aticles-form input[type="email"] {
  background: #F5F6FF;
  border: unset;
  border-radius: 8px;
  height: 56px;
  padding: 17px;
  width: 100%;
}
.most-recent-blogs-metadata .blogs-admin-box h6 {
  margin: 0;
  padding: 7px 2px 8px 9px;
}
.best-aticles-form input[type="email"]::placeholder {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  color: #5A7184;
  
}
.best-aticles-form [type=submit]:hover {
  background:#FFFFFF;
  transition: 0.4s ease-in-out;
}
.best-aticles-form [type=submit] {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #FFFFFF;
  background: linear-gradient(180deg, #A62DD3 0%, #5F52DC 100%);
  border: unset;
  height: 56px;
  border-radius: 8px;
  padding: 0 32px;
  position: absolute;
  right: 0;
  top: 0;
}


/* REsources SEction */

#resources {
  position: relative;
  padding: 60px 0;
  z-index: 1;
  background: #FFFFFF;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
}
.resources-heading h6 {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: linear-gradient(90deg, #BF00FF 0%, #6052DB 100%);
  max-width: fit-content;
  padding: 10px 22px;
  border-radius: 6px;
  color: #fff;
  margin: 0;
}
.resources-details-box {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  background: #FFFFFF;
  box-shadow: 7px 4px 33.5px 10px #B794FC21;
  padding: 46px 78px;
}

.resources-title a {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 65px;
  letter-spacing: -2px;
  color: #232536;
}
.resources-title a:hover {
  color: #BF00FF;
  transition: 0.2s ease-in;
}
.resources-content p {
  font-family: Inter;
  font-weight: 400;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 31px;
  letter-spacing: 0px;
  color: #6D6E76;
  margin: 16px 0 0;
}

.resources-images {
  height: 705px;
  width: 100%;
  overflow: hidden;
}
.resources-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resources-left-heading h5 {
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 3px;
  color: #232536;
}


.discover-resource-button a {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #FFFFFF;
  background: linear-gradient(90deg, #7C3CE4 0%, #B50AFC 100%);
  border-radius: 10px;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: fit-content;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}



.discover-resource-button a:hover{

  color: #FFFFFF;

}

.discover-resource-button a span{
  position: relative;
  z-index: 1;
}


.discover-resource-button a:before{
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#B794FC;
	transition:all 0.3s ease-out;
	-webkit-transition:all 0.3s ease-out;
	-moz-transition:all 0.3s ease-out;
	transform:scaleX(0);
	-webkit-transform:scaleX(0);
	-moz-transform:scaleX(0);
  border-radius: 10px;
}
.discover-resource-button a:hover:before{
	transform:scaleX(1);
	-webkit-transform:scaleX(1);
	-moz-transform:scaleX(1);
}






.items-resources {
  position: relative;
  margin: 0px 0 50px;
}
.resources-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#inner-resource-page {
  position: relative;
  padding: 60px 0;
}

.viewall-resource-button a {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0px;
  color: #BF00FF;
  padding-right: 18px;
}
.viewall-resource-button a {
  border: 2px solid #BF00FF;
  border-radius: 8px;
  padding: 18px 35px 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
}
.viewall-resource-button a i {
  font-weight: 700;
  font-size: 16px;
  color: #BF00FF;
  position: relative;
  z-index: 1;
  padding-left: 36px;
}

.viewall-resource-button a:hover i{

  color: #FFFFFF;

}

.viewall-resource-button a{
  position: relative;
}


.viewall-resource-button a:hover{

  color: #FFFFFF;

}

.viewall-resource-button a span{
  position: relative;
  z-index: 1;
}


.viewall-resource-button a:before{
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#BF00FF;
	transition:all 0.3s ease-out;
	-webkit-transition:all 0.3s ease-out;
	-moz-transition:all 0.3s ease-out;
	transform:scaleX(0);
	-webkit-transform:scaleX(0);
	-moz-transform:scaleX(0);
  border-radius: 6px;
}
.viewall-resource-button a:hover:before{
	transform:scaleX(1);
	-webkit-transform:scaleX(1);
	-moz-transform:scaleX(1);
}




/*------------------ Contact Page -----------------*/
.contact-page-details {
  padding: 26px 0;
  background: #fff;
  border-radius: 10px;
  border: 0.5px solid #9644E9;
  box-shadow: 0px 2px 14px 0px #B794FC1A;

}
.contact-page-box {
  margin-top: 38px;

  background: #FFFFFF;
  padding: 0px 15px;
  position: relative;
  z-index: 1;
  border: 0.5px solid #9644E9;
  box-shadow: 0px 2px 14px 0px #B794FC1A;
  border-radius: 20px;
  margin-bottom: 30px;
}


h3.contact-page {
  margin-left: 3%;
  font-weight: bold;
  color: #18304c;
  border-bottom: solid 4px #d3da36;
  display: table;
  margin-bottom: 4%;
}

.contac_form input[type='text'],
.contac_form input[type='email'],
.contac_form input[type='url'],
.contac_form input[type='password'],
.contac_form input[type='search'],
.contac_form input[type='number'],
.contac_form input[type='tel'],
.contac_form input[type='range'],
.contac_form input[type='date'],
.contac_form input[type='month'],
.contac_form input[type='week'],
.contac_form input[type='time'],
.contac_form input[type='datetime'],
.contac_form input[type='datetime-local'],
.contac_form input[type='color'],
.contac_form select,
.contac_form textarea,
.contac_form .wpcf7 .wpcf7-form-control-wrap[class*="file-"] {
  background-color: #F5F6FF;
  border-color: #ccc;
  color: #2f3357;
  border-radius: 0px;
  box-shadow: none;
  border: unset;
    width: 100%;
  margin-bottom: 14px;
  padding: 18px;
  border-radius: 10px;
}
.contact-box {
  padding: 60px 0;
}
.inner-cont {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.c_content.media-small {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contact-page-details p{
  text-align: center;
}
.choose-content-box:hover .choose-icon-box {
  animation: bounceIn 0.30s linear;
}
.bradcrumbs a:hover {
  color: #B794FC;
  transition: 0.6s ease-in;
  background: #fff;
}
.contact-page-details p a {
  color: #B794FC;
  width: 100%;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  margin: 0;

}
.contact-page-details p a:hover {
  color: #7D59FB;
  transition: 0.3s ease-in;
}
.contact-page-details i {
  color: #fff;
  font-size: 18px;
  width: 40px;
  height: 40px;
  background: #FFAB37;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 10px;  
}
.contact-page-details span {
  text-align: center;
  margin-bottom: 0;
  padding: 0;
  font-family: Archivo;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #B794FC;
}
.contact-page-box [type=submit] {
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  background: #7D59FB;
  border: unset;
}
.contact-page-box [type=submit]:hover{
  background: #B794FC;
  color: #fff;
}
.contact-page-box h3 {
  color: #B794FC;
  font-family: Archivo;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
}

















/* 404 page */
.error404 .content_page {
  padding: 80px 0;
}
.page-content h3 span {
  font-family: Outfit;
  font-weight: 600;
  font-size: 67px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #F16517;
  text-align: left;
  background: #fff;
  padding: 34px 59px;
  clip-path: polygon(0% 0%, 87.243% 0%, 99.839% 91.281%, 99.839% 91.281%, 99.954% 92.591%, 99.943% 93.873%, 99.815% 95.1%, 99.581% 96.246%, 99.25% 97.286%, 98.833% 98.195%, 98.338% 98.946%, 97.776% 99.515%, 97.157% 99.874%, 96.49% 100%, 3.472% 100%, 3.472% 100%, 2.909% 99.91%, 2.375% 99.648%, 1.877% 99.23%, 1.422% 98.669%, 1.017% 97.98%, 0.67% 97.177%, 0.388% 96.273%, 0.177% 95.283%, 0.045% 94.222%, 0% 93.103%, 0% 0%);
  display: flex
;
  align-items: center;
  box-shadow: 41px 26px 60px 36px #EBA4A440;
}
.page-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.read-moresec a {
  color: #FFFFFF;
  padding: 16px 36px;
  border-radius: 60px;
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  background: #7D59FB;
position: relative;
z-index: 1;
}

.read-moresec a:hover{
  color: #fff;
}


.read-moresec a span{
  position: relative;
  z-index: 1;
}


.read-moresec a:before{
	position:absolute;
	content:'';
	top:0;
	left:0;
	right:0;
	bottom:0;
	background:#000;
	transition:all 0.3s ease-out;
	-webkit-transition:all 0.3s ease-out;
	-moz-transition:all 0.3s ease-out;
	transform:scaleX(0);
	-webkit-transform:scaleX(0);
	-moz-transform:scaleX(0);
  border-radius: 60px;
}
.read-moresec a:hover:before{
	transform:scaleX(1);
	-webkit-transform:scaleX(1);
	-moz-transform:scaleX(1);
}

.text-404 {
  padding: 0 0 20px 0;
  color: #B794FC;
  position: relative;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0%;
  text-transform: capitalize;

}
.error404 .page-content h3 span {
  padding: 34px 59px 0;
  background: unset;
  font-style: Bold;
  letter-spacing: 0%;
  text-align: center;
  color: #B794FC;
  font-family: Archivo;
  font-weight: 700;
  font-style: Bold;
  font-size: 65px;
  leading-trim: NONE;
  line-height: 55px;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.page-template-page-with-left-sidebar .middle-align,
.page-template-page-with-right-sidebar .middle-align {
  padding: 60px 0;
  background: #040019;
}
.page-template-page-with-left-sidebar .middle-align p,
.page-template-page-with-right-sidebar .middle-align p {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  color: rgba(183, 148, 252, 0.8);
  margin: 0 0 12px;
}
.page-template-page-with-left-sidebar .middle-align h1,
.page-template-page-with-left-sidebar .middle-align h2,
.page-template-page-with-left-sidebar .middle-align h3,
.page-template-page-with-right-sidebar .middle-align h1,
.page-template-page-with-right-sidebar .middle-align h2,
.page-template-page-with-right-sidebar .middle-align h3 {
  font-family: Archivo, sans-serif;
  color: #ffffff;
}
.page-template-page-with-left-sidebar .middle-align a,
.page-template-page-with-right-sidebar .middle-align a {
  color: #B794FC;
  transition: color 0.25s ease;
}
.page-template-page-with-left-sidebar .middle-align a:hover,
.page-template-page-with-right-sidebar .middle-align a:hover {
  color: #ffffff;
}
/* single blog page */
.feature-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.form-submit [type=submit] {
    padding: 16px 30px;
    border: unset;
    font-family: 'Archivo';
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0px;
    vertical-align: middle;
    background: #7D59FB;
    border-radius: 60px;
    color: #fff;
}
.form-submit [type=submit]:hover {
  color: #fff;
  transition: 0.6s ease-in;
  background: #7D59FB;
}
.main-single-div h1 {
  font-family: Varta;
  font-weight: 700;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: left;
  color: #B794FC;
}
.main-single-div p {
  color:#FFFFFF;
  font-family: 'Archivo';
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
}
.meta-box-question {
  font-family: Varta;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: capitalize;
  margin: 0;
  color: #F16517;
}
.single-page-metaimage img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.copyright-right-button a:hover span {
  color:#FFFFFF;
  transition: 0.4s ease-in;
}
.main-single-div {
  padding: 60px 0;
}
.social-icons p a i {
  background: #7D59FB;
  width: 35px;
  height: 35px;
  font-size: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-left: 10px;
  border-radius: 50%;
}
.social-icons p a i:hover {
  background:#FFFFFF;
  color: #fff;
  transition: 0.4s ease-in;

}
.wpcf7 form .wpcf7-response-output {
  color:#FFFFFF;
  font-family: 'Archivo';
  font-size: 14px;
  font-weight: 500;
  border-color: #7D59FB !important;
}
.logged-in-as {
    color: #B794FCB2;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Archivo';
}
.comment-form-comment label {
    color: #7D59FB;
    font-family: 'Archivo';
    font-size: 18px;
    font-weight: 600;
}
.logged-in-as a {
    font-weight: 700;
    color: #7D59FB;
}
.socila_share {
  display: flex;
  align-items: center;
  justify-content: end;
}
#comments h2 {
  font-family: 'Urbanist';
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 48px;
  text-align: left;
  color: #FFFFFF;

}
.metabox {
  margin-bottom: 24px;
  border-bottom: 1px solid #EAEAEA;
  padding-bottom: 22px;
}
.metabox span {
  color: #A3A3A3;
  letter-spacing: 3%;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0%;
}
span.entry-author a {
  color: #A3A3A3;
  text-transform: capitalize;
}
.metabox span a {
  color: #A3A3A3;
  letter-spacing: 3%;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0%;
}
.post-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.metabox  .entry-date {
  margin: 0 20px;
}

.comment-form-comment textarea {
    resize: vertical;
    width: 100%;
    height: 200px;
    border: 1px solid #D4D7D9;
    border-radius: 7px;
    background: #FFFFFF0D;
    color: #fff;
    padding: 12px;
}

/* Search page */
.search .middle-align {
  padding: 60px 0;
}
.search   [type=submit] {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #FFFFFF;
  border: unset;
  height: 54px;
  border-radius: 30px;
  padding: 0 23px;
  /* position: absolute; */
  /* right: 0; */
  background: #7D59FB;
}



.search .search-field {

  border-radius: 10px;
}
.banner-image h1 span {
  color: #fff;
}
.search h3 {
  font-family: 'Inter';
  font-weight: 700;
  font-size: 38px;
  line-height: 52px;
  letter-spacing: 0%;
  color: #B794FC;
  text-align: left;
  text-shadow: unset;
}
.search .search-field{
    background: #fff;
    border: 1px solid #9644E9;
    border-radius: 30px;
    color: #040019;
    font-family: 'Archivo';
}

/* Single testimonial page */
.testimonial {
  padding: 60px 0;
}
.testimonial .single-page-content p {

  padding: 14px 0;
}
.main-single-div p a {
  color:#FFFFFF;
  font-weight: 600;
}
.nav-next a {
  font-family: 'Outfit';
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #F16517;
}
.nav-next a .post-title {
  padding-left: 4px;
  color: #B794FC;
}
.nav-previous a {
  font-family: 'Outfit';
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #F16517;
}
.nav-previous a .post-title {
  padding-left: 4px;
  color: #B794FC;
}
#single-team-page {
  padding: 60px 0;
}
#single-team-page .team-title a {

  color: #B794FC;
}
#single-team-page .team-designation h6{
  color: #B794FC;

}


/* ===================== Sidebar ===================== */
#sidebar aside {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(150, 68, 233, 0.35);
  box-shadow: 0 4px 30px rgba(150, 68, 233, 0.12);
  border-radius: 20px;
  padding: 24px 22px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#sidebar aside:hover {
  border-color: rgba(183, 148, 252, 0.55);
  box-shadow: 0 8px 40px rgba(150, 68, 233, 0.2);
}


#sidebar .serach-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#sidebar label {
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0px;
  text-align: left;
  color: #ffffff;
  margin-bottom: 0px;
  display: block;

}
aside#block-3 {
  display: none;
}
#sidebar .widget-title {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(150, 68, 233, 0.3);
  position: relative;
}
#sidebar .widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 40px;
  height: 2px;
  background: #B794FC;
  border-radius: 2px;
}
.wp-block-search__input{
  border-radius: 10px;
}
#sidebar {
  display: flex;
  flex-direction: column;
}
#sidebar .search-field {
  height: 48px;
  width: 100%;
  padding: 10px 16px;
  border-radius: 30px;
  border: 1px solid rgba(150, 68, 233, 0.45) !important;
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  font-family: Inter, sans-serif;
  font-size: 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
#sidebar .search-field::placeholder {
  color: rgba(183, 148, 252, 0.45);
}
#sidebar .search-field:focus {
  border-color: #9A44E9 !important;
  box-shadow: 0 0 0 3px rgba(150, 68, 233, 0.2) !important;
  outline: none;
}
.wp-block-search__inside-wrapper{
  position: relative;
}
#sidebar [type=submit]{
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #FFFFFF;
  border: unset;
  height: 46px;
  border-radius: 30px;
  padding: 0 23px;
  position: absolute;
  right: 0;
  background: #7D59FB;


}
#sidebar input[type=search] {
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(150, 68, 233, 0.45) !important;
  border-radius: 30px;
  height: 48px;
  padding: 10px 18px;
  color: #040019 !important;
  font-family: Inter, sans-serif;
  font-size: 14px;
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
#sidebar input[type=search]:focus {
  border-color: #9A44E9 !important;
  box-shadow: 0 0 0 3px rgba(150, 68, 233, 0.2) !important;
  outline: none;
}

.page-template-page-with-left-sidebar #sidebar .widget_recent_entries {
  order: unset;
}
.page-template-page-with-right-sidebar #sidebar .widget_recent_entries {
  order: unset;
}
.category-single-page {
  padding: 60px 0;
}
#sidebar #block-2{
  order: 1;
}
#sidebar .widget_calendar {
  order: 5;
}
#sidebar  .widget_recent_entries{
  order: 2;

}
#sidebar  #block-4{
  order: 4;

}
#sidebar .widget_categories{
  order: 3;

}

#sidebar ul li a:hover{
  color: #BF00FF;
  transition: 0.4s ease-in-out;
}
#sidebar h2 {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: left;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(150, 68, 233, 0.3);
  position: relative;
}
#sidebar h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 40px;
  height: 2px;
  background: #B794FC;
  border-radius: 2px;
}
  


#sidebar ul li a {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(183, 148, 252, 0.85);
  text-decoration: none;
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: block;
}
#sidebar ul li a:hover {
  color: #ffffff !important;
}
#sidebar ol li a {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(183, 148, 252, 0.85);
  text-decoration: none;
  transition: color 0.25s ease;
}
#sidebar ol li a:hover {
  color: #ffffff !important;
}

/* Single team page */

#single-team {
  padding: 60px 0;
}

.single-team-info {
  height: 481px;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

#single-team .row {
  border: 1px solid #E5EAF4;
  box-shadow: 0px 10px 35px 0px #B794FC08;
  background: #FFFFFF;
  border-radius: 16px;
}
.single-teampage-content h2 {
  text-align: left;
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #FFFFFF;
  background: linear-gradient(90deg, #AF29D3 0%, #654EDB 100%);
  max-width: fit-content;
  border-radius: 6px;
  padding: 7px 13px;
  text-transform: uppercase;
}
.single-teampage-content h6 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #5D666F;
  text-align: left;
  margin: 0;
  padding: 0;
}
.single-team-info img{
  height: 500px;
}
.single-team-info img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  object-fit: cover;
}
.single-team-about-details p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #5A7184;
}
.single-teampage-content h4 {
  font-family: Outfit;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #B794FC;
  text-align: left;
}
.single-teampage-content p {
  margin: 0;
}
.banner-image h1 {
  color: #fff;
}
#single-team .social-profiles a i {
  width: 42px;
  height: 42px;
  color: #fff;
  background: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 3px;
  background: linear-gradient(180deg, #BF00FF 0%, #654FDB 100%);
}

.blogs-category-content-box a:hover {
  color: #fff;
  transition: 0.4s ease-in;
}
.social-profiles {
  display: flex;
  align-items: center;
  justify-content: left;
}
#sidebar .serach-page {
  display: flex
;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
#sidebar input[type=search] {
  -webkit-appearance: none;
background: #F5F6FF !important;}


 .category-single-page .blogs-inner-details {
  border: 1px solid #E5EAF4;
  box-shadow: 0px 10px 35px 0px #B794FC08;
  background: #FFFFFF;
  border-radius: 20px;
  height: 100%;
}
.category-single-page .blogs-inner-content {
  padding: 20px 25px 20px;
}
 .category-single-page .blog-title a {
  font-size: 24px;
  line-height: 35px;
}
.category-single-page .blogs-content p {
  font-size: 16px;
  line-height: 26px;
  color: #B794FC;
  margin: 6px 0 0;
}

.middle-align p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #B794FC;
}

.postbox .blogs-inner-details {
  border: 1px solid #E5EAF4;
  box-shadow: 0px 10px 35px 0px #B794FC08;
  background: #FFFFFF;
  border-radius: 20px;
  height: 100%;
}
.postbox .blogs-inner-content {
  padding: 20px 25px 20px;
}
 .postbox .blog-title a {
  font-size: 24px;
  line-height: 35px;
}
.postbox .blogs-content p {
  font-size: 16px;
  line-height: 26px;
  color: #B794FC;
  margin: 6px 0 0;
}



.meta-team-contact-box-details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 0;
}
.team-contact-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #EAEAEA;
  background: #fff;
  padding: 12px 20px;
  margin-right: 16px;
}
.team-contact-box i {
  color: #fff;
  width: 28px;
  height: 28px;
  background: #BF00FF;
  display: flex
;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  margin-right: 9px;
}
.team-contact-box p {
  font-family: Outfit;
  font-weight: 400;
  font-size: 17px;
  line-height: 95%;
  letter-spacing: 2%;
  color: #B794FC;
  margin: 0;
  padding: 0;
}
#single-team .social-profiles a i:hover {
  background: #BF00FF;
  transition: 0.4s ease-in-out;
  color: #fff;
}


.best-articles-image {
  height: 256px;
  overflow: hidden;
  border-radius: 10px;
}
.best-articles-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.best-articles-blog-title a {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.2px;
  color: #183B56;
}
.best-article-blog-content p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0px;
  color: #5A7184;
  margin: 0;
}
.best-articles-inner-content {
  padding: 16px;
}
.best-articles-content-box {
  background: #FFFFFF;
  /* box-shadow: -50px 50px 50px 0px #B794FC26; */
  border-radius: 16px;
  padding: 0 12px 22px;
  margin: 0 75px;

}
.best-aticles-heading {
  margin-right: 50px;
}
#best-aticles .blogs-inner-details::after {
  content: "";
  background: #BF00FF;
  width: 52%;
  height: 232px;
  position: absolute;
  bottom: -60px;
  opacity: 6%;
  z-index: -1;
  box-shadow: -50px 50px 50px 0px #B794FC26;
  border-radius: 16px;
}
#best-aticles .blogs-inner-details {
  position: relative;
  z-index: 1;
}
#best-aticles .blogs-inner-details::before {
  content: "";
  background: #BF00FF;
  width: 50%;
  position: absolute;
  height: 233px;
  right: 0;
  z-index: -1;
  border-radius: 16px;
  top: 34px;
}

/* Single case page */
.single-case-page {
  padding: 60px 0;
}
.single-case-content p {
  font-family: Outfit;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0%;
  color: #5D666F;
  margin: 0;
}
.single-case-member-images {
  height: 500px;
  margin-top: 20px;

}
.single-case-member-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-case-info1 h6 {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 60px;
  line-height: 100%;
  letter-spacing: 2%;
  -webkit-text-stroke: 1px #D4D4D4;
  color: transparent;
  margin: 0;
  padding: 0;
  text-align: left;
  position: relative;
}
.single-case-info1 h4 {
  font-family: Outfit;
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #B794FC;
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex
;
  align-items: center;
  margin: 0;
  padding: 0;
}
.single-case-info1{
  position: relative;
}
.single-case-info1 p {
  font-family: Outfit;
  font-weight: 400;
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0%;
  color: #5D666F;
  margin: 0;
}

.single-case-title a {
  font-family: Outfit;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 2%;
  color: #B794FC;
  margin: 0;
  padding: 0;
  padding-left: 14px;
}
.single-case-title {
  border: 1px solid #EAEAEA;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}
.single-case-title i {
  color: #F16517;
  width: 23px;
  height: 23px;
  background: rgba(224, 10, 10, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
}
.single-case-title a:hover {
  color: #F16517;
}
.single-case-box-border {
  border-bottom: 1px solid #EAEAEA;
  border-top: 1px solid #EAEAEA;
  padding: 50px 0;
}
.single-case-page .limited-offer-box {
  margin: 0;
}



/* Terms and conditions */

#tandc {
  padding: 60px 0;
}
#tandc h1 {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  text-align: left;
  color: #B794FC;
}
#tandc h2 {
  font-family: 'Urbanist';
  font-weight: 600;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 3%;
  color: #B794FC;
}
#tandc p {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 3%;
  color:#FFFFFF;
}


#privacy-policy{
  padding: 60px 0;
}

.top-content h2 {
  font-family: 'Urbanist';
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 2%;
  text-align: left;
  color: #B794FC;
}
.top-content h3 {
  font-family: 'Urbanist';
  font-weight: 600;
  font-size: 26px;
  line-height: 140%;
  letter-spacing: 3%;
  color: #B794FC;
}
.top-content p {
  ont-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 3%;
  color: #B794FC;
  margin: 10px 0;
}
.top-content li {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 3%;
  color: #B794FC;
  margin: 14px 0;
}
#self-service {
  padding: 60px 0;
}


/* Single blog page */

.main-single-div .nav-next a .post-title {
  padding-left: 4px;
  color:#FFFFFF;
  font-size: 14px;
}
.main-single-div .navigation span{
  clip-path: unset;
  background: unset;
  font-size: 14px;
  padding: 0px;
}
.main-single-div  .navigation a{
  clip-path: unset;
  padding: 0;
  background: unset;
}
.main-single-div .nav-links {
  display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
}
.main-single-div .nav-previous a .post-title {
  padding-left: 4px;
  color:#FFFFFF;
  font-size: 14px;
}
.main-single-div .navigation span {
  color: #7D59FB;
}

/* tAGS */

.tag .middle-align {
  padding: 60px 0;
}


/* Single post page */

.related-posts h3 {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 40px;
  line-height: 65px;
  letter-spacing: 0%;
  color: #B794FC;
  margin-top: 58px;
  margin-bottom: 24px;}

.main-single-div .blogs-inner-details {
  border: 1px solid #E5EAF4;
  box-shadow: 0px 10px 35px 0px #B794FC08;
  background: #FFFFFF;
  border-radius: 16px;
  margin-bottom: 31px;
}
.main-single-div  .latest-blogs-box {
  padding: 32px 20px;
}
.main-single-div .recent-post-category a {
  font-family: Open Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #BF00FF;
  background: #F5F6FF;
  padding: 12px 29px;
  border-radius: 20px;
  display: flex
;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
}


/* Project page */

.projects-member-images {
  height: 326px;
  border-radius: 8px;
  overflow: hidden;
}


.projects-member-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.projects-title a {
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  color: #2B2B2B;
}
.projects-designation h6 {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 0%;
  text-align: left;
  color: #828089;
  margin: 0;
  padding: 9px 0 0;
}
.projects-inner-box {
  border: 1px solid #E5EAF4;
  box-shadow: 0px 10px 35px 0px #B794FC08;
  background: #FFFFFF;
  border-radius: 8px;
}
.projects-details-box {
  padding: 18px 16px;
}

.projects-inner-box:hover .projects-member-images img {
  animation: pulse 400ms linear;
}
.projects-title:hover a {
  color: #BF00FF;
  transition: 0.2s eaes-in;
}


/* Single project page */

.single-projects-page {
  padding: 60px 0;
}
.single-projects-images {
  height: 500px;
  overflow: hidden;
  border-radius: 6px;
}
.single-projects-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;

}

.single-projects-details h2 {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: linear-gradient(90deg, #BF00FF 0%, #6052DB 100%);
  max-width: fit-content;
  padding: 10px 22px;
  border-radius: 6px;
  color: #fff;
  margin-top: 26px;
}

.single-projects-details p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0%;
  color: #5A7184;

}

.projects-single-image {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}
.projects-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;

}
.projects-single-image:hover img {
  animation: pulse 400ms linear;
}

.blogs-inner-details:hover .best-articles-image img {
  animation: pulse 400ms linear;
}

.single-projects-content-box {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.single-projects-content-box h4 {
  font-family: Inter;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #BF00FF;
  padding: 0;
  margin: 0;
}
.project-meta-data {
  display: flex
  ;
      align-items: baseline;
      justify-content: flex-start;
      margin-top: 18px;
}
.services-single-image {
  height: 380px;
}
.services-single-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.services-single-points h6 {
  margin: 0;
  padding: 0;
}
.services-single-points i {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-style: normal;
  font-size: 15px;
  padding: 8px;
  margin-right: 20px;
  color:#FFFFFF;

}
.service-single-boxes h5 {
  color: #232536;
  font-family: Inter;
  font-weight: 500;
  font-size: 26px;
  line-height: 35px;
  letter-spacing: 0px;

}
.services-single-points {
  display: flex
;
  align-items: center;
  justify-content: flex-start;
}
.project-meta-data h5 {
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: left;
  color: #2B2B2B;
  width: 100%;
  margin: 0;
  padding: 0;
  max-width: 130px;
}
.project-meta-data h6 {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 19.2px;
  letter-spacing: 0%;
  text-align: left;
  color: #828089;
  margin: 0;
  padding: 0;
}
/* Single blog pages */
/* 
.content_page .blogs-inner-content {
  padding: 20px 25px 20px;
}

.content_page .blog-title a {
  font-size: 24px;
  line-height: 35px;
}
.content_page .blogs-content p {
  font-size: 16px;
  line-height: 26px;
  color: #B794FC;
  margin: 6px 0 0;
}

.content_page .blogs-inner-details {
  border: 1px solid #E5EAF4;
  box-shadow: 0px 10px 35px 0px #B794FC08;
  background: #FFFFFF;
  border-radius: 20px;
  height: 100%;
} */


/* ============================================================
   AGENTIC AI — Contact Page Styles
   ============================================================ */

/* --- Section wrapper --- */
.ai-contact-section {
  position: relative;
  padding: 80px 0 60px;
  background: #040019;
  overflow: hidden;
}

/* --- Ambient glows --- */
.ai-contact-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.ai-contact-glow--left {
  background: radial-gradient(circle, rgba(150, 68, 233, 0.25) 0%, transparent 70%);
  top: -100px;
  left: -150px;
}
.ai-contact-glow--right {
  background: radial-gradient(circle, rgba(85, 69, 229, 0.20) 0%, transparent 70%);
  bottom: -100px;
  right: -150px;
}
.ai-contact-section .container {
  position: relative;
  z-index: 1;
}

/* --- Badge --- */
.ai-contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(150, 68, 233, 0.15);
  border: 1px solid rgba(150, 68, 233, 0.4);
  color: #B794FC;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.ai-contact-badge i {
  color: #FFAB37;
}

/* --- Headline --- */
.ai-contact-headline {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
}
.ai-contact-headline__gradient {
color: #7D59FB;
}
.ai-contact-subtext {
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(183, 148, 252, 0.75);
  max-width: 560px;
  margin: 0 auto;
}

/* --- Info Cards --- */
.ai-contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(150, 68, 233, 0.35);
  border-radius: 20px;
  padding: 36px 28px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(10px);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ai-contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(150, 68, 233, 0.08) 0%, transparent 60%);
  border-radius: 20px;
  pointer-events: none;
}
.ai-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(150, 68, 233, 0.25);
  border-color: rgba(183, 148, 252, 0.6);
}
.ai-contact-card__icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #7D59FB;
  margin-bottom: 18px;
  box-shadow: 0 0 30px rgba(150, 68, 233, 0.45);
}
.ai-contact-card__icon-wrap i {
  font-size: 22px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}
.ai-contact-card__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(183, 148, 252, 0.5);
  animation: ai-pulse-ring 2s ease-out infinite;
}
@keyframes ai-pulse-ring {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0;   }
}
.ai-contact-card__title {
  font-family: Archivo, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
}
.ai-contact-card__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.ai-contact-card__links a {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: #B794FC;
  text-decoration: none;
  transition: color 0.25s ease;
  word-break: break-word;
}
.ai-contact-card__links a:hover {
  color: #ffffff;
}
.ai-contact-card__meta {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: rgba(183, 148, 252, 0.55);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ai-contact-card__meta i {
  color: #FFAB37;
  font-size: 11px;
}
/* card accent colours */
.ai-contact-card--email   .ai-contact-card__icon-wrap { background: #7D59FB; }
.ai-contact-card--location .ai-contact-card__icon-wrap { background: #7D59FB; }
.ai-contact-card--phone   .ai-contact-card__icon-wrap { background: #7D59FB; }

/* --- Stats strip --- */
.ai-contact-stats-strip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(150, 68, 233, 0.25);
  border-radius: 16px;
  overflow: hidden;
}
.ss-feature-card i {
    color: #fff;
}

.ai-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(150, 68, 233, 0.2);
  text-align: center;
}
.ai-stat-item:last-child { border-right: none; }
.ai-stat-number {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 36px);
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
}
.ai-stat-number span {
  font-size: 0.55em;
  color: #B794FC;
  margin-left: 2px;
}
.ai-stat-label {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(183, 148, 252, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --- Main box (form + map) --- */
.ai-contact-main-box {
  border: 1px solid rgba(150, 68, 233, 0.3);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(150, 68, 233, 0.12);
}

/* Form panel */
.ai-contact-form-panel {
  background: rgba(255, 255, 255, 0.03);
  padding: 44px 40px;
  height: 100%;
  border-right: 1px solid rgba(150, 68, 233, 0.2);
}
.ai-contact-form-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.ai-status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: ai-blink 1.5s ease-in-out infinite;
}
@keyframes ai-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.ai-contact-form-title {
  font-family: Archivo, sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 8px;
}
.ai-contact-form-desc {
  font-family: Inter, sans-serif;
  font-size: 14px;
  color: rgba(183, 148, 252, 0.65);
  margin-bottom: 28px;
  line-height: 1.6;
}
.ai-contact-form-body input[type='text'],
.ai-contact-form-body input[type='email'],
.ai-contact-form-body input[type='url'],
.ai-contact-form-body input[type='tel'],
.ai-contact-form-body input[type='search'],
.ai-contact-form-body textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(150, 68, 233, 0.35) !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-family: Inter, sans-serif;
  font-size: 14px;
  padding: 14px 18px !important;
  width: 100%;
  margin-bottom: 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.ai-contact-form-body input::placeholder,
.ai-contact-form-body textarea::placeholder {
  color: rgba(183, 148, 252, 0.45);
}
.ai-contact-form-body input:focus,
.ai-contact-form-body textarea:focus {
  border-color: #9A44E9 !important;
  box-shadow: 0 0 0 3px rgba(150, 68, 233, 0.2) !important;
  outline: none;
}
.ai-contact-form-body textarea {
  resize: vertical;
  min-height: 130px;
}
/* Submit button (shortcode & native) */
.ai-contact-form-body [type='submit'],
.ai-form-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #7D59FB;
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(150, 68, 233, 0.35);
  position: relative;
  overflow: hidden;
}
.ai-contact-form-body [type='submit']:hover,
.ai-form-submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(150, 68, 233, 0.5);
}
.ai-form-submit-btn span { position: relative; z-index: 1; }
.ai-form-submit-btn i    { position: relative; z-index: 1; }

/* Map panel */
.ai-contact-map-panel {
  position: relative;
  min-height: 480px;
  height: 100%;
  background: #0a0026;
}
.ai-map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
}
.ai-map-wrapper embed {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
  filter: hue-rotate(220deg) saturate(0.6) brightness(0.75);
}
.ai-map-overlay-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(4, 0, 25, 0.85);
  border: 1px solid rgba(150, 68, 233, 0.4);
  color: #B794FC;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
}
.ai-map-overlay-label i { color: #FFAB37; }

/* Map placeholder (when no lat/lng set) */
.ai-map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 480px;
  padding: 40px;
  text-align: center;
  background: linear-gradient(135deg, rgba(150, 68, 233, 0.08), rgba(85, 69, 229, 0.06));
}
.ai-map-placeholder i {
  font-size: 52px;
  background: #7D59FB;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.ai-map-placeholder h4 {
  font-family: Archivo, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}
.ai-map-placeholder p {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: rgba(183, 148, 252, 0.65);
  max-width: 300px;
  line-height: 1.6;
  margin: 0;
}

/* --- CTA strip --- */
.ai-contact-cta-strip {
  border-top: 1px solid rgba(150, 68, 233, 0.2);
  padding-top: 30px;
}
.ai-contact-cta-text {
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: rgba(183, 148, 252, 0.7);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ai-contact-cta-text i { color: #FFAB37; }
.ai-contact-cta-text a {
  color: #B794FC;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 148, 252, 0.35);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.ai-contact-cta-text a:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .ai-contact-form-panel {
    padding: 32px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(150, 68, 233, 0.2);
  }
  .ai-contact-map-panel {
    min-height: 350px;
  }
  .ai-map-wrapper,
  .ai-map-wrapper embed,
  .ai-map-placeholder {
    min-height: 350px;
  }
  .ai-stat-item { padding: 20px 10px; }
}
@media (max-width: 575px) {
  .ai-contact-section { padding: 60px 0 40px; }
  .ai-contact-headline { font-size: 28px; }
  .ai-stat-item { border-right: none; border-bottom: 1px solid rgba(150, 68, 233, 0.2); }
  .ai-stat-item:last-child { border-bottom: none; }
}

/* ============================================================
   SIDEBAR — Agentic AI Theme Polish
   ============================================================ */

/* Widget title uniform override */
#sidebar .widget-title,
#sidebar h2,
#sidebar h3 {
  font-family: Archivo, sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #ffffff !important;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(150, 68, 233, 0.3);
  position: relative;
}
#sidebar .widget-title::after,
#sidebar h2::after,
#sidebar h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 36px;
  height: 2px;
  background: #7D59FB;
  border-radius: 2px;
}

/* All sidebar text */
#sidebar p,
#sidebar span,
#sidebar li {
    color: rgba(183, 148, 252, 0.8);
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

/* Sidebar recent-posts / entries thumbnail link */
#sidebar .wp-block-latest-posts__post-title,
#sidebar .widget_recent_entries ul li a {
  color: rgba(183, 148, 252, 0.85) !important;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.25s ease;
}
#sidebar .wp-block-latest-posts__post-title:hover,
#sidebar .widget_recent_entries ul li a:hover {
  color: #ffffff !important;
}

/* Category widget counts */
#sidebar .widget_categories ul li .count,
#sidebar .widget_archive ul li .count {
  color: rgba(183, 148, 252, 0.45);
  font-size: 12px;
}

/* Tag cloud */
#sidebar .tagcloud a {
  display: inline-block;
  background: rgba(150, 68, 233, 0.12);
  border: 1px solid rgba(150, 68, 233, 0.3);
  color: #B794FC !important;
  font-family: Inter, sans-serif !important;
  font-size: 13px !important;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50px;
  margin: 4px 3px;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
#sidebar .tagcloud a:hover {
  background: #7D59FB;
  border-color: transparent;
  color: #ffffff !important;
}

/* Calendar widget */
#sidebar .wp-calendar-table th,
#sidebar .wp-calendar-table caption {
  color: #B794FC;
  font-family: Inter, sans-serif;
}
#sidebar .wp-calendar-table td {
  color: rgba(183, 148, 252, 0.7);
}
#sidebar .wp-calendar-table a {
  color: #ffffff;
  font-weight: 600;
}
#sidebar #wp-calendar {
  background: transparent;
}

/* Search widget submit button */
#sidebar [type=submit] {
  font-family: Inter, sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  color: #ffffff !important;
  border: none !important;
     height: 48px;
    border-radius: 30px;
    padding: 0px 28px;

  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #7D59FB !important;
  cursor: pointer;
  transition: opacity 0.25s ease;
}
#sidebar [type=submit]:hover {
  opacity: 0.85;
}

/* Blog left-sidebar page wrapper */
#blog-left-sidebar .middle-align {
  padding: 60px 0;
  background: #040019;
}
#blog-left-sidebar .middle-align p {
  color: rgba(183, 148, 252, 0.8);
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

/* Generic inner page sidebar pages background */
.page-template-blog-with-left-sidebar,
.page-template-blog-with-right-sidebar,
.page-template-page-with-left-sidebar,
.page-template-page-with-right-sidebar {
  background: #040019 !important;
}
.page-template-blog-with-left-sidebar .middle-align,
.page-template-blog-with-right-sidebar .middle-align {
  padding: 60px 0;
}

/* Sidebar aside inner accent line */
#sidebar aside::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #9A44E9, #5545E5);
  border-radius: 20px 0 0 20px;
  opacity: 0.7;
}

/* Responsive sidebar */
@media (max-width: 991px) {
  #sidebar aside {
    padding: 18px 16px;
  }
  #sidebar {
    margin-top: 40px;
  }
}

/* ============================================================
   SINGLE SERVICES PAGE — Agentic AI Theme
   ============================================================ */

/* --- Section wrapper --- */
#singleService {
  position: relative;
  padding: 70px 0 80px;
  background: #040019;
  overflow: hidden;
}

/* --- Ambient glows --- */
.ss-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.ss-glow--left {
  background: radial-gradient(circle, rgba(150, 68, 233, 0.2) 0%, transparent 70%);
  top: -80px;
  left: -200px;
}
.ss-glow--right {
  background: radial-gradient(circle, rgba(85, 69, 229, 0.15) 0%, transparent 70%);
  bottom: 0;
  right: -200px;
}
#singleService .container {
  position: relative;
  z-index: 1;
}

/* ============================================================
   NAV PANEL (sidebar)
   ============================================================ */
.ss-nav-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(150, 68, 233, 0.35);
    border-radius: 20px;
    padding: 28px 20px;
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
}

.ss-nav-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(150, 68, 233, 0.15);
  border: 1px solid rgba(150, 68, 233, 0.35);
  color: #B794FC;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.ss-nav-badge i { color: #FFAB37; }

.ss-nav-heading h4 {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(150, 68, 233, 0.25);
  position: relative;
}
.ss-nav-heading h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 36px;
  height: 2px;
  background: #7D59FB;
  border-radius: 2px;
}

/* Nav list */
.ss-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  gap: 4px;
  display: flex;
  flex-direction: column;
}
.ss-nav-btn {
  display: flex !important;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 14px !important;
  border-radius: 12px !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  color: rgba(183, 148, 252, 0.75) !important;
  font-family: Inter, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-align: left !important;
  transition: all 0.25s ease !important;
  cursor: pointer;
}
.ss-nav-btn:hover {
  background: rgba(150, 68, 233, 0.1) !important;
  border-color: rgba(150, 68, 233, 0.3) !important;
  color: #ffffff !important;
}
.ss-nav-btn.active {
  background: linear-gradient(135deg, rgba(154, 68, 233, 0.2), rgba(85, 69, 229, 0.15)) !important;
  border-color: rgba(150, 68, 233, 0.5) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(150, 68, 233, 0.2);
}
.ss-nav-btn__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(150, 68, 233, 0.2);
  font-size: 12px;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.ss-nav-btn.active .ss-nav-btn__icon {
  background: #7D59FB;
  color: #fff;
}
.ss-nav-btn__label {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ss-nav-btn__arrow {
  font-size: 10px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ss-nav-btn.active .ss-nav-btn__arrow,
.ss-nav-btn:hover .ss-nav-btn__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Agent status card */
.ss-agent-status-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(74, 222, 128, 0.06);
  border: 1px solid rgba(74, 222, 128, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 4px;
}
.ss-agent-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  flex-shrink: 0;
  animation: ai-blink 1.5s ease-in-out infinite;
}
.ss-agent-status-title {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
  margin: 0;
}
.ss-agent-status-sub {
  font-family: Inter, sans-serif;
  font-size: 11px;
  color: rgba(74, 222, 128, 0.65);
  margin: 0;
}

/* ============================================================
   MAIN CONTENT AREA
   ============================================================ */

/* Hero image */
.ss-hero-image {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 28px;
}
.ss-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.ss-hero-image:hover img {
  transform: scale(1.04);
}
.ss-hero-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 0, 25, 0.75) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.ss-hero-image__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 0, 25, 0.85);
  border: 1px solid rgba(150, 68, 233, 0.45);
  color: #B794FC;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.ss-hero-image__badge i { color: #FFAB37; }

/* Service title */
.ss-service-title-row {
  margin-bottom: 16px;
}
.ss-service-title {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.2;
}
.ss-service-title-line {
  display: block;
  width: 60px;
  height: 3px;
  background: #7D59FB;
  border-radius: 3px;
}

/* Paragraphs */
.ss-service-para {
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(183, 148, 252, 0.8);
  margin-bottom: 24px;
}
.ss-service-para--secondary {
  border-left: 3px solid rgba(150, 68, 233, 0.4);
  padding-left: 16px;
  margin-top: 8px;
}

/* Feature cards */
.ss-feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(150, 68, 233, 0.3);
  border-radius: 16px;
  padding: 24px 22px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ss-feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(150, 68, 233, 0.07) 0%, transparent 60%);
  border-radius: 16px;
  pointer-events: none;
}
.ss-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(150, 68, 233, 0.2);
  border-color: rgba(183, 148, 252, 0.5);
}
.ss-feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #7D59FB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 0 20px rgba(150, 68, 233, 0.4);
}
.ss-feature-card__title {
  font-family: Archivo, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
}
.ss-feature-card__text {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(183, 148, 252, 0.75);
  margin: 0;
}

/* Inner image */
.ss-inner-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px;
}
.ss-inner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}
.ss-inner-image:hover img {
  transform: scale(1.05);
}
.ss-inner-image__glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 40px rgba(150, 68, 233, 0.25);
  border: 1px solid rgba(150, 68, 233, 0.3);
  pointer-events: none;
}

/* Points panel */
.ss-points-panel {
  padding: 8px 0;
}
.ss-points-heading {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}
.ss-points-desc {
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(183, 148, 252, 0.75);
  margin-bottom: 18px;
}
.ss-points-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ss-points-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: rgba(183, 148, 252, 0.85);
  line-height: 1.5;
  transition: color 0.2s ease;
}
.ss-points-list__item:hover {
  color: #ffffff;
}
.ss-points-list__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #7D59FB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
  box-shadow: 0 0 12px rgba(150, 68, 233, 0.4);
}

/* CTA strip */
.ss-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(150, 68, 233, 0.08);
  border: 1px solid rgba(150, 68, 233, 0.3);
  border-radius: 16px;
  padding: 20px 28px;
  margin-top: 32px;
}
.ss-cta-strip__text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(183, 148, 252, 0.85);
}
.ss-cta-strip__text i { color: #FFAB37; font-size: 18px; }
.ss-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #7D59FB;
  color: #ffffff;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(150, 68, 233, 0.35);
}
.ss-cta-strip__btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(150, 68, 233, 0.5);
  color: #fff;
}

/* Override old pill tabs for #singleService */
#singleService #pills-tab {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
#singleService .nav-pills .nav-link.active,
#singleService .nav-pills .nav-link {
  background: transparent;
  color: inherit;
}

/* Responsive */
@media (max-width: 991px) {
  .ss-nav-panel {
    position: static;
    margin-bottom: 30px;
  }
  .ss-hero-image {
    height: 260px;
  }
  .ss-cta-strip {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 575px) {
  #singleService { padding: 50px 0 60px; }
  .ss-hero-image { height: 200px; }
  .ss-service-title { font-size: 24px; }
  .ss-inner-image { height: 220px; }
}

/* ============================================================
   BLOG LISTING + SINGLE POST — Agentic AI Theme
   ============================================================ */

/* ---- Shared blog card ---- */
.ai-blog-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(150, 68, 233, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.ai-blog-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(150, 68, 233, 0.06) 0%, transparent 55%);
  pointer-events: none;
  border-radius: 20px;
}
.ai-blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(150, 68, 233, 0.22);
  border-color: rgba(183, 148, 252, 0.5);
}

/* Image */
.ai-blog-card__image {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}
.ai-blog-card--featured .ai-blog-card__image {
  height: 420px;
}
.ai-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.65s ease;
  will-change: transform, filter;
}
.ai-blog-card:hover .ai-blog-card__image img {
  transform: scale(1.08);
  filter: brightness(1.12);
}
/* Shimmer sweep on card image hover */
.ai-blog-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(183,148,252,0.1) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.75s ease;
  z-index: 2;
  pointer-events: none;
}
.ai-blog-card:hover .ai-blog-card__image::after {
  background-position: 200% 0;
}
.ai-blog-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 0, 25, 0.7) 100%);
}
.ai-blog-card__featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #7D59FB;
  color: #fff;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(150, 68, 233, 0.4);
}

/* Card body */
.ai-blog-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ai-blog-card--featured .ai-blog-card__body {
  padding: 28px 32px 32px;
}

/* Meta row */
.ai-blog-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: rgba(183, 148, 252, 0.6);
}
.ai-blog-card__meta i { margin-right: 4px; }
.ai-blog-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(150, 68, 233, 0.15);
  border: 1px solid rgba(150, 68, 233, 0.3);
  color: #B794FC !important;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.ai-blog-card__cat:hover {
  background: rgba(150, 68, 233, 0.3);
  color: #fff !important;
}

/* Title */
.ai-blog-card__title {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
}
.ai-blog-card--featured .ai-blog-card__title { font-size: 28px; }
.ai-blog-card__title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}
.ai-blog-card__title a:hover { color: #B794FC; }

/* Excerpt */
.ai-blog-card__excerpt {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(183, 148, 252, 0.7);
  margin-bottom: 18px;
}

/* Read more */
.ai-blog-card__readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #B794FC;
  text-decoration: none;
  border-bottom: 1px solid rgba(183, 148, 252, 0.3);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
  width: fit-content;
  margin-top: auto;
}
.ai-blog-card__readmore:hover {
  color: #ffffff;
  border-color: #ffffff;
  gap: 12px;
}

/* ---- Blog listing section ---- */
.ai-blog-section {
  position: relative;
  padding: 80px 0 80px;
  background: #040019;
  overflow: hidden;
}
.ai-blog-section-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}
.ai-blog-section-glow--left {
  background: radial-gradient(circle, rgba(150, 68, 233, 0.2) 0%, transparent 70%);
  top: -100px; left: -180px;
}
.ai-blog-section-glow--right {
  background: radial-gradient(circle, rgba(85, 69, 229, 0.15) 0%, transparent 70%);
  bottom: 0; right: -180px;
}
.ai-blog-section .container { position: relative; z-index: 1; }

/* Blog section header */
.ai-blog-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(150, 68, 233, 0.15);
  border: 1px solid rgba(150, 68, 233, 0.4);
  color: #B794FC;
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.ai-blog-badge i { color: #FFAB37; }
.ai-blog-heading {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 46px);
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.ai-blog-heading__grad {
  background: linear-gradient(90deg, #9A44E9 0%, #B794FC 60%, #5545E5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ai-blog-subtext {
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(183, 148, 252, 0.7);
  max-width: 520px;
  margin: 0 auto;
}

/* Pagination */
.ai-blog-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 50px;
}
.ai-blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(183, 148, 252, 0.8);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(150, 68, 233, 0.3);
  text-decoration: none;
  transition: all 0.25s ease;
}
.ai-blog-pagination .page-numbers:hover,
.ai-blog-pagination .page-numbers.current {
  background: #7D59FB;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 18px rgba(150, 68, 233, 0.4);
}

/* ============================================================
   SINGLE POST PAGE
   ============================================================ */
.ai-single-post-section {
  position: relative;
  padding: 70px 0 80px;
  background: #040019;
  overflow: hidden;
}
.ai-single-post-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.ai-single-post-glow--left {
  background: radial-gradient(circle, rgba(150, 68, 233, 0.2) 0%, transparent 70%);
  top: 0; left: -180px;
}
.ai-single-post-glow--right {
  background: radial-gradient(circle, rgba(85, 69, 229, 0.15) 0%, transparent 70%);
  bottom: 0; right: -180px;
}
.ai-single-post-section .container { position: relative; z-index: 1; }

/* Meta bar */
.ai-post-meta-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.ai-post-cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(90deg, rgba(154,68,233,0.25), rgba(85,69,229,0.2));
  border: 1px solid rgba(150, 68, 233, 0.4);
  color: #B794FC !important;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.ai-post-cat-badge:hover { background: rgba(150,68,233,0.35); color: #fff !important; }
.ai-post-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: rgba(183, 148, 252, 0.65);
}
.ai-post-meta-item a { color: rgba(183,148,252,0.75); text-decoration: none; transition: color 0.2s; }
.ai-post-meta-item a:hover { color: #fff; }
.ai-post-meta-item i { color: #FFAB37; font-size: 12px; }

/* Post title */
.ai-post-title {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.5vw, 46px);
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.ai-post-title-line {
  display: block;
  width: 64px;
  height: 3px;
  background: #7D59FB;
  border-radius: 3px;
  margin-bottom: 28px;
}

/* Featured image */
.ai-post-featured-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 420px;
  margin-bottom: 32px;
}
.ai-post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.7s ease;
  will-change: transform, filter;
}
.ai-post-featured-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
/* Shimmer sweep on hover */
.ai-post-featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(183,148,252,0.12) 50%,
    transparent 70%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  transition: background-position 0.8s ease;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
}
.ai-post-featured-image:hover::after {
  background-position: 200% 0;
}
.ai-post-featured-image__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4,0,25,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.ai-post-featured-image__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(4,0,25,0.85);
  border: 1px solid rgba(150,68,233,0.45);
  color: #B794FC;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.ai-post-featured-image__badge i { color: #FFAB37; }

/* Post body text */
.ai-post-body {
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(183, 148, 252, 0.82);
  margin-bottom: 36px;
}
.ai-post-body p { margin-bottom: 20px; }
.ai-post-body h2, .ai-post-body h3 { color: #ffffff; font-family: Archivo, sans-serif; margin: 28px 0 12px; }
.ai-post-body a { color: #B794FC; transition: color 0.2s; }
.ai-post-body a:hover { color: #fff; }
.ai-post-body ul, .ai-post-body ol { padding-left: 20px; }
.ai-post-body li { margin-bottom: 8px; }
.ai-post-body blockquote {
  border-left: 3px solid rgba(150,68,233,0.5);
  padding: 12px 20px;
  margin: 24px 0;
  background: rgba(150,68,233,0.06);
  border-radius: 0 10px 10px 0;
  color: rgba(183,148,252,0.9);
  font-style: italic;
}

/* Share row */
.ai-post-share-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(150,68,233,0.25);
  border-radius: 14px;
  margin-bottom: 28px;
}
.ai-post-share-label {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(183,148,252,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-post-share-label i { color: #FFAB37; }
.ai-post-share-icons { display: flex; gap: 8px; }
.ai-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff !important;
  text-decoration: none;
  background: rgba(150,68,233,0.25);
  border: 1px solid rgba(150,68,233,0.3);
  transition: background 0.25s ease, transform 0.2s ease;
}
.ai-share-btn:hover { background: linear-gradient(135deg,#9A44E9,#5545E5); transform: translateY(-2px); }
.ai-post-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ai-post-tag {
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #B794FC !important;
  background: rgba(150,68,233,0.12);
  border: 1px solid rgba(150,68,233,0.25);
  padding: 4px 12px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s ease;
}
.ai-post-tag:hover { background: rgba(150,68,233,0.3); color: #fff !important; }

/* Post navigation */
.ai-post-navigation { margin: 28px 0; }
.ai-post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.ai-post-navigation .nav-previous,
.ai-post-navigation .nav-next {
  flex: 1;
}
.ai-post-navigation a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(150,68,233,0.3);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.ai-post-navigation a:hover {
  background: rgba(150,68,233,0.08);
  border-color: rgba(183,148,252,0.5);
}
.ai-postnav-dir {
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #B794FC;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ai-postnav-title {
  font-family: Archivo, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}
.nav-next a { text-align: right; align-items: flex-end; }

/* Author box */
.ai-author-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(150,68,233,0.3);
  border-radius: 18px;
  padding: 24px;
  margin: 28px 0;
}
.ai-author-box__avatar img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(150,68,233,0.4);
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.ai-author-box:hover .ai-author-box__avatar img {
  transform: scale(1.08);
  border-color: #9A44E9;
  box-shadow: 0 0 18px rgba(154,68,233,0.55);
}
.ai-author-box__label {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(183,148,252,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.ai-author-box__name {
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.ai-author-box__name:hover { color: #B794FC; }
.ai-author-box__bio {
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(183,148,252,0.7);
  margin: 0 0 12px;
}
.ai-author-box__social { display: flex; gap: 8px; }
.ai-author-social {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff !important;
  background: rgba(150,68,233,0.25);
  border: 1px solid rgba(150,68,233,0.3);
  text-decoration: none;
  transition: background 0.25s ease;
}
.ai-author-social:hover { background: linear-gradient(135deg,#9A44E9,#5545E5); }

/* Related posts */
.ai-related-posts { padding: 40px 0 0; border-top: 1px solid rgba(150,68,233,0.2); margin-top: 40px; }
.ai-related-posts__heading {
  font-family: Archivo, sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ai-related-posts__heading i { color: #FFAB37; }

/* Responsive */
@media (max-width: 991px) {
  .ai-blog-card--featured .ai-blog-card__image { height: 280px; }
  .ai-post-featured-image { height: 280px; }
  .ai-post-navigation .nav-links { flex-direction: column; }
  .nav-next a { align-items: flex-start; text-align: left; }
}
@media (max-width: 575px) {
  .ai-blog-section { padding: 50px 0; }
  .ai-single-post-section { padding: 50px 0; }
  .ai-blog-card__image { height: 180px; }
  .ai-author-box { flex-direction: column; }
  .ai-post-share-row { flex-direction: column; align-items: flex-start; }
}

/* ===== Banner Background Shape (SVG Wing Glows) ===== */
.banner-background-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  animation: bannerShapeFadeIn 1.6s ease forwards;
}
.banner-background-shape svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: auto;
  min-width: 1200px;
  display: block;
}
#banner .container {
  position: relative;
  z-index: 2;
}

/* ===== Banner Background Shape — Animations ===== */
/* Each SVG path is animated via SMIL (animate + animateTransform) for
   reliable cross-browser scale+opacity. The wrapper gets a CSS fade-in
   on load and the SVG element gets a slow vertical float. */
@keyframes bannerShapeFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bannerShapeFloat {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px);    }
  50%       { transform: translate(-50%, -50%) translateY(-22px);  }
}
.banner-background-shape svg {
  animation: bannerShapeFloat 18s ease-in-out infinite;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-404-section {
  position: relative;
  min-height: 100vh;
  background: #040019;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
  overflow: hidden;
}

/* Glow blobs */
.e404-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
  z-index: 0;
}
.e404-glow-left {
  width: 500px;
  height: 500px;
  top: 50%;
  left: -160px;
  transform: translateY(-50%);
  background: radial-gradient(circle, #7c3aed 0%, #4f1d96 50%, transparent 80%);
  opacity: 0.35;
}
.e404-glow-right {
  width: 420px;
  height: 420px;
  top: 20%;
  right: -120px;
  background: radial-gradient(circle, #5545E5 0%, #3730a3 50%, transparent 80%);
  opacity: 0.25;
}

/* Ensure content is above glows */
.error-404-section .container {
  position: relative;
  z-index: 1;
}

/* Illustration wrapper */
.e404-illustration {
  position: relative;
  display: inline-block;
  animation: e404Float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 60px rgba(154, 68, 233, 0.45));
}
.e404-illustration svg {
  width: 100%;
  max-width: 480px;
  height: auto;
}
@keyframes e404Float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-18px); }
}

/* Badge */
.e404-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(154, 68, 233, 0.12);
  border: 1px solid rgba(154, 68, 233, 0.35);
  color: #B794FC;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.e404-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9A44E9;
  box-shadow: 0 0 8px #9A44E9;
  animation: e404Blink 2s ease-in-out infinite;
}
@keyframes e404Blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Title */
.e404-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Description */
.e404-desc {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 460px;
}

/* Action buttons */
.e404-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.e404-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #9A44E9 0%, #5545E5 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(85, 69, 229, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.e404-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(85, 69, 229, 0.55);
  color: #fff;
}
.e404-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.e404-btn-ghost:hover {
  border-color: #9A44E9;
  color: #B794FC;
  background: rgba(154, 68, 233, 0.08);
}

/* Quick links */
.e404-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.e404-links span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-right: 4px;
}
.e404-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(183, 148, 252, 0.75);
  text-decoration: none;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(154, 68, 233, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.e404-links a:hover {
  color: #fff;
  border-color: #9A44E9;
  background: rgba(154, 68, 233, 0.15);
}

/* Responsive */
@media (max-width: 991px) {
  .error-404-section { padding: 120px 0 60px; }
  .e404-desc { max-width: 100%; }
  .e404-actions { justify-content: center; }
  .e404-links { justify-content: center; }
}
@media (max-width: 576px) {
  .e404-btn-primary,
  .e404-btn-ghost { width: 100%; justify-content: center; }
}

/* ===== 404 Inner Page Banner ===== */
.e404-inner-banner {
  background: linear-gradient(180deg, rgba(85,69,229,0.18) 0%, rgba(4,0,25,0) 100%), #040019;
  border-bottom: 1px solid rgba(154,68,233,0.15);
  padding: 120px 0 42px;
  position: relative;
  overflow: hidden;
}
.e404-inner-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #9A44E9, #5545E5, transparent);
  border-radius: 0 0 4px 4px;
}
.e404-inner-banner .inner-banner-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.e404-inner-banner .inner-banner-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.e404-inner-banner .inner-banner-breadcrumb a {
  color: #B794FC;
  text-decoration: none;
  transition: color 0.2s;
}
.e404-inner-banner .inner-banner-breadcrumb a:hover {
  color: #fff;
}
.e404-inner-banner .inner-banner-breadcrumb span[aria-hidden] {
  margin: 0 6px;
  opacity: 0.4;
}
/* Remove top padding from 404 content section since banner handles the spacing */
.error-404-section {
  padding-top: 60px;
}

/* ===== Inner Page Banner (banner.php) — AI Theme ===== */
.banner-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4,0,25,0.72) 0%,
    rgba(4,0,25,0.55) 50%,
    rgba(4,0,25,0.82) 100%
  );
  z-index: 0;
}


.banner-image-inner {
  position: relative;
  z-index: 2;
}
.banner-image-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 30px rgba(154,68,233,0.3);
}
.banner-image-breadcrumb {
    font-family: 'Archivo';
    font-size: 16px;
    color: #B794FC;
}
.banner-image-breadcrumb a {
    color: #B794FC;
    text-decoration: none;
    transition: color 0.2s;
}
.banner-image-breadcrumb a:hover {
  color: #fff;
}
.banner-image-breadcrumb .sep,
.banner-image-breadcrumb span.separator {
  margin: 0 8px;
  opacity: 0.4;
}

/* Override old entry-title inside banner-image */
.banner-image h1.entry-title,
.banner-image .entry-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 30px rgba(154,68,233,0.3);
}

@media (max-width: 768px) {
  .banner-image { padding: 110px 0 40px; }
  .banner-image-accent { width: 320px; }
}

/* ===== 404 Illustration — Image + Dots ===== */
.e404-illustration {
  position: relative;
  display: inline-block;
}
.e404-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 20px;
  filter: drop-shadow(0 0 60px rgba(154, 68, 233, 0.5));
  animation: e404Float 6s ease-in-out infinite;
}

/* Floating dot decorators */
.e404-dot {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  animation: e404Float 4s ease-in-out infinite;
}
.e404-dot-1 {
  width: 12px; height: 12px;
  background: #9A44E9;
  top: 8%; left: 6%;
  animation-duration: 4s;
  box-shadow: 0 0 14px #9A44E9;
}
.e404-dot-2 {
  width: 8px; height: 8px;
  background: #5545E5;
  top: 14%; right: 8%;
  animation-duration: 5.5s;
  animation-delay: -1s;
  box-shadow: 0 0 10px #5545E5;
}
.e404-dot-3 {
  width: 14px; height: 14px;
  background: #B794FC;
  bottom: 12%; left: 10%;
  animation-duration: 3.8s;
  animation-delay: -2s;
  box-shadow: 0 0 16px #B794FC;
}
.e404-dot-4 {
  width: 9px; height: 9px;
  background: #9A44E9;
  bottom: 18%; right: 6%;
  animation-duration: 6s;
  animation-delay: -0.5s;
  box-shadow: 0 0 12px #9A44E9;
}

/* ============================================================
   SEARCH RESULTS PAGE
   ============================================================ */
.search-results-section {
  background: #040019;
  padding: 60px 0 80px;
  min-height: 60vh;
}

/* Results header */
.search-results-header {
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(154,68,233,0.15);
}
.search-results-title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.search-results-title .search-count {
  color: #9A44E9;
  font-weight: 700;
}
.search-results-title .search-query {
  color: #fff;
  font-weight: 600;
}

/* Search cards */
.search-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(154,68,233,0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.search-card:hover {
  border-color: rgba(154,68,233,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(85,69,229,0.2);
}
.search-card-thumb {
  display: block;
  overflow: hidden;
  max-height: 190px;
}
.search-card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.search-card:hover .search-card-img {
  transform: scale(1.04);
}
.search-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.search-card-cat {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #B794FC;
  margin-bottom: 10px;
}
.search-card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  flex: 1;
}
.search-card-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.search-card-title a:hover { color: #B794FC; }
.search-card-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 16px;
}
.search-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.search-card-author {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.search-card-avatar {
  width: 22px !important;
  height: 22px !important;
  border-radius: 50%;
  object-fit: cover;
}
.search-card-date {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* Pagination */
.search-pagination {
  margin-top: 48px;
}
.search-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.search-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(154,68,233,0.15);
  text-decoration: none;
  transition: all 0.2s ease;
}
.search-pagination .page-numbers:hover,
.search-pagination .page-numbers.current {
  background: #7D59FB;
  border-color: transparent;
  color: #fff;
}
.search-pagination .page-numbers.next,
.search-pagination .page-numbers.prev {
  width: auto;
  padding: 0 18px;
}

/* No results */
.search-no-results {
  text-align: center;
  padding: 60px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(154,68,233,0.12);
  border-radius: 20px;
}
.search-no-results-icon {
  margin-bottom: 20px;
  opacity: 0.7;
}
.search-no-results h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
    text-align: center;

}
.search-no-results p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}
.search-no-results-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.search-no-results-form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(154,68,233,0.25);
  border-radius: 50px;
  padding: 12px 20px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.search-no-results-form input:focus { border-color: #9A44E9; }
.search-no-results-form button {
  background: #7D59FB;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.search-no-results-form button:hover { opacity: 0.85; }

/* Sidebar */
.search-sidebar {
  position: sticky;
  top: 100px;
}

@media (max-width: 991px) {
  .search-results-section { padding: 40px 0 60px; }
  .search-sidebar { position: static; margin-top: 20px; }
}
@media (max-width: 576px) {
  .search-no-results-form { flex-direction: column; }
}

/* ============================================================
   FAQ SECTION — ANIMATIONS
   ============================================================ */

/* --- Keyframes --- */
@keyframes faqNumberSpin {
  from { transform: rotateY(-90deg); opacity: 0; }
  to   { transform: rotateY(0deg);   opacity: 1; }
}
@keyframes faqCardSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes faqGlowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(154,68,233,0); }
  50%       { box-shadow: 0 0 0 6px rgba(154,68,233,0.12); }
}
@keyframes faqAccordionOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes faqLeftFadeIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes faqLineGrow {
  from { width: 0; }
  to   { width: 48px; }
}
@keyframes faqDotBlink {
  0%, 100% { opacity: 1;   transform: scale(1);    }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

/* --- Left column heading box entrance --- */
#faqs .faq-heading-box {
  animation: faqLeftFadeIn 0.9s ease both;
}
#faqs .faqs-heading h2,
#faqs .faqs-heading h3 {
  position: relative;
}


/* --- FAQ cards staggered entrance --- */
#faqs .faq {
  animation: faqCardSlideUp 0.6s ease both;
}
#faqs .faq:nth-child(1)  { animation-delay: 0.10s; }
#faqs .faq:nth-child(2)  { animation-delay: 0.20s; }
#faqs .faq:nth-child(3)  { animation-delay: 0.30s; }
#faqs .faq:nth-child(4)  { animation-delay: 0.40s; }
#faqs .faq:nth-child(5)  { animation-delay: 0.50s; }
#faqs .faq:nth-child(6)  { animation-delay: 0.60s; }
#faqs .faq:nth-child(7)  { animation-delay: 0.70s; }
#faqs .faq:nth-child(8)  { animation-delay: 0.80s; }

/* --- FAQ card hover interaction --- */
#faqs .faq-card {
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
#faqs .faq-card:hover {
  transform: translateX(6px);
  border-color: rgba(154,68,233,0.5);
  box-shadow: -4px 0 20px rgba(154,68,233,0.15);
}

/* --- Order number spin-in --- */
#faqs .order-faq-number {
  animation: faqNumberSpin 0.6s ease both;
  transition: color 0.3s ease, transform 0.3s ease;
}
#faqs .faq-card:hover .order-faq-number {
  transform: scale(1.15);
  color: #9A44E9;
}

/* --- Accordion button transition --- */
#faqs .accordion-button {
  transition: color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
}
#faqs .accordion-button:not(.collapsed) {
  padding-left: 8px;
}

/* --- Accordion body slide-down animation --- */
#faqs .accordion-collapse.show .accordion-body,
#faqs .accordion-collapse.collapsing .accordion-body {
  animation: faqAccordionOpen 0.35s ease both;
}

/* --- Accordion expand/collapse chevron spin --- */
#faqs .accordion-button::after {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Glow pulse on active accordion item --- */
#faqs .accordion-button:not(.collapsed) {
  animation: faqGlowPulse 3s ease-in-out infinite;
}

/* --- Ask anything button hover --- */
#faqs .ask-anything-button a {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}
#faqs .ask-anything-button a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(154,68,233,0.35);
}

/* --- Social icon hover bounce --- */
#faqs .faq-social-icons a {
    transition: transform 0.25s ease, color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
#faqs .faq-social-icons a:hover {
  transform: translateY(-4px) scale(1.15);
  color: #B794FC;
}

/* ============================================================
   Single Post — Comment Form Dark Theme Overrides
   ============================================================ */

/* Wrapper */
#comments {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(150,68,233,0.2);
}

/* Section heading */
#comments h2,
#comments .comments-title,
#respond h3#reply-title,
#respond .comment-reply-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
}
#respond .comment-reply-title a { color: #B794FC; font-size: 14px; margin-left: 12px; }

/* Required field note */
#respond .comment-notes,
#respond p.comment-notes {
  color: rgba(183,148,252,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
}

/* Label styling for all comment fields */
#respond label,
#respond .comment-form-author label,
#respond .comment-form-email label,
#respond .comment-form-url label,
#respond .comment-form-cookies-consent label {
  color: #B794FC;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

/* Textarea — comment field */
#respond textarea#comment,
#respond .comment-form-comment textarea {
  width: 100%;
  min-height: 160px;
  resize: vertical;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(150,68,233,0.4) !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
#respond textarea#comment:focus,
#respond .comment-form-comment textarea:focus {
  border-color: #9A44E9 !important;
  box-shadow: 0 0 0 3px rgba(154,68,233,0.18) !important;
}

/* Text inputs — Name, Email, Website */
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"],
#respond .comment-form-author input,
#respond .comment-form-email input,
#respond .comment-form-url input {
  width: 100%;
  height: 48px;
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(150,68,233,0.4) !important;
  border-radius: 10px !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 0 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
#respond input[type="text"]:focus,
#respond input[type="email"]:focus,
#respond input[type="url"]:focus {
  border-color: #9A44E9 !important;
  box-shadow: 0 0 0 3px rgba(154,68,233,0.18) !important;
}
#respond input::placeholder,
#respond textarea::placeholder {
  color: rgba(183,148,252,0.4);
}

/* Row layout for Name / Email / Website */
#respond .comment-form-author,
#respond .comment-form-email,
#respond .comment-form-url {
  margin-bottom: 16px;
}

/* Checkbox row */
#respond .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 20px;
}
#respond .comment-form-cookies-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #9A44E9;
  flex-shrink: 0;
}
#respond .comment-form-cookies-consent label {
  margin-bottom: 0;
  font-size: 13px;
  color: rgba(183,148,252,0.7);
}

/* Submit button */
#respond .form-submit,
#respond p.form-submit {
  margin-top: 8px;
}
#respond .form-submit #submit,
#respond input[type="submit"] {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #9A44E9 0%, #5545E5 100%) !important;
  border: none !important;
  border-radius: 50px !important;
  color: #ffffff !important;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(154,68,233,0.35);
}
#respond .form-submit #submit:hover,
#respond input[type="submit"]:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(154,68,233,0.5);
}

/* Existing comments list */
.comments-area .comment-list {
list-style: none;
    padding: 0;
    margin: 0 0 36px;
    color: #fff;
}
.comments-area .comment-list li {
  padding: 20px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(150,68,233,0.2);
  border-radius: 14px;
}
.comments-area .comment-list .comment-author .fn {
  color: #ffffff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 15px;
}
.comments-area .comment-list .comment-author img {
    border-radius: 50%;
    border: 2px solid rgba(150, 68, 233, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.comments-area .comment-list li:hover .comment-author img {
  transform: scale(1.1);
  border-color: #9A44E9;
  box-shadow: 0 0 14px rgba(154,68,233,0.5);
}
.comments-area .comment-list .comment-meta a,
.comments-area .comment-list time {
  color: rgba(183,148,252,0.6);
  font-size: 13px;
  text-decoration: none;
}
.comments-area .comment-list .comment-content p {
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  margin: 10px 0 0;
}
.comments-area .comment-list .reply a {
  color: #B794FC;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(150,68,233,0.3);
  border-radius: 20px;
  padding: 4px 14px;
  transition: background 0.2s ease;
}
.comments-area .comment-list .reply a:hover {
  background: rgba(150,68,233,0.15);
}

/* No-comments message */
.comments-area .no-comments {
  color: rgba(183,148,252,0.6);
  font-style: italic;
  font-size: 15px;
}

/* ============================================================
   Return to Top Button
   ============================================================ */
#return-to-top {
    display: none;
    position: fixed;
    bottom: 34px;
    right: 32px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #7D59FB;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(154, 68, 233, 0.45);
    border: 1px solid rgba(183, 148, 252, 0.25);
    animation: rttFadeSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    overflow: hidden;
}

/* Icon bounce-up on load */
#return-to-top i {
  display: inline-block;
  animation: rttIconBounce 2.2s ease-in-out infinite;
  transition: transform 0.2s ease;
}

/* Hover: lift + stronger glow + icon accelerates */
#return-to-top:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 10px 32px rgba(154,68,233,0.65), 0 0 0 4px rgba(154,68,233,0.15);
  background: linear-gradient(135deg, #B060FF 0%, #6655FF 100%);
}
#return-to-top:hover i {
  animation: rttIconSpin 0.45s ease both;
}

/* Click ripple */
#return-to-top:active {
  transform: scale(0.92);
  box-shadow: 0 2px 10px rgba(154,68,233,0.4);
}

/* --- Keyframes --- */
@keyframes rttFadeSlideIn {
  from { opacity: 0; transform: translateY(24px) scale(0.75); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

@keyframes rttIconBounce {
  0%,  100% { transform: translateY(0);   }
  40%        { transform: translateY(-5px); }
  60%        { transform: translateY(-2px); }
}

@keyframes rttIconSpin {
  0%   { transform: translateY(0)    rotate(0deg);   }
  50%  { transform: translateY(-6px) rotate(-20deg); }
  100% { transform: translateY(0)    rotate(0deg);   }
}

/* Pulse ring behind button */
#return-to-top::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(154,68,233,0.3);
  transform: scale(1);
  opacity: 0;
  animation: rttPulseRing 2.5s ease-out infinite;
}
@keyframes rttPulseRing {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.9); opacity: 0;   }
}

@media (max-width: 575px) {
  #return-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 16px;
  }
}
