:root {
  --primary-purple: #4c63d2;
  --secondary-purple: #3b4cb8;
  --dark-purple: #2d3561;
  --primary-blue: #4c63d2;
  --text-gray: #6c757d;
  --light-gray: #f8f9fa;
  --bg-pattern: #f5f5f5;
  --new: #e9ecef;
}
body {
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-style: normal;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}
html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hero-section::before {
  z-index: -2;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(30deg, transparent 0%, var(--primary-purple) 60%);
  z-index: 1;

  animation: shrinkPanel 1s ease-out forwards;
}
@media (min-width: 768px) {
  .hero-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      30deg,
      transparent 0%,
      var(--primary-purple) 60%
    );
    z-index: 1;
    animation: shrinkPanel 1s ease-out forwards;
  }
}

@media (max-width: 767.98px) {
  .hero-section::after {
    display: none;
  }
}

@keyframes shrinkPanel {
  from {
    width: 100%;
  }

  to {
    width: 30%;
  }
}

.navbar {
  backdrop-filter: blur(0px);

  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.navbar-brand {
  font-size: 1.2rem !important;
  font-weight: bold;
  color: rgb(245, 245, 245) !important;
  display: flex;

  align-items: center;

  border-radius: 10px;
}
.scramble-word {
  display: inline-block;
  transition: transform 0.9s cubic-bezier(0.25, 0.6, 0.3, 1), opacity 0.6s ease;
}

#howHeading.scramble-init .scramble-word {
  opacity: 0.25;
  transform: translate(calc(var(--dx) * 1px), calc(var(--dy) * 1px))
    rotate(calc(var(--rot) * 1deg)) scale(calc(0.8 + (var(--scale) / 10)));
  filter: blur(2px);
}

#howHeading.scramble-align .scramble-word {
  opacity: 1;
  transform: translate(0, 0) rotate(0) scale(1);
  filter: none;
}
.how_section-stat-card.flip-in[data-aos].aos-animate{
  box-shadow:0 12px 35px rgba(0,0,0,.25);
}


.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #f8f9fa !important;
  transform: translateY(-2px);
}

.btn-quote {
  background: var(--primary-purple);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background: var(--secondary-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 42, 255, 0.99);
}

.hero-content {
  position: relative;
  z-index: 5;
  color: white;
  padding: 6rem 0;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 3rem !important;
  }
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 500px;
  color: #f8f9fa;
}

.btn-primary-custom {
  background: var(--primary-purple) !important;
  border: none;
  color: rgb(255, 255, 255) !important;
  padding: 1rem 2rem !important;
  border-radius: 8px;
  font-weight: 600 !important ;
  margin-right: 1rem;
  font-size: 1rem !important;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--secondary-purple);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 99, 210, 0.3);
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.Qn_new_face-profiles {
  display: flex;
  gap: 8px;
  align-items: center;
}

.Qn_new_face-profile {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary-purple);
  transform: translateY(-2px);
}

.customize-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: white;
  color: var(--primary-purple);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
}

.customize-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.search-icon {
  color: white;
  font-size: 1.2rem;
  margin-right: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.search-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-content {
    padding: 4rem 0;
    text-align: center;
  }

  .btn-primary-custom,
  .btn-outline-custom {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .customize-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1.2rem;
  }

  .hero-section::after {
    width: 100%;
    background: linear-gradient(
      180deg,
      transparent 0%,
      var(--primary-purple) 70%
    );
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .navbar-brand {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }
}

.fade-in {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section {
  position: relative;
  height: 100vh;
}
.dropdown-menu {
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out;
}

.dropdown-menu.show {
  transform: translateY(0);
  opacity: 1;
}

.delayed-buttons {
  position: static;
  opacity: 1;
  transform: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.delayed-text {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .hero-section {
    position: relative;
  }

  .delayed-buttons {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%) translateX(100%);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
    z-index: 5;
    line-height: 7rem;
  }

  .delayed-buttons.visible {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
  }

  .delayed-text {
    font-size: 5rem;
  }
}

@keyframes slideFadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title.animate-title {
  animation: slideFadeUp 0.9s ease-out 0.4s forwards;
}
.services-section {
  position: relative;
  padding: 2rem 0;
  min-height: 100vh;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(76, 99, 210, 0.05);
  z-index: 1;
}

.services-section::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 10%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(76, 99, 210, 0.03);
  z-index: 1;
}

.pattern-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(76, 99, 210, 0.02);
  z-index: 1;
}

.pattern-circle-1 {
  top: 30%;
  right: 20%;
  width: 100px;
  height: 100px;
}

.pattern-circle-2 {
  top: 80%;
  left: 15%;
  width: 80px;
  height: 80px;
}

.pattern-circle-3 {
  top: 20%;
  left: 60%;
  width: 60px;
  height: 60px;
}

.content-wrapper {
  position: relative;
  z-index: 10;
}

.section-subtitle {
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 3.2rem !important;
  color: #909090 !important;
  line-height: 1.5;
  font-size: clamp(2rem, 4vw+1rem, 3.2rem);
  font-weight: 800;
  max-width: 600px;
  text-shadow: 2px 0 0 rgba(36, 32, 150, 0.85), 8px 0 8px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .section-title {
    font-size: 40px !important;

    max-width: 100%;
    text-shadow: 0.75px 0 0 rgba(58, 45, 151, 0.8), 6px 0 8px rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 0.5px 0 0 rgba(58, 45, 151, 0.75), 4px 0 6px rgba(0, 0, 0, 0.4);
  }
}

.section-description {
  font-size: 1.1rem;
  color: rgb(150, 150, 150);
  line-height: 1.7;
  margin-bottom: 4rem;
  max-width: 700px;
}

.services-grid {
  margin-top: 4rem;
}

.service-card {
  background: rgba(4, 4, 4, 0.279) !important;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  box-shadow: 0 20px 50px rgba(76, 99, 210, 0.15);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-blue), #0c10ff);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(76, 99, 210, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 90px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-purple), #2a2b6f76);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.3s ease;
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

.service-description {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
}

.customize-btn {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: white;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(76, 99, 210, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.customize-btn:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(76, 99, 210, 0.25);
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.8rem;
  }

  .services-section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .section-subtitle,
  .section-description {
    text-align: center;
  }

  .services-section {
    padding: 3rem 0;
  }

  .service-card {
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
  }

  .customize-btn {
    top: 1rem;
    right: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .services-section::before,
  .services-section::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 1.5rem;
  }

  .service-title {
    font-size: 1.3rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .main_ourteam {
    height: 330vh !important;
  }
}

@media (max-width: 576px) {
  .main_ourteam {
    height: 560vh !important;
  }
}
@media (max-width: 1024px) {
  .main_ourteam {
    height: 330vh !important;
  }
}

.content-box {
  perspective: 1200px;
}

#hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;

  align-items: center;
  z-index: 4;
  transition: opacity 4.4s linear;
}

