:root {
  --font-main: 'Lato', sans-serif;
  --font-title: 'Exo', sans-serif;
  
  /* Brand Palette */
  --color-primary: #15803d;
  --color-primary-hover: #16a34a;
  --color-primary-dark: #0f382c;
  --color-emerald-light: #ecfdf5;
  --color-emerald-border: #a7f3d0;
  
  --bg-body: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  
  --bg-card-dark: #0b2b20;
  --bg-card-dark-hover: #0e3628;
  --border-card-dark: #144937;
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0d1a15;
}

::-webkit-scrollbar-thumb {
  background: #15803d;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #16a34a;
}

/* Layout Containers */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* Announcement Bar */
.announcement-bar {
  background-color: #0b1c15;
  color: #ffffff;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #143326;
  text-align: center;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.announcement-badge {
  background-color: #16a34a;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.6875rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.announcement-text {
  color: #e2e8f0;
  font-weight: 500;
}

.announcement-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}

.announcement-link:hover {
  color: #4ade80;
}

/* Hero Section - Reference Background Image Style */
.hero-section {
  position: relative;
  min-height: 560px;
  padding: 5.5rem 0 6rem;
  overflow: hidden;
  background-color: #030f20;
  display: flex;
  align-items: center;
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 15, 32, 0.96) 0%,
    rgba(3, 15, 32, 0.85) 55%,
    rgba(3, 15, 32, 0.6) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-left-content {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  text-align: left;
  max-width: 760px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #4ade80;
  text-transform: uppercase;
}

.hero-eyebrow-line {
  width: 24px;
  height: 3px;
  background-color: #4ade80;
  border-radius: 2px;
  display: inline-block;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #ffffff;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 46px;
  }
}

.hero-title-highlight {
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #4ade80;
  margin-top: 0.35rem;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: 1.0625rem;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 640px;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* Trust Badges Bar */
.trust-badges-section {
  background-color: white;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.trust-item .trust-icon-box {
  padding: 0.625rem;
  background-color: #f0fdf4;
  color: #16a34a;
  border-radius: 12px;
  border: 1px solid rgba(187, 247, 208, 0.6);
  flex-shrink: 0;
}
.trust-item .trust-icon-box svg{
  display: block;
  width: 24px;
    height: 24px;
}
.trust-grid .trust-item .trust-content .trust-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.trust-grid .trust-item .trust-content .trust-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.2;
}

/* Partner Logos */
.partner-logos-section {
  background-color: rgba(248, 250, 252, 0.5);
  padding: 3rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.section-label {
  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #0f172a;
  text-align: center;
  margin-bottom: 2rem;
}
.partner-logos-section h3{
  font-size: 32px;
  color: #0f172a;
}
.swiper-partner-logos {
  padding-top: 5px;
}
.logos-swiper-wrapper {
  position: relative;
  padding-bottom: 2rem;
}

.partner-swiper {
  padding: 0.5rem 0.25rem 2.5rem 0.25rem !important;
}

.partner-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.partner-swiper .swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}

.partner-swiper .swiper-pagination-bullet-active {
  background: #16a34a;
  width: 24px;
  border-radius: 4px;
}

.logo-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.875rem 1.25rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}
.logo-card img{
  display: block;
}

.logo-card:hover {
  background-color: #ffffff;
  border-color: #22c55e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.15);
}

.section-badge-pill {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #16a34a;
    background-color: #e2f5ec;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 0.75rem;
}
.section-main-title {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.9px;
    text-transform: uppercase;
    line-height: 1.2;
}
.section-sub-desc {
    color: #475569;
    margin-top: 0.75rem;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.6;
}
/* Metrics Banner - Green Reference Design */
.metrics-section {
  padding: 2.5rem 0;
}

.metrics-banner-card {
  background: linear-gradient(135deg, #024027 0%, #04613c 50%, #00874e 100%);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  color: white;
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.metrics-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .metrics-banner-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .metrics-banner-grid { grid-template-columns: repeat(4, 1fr); }
}

.metric-stat-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.metric-circle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.metric-label-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #d1fae5;
  margin-top: 0.25rem;
}

