/*
Theme Name:           Flatsome
Theme URI:            http://flatsome.uxthemes.com
Author:               UX-Themes
Author URI:           https://uxthemes.com
Description:          Multi-Purpose Responsive WooCommerce Theme
Version:              3.17.99
Requires at least:    5.4.0
Requires PHP:         5.6.20
WC requires at least: 4.7.0
Text Domain:          flatsome
License:              https://themeforest.net/licenses
License URI:          https://themeforest.net/licenses
*/


/***************
All custom CSS should be added to Flatsome > Advanced > Custom CSS,
or in the style.css of a Child Theme.
***************/
#intro-section {
  position: relative;
  background: #000;
  color: #fff;
  padding: 80px 5% 100px;
  overflow: hidden;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.intro-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-left {
  flex: 1 1 55%;
}

.intro-left h1 {
  color: #ff0077;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}

#intro-section a:not(.btn-register) {
  color: #ff0077 !important;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

#intro-section a:not(.btn-register):hover {
  color: #ffae00 !important;
  text-shadow: 0 0 8px rgba(255, 174, 0, 0.6);
}

.btn-register {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  background: linear-gradient(90deg, #ff0077, #ffae00);
  color: #fff !important;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 0, 100, 0.4);
  transition: all 0.3s ease;
}

.btn-register:hover {
  background: #fff;
  color: #000 !important;
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.6);
}

.intro-right {
  flex: 1 1 40%;
  text-align: right;
}

.intro-right img {
  max-width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 0, 100, 0.3);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.service-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 70px;
  margin-bottom: 40px;
  color: #ffae00;
  position: relative;
  z-index: 2;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(255, 174, 0, 0.6);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-box {
  background: rgba(30, 30, 30, 0.9);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
  color: #ddd;
  border-top: 3px solid transparent;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.service-box h3 {
  color: #ffae00;
  margin-bottom: 12px;
  font-size: 1.2rem;
  text-shadow: 0 0 6px rgba(255, 174, 0, 0.4);
}

.service-box.green { border-top-color: #00c853; }
.service-box.blue { border-top-color: #2979ff; }
.service-box.pink { border-top-color: #ff0077; }
.service-box.orange { border-top-color: #ff9800; }

.services a {
  color: #ff0077 !important;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.services a:hover {
  color: #ffae00 !important;
  text-shadow: 0 0 10px rgba(255, 174, 0, 0.6);
}

@media (max-width: 768px) {
  .intro-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .intro-right {
    text-align: center;
  }

  .intro-right img {
    max-width: 80%;
  }

  .intro-left h1 {
    font-size: 1.5rem;
  }
}
h1, h2, h3, h4, h5 {
    background: linear-gradient(135deg, #ff0077 0%, #ff5cfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
