/*
Theme Name: siga-th
Author: Yaniv Sasson
Author URI: http://yanivsasson.com/
Version: 1.01
License: GNU General Public License v3
License URI: http://www.gnu.org/licenses/gpl.html
Text Domain: devdmbootstrap3
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

/* --- Design Tokens --- */
:root {
	/* Color Palette */
	--color-bg-dark: #04181f; /* Deep Teal/Black */
	--color-bg-dark-light: #082530; /* Medium Teal */
	--color-bg-light: #f1f5f9; /* Pale Blue-Grey */
	--color-bg-light-alt: #cbd5e1; /* Slate-Grey for Dividers */

	--roboto-mono: "Roboto Mono", monospace;
	--color-primary: #1F9BC6; /* Vibrant Electric Blue */
	--color-secondary: #1F9BC6; /* Slate Blue */
	--color-accent: #00f59b; /* Neon Green */
	--color-accent-hover: #00c77b; /* Neon Green Hover */

	--color-text-dark: #002C38; /* Dark Teal (Cyan 950) for exact match */
	--color-text-muted: #002C38; /* Muted Slate */
	--color-text-light: #f8fafc; /* Crisp White/Light Slate */
	--color-text-light-muted: #cbd5e1; /* Muted Light Slate */

	/* Shadow & Glass */
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
	--shadow-glow: 0 0 20px rgba(0, 245, 155, 0.2);
	--shadow-glow-blue: 0 0 25px rgba(0, 210, 255, 0.35);

	--glass-bg: rgba(8, 37, 48, 0.75);
	--glass-border: rgba(255, 255, 255, 0.08);
	--glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);

	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	--transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

	/* Borders */
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 24px;
	--radius-pill: 9999px;
}
/*-------------Siga Guard page-------------*/

.sigaguard_main_section_blk .ml-banner-content {
	max-width: 1236px !important;
}

/* --- Section: Product Detail (SIGAGUARD) EXACT MATCH --- */

section#technology.product-details .product_details_container {
	max-width: 1440px;
	width: 100%;
	margin: auto;
}
.product-details {
	background-color: var(--color-bg-light);
	/* Hexagonal Honeycomb Tiling Pattern */
	background-image: url("/wp-content/uploads/2026/05/white_bkg_shape.svg");
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--color-text-dark);
	border-bottom: none;
	padding-bottom: 96px;
	padding-top: 96px;
	padding-left: 40px;
	padding-right: 40px;
}

.product-details h2, 
.product-details h3, 
.product-details h4 {
	color: var(--color-text-dark);
}

.product-details p {
	color: var(--color-text-muted);
}

.product-grid {
	display: flex;
	gap: 64px;
}

.product-content {
	display: flex;
	flex-direction: column;
	max-width: 689px;
	width: 100%;
}

.intro-lead {
	font-family: 'inter';
	font-size: 24px;
	font-weight: 600;
	line-height: 1.55;
	color: var(--color-text-dark);
	margin-top: 0;
}

.sub-lead {
	font-family: 'inter';
	font-size: 24px;
	font-weight: 600;
	line-height: 1.55;
	color: var(--color-text-dark);
	margin-top: 0;
}

.key-benefits-title {
	font-family: 'inter';
	font-size: 30px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 36px;
	color: var(--color-text-dark);
}

.benefit-item {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-bottom: 1.8rem;
	border-left: 1px solid var(--color-primary); /* Sleek Sky Blue left border */
	padding-left: 24px;
	transition: transform var(--transition-fast);
}

.benefit-item:hover {
	transform: translateX(6px);
	border-left-color: var(--color-secondary);
}

.benefit-details h4 {
	font-family: var(--roboto-mono);
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0;
	color: var(--color-text-dark);
}

.benefit-details p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-text-muted);
	margin-bottom: 0;
	margin-top: 12px;
	letter-spacing: 0.8px;
}

.platform-footprint {
	grid-column: span 2;
	font-family: 'inter';
	font-size: 24px;
	font-weight: 700;
	color: var(--color-text-dark);
	text-align: left;
	margin-top: 40px;
	margin-bottom: 64px;
}

.bottom-divider-line { 
	border-bottom: 1px solid #164450;
	width: 100%;
	margin-bottom: 64px;
}

