/*
Theme Name: PGM
Theme URI: https://example.com/pgm
Author: PGM Team
Author URI: https://example.com
Description: Pioneer Growth Monetization - A modern Bootstrap-based WordPress theme
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pgm
Domain Path: /languages
Tags: bootstrap, custom-header, custom-menu, featured-images, theme-options
*/

:root {
  --primary-color: #7b2cbf;
  --secondary-color: #9d4edd;
  --accent-color: #e0aaff;
  --dark-bg: #000000;
  --card-bg: #0a0a0a;
  --text-color: #ffffff;
  --text-muted: #b0b0b0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-color);
  overflow-x: hidden;
}

.navbar {
  background-color: rgba(10, 10, 15, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(123, 44, 191, 0.2);
}

.navbar-brand {
  padding: 0;
}

.logo-img {
  height: 30px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar-nav > .menu-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar-nav > .menu-item > a {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  padding: 0.8rem 1.2rem !important;
  transition: all 0.3s ease;
  text-decoration: none !important;
  display: block;
}

.navbar-nav > .menu-item > a:hover,
.navbar-nav > .menu-item:hover > a,
.navbar-nav > .current-menu-item > a,
.navbar-nav > .current_page_item > a,
.navbar-nav > .current-menu-parent > a {
  color: #ffffff !important;
  text-decoration: none !important;
}

.navbar-nav .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 15, 0.98);
  min-width: 200px;
  padding: 0.5rem 0;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-nav .menu-item-has-children:hover .sub-menu {
  display: block;
}

.navbar-nav .sub-menu > .menu-item > a {
  padding: 0.5rem 1.5rem !important;
  font-size: 0.85rem;
}

.navbar-extra {
  gap: 1.5rem;
}

.lang-dropdown {
  position: relative;
}

.lang-switcher {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lang-switcher:hover,
.lang-switcher.show {
  color: #ffffff !important;
}

.lang-switcher .bi-globe {
  font-size: 1.1rem;
}

.dropdown-menu {
  background: rgba(10, 10, 15, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 140px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-top: 0.5rem;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
}

.dropdown-menu-end {
  right: 0;
  left: auto;
}

.search-icon {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.search-icon:hover {
  color: #ffffff !important;
}

.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}

.hero-title {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #9d4edd;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 600px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(123, 44, 191, 0.4);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 44, 191, 0.6);
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.section {
  padding: 100px 0;
  background-color: #000000;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 4rem;
  font-size: 1.1rem;
}

.service-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(123, 44, 191, 0.2);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(123, 44, 191, 0.3);
}

.service-card-image-wrapper {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-card-image-wrapper img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-box {
  padding: 2rem;
  text-align: center;
}

.feature-icon {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.feature-box h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.solution-card {
  background: #000000;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(123, 44, 191, 0.2);
  transition: all 0.3s ease;
  min-height: 150px;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--card-bg-image);
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 0;
}

.solution-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(123, 44, 191, 0.2);
}

.solution-card h3 {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.solution-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 3rem 0;
}

.step-circle {
  width: 140px;
  height: 140px;
  border-radius: 30px;
  background: #000000;
  border: 2px solid rgba(123, 44, 191, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0 0 20px rgba(123, 44, 191, 0.3);
}

.step-circle span {
  color: #ffffff;
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.4;
}

.step-arrow {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 700;
  opacity: 0.8;
  line-height: 1;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
  }
  
  .step-arrow {
    transform: rotate(90deg);
  }
  
  .step-circle {
    width: 120px;
    height: 120px;
  }
}

.industry-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 250px;
  margin-bottom: 1.5rem;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(123, 44, 191, 0.3);
}

.industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.industry-card .card-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}

.industry-card h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0;
  font-weight: 500;
}

.cta-section {
  padding: 80px 0;
  text-align: center;
}

.cta-card {
  border-radius: 20px;
  padding: 80px 20px;
  margin: 0 15px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
}

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

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.footer {
  background-color: #0a0a0a;
  padding: 3rem 0;
  border-top: 1px solid rgba(123, 44, 191, 0.2);
}

.footer p {
  color: var(--text-muted);
  margin-bottom: 0;
}

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