/* assets/css/partners-veritas.css - COMPLETE VERITAS PAGE */
/* Identical structure to IBM/Oracle/Cisco - perfect consistency */

:root {
  --primary: #012970;
  --accent: #fcb614;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --text: #475569;
  --text-light: #64748b;
}

/* Hero */
.veritas-hero {
  padding: 140px 0 40px;
  /* background: linear-gradient(135deg, var(--white) 0%, #e8f5e8 50%); */
}

.hero-grid {
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.partner-badge {
  width: 55%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  border: 2px solid var(--accent);
}

.partner-logo {
  height: 32px;
  width: auto;
}

.main-title {
  color: var(--primary);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text {
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 450px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.stat-item {
  flex: 1;
  text-align: center;
}
.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.hero-image {
  backdrop-filter: blur(10px);
  border-radius: 12px;
  width: 80%;
  width: 400px;
}

.hero-image img {
  display: block;
  border-radius: 20px; /* Slightly smaller than the container */
  object-fit: cover;
  width: 400px;
}

/* Common Sections */
.veritas-value,
.solutions-section,
.services-section,
.response-section,
.benefits-section,
.platform-support {
  padding: 40px 0;
}

.veritas-value,
.response-section,
.benefits-section {
  background: var(--white);
}
.solutions-section,
.services-section,
.platform-support {
  background: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: var(--primary);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* Content */
.value-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.value-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
}

/* Grids */
.solutions-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.solution-card,
.service-card {
  padding: 32px 24px;
  border-left: 4px solid var(--accent);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.solution-card:hover,
.service-card:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.solution-icon,
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(252, 182, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}

.solution-card h4,
.service-card h4 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.solution-card p,
.service-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Response Grid */
.response-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.response-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.response-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.response-time {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.response-label {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefit-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.benefit-number {
  background: var(--accent);
  color: var(--primary);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 4px;
}

.benefit-item h4 {
  color: var(--primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.benefit-item p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Platforms */
.platforms-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 900px;
  margin: 60px auto 0;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.platform-item {
  background: linear-gradient(135deg, var(--accent), #e6a700);
  color: var(--primary);
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(252, 182, 20, 0.3);
  transition: all 0.3s ease;
}

.platform-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(252, 182, 20, 0.4);
}

/* MOBILE */
@media (max-width: 992px) {
  .hero-grid {
    text-align: center;
    padding: 0px;
  }

  .partner-badge {
    width: 45%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .veritas-hero {
    padding: 80px 20px 20px 0px;
  }

  .hero-stats {
    flex-direction: row !important;
    gap: 16px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
  }

  .stat-item {
    flex: 1 !important;
    min-width: 90px !important;
  }

  .stat-number {
    font-size: 22px !important;
  }
  .stat-label {
    font-size: 12px !important;
  }
  .main-title {
    font-size: 26px;
  }

  .solutions-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .platforms-grid {
    flex-direction: column;
    align-items: center;
  }
}
/* Section Background */
.veritas-value {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

/* Section Header */
.veritas-value .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.veritas-value .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0a1f44;
  margin-bottom: 10px;
}

.veritas-value .section-header p {
  font-size: 18px;
  color: #5a6a85;
}

/* Content Wrapper */
.veritas-value .value-content {
  display: flex;
  justify-content: center;
}

/* Main Card */
.veritas-value .value-content p {
  max-width: 900px;
  width: 100%;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  font-size: 17px;
  line-height: 1.8;
  color: #2c3e50;
  transition: all 0.3s ease;
}

/* Left Accent Border */
.veritas-value .value-content p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  height: 70%;
  width: 6px;
  background: linear-gradient(180deg, #007bff 0%, #00c6ff 100%);
  border-radius: 10px;
}

/* Hover Effect */
.veritas-value .value-content p:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
/* ============================= */
/* Responsive - Veritas Hero Only */
/* ============================= */

/* Tablet */
@media (max-width: 992px) {
  .veritas-hero .hero-grid {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .veritas-hero .partner-badge {
    width: auto;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .veritas-hero .hero-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .veritas-hero .hero-stats {
    justify-content: center;
  }

  .veritas-hero .hero-image {
    width: 100%;
    max-width: 420px;
  }

  .veritas-hero .hero-image img {
    width: 100%;
    height: auto;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .veritas-hero {
    padding: 100px 0 60px;
  }

  .veritas-hero .main-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .veritas-hero .hero-text {
    font-size: 16px;
  }

  .veritas-hero .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .veritas-hero .stat-number {
    font-size: 22px;
  }

  .veritas-hero .partner-badge {
    padding: 10px 18px;
    font-size: 14px;
  }

  .veritas-hero .hero-image {
    width: 100%;
  }

  .veritas-hero .hero-image img {
    width: 100%;
    height: 100px;
    border-radius: 16px;
  }
}