/* Target Audience Grid Section */
.target-audience-section {
  background-color: #071a13;
  color: white;
  padding: 5rem 0;
  border-top: 1px solid #0e3b2e;
  position: relative;
}
.target-audience-section .section-main-title{
  color: #ffffff;
}
.target-audience-section .section-sub-desc{
  color: #cbd5e1;
}

.target-audience-section .target-audience-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 45px;
}

@media (min-width: 768px) {
  .target-audience-section .target-audience-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .target-audience-section .target-audience-row { grid-template-columns: repeat(3, 1fr); }
}

.audience-card {
  background-color: #0b2b20;
  border: 1px solid #144937;
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}

.audience-card:hover {
  background-color: #0e3628;
  border-color: rgba(34, 197, 94, 0.6);
}

.watermark-icon {
  position: absolute;
  top: -1rem;
  right: -1rem;
  color: rgba(52, 211, 153, 0.08);
  pointer-events: none;
}

.audience-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
  margin-bottom: 1rem;
}

.audience-card-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.audience-card-desc {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.btn-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background-color: #041710;
  color: white;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid #164d3a;
  transition: all 0.2s;
  margin-top: 1.5rem;
}

.btn-card-action:hover {
  background-color: #0c3123;
  border-color: rgba(52, 211, 153, 0.6);
}

/* Solutions Section - Matching Reference UI */
.solutions-section {
  background-color: #f8fafc;
  color: #0f172a;
  padding: 5.5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.solutions-ref-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 45px;
}

@media (min-width: 640px) {
  .solutions-ref-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .solutions-ref-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sol-ref-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  cursor: pointer;
}

/* Cyber Glow Background Overlay (hidden by default, appears on hover) */
.featured-cyber-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sol-ref-card:hover .featured-cyber-overlay {
  opacity: 1;
}

/* HOVER EFFECT FOR ALL CARDS: Transforms card into dark cyber style */
.sol-ref-card:hover {
  background: linear-gradient(155deg, #061f18 0%, #03120d 50%, #08281f 100%);
  border-color: #34d399;
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(6, 31, 24, 0.45);
}

.sol-ref-icon-wrapper {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #15803d;
  margin-bottom: 1.25rem;
  transition: all 0.35s ease;
}

.sol-ref-svg-icon {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
  transition: all 0.35s ease;
}

.sol-ref-card:hover .sol-ref-icon-wrapper {
  color: #4ade80;
  filter: drop-shadow(0 0 10px rgba(74, 222, 128, 0.7));
  transform: scale(1.06);
}

.sol-ref-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.2px;
  margin-bottom: 14px;
  transition: color 0.35s ease;
}

.sol-ref-card:hover .sol-ref-title {
  color: #ffffff;
}

.sol-ref-desc {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1.25rem;
  transition: color 0.35s ease;
}

.sol-ref-card:hover .sol-ref-desc {
  color: #cbd5e1;
}

.sol-ref-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sol-ref-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #475569;
  transition: color 0.35s ease;
}

.sol-ref-card:hover .sol-ref-list-item {
  color: #f1f5f9;
}

.sol-ref-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background-color: #16a34a;
  transition: all 0.35s ease;
}

.sol-ref-card:hover .sol-ref-bullet {
  background-color: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
}

.sol-ref-bottom-bar {
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.35s ease;
}

.sol-ref-card:hover .sol-ref-bottom-bar {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.sol-ref-learn-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #059669;
  transition: color 0.35s ease;
}

.sol-ref-card:hover .sol-ref-learn-text {
  color: #34d399;
}

/* Arrow Circle Icon Button */
.sol-ref-arrow-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #16a34a;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: transparent;
}

.sol-ref-card:hover .sol-ref-arrow-circle {
  background-color: #10b981;
  border-color: #10b981;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

.solution-list-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: #cbd5e1;
  font-weight: 500;
}