#page-content {
  position: relative;
  z-index: 4;
  background-color: #e9ecef;
}
.hero-bg-slider {
  position: absolute;
  inset: 0;
  display: flex;
  width: 400%;
  animation: pan4 40s ease-in-out infinite;
  z-index: -1;
}

.hero-bg-slide {
  width: 25%;
  height: 100%;
  object-fit: cover;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

@keyframes pan4 {
  0%,
  14% {
    transform: translateX(0%);
  }
  17%,
  31% {
    transform: translateX(-25%);
  }
  34%,
  48% {
    transform: translateX(-50%);
  }
  51%,
  65% {
    transform: translateX(-75%);
  }
  68%,
  82% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

#hero .hero-content {
  transform-origin: center;
  transition: transform 0.4s linear;
}
.wrapper .title {
  text-align: center;
}

.ourteam_sect-main {
  background: var(--bg-pattern) !important;
  height: 140vh !important;
  padding: 30px 0;
}

@media (max-width: 1024px) {
  .ourteam_sect-main {
    height: 330vh !important;
  }
}
@media (max-width: 768px) {
  .ourteam_sect-main {
    height: 330vh !important;
  }
}
@media (max-width: 576px) {
  .ourteam_sect-main {
    height: 560vh !important;
  }
}

.ourteam_sect-title h4 {
  display: inline-block;
  padding: 20px;
  color: #585757;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 1.2px;
  word-spacing: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  word-wrap: break-word;
}

.ourteam_sect-card_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
  padding: 20px;
  margin: 10px 0;
  text-align: center;
}

.ourteam_sect-card {
  position: relative;
  width: 320px;
  height: 350px;
  margin: 10px;
  overflow: hidden;
  box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 1),
    inset 0 0 0 1000px rgba(67, 52, 109, 0.6);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4c63d2 !important;
}

.ourteam_sect-imgBx,
.ourteam_sect-imgBx img {
  width: 100%;
  height: 100%;
}

.ourteam_sect-content {
  position: absolute;
  bottom: -160px;
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(15px);
  box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: bottom 0.5s;
  transition-delay: 0.65s;
}
.ourteam_sect-card:hover .ourteam_sect-content {
  bottom: 0;
  transition-delay: 0s;
}

.ourteam_sect-contentBx h3 {
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin: 20px 0 15px;
  line-height: 1.1em;
  transition: 0.5s;
  transition-delay: 0.6s;
  opacity: 0;
  transform: translateY(-20px);
}
.ourteam_sect-card:hover .ourteam_sect-contentBx h3 {
  opacity: 1;
  transform: translateY(0);
}
.ourteam_sect-contentBx h3 span {
  font-size: 12px;
  font-weight: 300;
  text-transform: initial;
}

.ourteam_sect-sci {
  position: relative;
  bottom: 10px;
  display: flex;
}
.ourteam_sect-sci li {
  list-style: none;
  margin: 0 10px;
  transform: translateY(40px);
  transition: 0.5s;
  opacity: 0;
  transition-delay: calc(0.2s * var(--i));
}
.ourteam_sect-card:hover .ourteam_sect-sci li {
  transform: translateY(0);
  opacity: 1;
}
.ourteam_sect-sci li a {
  color: #fff;
  font-size: 24px;
}
.info_ei_hero_section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10px 0;

  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.info_ei_hero_title {
  font-size: 3.2rem !important;
  color: #909090 !important;
  line-height: 1.5;
  font-size: clamp(2rem, 4vw+1rem, 3.2rem);
  font-weight: 800;
  text-shadow: 2px 0 0 rgba(36, 32, 150, 0.85), 8px 0 8px rgba(0, 0, 0, 0.6);
}

.info_ei_hero_description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #949494;
  margin-bottom: 2.5rem;
}

.info_ei_learn_more_btn {
  background: none;
  border: none;
  color: #e67e22;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0;
  transition: all 0.3s ease;
}

.info_ei_learn_more_btn:hover {
  color: #d35400;
  transform: translateX(5px);
}

.info_ei_learn_more_btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.info_ei_learn_more_btn:hover i {
  transform: translateX(3px);
}

.info_ei_stats_container {
  padding-left: 3rem;
}

.info_ei_stat_item {
  margin-bottom: 3rem;
}

.info_ei_stat_number {
  font-size: 4rem;
  font-weight: 300;
  color: #2c3e50;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .info_ei_stat_number {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .info_ei_stat_number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .info_ei_stat_number {
    font-size: 2rem;
  }
}

.info_ei_stat_description {
  font-size: 1.5rem;
  color: #cccccc;
  line-height: 1.4;
  max-width: 250px;
}

