/* Custom Fonts */
@font-face {
    font-family: 'Roc Grotesk';
    src: url('/web-assets/fonts/RocGrotesk-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roc Grotesk';
    src: url('/web-assets/fonts/RocGrotesk-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* Base Styling */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Roc Grotesk';
    background: var(--primary);
    color: #fff;
    overflow-x: hidden;
}
/* Variables */
:root {
    --primary: #7d39eb;
    --black: #000;
    --white: #fff;
    --text: #fff;
    --transition: all 0.3s ease;
    --ease: cubic-bezier(0.25, 1, 0.5, 1);
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: capitalize;
}
h1 {
    font-size: clamp(35px, 5vw, 70px);
    line-height: 1.1;
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8);
}
.main-services-hero-banner-section h1 {
    font-size: clamp(26px, 5vw, 32px);
    line-height: 1.1;
    text-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8);
}
h2 {
    font-size: clamp(25px, 4vw, 70px);
    line-height: 1;
}
.main-services-hero-banner-section h2 {
    font-size: clamp(22px, 5vw, 30px);
    line-height: 1.1;
}
h3 {
    font-size: clamp(25px, 4vw, 40px);
    line-height: 1.1;
}
h4 {
    font-size: 25px;
    line-height: 32px;
}
h5 {
    font-size: 18px;
}
h6 {
    font-size: 16px;
}
p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
}
/* Global Elements */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    font-size: 14px !important;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
/* Layouts */
.section {
    padding: 150px 0 100px 0;
    position: relative;
}
.section-xl {
    padding: 265px 0;
    position: relative;
}
.section-md {
    padding: 100px 0;
    position: relative;
}
.section-sm {
    padding: 60px 0;
    position: relative;
}
/* Utilities */
.web-clr {
    color: var(--primary);
}
.web-clr-black {
    color: var(--black);
}
.web-bg {
    background: var(--primary);
}
.web-bg-black {
    background: var(--black);
}
/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
}
/* Global Buttons */
/* Global Buttons One */
.web-btn-purple {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  overflow: hidden;
  z-index: 1;
  border: 2px solid var(--white) !important;
  background: var(--primary);
  font-size: 16px;
  color: var(--white);
  transition: all 0.3s linear;
  cursor: pointer !important;
  border-radius: 0px !important;
}
.web-btn-purple::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 30%;
  height: 96px;
  width: 96px;
  animation: spin infinite linear 1.8s;
  animation-delay: 0;
  bottom: -38px;
  right: -0;
  transition: all 0.3s linear;
  z-index: 0;
  opacity: 0;
}
.web-btn-purple:hover {
  color: var(--black);
  transition-duration: 0.3s;
}
.web-btn-purple:hover::after {
  right: -60px;
  bottom: -92px;
  width: 300px;
  height: 300px;
  opacity: 1;
}
.web-btn-purple > .button-content {
  position: relative;
  z-index: 2;
  line-height: normal;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Global Buttons One */
/* Global Buttons Two */
.web-btn-purple-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  overflow: hidden;
  z-index: 1;
  border: 2px solid var(--white);
  background: rgba(255, 255, 255, 0.3);
  font-size: 16px;
  color: var(--white);
  transition: all 0.3s linear;
  cursor: pointer;
}
.web-btn-purple-2::after {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 30%;
  height: 96px;
  width: 96px;
  animation: spin infinite linear 1.8s;
  animation-delay: 0;
  bottom: -38px;
  right: -0;
  transition: all 0.3s linear;
  z-index: 0;
  opacity: 0;
}
.web-btn-purple-2:hover {
  color: var(--white);
  transition-duration: 0.3s;
  border: 2px solid var(--white);
}
.web-btn-purple-2:hover::after {
  right: -60px;
  bottom: -92px;
  width: 300px;
  height: 300px;
  opacity: 1;
}
.web-btn-purple-2 > .button-content {
  position: relative;
  z-index: 2;
  line-height: normal;  
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Main Header Section Styling */
.main-header-section {
    width: 100%;
    display: inline-block;
    padding: 15px 0 15px 0;
    position: absolute;
    z-index: 99;
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}
/* sticky state */
.main-header-section.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  animation: slideDown 1s ease forwards;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
header.main-header-section a.navbar-brand-box img {
    max-width: 180px;
}
.navbar-expand-lg .navbar-collapse {
    flex-direction: column;
}
ul.upper-nav {
    width: 100%;
    display: flex;
    justify-content: end;
    gap: 30px;
    margin-bottom: 0;
    padding: 0;
}
ul.navbar-nav li.nav-item:last-child a {
    padding-right: 0 !important;
}
ul.upper-nav li a:hover {
    color: var(--primary);
}
ul.upper-nav li a i svg {
    margin: -2px 0 0 0;
}
ul.navbar-nav {
    width: 100%;
    justify-content: end;
}
.main-header-section ul.navbar-nav li a.nav-link {
    padding: 10px 15px;
    color: var(--white);
}
.main-header-section ul.navbar-nav li a.nav-link:hover {
    color: var(--primary);
}
.main-header-section .dropdown-menu[data-bs-popper] {
    right: 0px;
    left: initial;
    min-width: 15rem;
    background: var(--primary);
    border-radius: 0;
    margin: 0;
    padding: 0;
    border: none;    
}
ul.dropdown-menu li a {
    padding: 5px 10px !important;
}
ul.dropdown-menu a {
    color: var(--white);
}
.main-header-section a.chat-with-us-link {
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 10px;
}
.main-header-section a.chat-with-us-link:hover {
    background-color: var(--white);
    color: var(--primary);
    padding: 5px 10px;
}
.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.video-background:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.review-brand-logos {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 20px;
    padding: 25px 0 0 0;
}
.main-loop-slider-section {
    padding: 20px 0 20px 0;
    width: 100%;
    display: flex;
    background: var(--white);
    overflow-x: hidden;
}
.main-loop-slider-section.web-bg {
    background: var(--primary);
}
.main-loop-slider-section.web-bg .marquee-content span {
    -webkit-text-stroke: 1px var(--white);
    -webkit-text-fill-color: transparent;
}
.main-loop-slider-section.web-bg .marquee-content:hover span {
    -webkit-text-stroke: initial;
    -webkit-text-fill-color: initial;
    transition: 0.5s ease-in-out;
}
.main-loop-slider-section.web-bg-black {
    background: var(--black);
}
.main-loop-slider-section.web-bg-black .marquee-content span {
    -webkit-text-stroke: 1px var(--white);
    -webkit-text-fill-color: transparent;
}
.main-loop-slider-section.web-bg-black .marquee-content:hover span {
    -webkit-text-stroke: initial;
    -webkit-text-fill-color: initial;
    transition: 0.5s ease-in-out;
}
.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-content {
    display: flex;
    animation: scrollMarquee 50s linear infinite;
}
.marquee-content span {
    white-space: nowrap;
    color: var(--white);
    font-weight: 800;
    font-size: 80px;
    line-height: 80px;
    margin-right: 6rem;
    margin-top: 10px;
    -webkit-text-stroke: 1px var(--black);
    -webkit-text-fill-color: transparent;
}
.marquee-content:hover span {
    -webkit-text-stroke: initial;
    -webkit-text-fill-color: var(--primary);
    transition: 0.5s ease-in-out;
}
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.title-row .col-lg-7 {
    padding-right: 0;
}
.title-row .col-lg-5 {
    padding-left: 0;
}
.title-row .col-lg-7 .left-column {
    border: 1px solid var(--white);
    padding: 25px;
    display: flex;
    align-items: center;
    height: 100%;
}
.title-row.dark-bordered .col-lg-7 .left-column {
    border: 1px solid var(--black) !important;
}
.title-row .col-lg-5 .right-column {
    border: 1px solid var(--white);
    padding: 25px;
    display: flex;
    align-items: center;
    height: 100%;
}
.title-row.dark-bordered .col-lg-5 .right-column {
    border: 1px solid var(--black) !important;
}
.main-work-process-section .row.process-row {
    margin-top: 50px;
    align-items: center;
}
.process-box-left-content span {
    font-size: clamp(45px, 5vw, 75px);
    line-height: 1.1;
    font-weight: 600;
}
.process-box-right-content video {
    width: 100%;
}
.portfolio-tabs-box {
    padding-top: 50px;
}
.portfolio-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: 0;
  justify-content: center;
}
button.portfolio-btn.web-btn-purple.active {
    background: var(--black);
}
.portfolio-content {
  padding: 20px 0;
}
.portfolio-pane {
  display: none;
  animation: fadeUp 0.5s ease;
}
.portfolio-pane.active {
  display: block;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.portfolio-btn:hover span {
  z-index: 1;
  position: relative;
}
.vimeos-video {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
}
.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.vimeos-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75px;
  height: 75px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  transition: all 0.4s ease;
}
.play-btn::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 22px;
  border-style: solid;
  border-width: 15px 0 15px 22px;
  border-color: transparent transparent transparent var(--white);
}
.play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  z-index: -1;
}
.vimeos-video:hover .thumb-img {
  transform: scale(1.12);
}
.vimeos-video:hover::before {
  opacity: 1;
}
.vimeos-video:hover .play-btn {
  opacity: 1;
  visibility: visible;
  animation: popIn 0.5s ease forwards;
}
@keyframes popIn {
  0% {
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 0;
  }
  60% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.vimeos-video:hover .play-btn::before {
  animation: bubble 1.8s infinite ease-out;
  opacity: 1;
}
@keyframes bubble {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  70% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
#videoContainer {
  padding: 0 !important;
}
.portfoliostyle .row {
  gap: 0;
  padding: 0 !important;
}
.portfoliostyle .col-lg-6.col-md-6 {
  padding: 0;
}
.main-services-section {
  background: var(--black);
}
ul#servicesTabs {
  justify-content: center;
  gap: 15px;
}
ul#servicesTabs li button span {
  z-index: 99 !important;
  position: relative;
}
.images-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  column-gap: 50px;
  row-gap: 35px;
}
.images-row img {
  filter: grayscale(1);
  cursor: pointer;
}
.images-row img:hover {
  filter: inherit;
  transition: 0.5s ease;
  transform: scale(1.05);
}
.main-reviews-section {
  background: var(--black);
}
.testimonial-card {
  border: 1px solid var(--white);
  padding: 25px;
  min-height: 250px;
}
.testimonial-card:hover {
  border: 1px solid var(--white);
  background: var(--primary);
  transition: 0.5s ease;
}
.swiper.testimonials-swiper{
  padding: 50px 0;
}
.testimonial-card h3 {
    font-size: clamp(18px, 4vw, 25px);
}
.testimonial-card span {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
}
.main-reviews-section .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 15px;
    height: 15px;
    transition: all 0.3s ease;
}
.main-reviews-section .swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    transform: scale(1.1);
    transition: all 0.3s ease;
}
.main-call-to-action-section {
  background: var(--black);
  overflow: hidden;
}
.main-call-to-action-section h2 {
    font-size: clamp(35px, 5vw, 85px);
    line-height: 1;
}
.main-call-to-action-section a.position-absolute {
    z-index: 9;
}
.main-call-to-action-section .image-rotation {
    animation: rotation 8s infinite linear;
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}
.main-footer-section {
  background: var(--black);
}
.footer-column a img {
    max-width: 150px;
}
.footer-column ul {
    margin: 0;
    padding: 0;
}
span.footer-column-title {
    font-size: 26px;
    font-weight: 600;
}
.footer-column {
    padding: 20px;
    border: 1px solid;
    height: 100%;
}
.footer-column ul li a:hover {
    color: var(--primary);
}
.main-footer-section .col-lg-3.col-md-12 {
    padding: 0px;
}
.social-media-icons {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.social-media-icons li a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}
.social-media-icons li a:hover {
    background: var(--primary);
}
.social-media-icons li a:hover svg {
    color: var(--white);
    fill: var(--white);
}
.social-media-icons li a svg {
    width: 18px;
    height: 18px;
}
.social-media-icons li a:hover {
    transform: translateY(-3px);
}

