:root {
  --primary-color: #DB318A;  
  --accent-color: #e74c3c; 
  --background-color: linear-gradient(45deg, var(--primary-color), #F26C7D, #E37439);
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
h2{
  font-family: 'Noto Serif Todhri', serif;
}
.top-contact-nav{
  padding: 0 55px;
}
#header-nav {
  position: sticky;
  top: 0;
  z-index: 50;
}

.logo img {
  height: 50px;
  width: 50px;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.navbar .dropdown-menu {
  display: none;
  transition: 0.3s ease-in-out;
}

.navbar .dropdown:hover>.dropdown-menu {
  display: block;
  opacity: 1;
}

.nav-element-parent {
  position: relative;
}

.nav-element-parent ul {
  position: absolute;
  left: 20%;
}

.nav-icon i {
  font-size: 25px;
  color: var(--primary-color);
  border-radius: 50%;
}

.nav-icon i:hover {
  transition: ease-in 1s;
  background: var(--background-color);
  color: white;
  cursor: pointer;
}
.dropdown-toggle::after {
  display: none;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.navbar-toggler {
  border: none;
}

.hero-swap-heading {
  font-size: 2.5rem;
  font-weight: bold;
  /* width: 70%; */
  line-height: 52px;
}

.swap-word {
  color: #e63946;
  display: inline-block;
  min-width: 250px;
  animation: fadeInUp 1s infinite alternate;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(10px);
  }
}

.hero-btn {
  background: var(--background-color);
  color: white;
  font-size: 18px;
  font-weight: 500;
}
a{
  color: #DB318A;
}
.img-side img {
  height: 100%;
  width: 100%;
}

.text-para {
  text-align: justify;
}

.secondary-heading::before {
  content: '';
  display: inline-block;
  height: 4px;
  width: 45px;
  background: var(--background-color);
  position: relative;
  bottom: 4px;
  right: 9px;
}

.about-btn {
  background: white;
  color: var(--primary-color);
}

.icon-img {
  height: 60px;
  width: 60px;
}

.highlight-heading {
  color: var(--primary-color);
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95% !important;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide-content-container {
  border: 1px solid var(--primary-color);
  width: 400px;
}

.swiper-slide-content-container img {
  height: 100px;
  width: 100px;
}

.swiper-btn {
  position: relative !important;
  width: 8%;
  left: 90%;
}

.inner-btn {
  position: absolute !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px !important;
  /* border: 2px solid var(--primary-color); */
  border-radius: 50%;
  color: var(--primary-color);
  padding: 10px;
}

.case-study img {
  width: 100%;
}

.read-more-link {
  color: var(--primary-color);
  text-decoration: none;
}

.bg-specific-colour {
  background-color: #F5F5F5;
}

.text-para-1 {
  font-size: 14px;
  text-align: justify;
}

.tech-stack {
  text-align: center;
  margin-top: 50px;
}

.nav-tabs {
  border: none;
}

.nav-item {
  position: relative;
}

.nav-tabs .nav-link {
  color: black;
  border: none;
}

.nav-tabs .nav-link.active {
  color: var(--primary-color);
}

.nav-tabs .nav-link.active::after {
  content: "";
  height: 3px;
  position: absolute;
  width: 36px;
  display: inline-block;
  background: var(--background-color);
  top: 34px;
  left: 28px;
}

.tech-icons img {
  max-height: 50px;
  margin: 10px;
}

.tech-container img {
  height: 70px;
  width: 70px;
}

.news-ticker {
  width: 100%;
  overflow: hidden;
  background-color: #F5F5F5;
  padding: 10px 0;
  position: relative;
}

.news-slider {
  display: flex;
  animation: continuous-slide 20s linear infinite;
}

.news-content {
  white-space: nowrap;
  margin-right: 50px;
}

.news-content img {
  text-decoration: none;
  color: white;
}

.news-content a:hover {
  color: #e8a317;
}

/* Keyframes for Continuous Slide */
@keyframes continuous-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}


.container-testimonial {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #e3f2fd; */
}

.testimonial {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}

.testimonial .image {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: 100%;
  width: 100%;
}

.testimonial .slide p {
  text-align: center;
  padding: 0 160px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
}

.testimonial .slide .quote-icon {
  font-size: 30px;
  color: #4070f4;
}

.testimonial .slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.details .name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.details .job {
  font-size: 12px;
  font-weight: 400;
  color: #333;
}

/* swiper button css */
.nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  transition: 0.2s;
}

.nav-btn:hover {
  color: #E37439;
}

.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important;
}

