/**
* Template Name: SoftLand
* Template URL: https://bootstrapmade.com/softland-bootstrap-app-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #1a1a1a; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0d1317; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #00d4aa; /* Primary green accent color that represents your brand - modern teal green */
  --secondary-color: #ff4757; /* Secondary accent color for warnings and important elements */
  --success-color: #2ed573; /* Success/positive actions color - vibrant green */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --light-gray: #f8f9fa; /* Light gray for subtle backgrounds */
  --dark-gray: #2c2c2c; /* Dark gray for secondary text */
  --black-primary: #1a1a1a; /* Primary black tone */
  --black-secondary: #2c2c2c; /* Secondary black tone for contrast */
  --green-primary: #00d4aa; /* Primary brand green - modern teal green */
  --green-secondary: #00b894; /* Darker green for hover states */
  --green-light: #00f5d4; /* Light green for backgrounds */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #00d4aa;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #1a1a1a; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #00b894; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1a1a1a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #2c2c2c;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.95);
  --default-color: #1a1a1a;
  --heading-color: #1a1a1a;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 212, 170, 0.1);
}

.scrolled .navmenu a {
  color: #1a1a1a !important;
}

.scrolled .mobile-nav-toggle {
  color: #1a1a1a !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    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 li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

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

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    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;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .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-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

.footer p {
  font-size: 15;
  font-style: italic;
  padding: 0;
  margin: 0 0 30px 0;
}

.footer .social-links {
  margin: 0 0 30px 0;
}

.footer .social-links a {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  line-height: 1;
  margin: 0 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: var(--green-secondary);
  text-decoration: none;
}

.footer .copyright {
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .credits {
  font-size: 13px;
  padding-top: 5px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: var(--green-secondary);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--green-secondary) 100%);
}

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

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

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-default);
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  border-radius: 3px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .download-btn+.download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

.hero .hero-img {
  position: relative;
  min-height: 600px;
}

.hero .hero-img .phone-1 {
  margin-top: 20px;
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
}

.hero .hero-img .phone-2 {
  position: absolute;
  left: 0;
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  width: 250px;
  margin-top: 70px;
  margin-left: 100px;
}

@media screen and (max-width: 992px) {
  .hero .hero-img {
    text-align: center;
    overflow: hidden;
    min-height: 600px;
  }

  .hero .hero-img .phone-1,
  .hero .hero-img .phone-2 {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/* Hero Stats Styling */
.hero .hero-stats {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero .stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero .stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0;
  color: #ffffff;
}

/* Trust Badges */
.hero .trust-badges {
  opacity: 0.8;
}

/* Enhanced Download Buttons */
.download-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--green-secondary) 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
  border: none;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 170, 0.4);
  color: white;
}

.download-btn i {
  font-size: 1.2rem;
}

/* Why Choose Us Lists */
.why-choose-us ul li {
  padding: 5px 0;
  font-size: 0.95rem;
}

.why-choose-us .bi-check-circle-fill {
  font-size: 1rem;
  color: var(--success-color);
}

/* Enhanced Icon Boxes */
.about .icon-box {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 212, 170, 0.1);
  height: 100%;
}

.about .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 170, 0.15);
}

.about .icon-box i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  display: block;
}

.about .icon-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.about .icon-box p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Enhanced Featured Cards */
.featured .card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 212, 170, 0.1);
  height: 100%;
}

.featured .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 212, 170, 0.15);
}

.featured .card .img {
  margin-bottom: 20px;
}

.featured .card .img i {
  font-size: 3rem;
  color: var(--accent-color);
  background: rgba(0, 212, 170, 0.1);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.featured .card:hover .img i {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.featured .card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 20px 0 15px;
}

.featured .card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-gray);
}

  /* Enhanced Pricing Cards */
  .pricing .pricing-item {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

/* Standard ul styles for pricing items - replaced with .package-features above */

.pricing .pricing-item .buy-btn {
  margin-top: auto;
}

.pricing .featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
  position: relative;
}

.pricing .featured::before {
  content: "Ən Məşhur";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing .pricing-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 170, 0.15);
}

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

.pricing .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.pricing .pricing-item:hover .icon {
  background: var(--accent-color);
  transform: scale(1.1);
}

.pricing .pricing-item:hover .icon i {
  color: white;
}

/* Pricing h4 styles moved to .current-price class above for better specificity */

.pricing .buy-btn {
  background: var(--accent-color);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 20px;
}

.pricing .buy-btn:hover {
  background: var(--green-secondary);
  transform: translateY(-2px);
  color: white;
}

/* Testimonials Enhancement */
.testimonials .testimonial-item {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonials .stars {
  margin-bottom: 15px;
}

.testimonials .stars i {
  color: #ffc107;
  font-size: 1rem;
}

.testimonials .testimonial-item p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonials .profile {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonials .testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .profile h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.testimonials .profile h4 {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

/* Contact Info Items */
.contact .info-item {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 224, 180, 0.15);
}

.contact .info-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.contact .info-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Footer Enhancement */
.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 50px 0 0;
}

.footer .icon {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 40px;
}

.footer h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer p, .footer span {
  color: #cccccc;
  line-height: 1.6;
}

.footer .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 224, 180, 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer .social-links a:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

.footer .copyright {
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #cccccc;
}

.footer .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .credits a:hover {
  text-decoration: underline;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}

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

.scroll-top:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero .stat-number {
    font-size: 1.5rem;
  }
  
  .hero .stat-label {
    font-size: 0.75rem;
  }
  
  .hero .hero-stats {
    padding: 15px;
  }
  
  .download-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .featured .card,
  .about .icon-box,
  .pricing .pricing-item {
    margin-bottom: 30px;
  }
  
  .pricing .featured {
    transform: none;
    margin-top: 0;
  }
}