.bullet-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #34d399;
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.6);
  flex-shrink: 0;
}

/* Products Section - Reference Image Showcase Style */
.products-section {
  background-color: #f8fafc;
  padding: 5.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.products-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.products-header .products-navigation {
    display: flex;
    gap: 8px;
}

.products-header .products-navigation .products-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.products-header .products-navigation .products-nav-btn:hover {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
}

.products-header .products-navigation .products-nav-btn .products-nav-icon {
    width: 20px;
    height: 20px;
}
.swiper-products{
  padding-top:45px;
}
.products-swiper-wrapper {
  position: relative;
  padding-bottom: 2rem;
}

.products-swiper {
  padding: 0.5rem 0.25rem 2.5rem 0.25rem !important;
}

.products-swiper .swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}

.products-swiper .swiper-pagination-bullet-active {
  background: #16a34a;
  width: 24px;
  border-radius: 4px;
}

.products-swiper-prev:hover,
.products-swiper-next:hover {
  background-color: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.product-ref-card {
  position: relative;
  height: 410px;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.12);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-ref-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px -10px rgba(15, 23, 42, 0.3);
  border-color: rgba(52, 211, 153, 0.6);
}

.product-card-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-ref-card:hover .product-card-bg-img {
  transform: scale(1.08);
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 15, 23, 0.95) 0%,
    rgba(3, 15, 23, 0.6) 50%,
    rgba(3, 15, 23, 0.15) 100%
  );
  transition: opacity 0.4s ease;
}

.product-ref-card:hover .product-card-overlay {
  background: linear-gradient(
    to top,
    rgba(2, 12, 19, 0.98) 0%,
    rgba(3, 20, 28, 0.65) 55%,
    rgba(3, 20, 28, 0.2) 100%
  );
}

.product-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #ffffff;
}

.product-pill-badge {
  background-color: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.product-ref-card:hover .product-pill-badge {
  background-color: #34d399;
  color: #022c22;
}

.product-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-top: 0.75rem;
  letter-spacing: -0.01em;
}

.product-card-desc {
  font-size: 0.8125rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-top: 0.35rem;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-action {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e2f5ec;
  margin-top: 0.875rem;
  transition: all 0.3s ease;
}

.product-ref-card:hover .product-card-action {
  color: #34d399;
  transform: translateX(3px);
}

/* Case Studies Section */
.case-studies-section {
  background-color: #0b1716;
  color: white;
  padding: 5rem 0;
  border-bottom: 1px solid #14332c;
}
.case-studies-section .homestudies-grid{
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  gap: 1.5rem;
  margin-top: 45px;
}
.case-card {
  background-color: #0e221f;
  border: 1px solid #1b3d37;
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case-card .case-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.case-card .case-card-content .case-card-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #f1f5f9;
}

.case-card .case-card-content .case-card-metric {
    padding-top: 8px;
}

.case-card .case-card-content .case-card-metric .case-metric-description {
    margin-top: 4px;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 500;
    color: #cbd5e1;
}

.case-card .case-card-footer {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #183933;
}

.case-card .case-card-footer .announcement-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #34d399;
    font-size: 12px;
    text-decoration: none;
}

.case-card .case-card-footer .announcement-link .announcement-link-icon {
    width: 14px;
    height: 14px;
}

.case-company {
  font-size: 0.75rem;
  font-weight: 900;
  color: #34d399;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-metric-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: white;
}

