* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.header::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0;
  position: relative;
  z-index: 10;
  float:right;
}

@media (max-width: 768px) {

.navbar {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  position: relative;
  z-index: 10;
  float:right;
}


}


.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu li a:hover {
  color: #FFD700;
  transform: translateY(-2px);
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #FFD700;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.contact-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-left:35px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-btn:hover {
  background: white;
  color: #8B2F9B;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 80px 0 120px;
  position: relative;
  z-index: 5;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  color: white;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-text h1 span {
  color: #FFD700;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.cta-btn {
  background: #FFD700;
  color: #333;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  background: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:115px 0 0 0;
}

.card-mockup {
  max-width: 590px;
  min-height: 490px;
  border-radius: 15px;
  position: relative;
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: all 0.3s ease;
}

.card-mockup:hover {
  transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) translateY(-10px);
  /*box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);*/
}

.card-content {
  padding: 25px;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-logo {
  font-size: 18px;
  font-weight: 700;
  color: #FFD700;
}

.card-title {
  font-size: 24px;
  font-weight: 600;
  margin: 10px 0;
}

.card-subtitle {
  font-size: 14px;
  opacity: 0.8;
}

/* Client Logos Section */
.clients-section {
  background: white;
  padding: 60px 0;
  border-top: 1px solid #eee;
}

.clients-title {
  text-align: center;
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  font-weight: 500;
}

.clients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.client-logo {
  height: 40px;
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.client-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Main Content Section */
.main-content {
  padding: 100px 0;
  background: #f8f9fa;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.content-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.3;
}

.content-text h2 span {
  color: #8B2F9B;
}

.content-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.learn-more-btn {
  background: #8B2F9B;
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.learn-more-btn:hover {
  background: #6B1B7B;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(139, 47, 155, 0.4);
}

/* Services Grid */
.services-section {
  padding: 100px 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-card {
  background: linear-gradient(135deg, #8B2F9B 0%, #6B1B7B 100%);
  border-radius: 15px;
  padding: 30px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(139, 47, 155, 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #8B2F9B 0%, #6B1B7B 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-text {
  color: white;
}

.cta-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta-text p {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 30px;
}

.cta-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.person-image {
  width: 300px;
  height: 400px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 400"><rect width="300" height="400" fill="%23f0f0f0"/><text x="150" y="200" text-anchor="middle" fill="%23999" font-size="16">Person Image</text></svg>');
  background-size: cover;
  background-position: center;
  border-radius: 15px;
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: white;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.partner-logo {
  height: 50px;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Training Section */
.training-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.training-content {
  text-align: center;
  margin-bottom: 60px;
}

.training-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.training-content p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.training-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.training-feature {
  text-align: center;
  padding: 30px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #8B2F9B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 32px;
}

.training-feature h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.training-feature p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Media Center */
.media-section {
  background: linear-gradient(135deg, #8B2F9B 0%, #6B1B7B 100%);
  padding: 100px 0;
  color: white;
}

.media-header {
  text-align: center;
  margin-bottom: 60px;
}

.media-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.media-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.media-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.media-image {
  width: 100%;
  height: 200px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.media-content {
  padding: 25px;
}

.media-date {
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 10px;
}

.media-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.media-excerpt {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.5;
}


/* Mobile Styles */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .training-features {
    grid-template-columns: 1fr;
  }
  
  .media-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-grid {
    gap: 40px;
  }
  
  .clients-grid {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .hero {
    padding: 40px 0 60px;
  }
  
  .hero-text h1 {
    font-size: 28px;
  }
  
  .content-text h2 {
    font-size: 28px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .card-mockup {
    width: 280px;
    height: 180px;
  }
}
