/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: 'Roboto', 'Poppins', 'Source Sans Pro', sans-serif;
  color: #444444;
  background-color: #ffffff;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1;
}

a {
  color: #5846f9;
  text-decoration: none;
}

a:hover {
  color: #5846f9;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', 'Poppins', 'Source Sans Pro', sans-serif;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: #ffffff;
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header .logo {
  line-height: 1;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: #5846f9;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: #ffffff;
  background: #5846f9;
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  white-space: nowrap;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #ffffff;
  background: #6f5ddb;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.navmenu li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: #444444;
  padding: 18px 15px;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.navmenu a i,
.navmenu a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: 0.3s;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover > a {
  color: #5846f9;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  position: absolute;
  font-size: 32px;
  top: 15px;
  right: 15px;
  margin-right: 0;
  z-index: 9999;
}

.mobile-nav-toggle {
  color: #444444;
  font-size: 28px;
  line-height: 1;
  margin-right: 10px;
  cursor: pointer;
  transition: color 0.3s;
  display: none;
}

.navmenu .dropdown ul {
  margin: 0;
  padding: 10px 0;
  background: #ffffff;
  display: block;
  position: absolute;
  left: 14px;
  top: 130%;
  margin-top: 10px;
  width: 180px;
  border-radius: 4px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  z-index: 99;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0 60px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
}

.hero h1 span {
  color: #ffd700;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 30px 0;
  font-size: 20px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.hero .btn-get-started:hover {
  background: #5846f9;
  border-color: #5846f9;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  color: #444444;
  background-color: #ffffff;
  overflow: hidden;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5846f9;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  color: #aaaaaa;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
  padding: 0 0 0 0;
}

.about .content .who-we-are {
  font-weight: 400;
  font-size: 14px;
  color: rgba(88, 70, 249, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #37517e;
  margin-bottom: 20px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about .content ul i {
  left: 0;
  top: 12px;
  position: absolute;
  font-size: 20px;
  color: #5846f9;
}

.about .content .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #5846f9;
  transition: 0.3s;
  line-height: 1;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  color: #6f5ddb;
}

.about .content .read-more:hover i {
  transform: translate3d(5px, 0, 0);
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  flex-direction: column;
}

.features .nav-link {
  color: #37517e;
  background-color: transparent;
  border: 0;
  padding: 20px;
  transition: 0.3s;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  height: auto;
  flex-direction: row;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
  color: rgba(88, 70, 249, 0.3);
  transition: 0.3s;
}

.features .nav-link.active {
  color: #5846f9;
  background-color: rgba(88, 70, 249, 0.05);
}

.features .nav-link.active i {
  color: #5846f9;
}

.features .tab-content {
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #37517e;
  padding: 60px 0 40px 0;
  color: #ffffff;
  margin-top: 0;
}

.footer h5, .footer h6 {
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer ul {
  margin: 0;
  padding: 0;
}

.footer ul li {
  padding: 5px 0;
}

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

.footer a:hover {
  color: #ffffff;
  text-decoration: none;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #d1d9ff;
  line-height: 1;
  margin-right: 8px;
  transition: 0.3s;
}

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

.footer .copyright {
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 13px;
}

.footer hr {
  border-color: #8894a6;
  opacity: 0.3;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #5846f9;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #6f5ddb;
  color: #ffffff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Contact Map
--------------------------------------------------------------*/
.map-container {
  position: relative;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #5846f9;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #5846f9;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6f5ddb;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    animation-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Noto Sans KR', sans-serif;
}

#header .logo a {
  color: #2c4964;
  display: flex;
  align-items: center;
}

#header .logo img {
  max-height: 40px;
  margin-right: 10px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  margin-left: 5px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  margin-left: 5px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #2c4964;
  white-space: nowrap;
  transition: 0.3s;
  border-radius: 50px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #fff;
  background: #5846f9;
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: #2c4964;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: color 0.3s;
    padding: 0;
    border: none;
    background: none;
    color: #444444;
  }

  .navmenu ul {
    display: none;
  }
  
  .header .btn-getstarted {
    display: none;
  }
  
  .header .container-fluid {
    padding: 0 15px;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
}

/* Mobile Navigation Active Styles */
.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .navmenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 9998;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  display: block !important;
}

.mobile-nav-active .navmenu ul {
  display: flex !important;
  flex-direction: column;
  padding: 80px 20px 20px 20px;
  margin: 0;
}

.mobile-nav-active .navmenu li {
  margin: 0;
}

.mobile-nav-active .navmenu a {
  display: block;
  padding: 15px 20px;
  color: #444444;
  font-size: 16px;
  border-bottom: 1px solid #eee;
}

.mobile-nav-active .navmenu a:hover,
.mobile-nav-active .navmenu .active {
  color: #5846f9;
  background: rgba(88, 70, 249, 0.05);
}

.mobile-nav-active .mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  color: #444444;
}

/* Mobile nav overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 300px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9997;
  display: none;
}

.mobile-nav-overlay.active {
  display: block;
}
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(36, 53, 81, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border-radius: 0;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #5846f9;
  background: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  padding: 120px 0 80px 0;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

#hero h1 .brand-highlight {
  color: #ffd700;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 15px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

#hero .btn-get-started {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #fff;
  color: #5846f9;
}

#hero .btn-download {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: #ffd700;
  color: #2c4964;
  border: 2px solid #ffd700;
}

#hero .btn-download:hover {
  background: transparent;
  color: #ffd700;
  border-color: #ffd700;
}

/* Hero section download buttons */
.hero-download-btn {
  white-space: nowrap !important;
  padding: 12px 30px !important;
  font-size: 14px !important;
  min-width: 250px;
  display: inline-block !important;
  width: auto !important;
  line-height: 1.2 !important;
  letter-spacing: -0.3px !important;
}

.hero-download-btn i {
  margin-right: 6px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .hero-download-btn {
    width: 100% !important;
    max-width: 300px;
    min-width: auto;
  }
}

#hero .icon-boxes {
  margin-top: 100px;
}

#hero .icon-box {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 40px 20px;
  transition: 0.3s;
}

