@font-face {
  font-display: swap;
  font-family: poppins;
  src: url(../fonts/Poppins/Poppins-Regular.ttf)
}

:root {
  --primary-color: #713188;
  --secondary-color: #9EC844;
}

body {
  margin: 0;
  font-family: 'poppins';
}

/* header */
.glass-header {
  position: fixed;
  top: 30px;
  left: 0px;
  right: 0px;
  z-index: 999;
  background: #FFFFFF;
  border-radius: 30px;
  padding: 10px 30px;
  width: 100%;
  backdrop-filter: blur(33px);
  box-shadow: 0px 4px 4px 0px #00000040;
}

.glass-header .navbar-nav .nav-link {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 10px;
  font-size: 16px;
}


.glass-header .navbar-brand img {
  width: 180px;
}

.glass-header .lang-dropdown {
  border-radius: 12px;
  padding: 8px 0;
  margin-top: 20px !important;
  position: relative;
  background: #fff;
  border: none;
  min-width: 150px;
}

.glass-header .lang-dropdown .dropdown-item {
  font-size: 14px;
  padding: 10px 16px;
  color: #333;
  font-weight: 500;
}

.glass-header .lang-dropdown .dropdown-item:hover {
  background-color: #f5f5f5;
}

.glass-header .dropdown-arrow {
  content: "";
  position: absolute;
  top: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 10px solid #fff;
}

.glass-header .lang-main-dropwon {
  border-left: 1px solid #FFFFFF;

}

.glass-header #langDropdown {
  background-color: var(--secondary-color) !important;
  border-radius: 100% !important;
  height: 40px;
  width: 40px;
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
}

/* End header */

/* Social bar */
.social-bar {
  position: fixed;
  top: 200px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  float: left;
  margin-left: auto;
  background: linear-gradient(180deg, rgba(113, 49, 136, 0.25) 0%, rgba(28, 12, 34, 0.25) 100%);
  padding: 15px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.social-bar .icon {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s;
}

.social-bar .icon:hover {
  background-color: var(--secondary-color);
}

/* EndSocial bar */

/* Hero Section */
.hero-section {
  position: relative;
  height: 760px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-left: 20px;
  padding-right: 20px;
  overflow: hidden;
}

.hero-section .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.hero-section .hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  max-width: 600px;
}

/* End hero section */

/* About us section */

.about-section .about-box {
  background: linear-gradient(90deg, #1E0D24 0%, #703186 100%);
  border-radius: 30px;
  padding: 20px 60px;
  color: #fff;
}

.about-section .icon-circle {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border-radius: 50%;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 22px;
  border: 3px solid #fff;
}


.about-section .divider {
  border-top: 4px solid #D9D9D91A;
  margin: 20px 0;
}

.about-section .vision-title,
.about-section .mission-title {
  font-size: 24px;
  color: var(--secondary-color) !important;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
}

.about-section .vision-title {
  margin-right: 50px;
}

/* End about us section */

/* Services Section */

.service-card {
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(158, 200, 68, 0.3);
  border-radius: 18px;
  height: 100%;
}

.services-section,
.testimonials-section,
.awards-section {
  background-position: center;
  background-repeat: no-repeat;
}


.service-icon img {
  width: auto;
  height: auto;
}

.service-card .title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 20px;
}

.service-card .description {
  color: #000000;
}

/* End Services Section */

