:root {
  --primary-color: #ff3366;
  --secondary-color: #ff9933;
  --dark-color: #222;
  --light-color: #fff;
  --gray-color: #f0f0f0;
  --gradient: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--dark-color);
  color: var(--light-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background-color: rgba(34, 34, 34, 0.9);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--light-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-text span {
  color: var(--primary-color);
}

/* Main Banner */
.main-banner {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(34, 34, 34, 0.7), rgba(34, 34, 34, 0.9)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="800" height="800" viewBox="0 0 800 800"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="%23333" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.banner-content {
  width: 100%;
  max-width: 700px;
  z-index: 10;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.banner-title span {
  color: var(--primary-color);
}

.banner-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.btn {
  display: inline-block;
  background: var(--gradient);
  color: var(--light-color);
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(255, 51, 102, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(255, 51, 102, 0.4);
}

.btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
}

.btn:hover:after {
  animation: shine 1.5s infinite;
}

@keyframes shine {
  100% {
    transform: translateX(100%);
  }
}

/* Features Section */
.features {
  background-color: var(--light-color);
  color: var(--dark-color);
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--dark-color);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--gradient);
}

.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto;
}

.feature-icon svg {
  width: 60px;
  height: 60px;
}

.feature-content {
  padding: 20px 30px 30px;
  text-align: center;
}

.feature-content h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.feature-content p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

/* Process Section */
.process {
  padding: 100px 0;
  background-color: #222;
  color: var(--light-color);
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}

.process-step {
  flex: 0 0 calc(25% - 30px);
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  position: relative;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* CTA Section */
.cta {
  background: var(--gradient);
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta p {
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
}

.btn-light {
  background: var(--light-color);
  color: var(--primary-color);
}

/* Footer */
footer {
  background-color: #111;
  padding: 60px 0 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-about p {
  color: #999;
  margin-bottom: 20px;
}

.footer-links h4 {
  color: var(--light-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary-color);
}

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

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

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

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

.copyright {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .banner-title {
    font-size: 2.8rem;
  }
  
  .process-step {
    flex: 0 0 calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .banner-title {
    font-size: 2.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-container {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex: 0 0 100%;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .banner-title {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}