.accordion-button:not(.collapsed) {
  background: none !important;
  border: none !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
  font-size: 20px;
}

.question {
  font-size: 20px !important;
  font-weight: 500 !important;
}

.accordion-item {
  border: none;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
}

.approaches img {
  height: 70px;
  width: 70px;
}

.hire-button {
  position: relative;
  padding: 1.5rem 3rem;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  background: var(--background-color);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  animation: buttonPulse 3s infinite;
}

@keyframes buttonPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.hire-button:hover {
  animation: buttonShake 1s infinite;
}

@keyframes buttonShake {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-3px);
  }

  50% {
    transform: translateX(3px);
  }

  75% {
    transform: translateX(-3px);
  }

  100% {
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #F5F5F5;
  /* border: 2px solid red; */
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    min-height: 600px;
  }
}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.flip-card {
  perspective: 1000px;
  width: 300px;
  height: 400px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
  background: var(--background-color);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flip-card-back {
  background: linear-gradient(45deg, #ee9ca7 0%, #ffdde1 100%);
  color: #333;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
}

.social-icons a {
  color: #333;
  margin: 0 10px;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(14deg);
  }

  20% {
    transform: rotate(-8deg);
  }

  30% {
    transform: rotate(14deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(10deg);
  }

  60% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.waving-hand {
  display: inline-block;
  animation: wave 2.5s infinite;
  transform-origin: 70% 70%;
}

.contact-us svg {
  color: var(--primary-color);
}
.services-page svg{
  color: var(--primary-color) !important;
}
.btn-form {
  background: var(--background-color);
}
.dark-section {
  background-color: #1a1a1a;
  color: #ffffff;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
}
.card-team{
  border-bottom:2px solid var(--primary-color) !important;
}
/* .section-separator {
  border-right: 2px solid rgba(255,255,255,0.1);
  height: 100%;
} */
@media screen and (max-width: 768px) {
  .slide p {
    padding: 0 20px;
  }
@media screen and (max-width:576px) {
  .approaches h2{
    width: 100% !important;
  }
  .container-testimonial h2{
    width: 100% !important;
  }
  .container-testimonial p{
    padding: 0px !important;
  }
  .hire-dev{
    flex-direction: column !important;
  }
  .apporach-card{
    width: 80%;
  }
}
  .nav-btn {
    display: none;
  }

  .swiper-button-prev {
    left: -60px !important;
  }
  .top-contact-nav{
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 991px) {
  .nav-element-parent ul {
    position: static !important;
  }
  .nav-link {
    padding-left: 0px;
  }
}

@media screen and (min-width: 991px) and (max-width: 1240px) {
  .nav-element-parent ul {
    left: -2%;
  }
}

@media screen and (min-width: 557px) and (max-width: 760px) {
  .hero-swap-heading {
    font-size: 3rem;
    letter-spacing: 5px;
    font-weight: bold;
  }
}
@media screen and (max-width:1161px){
  .approaches h2{
    width: 50% !important;
  }
}
@media screen and (min-width: 761px) and (max-width: 991px) {
  .hero-swap-heading {
    font-size: 4rem;
    letter-spacing: 5px;
    line-height: 74px;
    font-weight: bold;
  }
}
@media screen and (max-width: 768px) {
  .services-list{
    margin-left: 20px;
  }
  
}
@media screen and (min-width: 1500px) {
  .content-side-hero{
    margin-top: 140px !important;
  }
}