/* Base Styles */
.salesman-body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #0a192f;
  color: #e6f1ff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background Elements */
.connection-lines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(100, 255, 218, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 255, 218, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -2;
  opacity: 0.3;
}

.floating-clients {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.client-particle {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url('../Assets/client-icon.png') center/contain no-repeat;
  animation: floatClient linear infinite;
}

/* Main Container */
.salesman-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

/* Hero Section */
.sales-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}

.hero-image-container {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 3px solid #64ffda;
  padding: 10px;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.5s ease;
}

.hero-image-container:hover .hero-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.hero-badges {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(23, 42, 69, 0.8);
  border-radius: 50px;
  padding: 15px 20px;
  border: 1px solid rgba(100, 255, 218, 0.3);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #64ffda, #0a192f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a192f;
  font-size: 1.5rem;
}

.badge-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #64ffda;
}

.badge-label {
  font-size: 0.9rem;
  color: #ccd6f6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content {
  text-align: center;
}

.hero-name {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-name span {
  display: block;
  background: linear-gradient(90deg, #e6f1ff, #64ffda);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-title {
  font-size: 1.5rem;
  color: #8892b0;
}

.title-main {
  display: block;
  font-weight: 600;
  color: #64ffda;
}

.title-sub {
  font-style: italic;
}

/* Sales Dashboard */
.sales-dashboard {
  background: rgba(23, 42, 69, 0.7);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 80px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 255, 218, 0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.dashboard-header h2 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.8rem;
  color: #64ffda;
}

.dashboard-header i {
  font-size: 2rem;
}

.view-toggle {
  display: flex;
  background: rgba(10, 25, 47, 0.5);
  border-radius: 50px;
  padding: 5px;
}

.view-toggle button {
  border: none;
  background: none;
  padding: 10px 20px;
  border-radius: 50px;
  color: #ccd6f6;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-toggle button.active {
  background: rgba(100, 255, 218, 0.2);
  color: #64ffda;
  font-weight: 600;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.metric-card {
  background: rgba(10, 25, 47, 0.5);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transition: all 0.5s ease;
}

.metric-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  border-color: rgba(100, 255, 218, 0.3);
}

.metric-value {
  font-size: 3rem;
  font-weight: 700;
  color: #64ffda;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 1.1rem;
  color: #ccd6f6;
  margin-bottom: 20px;
}

.metric-graph {
  height: 100px;
}

/* Testimonials */
.testimonials-section {
  margin-bottom: 80px;
}

.section-heading {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #64ffda, #4b86b4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading span {
  display: block;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.testimonial-card {
  background: rgba(23, 42, 69, 0.7);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(100, 255, 218, 0.1);
  transition: all 0.5s ease;
}

.client-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #64ffda, #0a192f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #0a192f;
  font-size: 2rem;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e6f1ff;
  margin-bottom: 20px;
  font-style: italic;
}

.client-info {
  margin-top: 20px;
}

.client-name {
  font-weight: 700;
  color: #64ffda;
  margin-bottom: 5px;
}

.client-role {
  color: #8892b0;
  font-size: 0.9rem;
}

/* Philosophy Section */
.philosophy-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}

.philosophy-visual {
  position: relative;
  min-height: 400px;
  background: linear-gradient(135deg, #0077b6, #00b4d8);
  border-radius: 20px;
  overflow: hidden;
}

#relationshipWeb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.philosophy-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.philosophy-content h2 {
  font-size: 2.5rem;
  color: #64ffda;
  margin-bottom: 30px;
}

blockquote {
  font-size: 1.8rem;
  font-style: italic;
  color: #e6f1ff;
  line-height: 1.6;
  margin-bottom: 30px;
  position: relative;
}

blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 5rem;
  color: rgba(100, 255, 218, 0.1);
  z-index: -1;
}

cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: #64ffda;
  margin-top: 15px;
}

.philosophy-points {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.point {
  display: flex;
  align-items: center;
  gap: 15px;
}

.point-icon {
  width: 40px;
  height: 40px;
  background: rgba(100, 255, 218, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64ffda;
  font-size: 1.2rem;
}

.point-text {
  font-size: 1.1rem;
  color: #ccd6f6;
}

/* Footer */
.sales-footer {
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #64ffda, #0a192f);
  color: #0a192f;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(100, 255, 218, 0.3);
}

/* Swiper Styles */
.swiper-pagination-bullet {
  background: #8892b0;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #64ffda;
}

/* Animations */
@keyframes floatClient {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .philosophy-section {
    grid-template-columns: 1fr;
  }
  
  .philosophy-visual {
    min-height: 300px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-name {
    font-size: 2.5rem;
  }
  
  .section-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 2rem;
  }
  
  .hero-badges {
    flex-direction: column;
    bottom: -80px;
  }
  
  .dashboard-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  blockquote {
    font-size: 1.4rem;
  }
}