/* Security Enhancements CSS */

/* General Section Styling */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--kt-text-primary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

/* Trusted Security Partner Section */
.trusted-partners {
  background-color: #ffffff;
  padding: 5rem 2rem;
}

.partner-icons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem 4rem;
  max-width: 900px;
  margin: 2rem auto 0 auto;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.partner-item:hover {
  transform: scale(1.05);
}

.partner-item img {
  height: 50px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  filter: grayscale(50%);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-title {
  font-size: 0.875rem;
  color: var(--kt-text-primary);
  font-weight: 500;
}

/* Success Stories Section */
.success-stories {
  background-color: transparent;
  padding: 6rem 2rem;
}

.story-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.story-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
}

.story-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.story-icon {
  width: 36px;
  height: 36px;
  margin-right: 1rem;
  color: #4f46e5;
}

.industry-badge {
  background: #eef2ff;
  color: #4f46e5;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: auto;
}

.story-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.75rem;
}

.story-description {
  font-size: 0.95rem;
  color: var(--kt-text-primary);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.story-metrics {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e5e7eb;
  padding-top: 1.5rem;
  margin-top: auto;
}

.metric-item {
  text-align: left;
}

.metric-label {
  display: block;
  font-size: 0.8rem;
  color: var(--kt-text-primary);
  margin-bottom: 0.25rem;
}

.metric-value {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

/* Security Resources Hub */
.security-resources {
  background: #f8f9fa;
  padding: 5rem 2rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.resource-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.resource-icon {
  font-size: 2rem;
  color: #186aff;
  margin-bottom: 1rem;
}

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

.resource-card p {
  font-size: 1rem;
  color: var(--kt-text-secondary);
  flex-grow: 1;
}

/* Security Assessment Tool */
.security-assessment {
  background: transparent;
  color: var(--kt-dark);
  padding: 5rem 2rem;
  text-align: center;
  border-radius: 24px;
  margin: 6rem 2rem 4rem;
  box-shadow: none;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-assessment:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.assessment-content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.resources-content-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.screenshot-placeholder {
  width: 100%;
  height: 400px;
  background-color: #e9ecef;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--kt-text-secondary);
}

.screenshot-placeholder::before {
  content: "Screenshot Placeholder";
}

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

.assessment-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.assessment-description {
  font-size: 1.1rem;
  color: var(--kt-text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.7;
}

.assessment-button {
  padding: 1rem 2.5rem;
  border: none;
  color: #186aff;
  background-color: #ffffff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.assessment-button:hover {
  background-color: #f0f2ff;
  color: #0d4ecc;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Stats Section */
.stats-section {
  background-color: #f8f9fc;
  padding: 6rem 2rem;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #186aff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  color: var(--kt-text-primary);
}

/* About Section */
.about-section {
  background-color: #f8f9fa;
  padding: 6rem 2rem;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* Blogs Section */
.blogs-section {
  background-color: #f8f9fa;
  padding: 6rem 2rem;
}

@media (max-width: 768px) {
  .story-cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