/* Loading Animation for Images */
img {
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* FAQ Section */
.faq .faq-container .faq-item {
  background: #ffffff;
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid rgba(0, 224, 180, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  padding: 10px 0 0 0;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background: rgba(0, 212, 170, 0.05);
  border-color: var(--accent-color);
  box-shadow: 0 5px 25px rgba(0, 212, 170, 0.1);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/* Compact Features Section */
.features {
  padding: 40px 0;
  background: rgba(0, 212, 170, 0.02);
}

.features .feature-item {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 212, 170, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 170, 0.15);
  border-color: var(--accent-color);
}

.features .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--green-secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.features .feature-icon i {
  font-size: 24px;
  color: #ffffff;
}

.features .feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #2c3e50;
}

.features .feature-stat {
  margin-top: 10px;
}

.features .stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  line-height: 1;
}

/* Package Description Styling */
.pricing .package-description {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
  line-height: 1.5;
  font-style: italic;
}

/* High DPI Display Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero .stat-number,
  .pricing h4 {
    text-rendering: optimizeLegibility;
  }
}

/* =============================================================================
 * Download CTA Section
 * ============================================================================= */
.download-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,50 Q25,25 50,50 T100,50 V100 H0 Z" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 100px 100px;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translateX(0px); }
  100% { transform: translateX(-100px); }
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-icon {
  font-size: 3rem;
  color: var(--accent-color);
}

.download-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.download-cta .lead {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.download-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  padding: 15px 25px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  min-width: 200px;
}

.download-btn.primary {
  background: var(--accent-color);
  color: var(--black-primary);
  border: 2px solid var(--accent-color);
}

.download-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.download-btn.primary:hover {
  background: var(--green-secondary);
  color: white;
  border-color: var(--green-secondary);
}

.download-btn.secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: white;
}

.btn-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-content i {
  font-size: 1.8rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-text small {
  font-size: 0.8rem;
  opacity: 0.7;
  font-weight: 400;
}

.btn-text strong {
  font-size: 1rem;
  font-weight: 600;
}

.app-features {
  margin: 2rem 0;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.feature-badge i {
  font-size: 1rem;
  color: var(--accent-color);
}

.system-requirements {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.system-requirements i {
  margin-right: 5px;
}

/* =============================================================================
 * Footer Styles
 * ============================================================================= */
.footer {
  background: #1a1a1a;
  color: #e0e0e0;
  padding: 60px 0 0;
}

.footer h3,
.footer h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-about p {
  line-height: 1.6;
  color: #b0b0b0;
}

.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: #b0b0b0;
}

.footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  width: 20px;
}

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

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

.footer-links ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #ffffff;
}

.footer-social p {
  color: #b0b0b0;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: #b0b0b0;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--green-secondary);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.copyright {
  margin-top: 40px;
}

.copyright p {
  margin: 0;
  color: #b0b0b0;
  font-size: 0.9rem;
}

/* =============================================================================
 * Responsive Styles
 * ============================================================================= */
@media (max-width: 768px) {
  .download-cta h2 {
    font-size: 2rem;
  }
  
  .download-cta .lead {
    font-size: 1.1rem;
  }
  
  .download-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .download-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .footer {
    padding: 40px 0 0;
  }
  
  .footer .row {
    text-align: center;
  }
  
  .footer-links ul {
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .app-features .row {
    text-align: center;
  }
  
  .feature-badge {
    margin: 5px;
  }
}

@media (max-width: 576px) {
  .cta-icon {
    font-size: 2.5rem;
  }
  
  .download-cta h2 {
    font-size: 1.8rem;
  }
  
  .download-cta .lead {
    font-size: 1rem;
  }
}

/* =============================================================================
 * Pricing Section Improvements
 * ============================================================================= */
@media (max-width: 1199px) {
  .pricing .row .col-xl-3 {
    max-width: 50%;
    flex: 0 0 50%;
  }
}

@media (max-width: 767px) {
  .pricing .row .col-xl-3 {
    max-width: 100%;
    flex: 0 0 100%;
  }
  
  .pricing .pricing-item {
    min-height: auto;
    padding: 30px 20px;
  }
  
  .pricing .current-price {
    font-size: 2rem;
  }
  
  .pricing .current-price sup {
    font-size: 1rem;
  }
  
  .pricing .package-features .point-item {
    font-size: 0.85rem;
    margin-bottom: 10px;
    padding: 6px 0;
  }
}

/* =============================================================================
 * Enhanced Package Points - These styles are now integrated above
 * ============================================================================= */

.pricing .price-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
}

.pricing .current-price {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1.2;
}

.pricing .current-price sup {
  font-size: 1.2rem;
  font-weight: 700;
  vertical-align: super;
}

.pricing .current-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.pricing .old-price {
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
  text-decoration-color: var(--secondary-color);
  text-decoration-thickness: 2px;
  opacity: 0.8;
}

/* Package Features List */
.pricing .package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing .package-features .point-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  line-height: 1.4;
}

.pricing .package-features .point-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.pricing .package-features .point-item i {
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 1rem;
}

.pricing .package-features .point-item.active i {
  color: var(--success-color);
}

.pricing .package-features .point-item.inactive i {
  color: var(--secondary-color);
}

.pricing .package-features .point-item.active span {
  color: var(--default-color);
  font-weight: 500;
}

.pricing .package-features .point-item.inactive span {
  color: #6c757d;
  text-decoration: line-through;
  opacity: 0.6;
  font-weight: 400;
}