/* Services Page Styling Starts Here */

span.serv-hero-sub-title {
    padding: 5px 10px;
    display: block;
    background: var(--primary);
    width: max-content;
    margin-bottom: 20px;
}
ul.services-banner-ul {
    margin-bottom: 20px;
    padding: 0px;
}
ul.services-banner-ul li {
    position: relative;
    display: flex;
    gap: 10px;
    font-size: 14px;
}
ul.services-banner-ul li:not(:last-child) {
    margin-bottom: 15px;
}
ul.services-banner-ul li i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
ul.services-banner-ul li i svg {
    fill: var(--white);
}
.service-banner-form {
    padding: 20px;
    background: var(--primary);
    position: relative;
    max-width: 350px;
    margin: auto;
    z-index: 2;
}
.service-banner-form input.form-control,
.lead-modal input.form-control,
.contact-form-main-box .form-control {
    background: transparent;
    border-radius: 0;
    border: 2px solid var(--white);
    color: var(--white);
    height: 50px;
    font-size: 14px;
}
.service-banner-form input.form-control::placeholder,
.lead-modal input.form-control::placeholder,
.contact-form-main-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.service-banner-form input.form-control:focus,
.lead-modal input.form-control:focus,
.contact-form-main-box .form-control:focus {
    background: transparent;
    border: 2px solid var(--white);
}
.service-banner-form button.contact-submit-btn,
.lead-modal button.contact-submit-btn,
.contact-form-main-box button.contact-submit-btn {
    padding: 12px 32px;
    border: 2px solid var(--white);
    background: var(--white);
    color: var(--black);
    transition: 0.5s ease;
}
.service-banner-form button.contact-submit-btn:hover,
.lead-modal button.contact-submit-btn:hover,
.contact-form-main-box button.contact-submit-btn:hover {
    border: 2px solid var(--white);
    background: var(--black);
    color: var(--white);
    transition: 0.5s ease;
}
.service-banner-form button.contact-submit-btn span {
    position: relative;
    z-index: 99;
}
.main-services-hero-banner-section .right-column {
    position: relative;
}
.right-column.two-d-animations img.img-fluid.image-left {
    position: absolute;
    bottom: 0;
    left: -50px;
}
.right-column.two-d-animations img.img-fluid.image-right {
    position: absolute;
    bottom: 0;
    right: 0;
}
img.discount-image {
    position: absolute;
    top: 0;
    right: 15px;
    max-width: 80px;
}
.card-head-content, .card-body-content {
    border: 1px solid var(--white);
    padding: 25px;
}
.card-head-content video {
    min-height: 190px;
}
.card-body-content {
    background: var(--black);
    transition: 0.5s ease;
}
.card-body-content span {
    font-size: clamp(45px, 5vw, 75px);
    line-height: 1.1;
    font-weight: 600;
}
.card-body-content h3 {
    font-size: clamp(18px, 4vw, 22px);
    line-height: 1;
}
.service-process-card:hover .card-body-content {
    background: var(--white);
    transition: 0.5s ease;
}
.service-process-card:hover .card-body-content * {
    color: var(--black);
    transition: 0.5s ease;
}
.services-process-row .col-lg-4{
    padding-left: 0;
    padding-right: 0;    
}
.services-process-row .col-lg-4:first-child {
    padding-left: 12px;
}
.services-process-row .col-lg-4:last-child {
    padding-right: 12px;
}
body.services-page .main-portfolio-section {
    background: var(--black);
}
body.services-page .main-portfolio-section .left-column .web-clr-black {
    color: var(--primary);
}
.achievements-row {
    margin-top: 30px;
}
.achievements-box {
    border: 2px solid var(--white);
    padding: 25px;
    text-align: center;
    transition: 0.5s ease;
    height: 100%;
}
.achievements-box:hover {
    border: 2px solid var(--white);
    background: var(--black);
    transition: 0.5s ease;
    transform: scale(1.03);
}
.achievements-box h3 {
    font-size: clamp(35px, 4vw, 70px);
    line-height: 60px;
    margin-bottom: 10px;
}
.achievements-box .counter-description {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.1;
}
ul#pricingTabs {
    gap: 20px;
    justify-content: center;
    padding: 30px 0 30px 0;
}
ul#pricingTabs li button span {
  z-index: 99 !important;
  position: relative;
}
.pricing-card {
    position: relative;
    padding: 25px;
    background: var(--black);
    height: 100%;
    cursor: pointer;
    border: 1px solid var(--white);
}
.pricing-card h3 {
    color: var(--primary);
}
.pricing-card:hover h3 {
    color: var(--white);
}
.card-pricing-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
p.price-span {
    font-size: 28px;
    font-weight: 600;
}
ul.pricing-list-ul {
    padding: 0;
    margin-bottom: 20px;
}
ul.pricing-list-ul li{
    font-size: 14px;
    display: flex;
    gap: 10px;
    margin-bottom: 15px;    
}
ul.pricing-list-ul li i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
ul.pricing-list-ul li i svg{
    fill: var(--white);
}
.pricing-card > * {
    position: relative;
    z-index: 9;
}
.pricing-card::before,
.pricing-card::after {
  position: absolute;
  content: "";
  width: 12%;
  height: 12%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
}
.pricing-card::before {
    top: 0;
    right: 0;
    border-radius: 0px 0px 0px 100%;  
}
.pricing-card::after {
    bottom: 0;
    left: 0;
    border-radius: 0px 100% 0px 0px;
}
.pricing-card:hover::before,
.pricing-card:hover:after {
    width: 100%;
    height: 100%;
    background-color: var(--primary);  
    transition: all 0.5s;
}
.pricing-card a.web-btn-purple span {
    position: relative;
    z-index: 999;
}
img.animated-spiral{
    position: absolute;
    animation: rotation 8s infinite linear;
}
.main-animated-cta-section span.animated-cta-subtitle {
    background: var(--primary);
    padding: 2px 10px;
    margin-bottom: 10px;
    display: block;
    width: max-content;
    font-size: 26px;
    font-weight: 600;
}
.main-usps-section h2{
    font-size: clamp(25px, 4vw, 50px);    
}
.main-usps-grid-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0px;
}
.usps-box {
    padding: 50px;
    border: 1px solid #fff;
    text-align: center;
    position: relative;
}
.usps-box:hover h3 {
    color: var(--white);
}
.usps-box > * {
    position: relative;
    z-index: 9;
}
.usps-box::before,
.usps-box::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
}
.usps-box::before {
    top: 0;
    right: 0;
    border-radius: 0px 0px 0px 100%;  
}
.usps-box::after {
    bottom: 0;
    left: 0;
    border-radius: 0px 100% 0px 0px;
}
.usps-box:hover::before,
.usps-box:hover:after {
    width: 100%;
    height: 100%;
    background-color: var(--primary);  
    transition: all 0.5s;
}
.main-faqs-section .accordion-item {
    border: 2px solid var(--white);
    border-radius: 0 !important;
    margin-bottom: 10px;  
}
.main-faqs-section button.accordion-button {
    border: none !important;
    background: var(--white);
    border-radius: 0 !important;
    color: var(--black);
    box-shadow: none;
    padding: 20px;
    font-weight: 600;
    font-size: 18px;
}
.main-faqs-section button.accordion-button.collapsed {
    background: var(--primary);
    color: var(--white);
}
.main-faqs-section .accordion-button::after {
    filter: brightness(0) invert(10);
}
.accordion-button:not(.collapsed)::after {
    filter: invert(10) brightness(0) !important;
}
div#videoModal .modal-content {
    border-radius: 0;
}
/* Popup Styling Start */
.lead-modal .modal-content {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 25px 70px;
    border-radius: 0px;
    overflow: hidden;
    border: 2px solid var(--white);
    background: var(--primary);
}
.lead-modal .modal-body {
    padding: 0px;
}
.lead-modal button.btn-close {
    right: 10px;
    position: absolute;
    top: 10px;
    z-index: 999;
    color: #fff;
    filter: invert(1);
    opacity: 1;
}
.modal-backdrop {
  background: rgba(10, 10, 10, 0.35) !important;
  backdrop-filter: blur(0px);
  opacity: 0;
  transition: opacity 0.4s ease, backdrop-filter 0.4s ease;
}
.modal-backdrop.show {
  opacity: 1 !important;
  backdrop-filter: blur(14px);
}
.modal.lead-modal .modal-dialog {
  transform: scale(0.75) translateY(20px);
  opacity: 0;
  filter: blur(18px);
  transition: all 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
}
.modal.show .modal-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
  filter: blur(0px);
}
.modal.lead-modal.closing .modal-dialog {
  transform: scale(0.7) translateY(30px);
  opacity: 0;
  filter: blur(22px);
}
.bottom-reverse {
    bottom: -60px;
}
/* About Page Styling */
.awards-boxes-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.awards-box {
    padding: 50px 35px;
    border-bottom: 1px solid #fff;
    width: 100%;
    display: flex;
    justify-content: center;
}
.awards-boxes-row .awards-box:last-child {
    border: none;
}
/* Form CSS */
.phone-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
    overflow: visible !important;
}
.phone-input-wrapper .contact-country-select {
    flex: 0 0 auto;
    width: 100px;
    min-width: 100px;
    position: relative;
    z-index: 10;
    cursor: pointer;
    overflow: visible !important;
    color: var(--white);
    border: 2px solid var(--white);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'><path fill-rule='evenodd' d='M5.23 7.21a.75.75 0 0 1 1.06.02L10 11.168l3.71-3.94a.75.75 0 1 1 1.08 1.04l-4.25 4.5a.75.75 0 0 1-1.08 0l-4.25-4.5a.75.75 0 0 1 .02-1.06z' clip-rule='evenodd'/></svg>")
    no-repeat right 10px center;
    background-size: 16px;    
}
.phone-input-wrapper .contact-country-select:focus {
    outline: none;
}
.phone-input-wrapper .contact-country-select option {
    color: var(--black);
}
.phone-input-wrapper .contact-phone {
    flex: 1;
    min-width: 0;
}   
.phone-input-wrapper input, .phone-input-wrapper select {
    margin: 0 !important;
}
/* Contact Page Styling */
.contact-list-item-box ul {
    margin: 0;
    padding: 0;
}
.contact-list-item-box ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    transition: 0.5s ease;
}
.contact-list-item-box ul li a i {
    background: var(--primary);
    min-width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.contact-list-item-box ul li a i svg {
    width: 22px;
    height: 22px;
}
.contact-info-box span {
    font-size: clamp(14px, 4vw, 18px);
}
.contact-list-item-box ul li a:hover .contact-info-box span {
    color: var(--primary);
    transition: 0.5s ease;
}
.contact-form-main-box {
    background: var(--primary);
    width: 100%;
    height: 100%;
    padding: 25px;
}
.contact-form-main-box .form-control {
    background: transparent;
    border-radius: 0;
    border: 2px solid var(--white);
    color: var(--white);
    height: 50px;
    font-size: 14px;
}
@media (max-width: 1440px) {
    h1 {
        font-size: clamp(28px, 5vw, 55px);
        line-height: 1.1;
    }

    h3 {
        font-size: clamp(20px, 4vw, 25px);
        line-height: 1;
    }

    p {
        font-size: 12px;
    }

    a {
        font-size: 12px;
    }

    .section-xl {
        padding: 160px 0 80px 0;
    }

    .section {
        padding: 130px 0 65px 0;
    }

    .web-btn-purple,
    .web-btn-purple-2 {
        font-size: 12px;
    }

    header.main-header-section a.navbar-brand-box img {
        max-width: 150px;
    }
    
    .main-header-section ul.navbar-nav li a.nav-link {
        padding: 10px 10px;
        font-size: 12px !important;
    }

    ul#servicesTabs {
        justify-content: center;
        gap: 10px;
    }

    .images-row {
        column-gap: 30px;
        row-gap: 30px;
    }

    .images-row img {
        max-width: 85px;
    }

    .marquee-content span {
        font-size: 50px;
        line-height: 50px;
        margin-right: 4rem;
    }
}