.product-image-container {
	position: relative;
	max-width: 686px;
	width: 100%;
}

/* Custom rounded dark panel matching the studio layout in uploaded image */
.product-image-card {
	background: linear-gradient(180deg, #142028 0%, #0c1419 100%);
	padding: 0;
	border-radius: var(--radius-md);
	overflow: hidden;
	/* 	transition: transform var(--transition-normal), box-shadow var(--transition-normal); */
	display: flex;
	justify-content: center;
	align-items: center;
}

/* .product-image-card:hover {
transform: translateY(-5px);
box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
} */

.product-image-card img {
	width: 100%;
	height: auto;
	display: block;
}

div#platform-footprint-text p {
	margin: 0;
}

/*------------------------*/

div#analytic-heading {
	color: #002C38;
	font-size: 30px;
	font-weight: 600;
	font-family: 'Inter';
	margin-bottom: 36px;
}

div#analytic-row-1 {
	border-top: 1px solid #1F9BC6;
}

.analytic-row {
	display: flex;
	align-items: start;
	gap: 18px;
	border-bottom: 1px solid #1F9BC6;
	padding: 34px 0;
}

.analytic-row .analytic-col-title {
	max-width: 540px;
	width: 100%;
}

.analytic-row .analytic-col-title h3 {
	margin: 0;
	font-family: 'Roboto Mono';
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 10%;
	text-transform: uppercase;
	color: #1F9BC6;
}

.analytic-row .analytic-desc p {
	margin: 0;
	font-size: 16px;
	color: #164450;
	font-family: 'Inter';
	font-weight: 500;
	line-height: 24px;
}



/*------------------------*/
@media only screen and (max-width: 575px) {
	.platform-footprint,
	.intro-lead,
	.sub-lead {
		font-size: 16px;
	}
	.product-details {
		padding-left: 16px;
		padding-right: 16px;
	}
	.benefit-details h4,
	.benefit-details p {
		font-size: 14px;
	}
	.benefit-item {
		padding-left: 12px;
	}
	.analytic-row .analytic-col-title h3 {
		font-size: 14px;
	}
}


@media only screen and (max-width: 767px) {
	.analytic-row {
		flex-wrap: wrap;
	}
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
	.platform-footprint,
	.intro-lead,
	.sub-lead {
		font-size: 18px;
	}
	.product-details {
		padding-left: 25px;
		padding-right: 25px;
	}
	.benefit-details h4,
	.benefit-details p {
		font-size: 18px;
	}
	.benefit-item {
		padding-left: 18px;
	}
	.analytic-row .analytic-col-title h3 {
		font-size: 18px;
	}
}

@media only screen and (max-width: 991px) {
	.product-details {
		padding-top: 36px !important;
		padding-bottom: 36px !important;
	}
	.product-grid {
		flex-wrap: wrap;
		width: 100%;
		gap: 24px;
	}
	.product-content,
	.product-image-container {
		max-width: 100% !important;
	}
	.platform-footprint {
		margin-top: 24px !important;
		margin-bottom: 24px !important;
	}	
	.key-benefits-title {
		font-size: 24px !important;
	}
	div#benefit-3 {
		margin-bottom: 0;
	}
	.bottom-divider-line {
		margin-bottom: 24px !important;
	}
	div#analytic-heading {
		font-size: 24px !important;
		margin-bottom: 24px !important;
	}
	.analytic-row {
		padding: 20px 0 !important;
	}
}

/*--------------*/

div#suite-footing-container {
	text-align: center;
	border: 1px solid #1F9BC6;
	border-radius: 12px;
	padding: 32px;
}

.suite-tags {
	display: flex;
	justify-content: center;
	gap: 6px;
	width: fit-content;
	margin: auto;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

div#ml2-brand {
	margin-bottom: 20px;
}

span.suite-tag-item {
	font-size: 14px;
	font-weight: 600;
	font-family: 'Roboto Mono';
	color: #002C38;
	background-color: #EDF3FF;
	padding: 5px 16px;
	border-radius: 60px;
	text-transform: uppercase;
}

p#ml2-desc-text {
	color: #002C38;
	font-family: 'Inter';
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