/* Mobile Section */
.mobile-app-section .app-box {
  background: linear-gradient(90deg, var(--primary-color) 0%, #1C0C22 100%);
  padding: 40px 10px;
  border-radius: 30px;
}

.mobile-app-section .app-box .title {
  font-weight: 700;
  size: 32px;
  color: #fff;
}

.mobile-app-section .app-box .subtitle {
  font-size: 22px;
  color: var(--secondary-color);
}

.mobile-app-section .app-box .description {
  font-size: 20px;
  color: #fff;
}

.mobile-app-section .by-text {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
  margin-right: 3px;
}

.mobile-app-section .app-image {
  max-height: 400px;
  width: auto;
  object-fit: contain;
  border-radius: 20px;
}

.mobile-app-section .mobile-stores {
  display: flex;
  justify-content: start;
  gap: 10px;
}

/* End Mobile Section */
/* Award section */
.awards-section .awards-box {
  background-position: center left;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.awards-section .award-content {
  padding-left: 150px;
  color: white;
}

.awards-section .award-title {
  font-size: 32px;
  color: white;
  font-weight: 700;
}

.awards-section .award-descr {
  font-size: 16px;
  color: white;
  font-weight: 500;
}

.award-slider-section .award-card {
  background: white;
  border: 2px solid rgba(158, 200, 68, 0.3);
  border-radius: 30px;
  padding: 50px;
}

.award-slider-section .award-title {
  font-size: 30px;
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 700;
}

.award-slider-section .award-descr {
  font-size: 16px;
  color: #000;
  line-height: 1.8;
  font-weight: 500;
}

.award-slider-section .award-badge {
  max-width: 200px;
}

.swiper-pagination {
  position: relative !important;
  /* Forces below */
}

.swiper-pagination-bullet {
  background-color: #D9D9D9 !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important;
}

/* End Award section */

/* Testimonials */
.testimonials-section .testimonial-card {
  background: white;
  border: 1px solid var(--primary-color);
  transition: 0.3s ease;
  height: 100%;
  border-radius: 20px;
}

.testimonials-section .testimonial-card img {
  margin-right: 10px;
}

.testimonials-section .testimonial-card .title {
  color: var(--primary-color);
  font-size: 26px;
  font-weight: 700;
}

.testimonials-section .scroll-box {
  max-height: 100px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.6;
  color: var(--primary-color);
}

.testimonials-section .scroll-box::-webkit-scrollbar {
  width: 6px;
}

.testimonials-section .scroll-box::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.testimonials-section .stars i {
  font-size: 14px;
  color: #D9D9D9;
}

.testimonials-section .stars i.active {
  color: #FFE600 !important;
}

.testimonials-section .testimonials_image {
  position: absolute;
  top: -100px;
  left: 0px;
}

/* End  Testimonials */

/* Partners */
.success-partners-section .section-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 28px;
}

.success-partners-section .section-descr {
  font-size: 14px;
  color: var(--primary-color);
  line-height: 1.7;
}

.success-partners-section .partner-slide-box {
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  padding: 20px 40px;
  height: 130px;
  display: flex;
  align-items: center;
}

.partner-logo-box:hover {
  transform: scale(1.05);
}


.innerPartnerSwiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.partner-pagination {
  position: relative;
  margin-top: 20px;
}

.partner-pagination .swiper-pagination-bullet {
  background-color: var(--primary-color, #7b1fa2);
  /* customize as needed */
  opacity: 0.5;
}

.partner-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* Partners*/

/* Contact US */
.contact-subscribe-section .content {
  background: linear-gradient(90deg, #1E0D24 0%, #703186 100%);
  border-radius: 30px;
  padding: 40px;
}

.contact-subscribe-section .image{
  margin-right: 30px;
  width: 80px;
}
.contact-subscribe-section .image img{
  width: 100%;
}

.contact-subscribe-section .contact-us .title,
.contact-subscribe-section .subscribe .title {
  display: block;
  font-size: 18px;
  font-weight: 700;
}

.contact-subscribe-section .contact-us p,
.contact-subscribe-section .subscribe p {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
}

.contact-subscribe-section .subscribe .input-group {
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0px 0px 11.9px 0px rgba(3, 103, 147, 0.2);
  align-items: center;
}

.contact-subscribe-section .subscribe .form-control {
  border: none;
  box-shadow: none;
  outline: none;
  position: relative;
  flex: 1 1 auto;
  margin-bottom: 0;
  width: 1%;
}

.contact-subscribe-section .subscribe .input-group-append {
  display: flex;
}

.contact-subscribe-section .subscribe .subscribe-btn {
  background-color: var(--secondary-color);
  color: white;
  border-radius: 13px !important;
  margin: 5px;
  cursor: pointer;
  padding: 8px 25px;
  border: none;
}

.contact-subscribe-section .subscribe .subscribe-btn:hover {
  background-color: var(--secondary-color);
}

/* End Contact Us */

/* Footer */
.footer-bottom .footer-content {
  border-top: 1px solid var(--primary-color);
  width: 100%;
  padding-top: 5px;
}

.footer-right .page_name {
  font-weight: 600;
  font-size: 14px;
}

/* End Footer */
/* Common */
.text-purple {
  color: var(--primary-color) !important;
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
}

.fw-bold {
  font-weight: bold !important;
}

/* End common */
/* Start Page */
.page_content {
  padding-top:20px;
}

/* End Page */

@media (max-width: 768px) {
  .social-bar {
    position: fixed;
    left: 0px;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
    background: linear-gradient(180deg, rgba(113, 49, 136, 0.25) 0%, rgba(28, 12, 34, 0.25) 100%);
  }

  .social-bar .icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .services-section .gradient-border {
    margin-bottom: 20px;
  }

  .services-section .service-card .title,
  .mobile-app-section .app-box .title {
    font-size: 18px !important;
  }

  .mobile-app-section .app-box .subtitle {
    font-size: 16px !important;
  }

  .services-section .service-card .description,
  .mobile-app-section .app-box .description {
    font-size: 14px !important;
  }

  .mobile-app-section .app-image {
    max-height: 300px;
  }

  .testimonials-section img {
    position: unset !important;
    top: unset !important;
  }

  .award-slider-section .award-title {
    text-align: center;
  }

  .contact-subscribe-section .content {
    border-radius: unset !important;
  }

  .awards-section .awards-box {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .awards-section .award-content {
    padding-left: 0;
    padding-top: 20px;
  }

  .awards-section .award-title {
    font-size: 22px;
  }

  .awards-section .award-descr {
    font-size: 14px;
  }

  .glass-header .dropdown-arrow {
    left: unset !important;
    right: 30px !important;
  }

  .glass-header .lang-main-dropwon {
    border-left: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;

  }

  .glass-header .lang-dropdown {
    margin-top: 0px !important;
  }

  #langDropdown {
    justify-content: center;
  }

  .contact-subscribe-section .contact-us .title,
  .contact-subscribe-section .subscribe .title {
    font-size: 14px !important;
  }

  .contact-subscribe-section .contact-us p,
  .contact-subscribe-section .subscribe p {
    font-size: 12px !important;
  }

  .footer-right .page_name,
  .footer-left {
    font-size: 12px !important;
  }

  .hero-section .hero-title {
    word-break: break-word;
  }
}

.dropdown-toggle::after {
  display: none !important;
}

.navbar-toggler {
  border: 2px solid #000 !important;
}