/* Quote Box Highlight */
.quote-highlight-box {
  background: linear-gradient(135deg, #10523b, #0d3b2b);
  border: 1px solid rgba(52, 211, 153, 0.4);
  border-radius: 16px;
  padding: 1.75rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-highlight-box .quote-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.quote-highlight-box .quote-content .quote-icon {
    width: 32px;
    height: 32px;
    color: #6ee7b7;
    stroke-width: 1.5;
}

.quote-highlight-box .quote-content .quote-text {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}

.quote-highlight-box .quote-action {
    position: relative;
    z-index: 10;
    padding-top: 16px;
}

.quote-highlight-box .quote-action .quote-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    font-size: 12px;
    background: rgba(5, 150, 105, 0.4);
    border: 1px solid rgba(52, 211, 153, 0.6);
}

.quote-highlight-box .quote-action .quote-btn .quote-btn-icon {
    width: 14px;
    height: 14px;
}

/* Resources Section - Reference Design Style */
.resources-section {
  background-color: #ffffff;
  padding: 5.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.resources-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.resources-header .resources-navigation {
    display: flex;
    gap: 8px;
}

.resources-header .resources-navigation .resources-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.resources-header .resources-navigation .resources-nav-btn:hover {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
}

.resources-header .resources-navigation .resources-nav-btn .resources-nav-icon {
    width: 20px;
    height: 20px;
}
.swiper-resources{
  padding-top:45px;
}
.resources-swiper-wrapper {
  position: relative;
  padding-bottom: 2rem;
}

.resources-swiper {
  padding: 0.5rem 0.25rem 2.5rem 0.25rem !important;
}

.resources-swiper .swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}

.resources-swiper .swiper-pagination-bullet-active {
  background: #0284c7;
  width: 24px;
  border-radius: 4px;
}

.resources-swiper-prev:hover,
.resources-swiper-next:hover {
  background-color: #0f172a !important;
  color: #ffffff !important;
  border-color: #0f172a !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.resource-ref-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  height: 100%;
}

.resource-ref-img-box {
  position: relative;
  width: 100%;
  height: 230px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #0f172a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.resource-ref-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.resource-ref-card:hover .resource-ref-img {
  transform: scale(1.06);
}

.resource-ref-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #15803d;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.02em;
  z-index: 2;
}

.resource-ref-content {
  padding-top: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.resource-ref-title {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.resource-ref-card:hover .resource-ref-title {
  color: #059669;
}

.resource-ref-date {
  font-size: 0.875rem;
  font-weight: 600;
  color: #059669;
}

/* CTA Banner */
.cta-banner-section {
  padding: 3rem 0;
}

.cta-banner-card {
  background: linear-gradient(135deg, #115e3b, #15803d, #0f683d);
  border-radius: 24px;
  padding: 2.5rem 3rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-xl);
}
.cta-banner-card .cta-banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 768px;
}

.cta-banner-card .cta-banner-content .metric-circle-icon .metric-circle-icon-svg {
    width: 32px;
    height: 32px;
}
.cta-banner-card .cta-banner-content .cta-banner-text .cta-banner-title {
  font-family: var(--font-title);
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.6px;
    line-height: 1.2;
}

.cta-banner-card .cta-banner-content .cta-banner-text .cta-banner-description {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #d1fae5;
    line-height: 1.6;
}

.cta-banner-card .cta-banner-action {
    flex-shrink: 0;
}

.cta-banner-card .cta-banner-action .cta-banner-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #ffffff;
    color: #0f172a;
    font-size: 15px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-banner-card .cta-banner-action .cta-banner-btn .cta-banner-btn-icon {
    width: 16px;
    height: 16px;
    color: #15803d;
}

@media (min-width: 768px) {
  .cta-banner-card {
    flex-direction: row;
  }
}

/* Carousel Pure HTML Horizontal Scroll */
.carousel-scroll-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.5rem 0.25rem 1.5rem 0.25rem;
  scrollbar-width: none;
}

.carousel-scroll-container::-webkit-scrollbar {
  display: none;
}

.carousel-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .carousel-item {
    flex: 0 0 320px;
  }
}

@media (min-width: 1024px) {
  .carousel-item {
    flex: 0 0 360px;
  }
}

/* ------------------------------------
   Why Partners Choose Securis360 Section
--------------------------------------- */
.why-choose-us-section {
  background-color: #f8fafc;
  padding: 5.5rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.why-choose-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.proof-points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 640px) {
  .proof-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .proof-points-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.proof-point-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
}