.siga_platform_last_blk {
	padding-bottom: 96px;
}

@media only screen and (max-width: 575px) {
	.siga_cyber_platform_sec_blk {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}
	.siga_platform_last_blk {
		padding-bottom: 36px !important;
	}
	.siga_cyber_platform_container_1 {
		padding-top: 36px !important;
		padding-bottom: 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	span.suite-tag-item {
		font-size: 12px;
	}
	p#ml2-desc-text {
		font-size: 16px !important;
		line-height: 1.34;
	}
	div#suite-footing-container {
		padding: 32px 8px;
	}
	.siga_cyber_platform_container_2 .hiddenFlow {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 18px !important;
		padding-right: 18px !important;
	}
	.wrap_init_img img {
		width: 100% !important;
		transform: unset !important;
		max-width: fit-content !important;
	}
}

@media only screen and (max-width: 767px) {
	.siga_cyber_platform_container_2 {
		min-height: auto !important;
	}
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
	.siga_cyber_platform_sec_blk {
		padding-left: 25px !important;
		padding-right: 25px !important;
	}
	.siga_platform_last_blk {
		padding-bottom: 50px !important;
	}
	.siga_cyber_platform_container_1 {
		padding-top: 50px !important;
		padding-bottom: 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

@media only screen and (max-width: 991px) {
	/* 	.siga_cyber_platform_sec_blk .wrap-init.is-active .textbox {
	min-height: 100% !important;
	opacity: 1 !important;
} */
	.siga_cyber_platform_sec_blk .e-con-inner {
		gap: 24px !important;
	}
	.siga_cyber_platform_container_2 .elementor-element {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

/*-------------*/

.green_bar_par_txt {
	padding: 12px 20px;
	background-color: #B5FFBB;
}

.green_bar_par_txt_content p {
	color: #03222A;
	text-align: center;
	font-size: 14px;
	font-family: 'Roboto Mono';
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 10%;
	line-height: 24px;
	margin: 0;
}

@media only screen and (max-width: 575px) {}


/*-------------------*/


/* Base structural containers */
.customer_evidence_main_wrapper {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 96px 30px;
	z-index: 5;
	background-image: url(/wp-content/uploads/2026/05/customer_evidence_bkg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}

/* Content Container */
.customer_evidence_main_container {
	position: relative;
	width: 100%;
	max-width: 1312px;
	z-index: 10;
	display: flex;
	flex-direction: column;
}

/* SECTION 1: HEADER */
.header-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 32px;
	margin-bottom: 96px;
}

.pill-badge {
	display: inline-block;
	border: 1px solid #1F9BC6;
	background: #002C38;
	color: #B5FFBB;
	padding: 2px 16px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 10%;
	font-family: 'Roboto Mono';
	text-transform: uppercase;
}

.customer_evidence_main_wrapper .main-title {
	font-size: 48px;
	font-weight: 600; 
	color: #F0FAFF;
	line-height: 1.2;
	margin: 0;
}

.customer_evidence_main_wrapper .sub-title {
	font-size: 20px;
	font-weight: 400;
	color: #EDF3FF;
	max-width: 800px;
	line-height: 1.5;
	margin: 0;
}

/* SECTION 2: METRICS BAR */
.metrics-section {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 64px;
}

.metrics-container {
	display: flex;
	align-items: center;
	width: 100%;
	padding-bottom: 64px; 
	position: relative; 
}

/* Glow line under metrics */
.metrics-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #1F9BC6;
}

.metric-card {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	color: #ffffff;
	font-family: 'Roboto Mono';
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.04em;
	padding: 0 24px; 
	width: 100%;
}

.metrics-container .metric-card:first-child {
    border-left: 1px solid #B5FFBB;
}

.metric-row {
	display: block;
	white-space: nowrap;
}

.metric-highlight {
	color: #00f0ff;
	font-weight: 700;
}

/* Chevron Divider */
.chevron-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 48px;
	opacity: 0.4;
	animation: pulse-opacity 4s infinite ease-in-out;
}

.chevron-svg {
	width: 16px;
	height: 32px;
	stroke: #00f0ff;
	stroke-width: 1.5;
	fill: none;
}

/* SECTION 3: THREE COLUMN DETAILS */
.details-section {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	margin-top: 0.5rem;
}

.details-column {
	border-left: 1px solid #1F9BC6;
	padding-left: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px; 
}
 
.column-title {
	font-size: 28px;
	font-weight: bold;
	color: #ffffff;
	letter-spacing: 0.01em;
	margin: 0;
	font-family: 'Inter';
}

.column-text {
	font-size: 16px;
	line-height: 1.6;
	color: #cdd6dc;
	font-weight: 400;
	margin: 0;
	font-family: 'Inter';
}

/* SECTION 4: QUOTE BLOCK */
.quote-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 32px;
	padding-top: 64px;
}

.quote-text {
	font-size: 48px;
	font-weight: 500;
	line-height: 1.45;
	color: #ffffff;
	letter-spacing: -2%;
	font-family: 'Inter';
	margin: 0;
	max-width: 1280px;
	width: 100%;
}

.quote-highlight {
	color: #B5FFBB;
	position: relative; 
}
 
.quote-author {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.author-name {
	font-size: 18px;
	font-weight: 600;
	color: #F9F9F9; 
	font-family: 'Inter';
}

.author-title {
	font-size: 16px;
	font-weight: 400;
	color: #EDF3FF;
	font-family: 'Inter';
	margin-top: 4px;
}

/*------Dot------*/
.carousel-dots {
	display: none;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ffffff;
    opacity: 0.3;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    opacity: 1;
    background-color: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

/*------Dot------*/

/* Responsive Breakpoints */
@media (max-width: 1024px) {
	.customer_evidence_main_wrapper .main-title {
		font-size: 2rem;
	}
	.quote-text {
		font-size: 1.6rem;
	}
	.details-section {
		gap: 1.5rem;
	}
}

@media (max-width: 575px) {
	.customer_evidence_main_wrapper .sub-title {
		max-width: 280px;
		width: 100%;
	}
/* 	.metrics-container {
        gap: 17px !important;
} */
	.column-title {
		font-size: 20px;
	}
	.quote-text {
		font-size: 24px;
		max-width: 300px;
		width: 100%;
	}
	.author-name {
		font-size: 16px;
	}
	span.author-title {
		max-width: 300px;
		width: 100%;
	}
}


@media (max-width: 767px) {
	.header-section {
    	gap: 12px !important;
	}
	
	.details-section {
		display: flex;
		grid-template-columns: none;
		gap: 0;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		scrollbar-width: none;
		-ms-overflow-style: none;
		margin-top: 0;
	}	
	.metric-card {
    	font-size: 14px;
	}
	.pill-badge {
		margin-bottom: 6px;
	}
	.customer_evidence_main_wrapper .main-title {
        font-size: 24px;
    }
	.customer_evidence_main_wrapper .sub-title {
        font-size: 16px;
    }
	.carousel-dots {
		display: flex !important;
		justify-content: center;
		align-items: center;
		gap: 0.5rem;
		margin-top: 20px;
		width: 100%;
	}
	.details-column {
		flex: 0 0 100%;
		width: 100%;
		scroll-snap-align: start;
		padding-right: 24px; 
		background: transparent !important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	div#details-slider.details-section {
		grid-template-columns: 1fr;
	}
	.metric-card {
    	font-size: 18px;
		padding: 0 10px;
	}
}

@media only screen and (max-width: 991px) {
	.customer_evidence_main_wrapper {
		padding: 36px 16px;
	}
	.header-section {
		margin-bottom: 24px;
	}
	.metrics-section {
		margin-bottom: 24px;
	}
	.metrics-container {
		padding-bottom: 24px;
		position: relative;
		overflow: hidden;
		overflow-x: auto;
	}
	.quote-section {
		padding-top: 24px;
		gap: 24px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
	.metric-card {
		font-size: 18px;
		padding: 0 15px;
	}
}

@media only screen and (min-width: 1025px) and (max-width: 1140px) {
	.metric-card {
		font-size: 18px;
		padding: 0 20px;
	}	
}

@media only screen and (min-width: 1141px) and (max-width: 1220px) {
	.metric-card {
		font-size: 18px;
	}
}

/*-------------------*/









/*-------------Siga Guard page-------------*/