/*
	App by FreeHTML5.co
	Twitter: http://twitter.com/fh5co
	URL: http://freehtml5.co
*/
@import url("https://fonts.googleapis.com/css?family=Montserrat:200,300,400,500,600,700,800");
* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", "sans-serif";
}

:root {
  --primary-color: #234197;
  --text-color: #333;
  --light-bg: #f7f7f7;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  min-width: 160px;
  width: auto;
  max-width: 100%;
}

.btn-md {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  width: auto;
}

.download-btn-first {
  background: #f7f7f7;
  color: var(--primary-color) !important;
  border: 2px solid #f7f7f7;
  margin-right: 15px;
}

.download-btn-first:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.features-btn-first {
  background: transparent;
  color: #fff !important;
  border: 2px solid #fff;
}

.features-btn-first:hover {
  background: #fff;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#fh5co-hero-wrapper {
  min-height: 100vh;
  background: url("../img/banner-bg.jpg") center/cover no-repeat;
  background-color: #3a4faa;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

#fh5co-hero-wrapper::before {
  display: none;
}

/* Navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  background: rgba(35, 65, 151, 0.95);
  transition: all 0.3s ease;
}

.site-header.scroll-down {
  transform: translateY(-100%);
}

.site-header.scroll-up {
  transform: translateY(0);
  background: rgba(35, 65, 151, 0.98);
  padding: 8px 0;
}

.site-header.scroll-up .site-logo img {
  height: 35px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
}

/* Logo */
.navbar-brand {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  margin-right: 40px;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

/* Reset Bootstrap Navbar Styles */
.navbar-nav {
  flex-direction: row !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Main Navigation */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.nav-items-center {
  display: flex;
  flex-direction: row !important;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
  height: auto;
  width: auto !important;
  justify-content: center !important;
}

.nav-item {
  position: relative;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  flex: none !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 5px 12px;
  transition: all 0.2s;
  white-space: nowrap;
  display: inline-block;
  line-height: 1.5;
  margin: 0 !important;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: #fff !important;
  opacity: 1;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 20px;
  margin-left: 20px;
}

.lang-switcher a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 16px;
  font-size: 14px;
  transition: all 0.2s;
  white-space: nowrap;
}

.lang-switcher a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.lang-switcher a.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.lang-switcher .divider {
    display: none;
}

.main-navbar-nav .navbar-nav .nav-item a:hover {
  color: #234197 !important;
  -webkit-transition: all .33s ease;
  -moz-transition: all .33s ease;
  -o-transition: all .33s ease;
  -ms-transition: all .33s ease;
  transition: all .33s ease;
}
.main-navbar-nav .active {
  color: #fff !important;
  opacity: 1 !important;
}
.main-navbar-nav a {
  color: #fff !important;
}
.main-navbar-nav .nav-link {
  opacity: 1 !important;
  margin: 0 35px;
  font-size: 14.5px;
  font-weight: 500;
}

.social-icons-header i {
  margin: 15px;
  font-size: 20px;
}

.social-icons-header a:hover i {
  opacity: .6;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
}

.fh5co-hero-inner {
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100vh - 160px);
}

.hero-content {
  max-width: 50%;
  position: relative;
  z-index: 3;
}

.fh5co-hero-inner .fh5co-hero-smartphone {
  position: absolute;
  right: -100px;
  bottom: -100px;
  height: 800px;
  z-index: 1;
  object-fit: contain;
}