.proof-point-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.proof-point-card:hover {
  transform: translateY(-4px);
  border-color: #bbf7d0;
  box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.08);
}

.proof-point-card:hover::before {
  opacity: 1;
}

.proof-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.proof-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #f0fdf4;
  color: #16a34a;
  border: 1px solid #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.proof-point-card:hover .proof-icon-box {
  background-color: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
  transform: scale(1.05);
}

.proof-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
  background-color: #f0fdf4;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
}

.proof-card-title {
  font-family: var(--font-title);
  font-size: 19px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.proof-card-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.why-choose-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #091b15 0%, #0d281f 100%);
  border-radius: 20px;
  padding: 2.25rem 2.5rem;
  border: 1px solid #1a3d30;
  box-shadow: 0 12px 30px rgba(9, 27, 21, 0.25);
}

.why-choose-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.why-choose-banner-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.why-choose-banner-sub {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* ------------------------------------
   How We Engage Section
--------------------------------------- */
.how-we-engage-section {
  background-color: #ffffff;
  padding: 5.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.engage-process-wrapper {
  position: relative;
}

.engage-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .engage-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .engage-process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.engage-step-card {
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s ease;
}

.engage-step-card:hover {
  background-color: #ffffff;
  border-color: #16a34a;
  box-shadow: 0 12px 28px -6px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.step-connector-arrow {
  display: none;
}

@media (min-width: 1024px) {
  .step-connector-arrow {
    display: flex;
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    color: #16a34a;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  }
}

.step-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.step-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: #cbd5e1;
  letter-spacing: -0.03em;
  transition: color 0.3s ease;
}

.engage-step-card:hover .step-number {
  color: #16a34a;
}

.step-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.engage-step-card:hover .step-icon-circle {
  background-color: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
}

.step-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.step-title {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
}

.step-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.step-description {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  margin-top: 0.4rem;
}

/* Secondary Case Studies Grid */
.case-study-showcase-section{
  background: #FFFFFF;
  padding: 5.5rem 0;
}
.case-study-header{
  max-width: 760px;
  margin: 0 auto;
}
.case-studies-subgrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  margin-top: 45px;
}

@media (min-width: 768px) {
  .case-studies-subgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cs-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.cs-card:hover {
  transform: translateY(-5px);
  border-color: #bbf7d0;
  box-shadow: 0 16px 32px -8px rgba(15, 23, 42, 0.08);
}

.cs-card-img-box {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.cs-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cs-card:hover .cs-card-img {
  transform: scale(1.05);
}

.cs-industry-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: #4ade80;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.cs-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cs-client-name {
  font-size: 13px;
  font-weight: 500;
  color: #16a34a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.cs-card-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 11px;
}

.cs-card-impact {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.cs-card-highlight-bar {
  background-color: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.cs-highlight-num {
  font-size: 1.125rem;
  font-weight: 900;
  color: #0f172a;
  display: block;
  line-height: 1.2;
}

.cs-highlight-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #64748b;
}

.cs-timeframe-tag {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #15803d;
}

.cs-card-footer {
  padding-top: 0.85rem;
  border-top: 1px solid #f1f5f9;
}

.cs-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #16a34a;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.cs-read-btn:hover {
  color: #15803d;
  transform: translateX(3px);
}

.testimonials-section {
    position: relative;
    padding: 5rem 0;
    background-color: #f8fafc;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}
.swiper-testimonials{
  margin-top: 45px;
}
.testimonial-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.testimonial-item .testimonial_play {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-image: url('../images/play-icon-white.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px auto;
    background-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.testimonial-item:hover .testimonial_play {
    background-color: rgba(22, 163, 74, 0.85);
    border-color: #ffffff;
    transform: scale(1.12);
    box-shadow: 0 12px 30px rgba(22, 163, 74, 0.4);
}