@media (max-width: 992px) {
  .info_ei_stat_description {
    font-size: 1.25rem;
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .info_ei_stat_description {
    font-size: 1rem;
    max-width: 180px;
  }
}

@media (max-width: 576px) {
  .info_ei_stat_description {
    font-size: 0.875rem;
    max-width: 150px;
  }
}

@media (max-width: 991.98px) {
  .info_ei_stats_container {
    padding-left: 0;
    margin-top: 4rem;
  }

  .info_ei_hero_title {
    font-size: 2.8rem;
  }

  .info_ei_stat_number {
    font-size: 3rem;
  }
}

@media (max-width: 767.98px) {
  .info_ei_hero_section {
    padding: 40px 0;
    min-height: auto;
  }

  .info_ei_hero_title {
    font-size: 2.2rem;
  }

  .info_ei_stat_number {
    font-size: 2.5rem;
  }

  .info_ei_stat_item {
    margin-bottom: 2rem;
    text-align: center;
  }

  .info_ei_stat_description {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .info_ei_hero_title {
    font-size: 1.8rem;
  }

  .info_ei_hero_description {
    font-size: 1rem;
  }

  .info_ei_stat_number {
    font-size: 2rem;
  }
}

.info_ei_fade_in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.info_ei_fade_in:nth-child(1) {
  animation-delay: 0.1s;
}
.info_ei_fade_in:nth-child(2) {
  animation-delay: 0.2s;
}
.info_ei_fade_in:nth-child(3) {
  animation-delay: 0.3s;
}
.info_ei_fade_in:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info_ei_counter {
  display: inline-block;
  color: #bbbbbb;
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 2px 0 0 rgba(0, 0, 0, 0.85), 8px 0 8px rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
  .info_ei_counter {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .info_ei_counter {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .info_ei_counter {
    font-size: 2rem;
  }
}

.about_Sus_section {
  padding: 60px 20px;
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  text-align: center;
}

.about_Sus_heading {
  font-size: 36px;
  color: #343a40;
  margin-bottom: 10px;
}

.about_Sus_intro {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 30px;
}

.about_Sus_description {
  font-size: 18px;
  color: #495057;
  max-width: 600px;
  margin: 0 auto 40px;
}

.about_Sus_stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.header-text {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-info {
  margin-top: auto;
}

.contact-item {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.content-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  height: 60vh;
  color: #fff;
}

.bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(var(--b, 0.1));
}

.content-section.dim {
  --b: 0.6;
}
.content-section.normal {
  --b: 1;
}
.content-section.bright {
  --b: 1.3;
}

.content-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.values-section {
  display: flex;
  flex-wrap: wrap;
}

.value-column {
  border: 1px solid var(--primary-blue);
  padding: 3rem 1rem;
  height: 400px;
  text-align: center;
  background-color: #000;

  background-image: radial-gradient(
      circle at 50% 135%,
      var(--primary-purple) 20%,
      rgb(0, 0, 0) 40%
    ),
    radial-gradient(
      circle at 30% 15%,
      var(--secondary-purple) 0%,
      rgb(0, 0, 0) 95%
    ),
    radial-gradient(
      circle at 50% 85%,
      var(--dark-purple) 0%,
      rgba(0, 0, 0, 0) 70%
    );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 100%;
  height: 100%;
  fill: rgb(255, 255, 255);
}

.value-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.value-text {
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .header-left {
    width: 50%;
  }

  .header-right {
    width: 50%;
  }

  .value-column {
    width: 33.333%;
  }
}

@media (max-width: 767.98px) {
  .header-left,
  .header-right {
    width: 100%;
  }

  .value-column {
    width: 100%;
  }

  .mission-title {
    font-size: 3rem;
  }

  .mission-subtitle {
    font-size: 1.1rem;
  }

  .header-text,
  .content-text {
    font-size: 0.95rem;
  }

  .value-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 575.98px) {
  .header-left,
  .header-right,
  .content-section,
  .value-column {
    padding: 2rem 1rem;
  }

  .mission-title {
    font-size: 2.5rem;
  }

  .logo-container {
    margin-bottom: 2rem;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .value-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .value-text {
    font-size: 1.85rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.value-column {
  transition: all 0.3s ease;
}

.value-column:hover {
  transform: translateY(-10px);
}

.value-icon {
  transition: all 0.3s ease;
}

.value-column:hover .value-icon {
  transform: scale(1.1);
}
.about-section {
  padding: 10px 0;
  min-height: 100vh;
  display: flex;
  align-items: start;
  text-align: start;
  background-image: radial-gradient(
      circle at 50% 135%,
      var(--primary-purple) 0%,
      rgba(0, 0, 0, 0.912) 70%
    ),
    radial-gradient(
      circle at 80% 15%,
      var(--secondary-purple) 0%,
      rgba(0, 0, 0, 0) 95%
    ),
    radial-gradient(
      circle at 50% 85%,
      var(--dark-purple) 0%,
      rgba(0, 0, 0, 0) 70%
    );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.about-badge {
  color: var(--dark-purple) !important;
  padding: 10px 0;
  font-size: 2rem;
  font-weight: 600;

  display: inline-block;
  margin-bottom: 2rem;
  position: relative;
}

.main-heading {
  font-size: 4rem !important;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2rem;
  text-align: center !important;
  color: var(--dark-purple) !important;
}

.content-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: #64748b;
  line-height: 1.7;
  max-width: 500px;
}
.brand-heading {
  font-size: 4rem !important;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2rem;
  text-align: center !important;

  background: linear-gradient(
    120deg,
    var(--primary-purple) 0%,
    var(--primary-blue) 50%,
    var(--secondary-purple) 100%
  );
  background-size: 200%;
  -webkit-background-clip: text;
  color: transparent;

  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: none;
}

.brand-heading.is-visible {
  animation: headingGradient 8s ease-in-out infinite,
    headingEntrance 0.9s cubic-bezier(0.25, 0.75, 0.45, 1) forwards;
}

@keyframes headingGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes headingEntrance {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-heading.is-visible {
    animation: none;
    opacity: 1;
    transform: none;
    color: var(--dark-purple);
  }
}
.about-section {
  position: relative;
  overflow: hidden;
}

.diag-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background: linear-gradient(
    135deg,
    var(--primary-purple) 0%,
    var(--primary-blue) 50%,
    var(--secondary-purple) 100%
  );

  transform: translateX(-100%) skewX(-12deg);
  transform-origin: left center;
  transition: transform 1.1s cubic-bezier(0.25, 0.8, 0.35, 1);
}

.about-section.revealed .diag-overlay {
  transform: translateX(100%) skewX(-12deg);
}

.about-section .content-wrapper {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}
.about-section.revealed .content-wrapper {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .diag-overlay,
  .about-section .content-wrapper {
    transition: none;
  }
  .diag-overlay {
    transform: none !important;
  }
  .about-section .content-wrapper {
    opacity: 1;
    transform: none;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.number-ten {
  font-size: 20rem;
  font-weight: 900;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.number-one {
  background: linear-gradient(
      135deg,
      rgba(6, 182, 212, 0.9) 0%,
      rgba(14, 165, 233, 0.9) 100%
    ),
    url("/placeholder.svg?height=400&width=200");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  overflow: hidden;
}

.number-zero {
  background: linear-gradient(
      135deg,
      rgba(99, 102, 241, 0.9) 0%,
      rgba(79, 70, 229, 0.9) 100%
    ),
    url("/placeholder.svg?height=400&width=300");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  overflow: hidden;
}

.team-mosaic {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 2px;
  opacity: 0.8;
}

.team-photo {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.team-photo:hover {
  transform: scale(1.1);
  z-index: 10;
  border-radius: 8px;
}

.cta-section {
  margin-top: 3rem;
}

.cta-button {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: white;
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
  margin-right: 1rem;
}

.cta-button:hover {
  background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
  color: white;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #64748b;
  color: #64748b;
  box-shadow: none;
}

.cta-button.secondary:hover {
  background: #64748b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(100, 116, 139, 0.2);
}

.stats-container {
  margin-top: 3rem;
  display: flex;
  gap: 3rem;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #06b6d4;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1199.98px) {
  .main-heading {
    font-size: 3.5rem;
  }

  .number-ten {
    font-size: 16rem;
  }

  .content-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 991.98px) {
  .about-section {
    padding: 60px 0;
  }

  .main-heading {
    font-size: 3rem;
  }

  .number-ten {
    font-size: 12rem;
    margin-top: 3rem;
  }

  .stats-container {
    justify-content: center;
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 40px 0;
    text-align: center;
  }

  .main-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .content-text {
    font-size: 1rem;
    margin: 0 auto 2rem;
  }

  .number-ten {
    font-size: 8rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .cta-button {
    width: 100%;
    max-width: 250px;
    margin-bottom: 1rem;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .main-heading {
    font-size: 2rem;
  }

  .content-text {
    font-size: 0.95rem;
  }

  .number-ten {
    font-size: 6rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.3s;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.number-ten {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.team-photo {
  animation: parallax 8s ease-in-out infinite;
}

.team-photo:nth-child(even) {
  animation-delay: 2s;
}

@keyframes parallax {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.careers-section {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(
      circle at 50% 135%,
      var(--primary-purple) 0%,
      rgba(0, 0, 0, 0.912) 70%
    ),
    radial-gradient(
      circle at 80% 15%,
      var(--secondary-purple) 0%,
      rgba(0, 0, 0, 0) 95%
    ),
    radial-gradient(
      circle at 50% 85%,
      var(--dark-purple) 0%,
      rgba(0, 0, 0, 0) 70%
    );
}

.main-heading {
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  color: #1e293b;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.sub-heading {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #64748b;
  text-align: center;
  margin-bottom: 3rem;
}

.content-text {
  font-size: 1.2rem;
  font-weight: 400;
  color: #475569;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.team-image-container {
  text-align: center;
  margin-bottom: 3rem;
}

.team-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.team-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
}

.cta-button {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  margin: 0 0.5rem 1rem;
}

.cta-button:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  color: white;
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #64748b;
  color: #64748b;
  box-shadow: none;
}

.cta-button.secondary:hover {
  background: #64748b;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(100, 116, 139, 0.2);
}

.benefits-grid {
  margin-top: 4rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.benefit-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.5;
}

@media (max-width: 1199.98px) {
  .main-heading {
    font-size: 3.5rem;
  }

  .content-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 991.98px) {
  .careers-section {
    padding: 60px 0;
  }

  .main-heading {
    font-size: 3rem;
  }

  .sub-heading {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .content-text {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}

@media (max-width: 767.98px) {
  .careers-section {
    padding: 40px 0;
  }

  .main-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .sub-heading {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .content-text {
    font-size: 0.95rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
    margin-bottom: 1rem;
  }

  .benefit-item {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .main-heading {
    font-size: 2rem;
  }

  .content-text {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}
.fade-in:nth-child(4) {
  animation-delay: 0.4s;
}
.fade-in:nth-child(5) {
  animation-delay: 0.5s;
}
.fade-in:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.careers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(59, 130, 246, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(29, 78, 216, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: -1;
}

.careers-section {
  position: relative;
}

.highlight {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.new_visiosn_main-section {
  min-height: 100vh;

  background-image: radial-gradient(
      circle at 50% 135%,
      var(--primary-purple) 0%,
      rgba(0, 0, 0, 0.912) 70%
    ),
    radial-gradient(
      circle at 80% 15%,
      var(--secondary-purple) 0%,
      rgba(0, 0, 0, 0) 95%
    ),
    radial-gradient(
      circle at 50% 85%,
      var(--dark-purple) 0%,
      rgba(0, 0, 0, 0) 70%
    );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.new_visiosn_main-feature-card {
  background: #1d4fd84f !important;
  backdrop-filter: blur(60px);
  border: 2px solid var(--primary-purple) !important;
  border-radius: 20px;
  padding: 2rem 2rem;
  height: 100%;

  transition: all 3.3s ease;
  position: relative;
  overflow: hidden;
}

.new_visiosn_main-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.new_visiosn_main-feature-card:hover::before {
  left: 100%;
}

.new_visiosn_main-feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.new_visiosn_main-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3f3f3f, #8b5cf6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
}

.new_visiosn_main-feature-icon::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(26, 26, 26, 0.9);
  border-radius: 18px;
}

.new_visiosn_main-feature-icon i {
  font-size: 2rem;
  color: #3b82f6;
  position: relative;
  z-index: 1;
}

.new_visiosn_main-feature-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.new_visiosn_main-feature-description {
  font-size: 1.1rem;
  color: #a1a1aa;
  line-height: 1.6;
  font-weight: 300;
}

.new_visiosn_main-divider {
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  height: 60%;
  position: absolute;
  top: 20%;
  right: 0;
}

@media (max-width: 991.98px) {
  .new_visiosn_main-divider {
    display: none;
  }

  .new_visiosn_main-feature-card {
    margin-bottom: 2rem;
    padding: 2rem 1.5rem;
  }

  .new_visiosn_main-feature-title {
    font-size: 1.5rem;
  }

  .new_visiosn_main-feature-description {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .new_visiosn_main-feature-card {
    padding: 1.5rem 1rem;
  }

  .new_visiosn_main-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
  }

  .new_visiosn_main-feature-icon i {
    font-size: 1.5rem;
  }

  .new_visiosn_main-feature-title {
    font-size: 1.25rem;
  }

  .new_visiosn_main-feature-description {
    font-size: 0.95rem;
  }
}

.new_visiosn_main-container-custom {
  max-width: 1400px;
}
.vein-wrapper {
  position: relative;
  display: inline-block;
}

.new_visiosn_main-feature-card {
  position: relative;
  z-index: 1;
}

.veins-svg {
  position: absolute;
  top: -45px;
  left: -45px;
  width: calc(100% + 90px);
  height: calc(100% + 90px);

  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.vein {
  stroke: var(--dark-purple);
  stroke-width: 10;
  stroke-dasharray: 130;
  stroke-dashoffset: 330;
  transition: stroke-dashoffset 1.8s ease-out;
}
.vein-label {
  fill: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity 1.35s ease-out 0.55s;
}

.vein-wrapper:hover .vein {
  stroke-dashoffset: 0;
}
.vein-wrapper:hover .vein-label {
  opacity: 1;
}
.info_ei_hero_section {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.info-bg-img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2);
}

@media (max-width: 768px) {
  .info-bg-img {
    filter: brightness(0.2);
  }
}
.services-section {
  position: relative;
  overflow: hidden;
}

.services-bg-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2);
}

.pattern-circle {
  z-index: -1;
}

@media (max-width: 768px) {
  .services-bg-img {
    filter: brightness(0.85);
    height: 460px;
  }
  .service-card {
    background-color: #000000 !important;
  }
}
.how_section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  color: #fff;
  height: 100vh;
}

@media (max-width: 768px) {
  .how_section {
    height: 150vh;
  }
}

@media (max-width: 576px) {
  .how_section {
    height: 170vh;
  }
}
@media (max-width: 768px) {
  .how_section {
    background: #000000 !important;
  }
  .how-bg-img {
    display: none !important;
  }
}

.how-bg-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.how_section-cta-button {
  background: #ff4e4e;
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

.how_section-main-heading {
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem);
  color: #909090 !important;
  line-height: 1.5;
  font-weight: 800;
  text-shadow: 2px 0 0 rgba(36, 32, 150, 0.85), 8px 0 8px rgba(0, 0, 0, 0.6);
}

@media (min-width: 1200px) {
  .how_section-main-heading {
    font-size: 3.2rem;
  }
}

@media (max-width: 992px) {
  .how_section-main-heading {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .how_section-main-heading {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .how_section-main-heading {
    font-size: 2rem;
  }
}

.how_section-description {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 48ch;
  color: #000 !important ;
}

.how_section-stat-card {
  background: rgba(26, 26, 26, 0.236) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 2rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: transform 0.35s ease;
}
.how_section-stat-card:hover {
  transform: translateY(-6px);
}
.how_section-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: #7d7676;

  margin-bottom: 0.25rem;
}
.how_section-stat-text {
  font-size: 0.9rem;
  color: #7d7676 !important;
  letter-spacing: 0.05em;
  opacity: 1.9;
}

@media (max-width: 992px) {
  .how_section-stat-number {
    font-size: 2.2rem !important;
  }
  .how_section-stat-text {
    font-size: 0.8rem !important;
  }
}

@media (max-width: 768px) {
  .how_section-stat-number {
    font-size: 1.8rem !important;
  }
  .how_section-stat-text {
    font-size: 0.75rem !important;
  }
}

@media (max-width: 576px) {
  .how_section-stat-number {
    font-size: 1.5rem !important;
  }
  .how_section-stat-text {
    font-size: 0.7rem !important;
  }
}

@media (max-width: 767px) {
  .how_section {
    padding: 3rem 0;
  }
  .how-bg-img {
    filter: brightness(1.2);
  }
}
.team-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  color: #fff;
  background-image: radial-gradient(
      circle at 50% 135%,
      var(--primary-purple) 0%,
      rgba(0, 0, 0, 0.912) 70%
    ),
    radial-gradient(
      circle at 80% 15%,
      var(--secondary-purple) 0%,
      rgba(0, 0, 0, 0) 95%
    ),
    radial-gradient(
      circle at 50% 85%,
      var(--dark-purple) 0%,
      rgba(0, 0, 0, 0) 70%
    );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.team-bg-img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2);
}

@media (max-width: 768px) {
  .team-bg-img {
    filter: brightness(0.85);
  }
}
.new_text_update {
  color: #616060 !important;
  font-size: larger;
}
.starting_from_text {
  color: #ffffff !important;
  font-size: 2.4rem !important;
  font-weight: 700;
}
:root {
  --clr-primary: #ff6a00;
  --clr-secondary: #ff0080;
  --clr-white: #fff;
  --clr-text: #e9e9e9;

  --newsletter-h: 100vh;
}
.text-flow {
  color: #a1a1a1 !important;
}
.newsletter-section {
  position: relative;
  height: var(--newsletter-h);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #000;
  color: var(--clr-text);
  overflow: hidden;
  padding: 0 1.5rem;
  background-color: #000;

  background-image: radial-gradient(
      circle at 50% 59%,
      var(--primary-purple) 0%,
      rgb(0, 0, 0) 50%
    ),
    radial-gradient(
      circle at 80% 15%,
      var(--secondary-purple) 0%,
      rgba(0, 0, 0, 0.974) 95%
    ),
    radial-gradient(
      circle at 50% 85%,
      var(--dark-purple) 0%,
      rgba(0, 0, 0, 0) 70%
    );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.newsletter-content {
  max-width: 680px;
  width: 100%;
  animation: fadeUp 0.9s ease 0.1s both;
}

.newsletter-title {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.6em;
  line-height: 1.15;
}

.newsletter-text {
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  margin-bottom: 1.8rem;
  line-height: 1.6;
  color: var(--clr-white);
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.form-control {
  flex: 1 1 260px;
  padding: 1rem 1.2rem !important;
  font-size: 1rem;
  border: none;
  border-radius: 32px;
  outline: none;
  background: rgba(0, 0, 0, 0.15) !important;
  color: white !important;
  backdrop-filter: blur(4px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.form-control::placeholder {
  color: rgb(255, 255, 255) !important;
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.btn-join {
  flex: 0 0 auto;
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  color: var(--clr-white);
  background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .btn-join {
    width: 100%;
  }
}
.cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  border-radius: 20px;
  color: white;
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-dark-custom {
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.btn-dark-custom:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  transform: translateY(-2px);
}

.btn-transparent {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.btn-transparent:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.footer-section {
  background-color: #0000002a;
  padding: 4rem 0 2rem;
}

.footer-column h5 {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

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

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #2563eb;
}

.subscribe-section {
  background-color: white;
  padding: 2rem;
  border: 4px solid #8a8d92;
  border-radius: 12px;
  background-color: #000;

  background-image: radial-gradient(
      circle at 50% 135%,
      var(--primary-purple) 0%,
      rgba(0, 0, 0, 0.912) 70%
    ),
    radial-gradient(
      circle at 80% 15%,
      var(--secondary-purple) 0%,
      rgba(0, 0, 0, 0) 95%
    ),
    radial-gradient(
      circle at 50% 85%,
      var(--dark-purple) 0%,
      rgba(0, 0, 0, 0) 70%
    );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.subscribe-section h5 {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
}

.subscribe-section p {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.email-input {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  width: 100%;
  margin-bottom: 1rem;
}

.email-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-subscribe {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  width: 100%;
  transition: background-color 0.3s ease;
}

.btn-subscribe:hover {
  background-color: #1d4ed8;
  color: white;
}

.privacy-text {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

.privacy-text a {
  color: #2563eb;
  text-decoration: none;
}

.bottom-footer {
  padding: 2rem 0;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
}

.social-icons a {
  color: #64748b;
  font-size: 1.2rem;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #2563eb;
}

.copyright {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links {
  margin-bottom: 1rem;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
  margin-right: 2rem;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #2563eb;
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 2rem;
  }

  .lawyer-image {
    display: none;
  }

  .cta-section {
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .btn-dark-custom,
  .btn-transparent {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .footer-column {
    margin-bottom: 2rem;
  }

  .social-icons {
    text-align: center;
    margin-top: 1rem;
  }

  .social-icons a {
    margin: 0 0.5rem;
  }

  .footer-links a {
    display: block;
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .lawyer-image {
    width: 150px;
    height: 200px;
  }
}

.full_fotter {
  padding-top: 4rem;
  padding-bottom: 0.5rem;

  background: url("assets/night.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.full_fotter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.634);
  backdrop-filter: blur(5px);
  z-index: 0;
}

.full_fotter * {
  position: relative;
  z-index: 1;
}

.btn-subscribe {
  background: #ff6a00;
  border: none;
  color: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 106, 0, 0.35);
}

.bottom-footer {
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-section {
  --col-start: #000;
  --col-end: var(--primary-blue) !important;

  --angle: 220deg;

  background: linear-gradient(
      var(--angle),
      var(--col-start) 50%,
      var(--col-end) 70%
    )
    fixed !important;

  background-size: cover;
  background-position: center;
  min-height: 80vh;

  position: relative;
  display: flex;
  align-items: center;
  padding: 9rem 0;
  color: #fff;
  overflow: hidden;
}

.contact-content {
  color: white;
  z-index: 1;
  position: relative;
}

.contact-title {
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem) !important;
  color: #909090 !important;
  line-height: 1.5;
  font-weight: 800;
  text-shadow: 2px 0 0 rgba(36, 32, 150, 0.85), 8px 0 8px rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
  .contact-title {
    font-size: 2.8rem !important;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.4rem !important;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 2rem !important;
  }
}

.contact-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  text-align: center;
  opacity: 0.9;
  max-width: 600px;
  color: #777777;
  margin-left: auto;
  margin-right: auto;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 2rem;

  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #00000031;

  background-image: radial-gradient(
      circle at 90% 135%,
      var(--primary-purple) 0%,
      rgba(0, 0, 0, 0.912) 30%
    ),
    radial-gradient(
      circle at 10% 35%,
      var(--secondary-purple) 0%,
      rgba(0, 0, 0, 0) 95%
    ),
    radial-gradient(
      circle at 90% 85%,
      var(--dark-purple) 0%,
      rgba(0, 0, 0, 0) 70%
    );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.2rem;
  color: white;
}

.contact-details h6 {
  color: #4dd0e1;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-details p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.9;
}

.contact-form {
  background: #1d4fd826;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.form-title {
  color: #cbcbcb !important;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.form-control:focus {
  border-color: #4dd0e1;
  box-shadow: 0 0 0 0.2rem rgba(77, 208, 225, 0.25);
  background-color: white;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 0.7;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.btn-send {
  background: linear-gradient(45deg, #000000, #1e1e1e) !important;
  color: white !important;
  border: none;
  padding: 12px 10px;
  border-radius: 18px !important;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-send:hover {
  background: linear-gradient(45deg, #00acc1, #26c6da);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
}

.btn-send:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .contact-section {
    background-attachment: scroll;
    padding: 2rem 0;
  }

  .responsive-banner {
    font-size: 0.8rem;
    padding: 0.8rem 1.5rem;
  }

  .contact-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .contact-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
    align-self: center;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .responsive-banner {
    font-size: 0.7rem;
    padding: 0.6rem 1rem;
  }
}

@media (min-width: 1200px) {
  .contact-form {
    padding: 3rem;
  }
}

.contact-form {
  animation: slideInUp 0.6s ease-out;
}

.contact-item {
  animation: slideInLeft 0.6s ease-out;
}

.contact-item:nth-child(2) {
  animation-delay: 0.2s;
}

.contact-item:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.why_choose_us-section {
  background: url("./successful.jpg") no-repeat center center !important;
  background-size: cover;
  position: relative;
  padding: 60px 0;
  background-image: radial-gradient(
      circle at 50% 135%,
      var(-pricing_text-primary-purple) 0%,
      rgb(0, 0, 0) 100%
    ),
    radial-gradient(
      circle at 80% 15%,
      var(--secondary-purple) 0%,
      rgba(0, 0, 0, 0) 15%
    ),
    radial-gradient(
      circle at 50% 85%,
      var(--dark-purple) 0%,
      rgba(0, 0, 0, 0) 70%
    );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.why_choose_us-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
  text-align: start;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.why_choose_us-brand-highlight {
  color: white;
}

.why_choose_us-feature-card {
  border: none;
  border-radius: 12px;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.556) 0%,
    rgb(39, 68, 172) 100%
  );
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 40px 120px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 1.5rem;
  animation: why_choose_us-fadeInUp 0.6s ease-out;
}

.why_choose_us-feature-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.why_choose_us-feature-card--featured {
  background: #1e3a8a;
  color: white;
}
.why_choose_us-feature-card--featured:hover {
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.why_choose_us-card-body {
  padding: 2rem;
}

.why_choose_us-feature-icon {
  width: 60px;
  height: 60px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.why_choose_us-feature-card--featured .why_choose_us-feature-icon {
  background-color: rgba(255, 255, 255, 0.1);
}
.why_choose_us-feature-icon i {
  font-size: 1.5rem;
  color: #6c757d;
}
.why_choose_us-feature-card--featured .why_choose_us-feature-icon i {
  color: white;
}

.why_choose_us-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #212529;
}
.why_choose_us-feature-card--featured .why_choose_us-feature-title {
  color: white;
}

.why_choose_us-feature-description {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.why_choose_us-feature-card--featured .why_choose_us-feature-description {
  color: rgba(255, 255, 255, 0.9);
}

.why_choose_us-btn-trial {
  background-color: #28a745;
  border: none;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.why_choose_us-btn-trial:hover {
  background-color: #218838;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}
.why_choose_us-btn-trial i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}
.why_choose_us-btn-trial:hover i {
  transform: translateX(2px);
}

@media (max-width: 768px) {
  .why_choose_us-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .why_choose_us-card-body {
    padding: 2rem 1.5rem;
  }
  .why_choose_us-feature-icon {
    width: 50px;
    height: 50px;
  }
  .why_choose_us-feature-icon i {
    font-size: 1.25rem;
  }
  .why_choose_us-btn-trial {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .why_choose_us-section-title {
    font-size: 1.75rem;
    padding: 0 1rem;
  }
  .why_choose_us-section {
    padding: 3rem 0;
  }
}

@keyframes why_choose_us-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.why_choose_us-feature-card:nth-child(1) {
  animation-delay: 0.1s;
}
.why_choose_us-feature-card:nth-child(2) {
  animation-delay: 0.2s;
}
.why_choose_us-feature-card:nth-child(3) {
  animation-delay: 0.3s;
}
.why_choose_us-feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.Qanzak_faq-section {
  padding: 4rem 0;
  background-color: #000;

  background-image: radial-gradient(
      circle at 50% 135%,
      var(--primary-purple) 0%,
      rgba(0, 0, 0, 0.912) 70%
    ),
    radial-gradient(
      circle at 80% 15%,
      var(--secondary-purple) 0%,
      rgba(0, 0, 0, 0) 95%
    ),
    radial-gradient(
      circle at 50% 85%,
      var(--dark-purple) 0%,
      rgba(0, 0, 0, 0) 70%
    );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.Qanzak_faq-title {
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem) !important;
  color: #909090 !important;
  text-align: center;
  font-weight: 800;
  text-shadow: 2px 0 0 rgba(36, 32, 150, 0.85), 8px 0 8px rgba(0, 0, 0, 0.6);
}

@media (max-width: 992px) {
  .Qanzak_faq-title {
    font-size: 2.8rem !important;
  }
}

@media (max-width: 768px) {
  .Qanzak_faq-title {
    font-size: 2.4rem !important;
  }
}

@media (max-width: 576px) {
  .Qanzak_faq-title {
    font-size: 2rem !important;
  }
}

.Qanzak_faq-highlight {
  color: var(--dark-purple);
}

.Qanzak_faq-subtitle {
  color: #6c757d;
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.Qanzak_faq-card {
  background: rgba(0, 0, 0, 0.373);
  border: none;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 1.5rem;
  cursor: pointer;
  padding: 20px;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}

.Qanzak_faq-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 50%, #000000 100%);
  color: white;
  transform: scale(1.02);
}

.card-body {
  padding: 2rem;
}

.Qanzak_faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #212529;
  line-height: 1.3;
}

.Qanzak_faq-card.featured .Qanzak_faq-question {
  color: white;
}

.Qanzak_faq-answer {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.Qanzak_faq-card.featured .Qanzak_faq-answer {
  color: rgba(255, 255, 255, 0.9);
}

.Qanzak_faq-cursor {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 20px;
  height: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.Qanzak_faq-card.featured .Qanzak_faq-cursor {
  opacity: 1;
}

.Qanzak_faq-cursor::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid white;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.Qanzak_faq-cursor::after {
  content: "";
  position: absolute;
  top: 6px;
  left: -2px;
  width: 8px;
  height: 2px;
  background-color: white;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .Qanzak_faq-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .Qanzak_faq-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }
  .card-body {
    padding: 1.5rem;
  }
  .Qanzak_faq-question {
    font-size: 1.1rem;
  }
  .Qanzak_faq-answer {
    font-size: 0.9rem;
  }
  .Qanzak_faq-section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .Qanzak_faq-title {
    font-size: 1.75rem;
  }
  .card-body {
    padding: 1.25rem;
  }
  .Qanzak_faq-question {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .Qanzak_faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .Qanzak_faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.Qn_new_face-hero-section {
  padding: 4rem 0;
  background-color: #000;

  background-image: radial-gradient(
      circle at 50% 135%,
      var(--primary-purple) 0%,
      rgba(0, 0, 0, 0.912) 70%
    ),
    radial-gradient(
      circle at 80% 15%,
      var(--secondary-purple) 0%,
      rgba(0, 0, 0, 0) 95%
    ),
    radial-gradient(
      circle at 50% 85%,
      var(--dark-purple) 0%,
      rgba(0, 0, 0, 0) 70%
    );
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.Qn_new_face-badge {
  display: inline-flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 2rem;
  font-weight: 500;
}

.Qn_new_face-icon {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.Qn_new_face-title {
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem);
  color: #909090 !important;
  line-height: 1.5;
  font-weight: 800;
  text-shadow: 2px 0 0 rgba(36, 32, 150, 0.85), 8px 0 8px rgba(0, 0, 0, 0.6);
}

@media (min-width: 1200px) {
  .Qn_new_face-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 992px) {
  .Qn_new_face-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .Qn_new_face-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 576px) {
  .Qn_new_face-title {
    font-size: 2rem;
  }
}

.Qn_new_face-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.Qn_new_face-cta-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.Qn_new_face-btn-primary {
  background-color: #212529;
  border: none;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.Qn_new_face-btn-primary:hover {
  background-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.Qn_new_face-btn-primary i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.Qn_new_face-btn-primary:hover i {
  transform: translateX(3px);
}

.Qn_new_face-link {
  color: #212529;
  text-decoration: underline;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.Qn_new_face-link:hover {
  color: #6c757d;
}

.Qn_new_face-stats-container,
.Qn_new_face-testimonial,
.Qn_new_face-chart,
.Qn_new_face-video {
  background-color: #4a4a4a56;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.Qn_new_face-stars {
  color: #ffc107;
  margin-bottom: 0.5rem;
}

.Qn_new_face-profiles {
  display: flex;
  margin-bottom: 1rem;
}

.Qn_new_face-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #dee2e6;
  border: 2px solid white;
  margin-left: -8px;
}

.Qn_new_face-profile:first-child {
  margin-left: 0;
}

.Qn_new_face-stats-number {
  font-size: 2rem;
  font-weight: 800;
  color: #212529;
}

.Qn_new_face-bar {
  background: linear-gradient(to top, #0c22cc, #a3e635);
  border-radius: 4px 4px 0 0;
  width: 12px;
}

.Qn_new_face-play-btn {
  background: linear-gradient(135deg, #84cc16, #a3e635);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.Qn_new_face-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(132, 204, 22, 0.4);
}

@media (max-width: 768px) {
  .Qn_new_face-title {
    font-size: 2.5rem;
  }
  .Qn_new_face-subtitle {
    font-size: 1.1rem;
  }
  .Qn_new_face-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  .Qn_new_face-btn-primary {
    width: 100%;
    justify-content: center;
  }
}
.bar-container {
  position: relative;
  overflow: hidden;
}

.bar-container .Qn_new_face-bar {
  width: 100%;
  max-width: 20px;
  background-color: #3498db;
  position: relative;
  transform: translateY(100%);
  animation: rise 2s ease-out infinite alternate;
}

.bar-container .Qn_new_face-bar[style] {
  height: auto;
}

@keyframes rise {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.bar-container .Qn_new_face-bar:nth-child(1) {
  animation-delay: 0.1s;
}
.bar-container .Qn_new_face-bar:nth-child(2) {
  animation-delay: 0.2s;
}
.bar-container .Qn_new_face-bar:nth-child(3) {
  animation-delay: 0.4s;
}
.bar-container .Qn_new_face-bar:nth-child(4) {
  animation-delay: 0.6s;
}
.bar-container .Qn_new_face-bar:nth-child(5) {
  animation-delay: 0.8s;
}
.bar-container .Qn_new_face-bar:nth-child(6) {
  animation-delay: 1s;
}
.bar-container .Qn_new_face-bar:nth-child(7) {
  animation-delay: 1.2s;
}
.bar-container .Qn_new_face-bar:nth-child(8) {
  animation-delay: 1.4s;
}
.bar-container .Qn_new_face-bar:nth-child(9) {
  animation-delay: 1.6s;
}
.bar-container .Qn_new_face-bar:nth-child(10) {
  animation-delay: 1.8s;
}
.bar-container .Qn_new_face-bar:nth-child(11) {
  animation-delay: 2s;
}
.bar-container .Qn_new_face-bar:nth-child(12) {
  animation-delay: 2.2s;
}
.bar-container .Qn_new_face-bar:nth-child(13) {
  animation-delay: 2.4s;
}
.bar-container .Qn_new_face-bar:nth-child(14) {
  animation-delay: 2.6s;
}
.bar-container .Qn_new_face-bar:nth-child(15) {
  animation-delay: 2.8s;
}
.bar-container .Qn_new_face-bar:nth-child(16) {
  animation-delay: 3s;
}
.bar-container .Qn_new_face-bar:nth-child(17) {
  animation-delay: 3.2s;
}
.bar-container .Qn_new_face-bar:nth-child(18) {
  animation-delay: 3.4s;
}
.bar-container .Qn_new_face-bar:nth-child(19) {
  animation-delay: 3.6s;
}
.bar-container .Qn_new_face-bar:nth-child(20) {
  animation-delay: 3.8s;
}
.bar-container {
  position: relative;
  overflow: hidden;
}

.bar-container .Qn_new_face-bar {
  width: 100%;
  max-width: 20px;
  background-color: #3498db;
  position: relative;
  transform: translateY(100%);
  animation: rise 2s ease-out infinite alternate;
}

.bar-container .Qn_new_face-bar[style] {
  height: auto;
}

@keyframes rise {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.bar-container .Qn_new_face-bar:nth-child(1) {
  animation-delay: 0s;
}
.bar-container .Qn_new_face-bar:nth-child(2) {
  animation-delay: 0.2s;
}
.bar-container .Qn_new_face-bar:nth-child(3) {
  animation-delay: 0.4s;
}
.bar-container .Qn_new_face-bar:nth-child(4) {
  animation-delay: 0.6s;
}
.bar-container .Qn_new_face-bar:nth-child(5) {
  animation-delay: 0.8s;
}
.bar-container .Qn_new_face-bar:nth-child(6) {
  animation-delay: 1s;
}
.bar-container .Qn_new_face-bar:nth-child(7) {
  animation-delay: 1.2s;
}
.bar-container .Qn_new_face-bar:nth-child(8) {
  animation-delay: 1.4s;
}
.bar-container .Qn_new_face-bar:nth-child(9) {
  animation-delay: 1.6s;
}
.bar-container .Qn_new_face-bar:nth-child(10) {
  animation-delay: 1.8s;
}
.bar-container .Qn_new_face-bar:nth-child(11) {
  animation-delay: 2s;
}
.bar-container .Qn_new_face-bar:nth-child(12) {
  animation-delay: 2.2s;
}
.bar-container .Qn_new_face-bar:nth-child(13) {
  animation-delay: 2.4s;
}
.bar-container .Qn_new_face-bar:nth-child(14) {
  animation-delay: 2.6s;
}
.bar-container .Qn_new_face-bar:nth-child(15) {
  animation-delay: 2.8s;
}
.bar-container .Qn_new_face-bar:nth-child(16) {
  animation-delay: 3s;
}
.bar-container .Qn_new_face-bar:nth-child(17) {
  animation-delay: 3.2s;
}
.bar-container .Qn_new_face-bar:nth-child(18) {
  animation-delay: 3.4s;
}
.bar-container .Qn_new_face-bar:nth-child(19) {
  animation-delay: 3.6s;
}
.bar-container .Qn_new_face-bar:nth-child(20) {
  animation-delay: 3.8s;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.services-dropdown {
  position: relative;
}


.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-blue);
  border-radius: 6px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.667);
  list-style: none;
  margin: 0;
  color: white !important  ;
  padding: 1.5rem 0;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 1.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
}

.services-dropdown:hover .dropdown-list {
  opacity: 2;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-list li a {
  display: block;
  padding: 0.6rem 1rem;
  color: #333333;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-list li a:hover {
  background-color: #f3f3f3;
  color: #000000;
}

.dropdown-list li + li {
  border-top: 1px solid #eeeeee;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 60px 0 20px;
  margin-top: auto;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
}

.contact-btn {
  background-color: #e83e8c;
  border: none;
  padding: 8px 25px;
  border-radius: 25px;
  transition: all 0.3s;
}

.contact-btn:hover {
  background-color: #d63384;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 40px;
}

.brand-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.brand-desc {
  color: #aaa;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .footer-col {
    margin-bottom: 30px;
  }
}
.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 8px 0;
  list-style: none;
  display: none;
  z-index: 1050;
}

.custom-dropdown-menu.show {
  display: block;
}

.custom-dropdown-menu .dropdown-item {
  display: block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
}

.custom-dropdown-menu .dropdown-item:hover {
  background-color: #f0f4ff;
}
.floating-icons {
  position: fixed;
  bottom: 380px;
  right: 0px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

@media (max-width: 768px) {
  .floating-icons {
    bottom: 200px;
    right: 10px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .floating-icons {
    bottom: 120px;
    right: 10px;
    gap: 10px;
  }

  .floating-icons a {
    width: 40px;
    height: 40px;
  }

  .floating-icons img {
    width: 20px;
    height: 20px;
  }
}
.floating-icons {
  position: fixed;
  bottom: 380px;
  right: 0;
  display: flex;
  flex-direction: column;

  z-index: 9999;
  padding-right: 10px;
}

.floating-icons a {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  text-decoration: none;
  cursor: pointer;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

.floating-icons img {
  width: 24px;
  height: 24px;
}

.contact-icon {
  background-color: #fff;
}

.back-to-top-icon {
  margin-top: 15px;
  background-color: #fff;
}

.back-to-top-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

.copy-message {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 30px;
  background-color: #28a745;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}

@media (max-width: 768px) {
  .floating-icons {
    bottom: 200px;
    right: 10px;
    gap: 1px;
  }
}

@media (max-width: 480px) {
  .floating-icons {
    bottom: 120px;
    right: 10px;
    gap: 30px;
  }

  .floating-icons a {
    width: 40px;
    height: 40px;
  }

  .floating-icons img {
    width: 20px;
    height: 20px;
  }
}