#hero .icon-box i {
  font-size: 40px;
  color: #ffd700;
  margin-bottom: 30px;
}

#hero .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

#hero .icon-box h4 a {
  color: #fff;
}

#hero .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

#hero .icon-box:hover {
  background: rgba(255, 255, 255, 0.2);
}

#hero .hero-img {
  text-align: center;
}

#hero .hero-img img {
  max-width: 45%;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background: #f4f7fc;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #5846f9;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  color: #919191;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #2c4964;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #5846f9;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  margin-top: 20px;
  color: #fff;
  background: #5846f9;
  text-transform: uppercase;
}

.about .content .btn-learn-more:hover {
  background: #6f5ddb;
}

.about .features-list {
  margin-top: 30px;
}

.about .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.about .feature-item i {
  font-size: 24px;
  color: #5846f9;
  margin-right: 15px;
}

.about .feature-item h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.about .feature-item p {
  font-size: 14px;
  margin-bottom: 0;
  color: #666;
}

/*--------------------------------------------------------------
# Services/Features
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  border-radius: 10px;
  height: 100%;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 20px 0 15px 0;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #2c4964;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover .icon {
  background: #5846f9;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

.services .icon-box:hover .icon path {
  fill: #5846f9;
}

.services .icon-box:hover h4 a {
  color: #5846f9;
}

/*--------------------------------------------------------------
# Portfolio/Screenshots
--------------------------------------------------------------*/
.portfolio {
  padding: 80px 0;
}

/* Screenshots section */
#screenshots {
  padding: 80px 0;
}

#screenshots .screenshot-item {
  text-align: center;
  margin-bottom: 30px;
}

#screenshots img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 0 auto;
  display: block;
}

/* Screenshots Slider */
.screenshots-slider {
  padding: 20px 50px 50px 50px;
}

.screenshots-slider .swiper-slide {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.screenshots-slider .swiper-slide-active {
  opacity: 1;
}

.screenshots-slider .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.screenshots-slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  opacity: 1;
  border: 2px solid #007bff;
}

.screenshots-slider .swiper-pagination-bullet-active {
  background-color: #007bff;
}

.screenshots-slider .swiper-button-prev,
.screenshots-slider .swiper-button-next {
  color: #007bff;
  width: 44px;
  height: 44px;
}

.screenshots-slider .swiper-button-prev:after,
.screenshots-slider .swiper-button-next:after {
  font-size: 24px;
}

/* Mobile responsive for Screenshots */
@media (max-width: 768px) {
  .screenshots-slider {
    padding: 20px 30px 40px 30px;
  }
  
  .screenshots-slider .swiper-button-prev,
  .screenshots-slider .swiper-button-next {
    display: none;
  }
  
  #screenshots .screenshot-item img {
    max-height: 500px;
    width: auto;
  }
  
  #screenshots .screenshot-item p {
    font-size: 14px;
    margin-top: 10px;
  }
}

.portfolio #portfolio-flters {
  list-style: none;
  padding: 0;
  margin: 0 auto 35px auto;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #5846f9;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(44, 73, 100, 0.8);
  padding: 10px 15px;
  border-radius: 4px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #5846f9;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# CTA/Download
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(88, 70, 249, 0.9), rgba(111, 93, 219, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #5846f9;
}

.download-info h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.download-info h4 i {
  color: #ffd700;
  margin-right: 10px;
}

.download-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.download-buttons {
  text-align: center;
}

/* Download section buttons */
#download .download-btn {
  text-align: center;
}

#download .download-btn .btn {
  white-space: nowrap !important;
  padding: 12px 30px;
  font-size: 14px;
  display: inline-block;
  min-width: 250px;
  width: auto !important;
  max-width: none !important;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

#download .download-btn .btn i {
  margin-right: 6px;
  font-size: 16px;
}