@media (max-width: 1200px) {
    .main-call-to-action-section a.position-absolute {
        max-width: 75%;
    }
    .main-header-section ul.navbar-nav li a.nav-link {
        padding: 10px 10px;
        font-size: 10px !important;
    }    
}

@media (max-width: 1024px) {
    .section {
        padding: 100px 0 30px 0;
    }

    .section-md {
        padding: 50px 0;
        position: relative;
    }

    .main-services-hero-banner-section .right-column .image-left,
    .main-services-hero-banner-section .right-column .image-right {
        display: none;
    }

    .service-banner-form {
        max-width: 100%;
        margin: 20px 0 0 0;
    }

    .services-process-row .col-lg-4 {
        padding-left: 12px !important;
        padding-right: 12px;
        margin-bottom: 20px;
    }

    .main-tab-section-box .tab-pane .row {
        gap: 15px;
    }

    .main-animated-cta-section .row {
        gap: 25px;
    }

    .main-usps-grid-row {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 20px !important;
    }

    .usps-box {
        margin-bottom: 15px;
        padding: 20px;
    }
    .main-header-section ul.navbar-nav li a.nav-link {
        font-size: 14px !important;
    }        
}

@media (max-width: 991px) {
    p {
        font-size: 14px;
    }

    a {
        font-size: 14px;
    }

    .main-header-section ul.navbar-nav li a.nav-link {
        font-size: 14px;
    }

    .section-sm {
        padding: 50px 0;
    }

    ul.upper-nav,
    .review-brand-logos {
        display: none;
    }

    .title-row .col-lg-7 {
        padding-right: 12px;
    }

    .title-row .col-lg-5 {
        padding-left: 12px;
    }

    .main-work-process-section .row.process-row {
        margin-top: 30px;
    }

    .main-cta-section .right-content .double-btn-box {
        justify-content: center !important;
    }

    .swiper.testimonials-swiper {
        padding: 20px 0 50px;
    }

    br {
        display: none;
    }

    button.navbar-toggler {
        border: 1px solid #fff;
        border-radius: 0;
        padding: 0px 5px;
        background-color: var(--primary);
    }

    div#navbarNav {
        background: var(--primary);
    }

    .navbar-collapse.collapse.show li.nav-item:hover,
    ul.dropdown-menu li a:hover {
        background-color: var(--black);
    }

    .navbar-collapse.collapse.show li.nav-item:hover a {
        color: var(--white);
    }

    .main-footer-section .col-lg-3.col-md-12 {
        padding: 0px 12px;
        margin-bottom: 15px;
    }

    ul.dropdown-menu li a {
        padding: 10px;
    }

    .service-tab-left-col .double-btn-box {
        margin-bottom: 20px;
    }

    .achievements-row {
        gap: 15px;
    }
    .lead-modal .modal-body .left-column {
        position: absolute !important;
        opacity: 0.1;
    }
    .lead-modal .modal-body .right-column {
        position: relative !important;
        z-index: 99;
    }         
}
@media (max-width: 480px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }    
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 10px;
    }    
    .section-xl {
        padding: 100px 0 50px 0;
    }
    .section-sm {
        padding: 30px 0;
    }  
    .marquee-content span {
        font-size: 30px;
        line-height: 40px;
        margin-right: 2rem;
    }  
    .user-image img{
        max-width: 250px;
    }
    .images-row img {
        max-width: 55px;
    }  
    .images-row {
        column-gap: 15px;
        row-gap: 20px;
    } 
    .title-row .col-lg-7 .left-column,   .title-row .col-lg-5 .right-column {
        padding: 20px;
    }
    .testimonial-card {
        padding: 20px;
    }
    .portfolio-pane .row .col-lg-4:not(:last-child){
        margin-bottom: 15px;;
    }  
    section.main-sections-wrapper{
        background: var(--primary) !important;
    }
    .main-animated-cta-section span.animated-cta-subtitle {
        font-size: 16px;
    }
    .main-faqs-section button.accordion-button {
        padding: 15px;
        font-size: 14px;
    }
    ul.services-banner-ul li span {
        font-size: 14px;
    }
    ul.services-banner-ul li i {
        width: 17px;
        height: 17px;
        flex-shrink: 0;
    }
    img.discount-image {
        max-width: 55px;
    }
    ul#pricingTabs {
        gap: 10px;
    }
    ul#pricingTabs li button {
        padding: 10px 15px;
    }
    p.price-span {
        font-size: 22px;
        font-weight: 600;
    }
    .portfolio-tabs-box {
        padding-top: 20px;
    }
    .card-head-content, .card-body-content {
        padding: 20px;
    }
    .card-head-content video {
        min-height: initial;
    }
    .pricing-card {
        padding: 20px;
    }
    span.serv-hero-sub-title {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .bottom-reverse {
        bottom: -30px;
    } 
}

@media (max-width: 375px) {
    .double-btn-box {
        flex-direction: column;
    }   
}