.fh5co-hero-inner h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.fh5co-hero-inner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
}
.fh5co-hero-inner .download-btn-first {
  font-size: 16px;
  padding: 12px 30px;
  font-weight: 600;
  background: #f7f7f7;
  color: var(--primary-color) !important;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-right: 15px;
}
.fh5co-hero-inner .download-btn-first:hover {
  background: var(--primary-color);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.fh5co-hero-inner .features-btn-first {
  font-size: 16px;
  padding: 12px 30px;
  font-weight: 600;
  background: transparent;
  color: #fff !important;
  border: 2px solid #fff;
  border-radius: 5px;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}
.fh5co-hero-inner .features-btn-first:hover {
  background: #fff;
  color: var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ==========================================================================================================
										ADVANTAGES
   ========================================================================================================== */
.fh5co-advantages-outer {
  padding: 70px;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.fh5co-advantages-outer .span-perfect {
  color: #648cff;
  text-transform: uppercase;
  font-size: 27px;
  letter-spacing: 1px;
}
.fh5co-advantages-outer .span-features {
  text-transform: uppercase;
  font-size: 42px;
}
.fh5co-advantages-outer .second-title {
  text-align: center;
  display: block;
}
.fh5co-advantages-outer small {
  display: block;
  text-align: center;
}
.fh5co-advantages-outer .fh5co-advantages-grid-columns {
  margin-top: 120px;
}
.fh5co-advantages-outer .fh5co-advantages-grid-columns .col-sm-4 .grid-image {
  width: 30%;
  float: left;
  padding-right: 30px;
  position: relative;
  top: 1px;
  color: #648cff;
}
.fh5co-advantages-outer .fh5co-advantages-grid-columns .col-sm-4 .grid-title {
  float: left;
  font-size: 20px;
  font-weight: 600;
}
.fh5co-advantages-outer .fh5co-advantages-grid-columns .col-sm-4 .grid-desc {
  float: right;
  font-size: 13px;
  padding-right: 7%;
  width: 70%;
  color: #c7c7c7;
  margin-top: 10px;
  line-height: 1.87em;
}

.fh5co-slider-inner {
  margin-top: 50px;
  margin-bottom: 30px;
}

/* ==========================================================================================================
										SLIDER
   ========================================================================================================== */
.fh5co-slider-outer {
  width: 100%;
  height: auto;
  padding: 70px;
}
.fh5co-slider-outer h1 {
  color: #648cff;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.fh5co-slider-outer > h1, .fh5co-slider-outer small {
  text-align: center;
  display: block;
}
.fh5co-slider-outer .fh5co-slider-outer {
  margin-top: 50px;
}
.fh5co-slider-outer .carousel-left-arrow {
  position: absolute;
  left: -100px;
  bottom: 250px;
  font-size: 60px;
  color: #ececec;
}
.fh5co-slider-outer .carousel-right-arrow {
  position: absolute;
  right: -100px;
  bottom: 250px;
  font-size: 60px;
  color: #ececec;
}
.fh5co-slider-outer .item img {
  height: 400px;
  width: 200px;
  object-fit: contain;
}

/* ==========================================================================================================
										FEATURES
   ========================================================================================================== */
.curved-bg-div {
  background: url("../img/curved-bgg.jpg") no-repeat;
  background-position: 0px -140px;
  background-size: cover;
  width: 100%;
  height: 300px;
}

.fh5co-features-outer {
  width: 100%;
  height: auto;
  margin-top: -180px;
}
.fh5co-features-outer .col-sm-6 {
  margin-top: 80px;
}
.fh5co-features-outer .col-sm-6 img {
  height: 550px;
}
.fh5co-features-outer .sm-6-content {
  margin-top: 250px;
  position: relative;
}
.fh5co-features-outer .sm-6-content h1 {
  color: #648cff;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}
.fh5co-features-outer .sm-6-content p {
  color: #111;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.8em;
  width: 450px;
}
.fh5co-features-outer .col-sm-6 .col-sm-image-container {
  position: relative;
  width: 300px;
}
.fh5co-features-outer .col-sm-6 .span-new {
  color: #fff;
  background: #fcec64;
  padding: 18px;
  width: 35px;
  display: inline-block;
  line-height: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  box-sizing: initial;
  position: absolute;
  font-weight: 700;
  right: 0;
  top: 140px;
}
.fh5co-features-outer .col-sm-6 .span-free {
  color: #fff;
  background: #6ca3ff;
  padding: 18px;
  width: 35px;
  display: inline-block;
  line-height: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  box-sizing: initial;
  position: absolute;
  left: -35px;
  bottom: -430px;
  font-weight: 700;
}
.fh5co-features-outer .col-sm-6 .span-data {
  color: #7e8c91;
  background: #b8faee;
  padding: 20px;
  width: 40px;
  display: inline-block;
  line-height: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  letter-spacing: 1px;
  box-sizing: initial;
  position: absolute;
  top: 140px;
  right: -2px;
  font-weight: 700;
}
.fh5co-features-outer .col-sm-6 .span-percent {
  color: #fff;
  background: #6ca3ff;
  padding: 18px;
  width: 35px;
  display: inline-block;
  line-height: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  box-sizing: initial;
  position: absolute;
  left: -35px;
  bottom: -430px;
  font-weight: 700;
}
.fh5co-features-outer .col-sm-6 .circle {
  color: #c3cfe5;
  border: 1px solid #ededed;
  background: #fff;
  padding: 10px;
  width: 35px;
  display: inline-block;
  line-height: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  box-sizing: initial;
  position: absolute;
  font-weight: 600;
  box-shadow: 0 0 0 5px #f9f9f9;
}
.fh5co-features-outer .col-sm-6 .circle-first {
  width: 35px;
  display: inline-block;
  line-height: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  box-sizing: initial;
  position: absolute;
  margin-left: 0px;
  font-weight: 600;
}
.fh5co-features-outer .col-sm-6 .circle-middle {
  width: 35px;
  display: inline-block;
  line-height: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  box-sizing: initial;
  position: absolute;
  margin-left: 50px;
  font-weight: 600;
}
.fh5co-features-outer .col-sm-6 .circle-last {
  width: 35px;
  display: inline-block;
  line-height: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  box-sizing: initial;
  position: absolute;
  margin-left: 100px;
  font-weight: 600;
}

/* ==========================================================================================================
										REVIEWS
   ========================================================================================================== */
.fh5co-reviews-outer {
  width: 100%;
  height: 400px;
  padding: 70px;
  margin-top: 100px;
}
.fh5co-reviews-outer .fh5co-reviews-inner {
  margin-top: 100px;
}
.fh5co-reviews-outer > h1 {
  color: #648cff;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}
.fh5co-reviews-outer > small {
  text-align: center;
  display: block;
}
.fh5co-reviews-outer .testimonial-desc {
  clear: both;
  padding-top: 30px;
  font-weight: 500;
}
.fh5co-reviews-outer .testimonial-2 {
  margin-left: 50px;
}

/* ==========================================================================================================
										BOTTOM
   ========================================================================================================== */
.fh5co-bottom-outer {
  width: 100%;
  height: 572px;
  background: url("../img/download-section-bg.jpg") no-repeat center;
  margin-top: 120px;
  overflow-x: hidden;
}
.fh5co-bottom-outer .fh5co-bottom-inner {
  margin-top: 270px;
}
.fh5co-bottom-outer .fh5co-bottom-inner .col-sm-6 h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 30px;
}
.fh5co-bottom-outer .fh5co-bottom-inner .col-sm-6 p {
  width: 350px;
  color: #fff;
  font-size: 14.5px;
  line-height: 1.85em;
}
.fh5co-bottom-outer .fh5co-bottom-inner .col-sm-6 img {
  margin-top: 25px;
}

   /* ==========================================================================================================
										SUB FOOTER
   ========================================================================================================== */
.img-float-left {
  float: left;
}

.img-float-right {
  float: right;
}

.footer-outer {
  width: 100%;
  padding: 50px;
  height: 250px;
  background: #2e3149;
  overflow: hidden;
}
.footer-outer .footer-inner {
  width: 100%;
  height: inherit;
}
.footer-outer .social-icons-footer i {
  margin: 15px;
  font-size: 20px;
}
.footer-outer .social-icons-footer a:hover i {
  opacity: .6;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -o-transition: all .2s ease;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
}
.footer-outer .footer-three-grid {
  width: 1140px;
  margin: 0 auto;
  height: 50px;
  text-align: center;
}
.footer-outer .column-1-3 {
  width: 20%;
  float: left;
  height: 50px;
}
.footer-outer .column-1-3 h1 {
  font-size: 38px;
  letter-spacing: 3px;
  position: relative;
  top: -5px;
  font-weight: 600;
  color: #fff;
}
.footer-outer .column-2-3 {
  width: 60%;
  float: left;
  height: 50px;
}
.footer-outer .column-3-3 {
  width: 20%;
  float: left;
  height: 50px;
}
.footer-outer .column-3-3 a {
  color: #b5b5c8;
}
.footer-outer .column-3-3 .social-icons-header a:hover {
  color: #fff;
  opacity: 1;
  -webkit-transition: color .2s ease;
  -o-transition: color .2s ease;
  transition: color .2s ease;
}
.footer-outer .footer-nav ul {
  list-style: none;
  text-align: center;
}
.footer-outer .footer-nav ul li {
  display: inline-block;
  line-height: 50px;
  color: #b5b5c8;
  margin: 0 30px;
  font-size: 14px;
}
.footer-outer .footer-nav ul li:hover {
  color: #fff;
  -webkit-transition: color .2s ease-in-out;
  -o-transition: color .2s ease-in-out;
  transition: color .2s ease-in-out;
}
.footer-outer .footer-nav ul .active {
  color: #fff;
}
.footer-outer .footer-nav ul li a {
  color: #fff;
  text-decoration: none;
}
.footer-outer .border-bottom-footer {
  height: 1px;
  width: 60%;
  margin: 0 auto;
  border: 1px solid #434769;
  display: block;
  margin-top: 50px;
}
.footer-outer .copyright {
  color: #565b87;
  text-align: center;
  font-size: 13px;
  padding: 40px 0;
}

.google-play-btn {
  margin-left: 10px;
}

/* ==========================================================================================================
                                       RESPONSIVE STYLING
  ========================================================================================================== */
@media screen and (max-width: 1400px) {
  body {
    overflow-x: hidden;
  }

  .fh5co-hero-inner .fh5co-hero-smartphone {
    height: 700px;
    right: -50px;
    bottom: -50px;
  }

  .curved-bg-div {
    background-position: 100% -20px;
  }

  .footer-outer .footer-three-grid {
    width: 100%;
  }
}
@media screen and (max-width: 1200px) {
  body {
    overflow-x: hidden;
  }

  .fh5co-hero-inner .fh5co-hero-smartphone {
    position: absolute;
    right: -15px;
    top: 200px;
    height: 550px;
  }
}
@media screen and (max-width: 993px) {
  body {
    overflow-x: hidden;
  }

  #fh5co-hero-wrapper {
    padding: 60px 0;
    min-height: 100vh;
  }

  .fh5co-hero-inner {
    text-align: center;
    padding: 40px 0;
    min-height: calc(100vh - 120px);
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 350px;
    position: relative;
    z-index: 3;
  }

  .fh5co-hero-inner .fh5co-hero-smartphone {
    position: absolute;
   /* right: 50%;*/
    bottom: 0;
    top: 450px;
   /* transform: translateX(70%);
    height: 330px;*/
    z-index: 1;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero-buttons .btn {
    width: auto;
    min-width: 140px;
    max-width: none;
  }

  .fh5co-advantages-outer {
    margin-top: 50px;
    padding-bottom: 0;
  }

  .fh5co-advantages-outer .fh5co-advantages-grid-columns .col-sm-4 .grid-image {
    width: 60px;
    float: none;
    display: block;
    margin: 0 auto;
    padding-right: 0px;
    margin-bottom: 20px;
    position: relative;
    top: 1px;
  }

  .fh5co-advantages-outer .fh5co-advantages-grid-columns .col-sm-4 .grid-title {
    float: none;
    text-align: center;
  }

  .fh5co-advantages-outer .fh5co-advantages-grid-columns .col-sm-4 .grid-desc {
    float: none;
    width: 100%;
    text-align: center;
  }

  .fh5co-slider-outer .fh5co-slider-outer {
    margin-top: 0px;
  }

  .fh5co-features-outer {
    margin-top: -100px;
  }

  .fh5co-features-outer .sm-6-content p {
    width: 100%;
  }

  .footer-outer .footer-nav ul li {
    margin: 0 10px;
  }

  .footer-outer .social-icons-footer i {
    margin: 15px 10px;
    font-size: 20px;
  }

  .navbar-collapse {
    background: rgba(58, 79, 170, 0.95);
    padding: 15px;
    border-radius: 10px;
  }

  .language-switcher {
    right: 60px;
  }

  .btn.btn-md {
    display: inline-block;
    width: auto;
    min-width: 160px;
    margin: 10px;
  }

  .hero-buttons {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  #fh5co-hero-wrapper {
    padding: 60px 0;
  }

  .fh5co-hero-inner {
    padding-top: 40px;
  }

  .fh5co-hero-inner h1 {
    font-size: 2.2rem;
  }

  .fh5co-hero-inner .fh5co-hero-smartphone {
    height: 450px;
  }
}
@media screen and (max-width: 576px) {
  #fh5co-hero-wrapper {
    padding: 40px 0;
  }

  .fh5co-hero-inner {
    padding: 30px 0;
    min-height: calc(100vh - 80px);
  }

  .hero-content {
    margin-bottom: 280px;
  }

  .fh5co-hero-inner h1 {
    font-size: 2rem;
  }

  .fh5co-hero-inner p {
    font-size: 1rem;
  }

  .fh5co-hero-inner .fh5co-hero-smartphone {
    height: 260px;
  }

  .hero-buttons {
    gap: 8px;
  }

  .hero-buttons .btn {
    min-width: 130px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Updated Styles for New Sections */

/* General Section Styles */
.section-block {
    padding: 80px 0;
    position: relative;
}

.section-title {
    color: #234197;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    text-transform: uppercase;
}

/* Challenge Section */
.challenge-item {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.challenge-item:hover {
    transform: translateY(-5px);
}

.challenge-item .icon {
    font-size: 48px;
    color: #234197;
    margin-bottom: 20px;
    display: inline-block;
}

.challenge-item i {
    font-size: inherit;
    color: inherit;
}

.challenge-item .icon,
.solution-item .icon {
    height: 80px;
    width: 80px;
    background: rgba(35, 65, 151, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.challenge-item:hover .icon,
.solution-item:hover .icon {
    transform: translateY(-5px);
    background: rgba(35, 65, 151, 0.2);
}

.challenge-item .icon i,
.solution-item .icon i {
    font-size: 32px;
}

.challenge-item h3 {
    color: #234197;
    font-size: 20px;
    margin-bottom: 15px;
}

.challenge-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .section-block {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .challenge-item {
        padding: 20px 15px;
    }
    
    .challenge-item .icon {
        font-size: 36px;
    }
    
    .challenge-item h3 {
        font-size: 18px;
    }
}

/* Solutions Section */
.solution-item {
    margin-bottom: 30px;
}

.solution-inner {
    background: white;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.solution-inner:hover {
    transform: translateY(-5px);
}

.solution-inner h3 {
    color: #234197;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.solution-content h4 {
    color: #234197;
    font-size: 16px;
    margin: 15px 0 10px;
    font-weight: 600;
}

.solution-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.solution-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.solution-content ul li {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.solution-content ul li:before {
    content: "•";
    color: #234197;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.solution-note {
    margin-top: 40px;
    padding: 20px;
    background: rgba(35, 65, 151, 0.05);
    border-radius: 10px;
}

.solution-note p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.solution-note p:last-child {
    margin-bottom: 20px;
    font-style: italic;
}

.btn-contact {
    background: #234197;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    margin-top: 10px;
}

.btn-contact:hover {
    background: #1a3075;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: #fff;
}

@media screen and (max-width: 768px) {
    .solution-inner {
        padding: 20px;
    }
    
    .solution-inner h3 {
        font-size: 18px;
    }
    
    .solution-content h4 {
        font-size: 15px;
    }
    
    .solution-content p,
    .solution-content ul li {
        font-size: 13px;
    }
    
    .solution-note {
        margin-top: 20px;
        padding: 15px;
    }
    
    .solution-note p {
        font-size: 14px;
    }
}

/* Services & Packages */
.package-card {
    margin-bottom: 30px;
}

.package-inner {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}

.package-inner:hover {
    transform: translateY(-5px);
}

.package-inner.featured {
    border: 2px solid #234197;
    position: relative;
}

.package-inner.featured:before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #234197;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.package-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.package-slogan {
    font-style: italic;
    color: #666;
    margin: 20px 0;
}

/* Case Studies */
.case-study {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.case-study:hover {
    transform: translateY(-5px);
}

.case-study .icon {
    height: 80px;
    width: 80px;
    background: rgba(35, 65, 151, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.case-study .icon i {
    font-size: 32px;
    color: #234197;
}

.case-study:hover .icon {
    transform: translateY(-5px);
    background: rgba(35, 65, 151, 0.2);
}

.case-study h3 {
    color: #234197;
    margin-bottom: 15px;
    text-align: center;
}

.case-study p {
    text-align: center;
}

.case-study .result {
    margin-top: 20px;
    font-weight: 600;
    color: #234197;
    text-align: center;
}

.case-study .result i {
    margin-right: 8px;
    font-size: 20px;
}

/* Trust Section */
.trust-item {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
}

.trust-item .icon {
    height: 80px;
    width: 80px;
    background: rgba(35, 65, 151, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.trust-item .icon i {
    font-size: 32px;
    color: #234197;
}

.trust-item:hover .icon {
    transform: translateY(-5px);
    background: rgba(35, 65, 151, 0.2);
}

.trust-item h3 {
    color: #234197;
    margin-bottom: 15px;
}

.trust-item p {
    color: #666;
}

/* Reviews Section */
.review-item {
    margin-bottom: 30px;
}

blockquote {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    border-left: 5px solid #234197;
}

blockquote:before {
    content: '"';
    font-size: 60px;
    color: #234197;
    position: absolute;
    left: 20px;
    top: 0;
    opacity: 0.2;
}

blockquote footer {
    margin-top: 20px;
}

blockquote cite {
    font-weight: 600;
    display: block;
    color: #234197;
}

blockquote span {
    color: #666;
    font-size: 14px;
}

/* Chat Section */
.chat-buttons {
    margin: 30px 0;
    text-align: center;
}

.btn-chat {
    margin: 0 10px;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-chat i {
    margin-right: 10px;
}

.btn-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Contact Section - New Design */
.contact-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h3 {
    color: #234197;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-header p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(35, 65, 151, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    background: rgba(35, 65, 151, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: #234197;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.method-icon i {
    color: white;
    font-size: 20px;
}

.method-info {
    flex: 1;
}

.method-info h4 {
    color: #234197;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.method-info a,
.method-info p {
    color: #666;
    font-size: 15px;
    margin: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-info a:hover {
    color: #234197;
}

.contact-social {
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.contact-social h4 {
    color: #234197;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.btn-telegram,
.btn-wechat {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-telegram {
    background: #0088cc;
    color: white;
}

.btn-wechat {
    background: #07C160;
    color: white;
}

.btn-telegram:hover,
.btn-wechat:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-card h3 {
    color: #234197;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    height: 55px;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

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

.contact-form .form-control:focus {
    border-color: #234197;
    background: white;
    box-shadow: 0 0 0 4px rgba(35, 65, 151, 0.1);
}

.contact-form .btn-block {
    height: 55px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    background: #234197;
    border: none;
    transition: all 0.3s ease;
}

.contact-form .btn-block:hover {
    background: #1a3075;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media screen and (max-width: 768px) {
    .contact-card,
    .contact-form-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .contact-method {
        padding: 15px;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
    }
    
    .method-icon i {
        font-size: 18px;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .btn-telegram,
    .btn-wechat {
        width: 100%;
    }
}

/* FAQ Section */
.faq-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.faq-item h3 {
    color: #234197;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
    padding-right: 30px;
    pointer-events: none;
}

.faq-item h3:after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #234197;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.faq-item.active h3:after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, margin 0.3s ease-out;
    opacity: 0;
}

.faq-item.active p {
    max-height: 500px;
    opacity: 1;
    margin-top: 15px;
}

/* Team Section */
#fh5co-team {
    padding: 7em 0;
    background: #f9f9f9;
}

.team-box {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.team-inner {
    padding: 30px;
}

.team-inner h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #3a4faa;
    font-weight: 600;
}

.team-inner p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    #fh5co-team {
        padding: 4em 0;
    }

    .team-inner {
        padding: 20px;
    }

    .team-inner h3 {
        font-size: 1.2em;
    }
}

/* Footer */
.site-footer {
    background: #234197;
    color: white;
    padding: 30px 0;
    margin-top: 0;
}

/* Language Switcher */
.lang-switch {
    padding: 5px 15px;
    margin: 0 5px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.3);
}

.lang-switch:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}

.lang-switch.active {
    background: #fff;
    color: #234197;
    border-color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-block {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .package-card,
    .case-study,
    .review-item {
        margin-bottom: 20px;
    }
    
    .qr-codes {
        flex-direction: column;
        align-items: center;
    }
    
    #map {
        height: 300px;
        margin-top: 30px;
    }
    
    .chat-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-chat {
        margin: 10px 0;
    }
    
    .team-member img {
        width: 150px;
        height: 150px;
    }
}

/* Telegram Chat Styles */
.telegram-chat-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.chat-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 14px;
}

.chat-send-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.chat-send-btn:hover {
    background: #1a3075;
    transform: translateY(-2px);
}

.telegram-chat-widget {
    margin-bottom: 30px;
}

.chat-alternatives {
    display: flex;
    gap: 20px;
    justify-content: center;
}

@media (max-width: 576px) {
    .chat-alternatives {
        flex-direction: column;
        gap: 10px;
    }
    
    .telegram-chat-container {
        margin: 20px 15px;
    }
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 0;
        margin-top: 10px;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .language-switcher a {
        padding: 8px 15px;
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
  .language-switcher {
    right: 50px;
  }

  .fh5co-hero-inner {
    padding-top: 6rem;
  }

  .fh5co-hero-inner .fh5co-hero-smartphone {
    height: 350px;
    margin-top: 2rem;
  }

  .btn.btn-md {
    display: inline-block;
    width: auto;
    min-width: 140px;
    margin: 8px;
  }
}

@media screen and (max-width: 576px) {
  .fh5co-hero-inner {
    padding-top: 5rem;
  }

  .fh5co-hero-inner h1 {
    font-size: 2rem;
  }

  .fh5co-hero-inner p {
    font-size: 1rem;
  }

  .fh5co-hero-inner .fh5co-hero-smartphone {
    height: 300px;
    margin-top: 1.5rem;
  }

  .btn.btn-md {
    display: inline-block;
    width: auto;
    min-width: 130px;
    margin: 6px;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    margin-left: 15px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 993px) {
    .mobile-menu-btn {
        display: block;
        position: relative;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(35, 65, 151, 0.98);
        padding: 80px 20px 20px;
        z-index: 1000;
    }

    .main-nav.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-items-center {
        flex-direction: column !important;
        gap: 20px;
    }

    .nav-link {
        font-size: 24px;
    }

    #fh5co-hero-wrapper {
        padding: 60px 0;
    }

    .fh5co-hero-inner {
        text-align: center;
        padding-bottom: 400px;
    }

    .fh5co-hero-inner .fh5co-hero-smartphone {
        position: absolute;
        right: 50%;
        transform: translateX(50%);
        bottom: 0;
        height: 380px;
        margin: 0;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media screen and (max-width: 576px) {
    .site-header {
        padding: 10px 0;
    }

    .mobile-menu-btn {
        margin-left: 10px;
    }

    .mobile-menu-btn span {
        width: 22px;
    }

    .fh5co-hero-inner {
        padding-bottom: 300px;
    }

    .fh5co-hero-inner .fh5co-hero-smartphone {
        height: 520px;
        left: 50px;
        top: 350px;
    }
}

@media screen and (max-width: 425px) {
    .navbar-brand {
        font-size: 20px;
    }

    .mobile-menu-btn {
        padding: 8px;
    }

    .lang-switcher {
        margin-left: 5px;
    }

    .lang-switcher a {
        padding: 4px 6px;
        font-size: 13px;
    }
}

@media screen and (max-width: 576px) {
  .fh5co-hero-inner {
    padding: 20px;
    text-align: center;
  }
  .fh5co-hero-smartphone {
    position: static;
    transform: none;
    margin: 20px auto 0;
    width: 80%;
    height: auto;
  }
  .hero-content {
    padding: 0 15px;
    box-sizing: border-box;
  }
  .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between; /* или space-around / space-evenly */
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 20px;
  }
  .hero-buttons .btn {
    flex: 1 1 45%;
    max-width: 45%;
    text-align: center;
    padding: 8px 0;
    box-sizing: border-box;
  }
}

/* Team Section */
.team-member {
    display: flex;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.member-photo {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.member-info {
    flex: 0 0 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member-info h3 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

.member-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.member-social {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #1a2f6b;
    transform: translateY(-3px);
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .team-member {
        flex-direction: column;
    }
    
    .member-photo {
        flex: 0 0 300px;
    }
    
    .member-info {
        flex: 0 0 auto;
        padding: 30px 20px;
    }
    
    .member-info h3 {
        font-size: 24px;
    }
    
    .member-description {
        font-size: 14px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.team-approach {
    margin-top: 30px;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-5px);
}

.approach-icon {
    flex: 0 0 70px;
    height: 70px;
    background: rgba(35, 65, 151, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
}

.approach-icon i {
    font-size: 28px;
    color: #234197;
}

.approach-content {
    flex: 1;
}

.approach-content h4 {
    color: #234197;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.approach-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .approach-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .approach-icon {
        flex: 0 0 60px;
        height: 60px;
        margin-right: 20px;
    }
    
    .approach-icon i {
        font-size: 24px;
    }
    
    .approach-content h4 {
        font-size: 18px;
    }
    
    .approach-content p {
        font-size: 14px;
    }
}