@media (max-width: 991px) {
  #download .download-btn .btn {
    width: 100%;
    font-size: 15px;
    padding: 12px 25px;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  #download .download-btn .btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

.app-download-btn {
  display: inline-block;
  margin: 10px;
  transition: transform 0.3s ease;
  white-space: nowrap;
}

.app-download-btn:hover {
  transform: translateY(-5px);
}

.app-download-btn img {
  height: 60px;
  width: auto;
  max-width: 200px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #5846f9;
  border-bottom: 3px solid #5846f9;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #5846f9;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f1fd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c4964;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #5846f9;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #5846f9;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #5846f9;
  border-bottom: 3px solid #5846f9;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #5846f9;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #5846f9;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #6f5ddb;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.faq-section {
  margin-top: 50px;
}

.faq-section h3 {
  color: #2c4964;
  font-weight: 700;
  margin-bottom: 30px;
}

.accordion-button {
  background: #f8f9ff;
  color: #2c4964;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: #5846f9;
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #263238;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #2c4964;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: #fff;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Noto Sans KR', sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #bae3f0;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #bae3f0;
}

#footer .footer-top .app-download-buttons {
  margin-top: 20px;
}

#footer .footer-top .app-btn {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}

#footer .footer-top .app-btn img {
  height: 40px;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  #hero {
    padding: 100px 0 60px 0;
  }

  #hero h1 {
    font-size: 36px;
  }

  #hero h2 {
    font-size: 18px;
  }

  #hero .hero-img img {
    max-width: 60%;
  }

  .section-title h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  #hero {
    padding: 80px 0 40px 0;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  #hero h2 {
    font-size: 16px;
    line-height: 1.4;
    margin: 15px 0 20px 0;
  }

  #hero .hero-img img {
    max-width: 80%;
  }

  #hero .icon-boxes {
    margin-top: 60px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .about .content h3 {
    font-size: 22px;
  }

  .services .icon-box {
    padding: 40px 20px;
  }

  .cta {
    padding: 80px 0;
  }

  .cta h3 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  #hero h1 {
    font-size: 24px;
  }

  #hero h2 {
    font-size: 14px;
  }

  #hero .btn-get-started,
  #hero .btn-download {
    font-size: 14px;
    padding: 10px 24px;
    margin: 5px;
  }

  .services .icon-box {
    padding: 30px 15px;
  }

  .section-title h2 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Additional Mobile Responsive Styles
--------------------------------------------------------------*/
@media (max-width: 768px) {
  /* Container adjustments */
  .container, .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Hero section mobile */
  #hero {
    text-align: center;
  }
  
  #hero .btn-dark, #hero .btn-success {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
  
  #hero .d-flex {
    flex-direction: column;
    align-items: center;
  }
  
  /* Section spacing */
  section {
    padding: 40px 0;
  }
  
  /* About section mobile */
  #about {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  #about .about-images {
    margin-top: 30px;
  }
  
  #about img {
    margin-bottom: 15px;
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }
  
  #about .content {
    padding: 0 10px;
  }
  
  /* Features section mobile */
  #features .nav-tabs {
    flex-direction: column;
    width: 100%;
  }
  
  #features .nav-tabs .nav-item {
    width: 100%;
    margin-bottom: 10px;
  }
  
  #features .nav-tabs .nav-link {
    padding: 15px;
    text-align: left;
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  #features .nav-link span {
    margin-right: 15px;
    font-size: 36px;
  }
  
  #features .tab-content img {
    width: 100%;
    margin-top: 20px;
  }
  
  /* Screenshots section mobile */
  #screenshots .col-6 {
    padding: 5px;
  }
  
  #screenshots .app-screen-small {
    height: 300px \!important;
    font-size: 12px;
  }
  
  #screenshots .app-screen-small i {
    font-size: 30px \!important;
  }
  
  #screenshots .app-screen-small h5 {
    font-size: 14px;
  }
  
  #screenshots .app-screen-small p {
    font-size: 11px;
    padding: 0 10px;
  }
  
  /* Download section mobile */
  #download img {
    margin-bottom: 30px;
    width: 100%;
  }
  
  #download .download-btn .btn {
    font-size: 13px;
    padding: 12px 20px;
    width: 100%;
  }
  
  /* Contact section mobile */
  #contact .info-item {
    margin-bottom: 20px;
  }
  
  #contact .map-container {
    margin-top: 30px;
  }
  
  #contact iframe {
    height: 300px;
  }
  
  /* Footer mobile */
  .footer {
    padding: 40px 0 20px 0;
    text-align: center;
  }
  
  .footer h5, .footer h6 {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .footer ul {
    padding-left: 0;
  }
  
  .footer .social-links {
    margin-top: 15px;
  }
  
  /* Mobile navigation toggle */
  .mobile-nav-toggle {
    display: block \!important;
  }
  
  /* Hide desktop navigation */
  .navmenu {
    display: none \!important;
  }
}

/* Small devices (landscape phones, 576px and down) */
@media (max-width: 576px) {
  #hero h1 {
    font-size: 24px;
  }
  
  #hero h2 {
    font-size: 14px;
  }
  
  .section-title h2 {
    font-size: 24px;
  }
  
  #screenshots .col-6 {
    width: 100%;
  }
  
  #screenshots .app-screen-small {
    height: 350px \!important;
  }
}
