:root {
	--navy: #14284d;
	--navy-deep: #0f2040;
	--blue: #1a63b8;
	--blue-light: #eaf2fc;
	--green: #1e8e3e;
	--green-dark: #17702f;
	--orange: #f5811f;
	--ink: #1c2b3d;
	--muted: #5c6b7c;
	--line: #e4ebf3;
}

/* ================= GLOBAL ================= */
body {
	background-color: white;
	overflow-x: hidden;
	font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Roboto", sans-serif;
	margin-top: 0;
	margin-bottom: .5rem;
	font-weight: 500;
	line-height: 1.2;
}

ul li a {
	text-decoration: none;
}

/* ===== Utility top bar ===== */
.util-bar {
	display: flex !important;
	justify-content: flex-end !important;
	align-items: center !important;
	gap: 18px !important;
	font-size: 12.5px !important;
	color: var(--muted) !important;
	padding: 6px 24px !important;
	border-bottom: 1px solid var(--line) !important;
}

.util-bar a {
	color: var(--muted) !important;
	text-decoration: none !important;
}

.util-bar a:hover {
	color: var(--blue) !important;
	text-decoration: none !important;
}

.util-bar .a-size {
	display: flex;
	gap: 4px;
	font-weight: 700 !important;
}

/* ===== Masthead ===== */
.masthead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	max-width: 1200px;
	margin: 0 auto;
}

.masthead-brand-gov {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}

.masthead-brand-gov img {
	width: 34px;
}

.masthead-brand-gov .gov-text {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--ink);
	letter-spacing: .15px;
}

.masthead-title {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
	margin: 0 auto;
}

.masthead-title h1 {
	font-size: 30px;
	font-weight: 800;
	color: var(--navy);
	margin: 0;
}

.masthead-title p {
	font-size: 14.5px;
	color: var(--muted);
	margin: 0;
}

.masthead-right {
	display: flex;
	align-items: center;
	gap: 18px;
	flex: 1;
	justify-content: flex-end;
}

.masthead-right img {
	height: 30px;
}

.masthead-call {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--navy);
	white-space: nowrap;
}

.masthead-call i {
	color: var(--orange);
	margin-right: 6px;
}

.mobile-seva-logo {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

/* ===== Mobile nav toggle (hamburger) — hidden on desktop ===== */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	border-radius: 8px;
	border: 1.5px solid var(--line);
	background: #fff;
	cursor: pointer;
	flex-shrink: 0;
}

.nav-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 2px;
	background: var(--navy);
	transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ===== Nav ===== */
.mainnav {
	background: #0b2c56;
	width: 100%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.mainnav .wrap {
	display: flex;
	max-width: 1200px;
	margin: auto;
	align-items: center;
	justify-content: space-between;
}

.mainnav>.wrap>ul {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

.mainnav ul li a {
	display: block;
	padding: 15px 16px;
	color: #dce6f5;
	font-size: 14.5px;
	font-weight: 500;
	text-decoration: none !important;
	transition: color .2s, background .2s;
}

.mainnav>.wrap>ul>li>a:hover {
	color: #fff !important;
	background: rgba(255, 255, 255, .06);
}

.mainnav ul li a i {
	font-size: 11px;
	margin-left: 4px;
}

.mainnav ul li {
	position: relative;
}

.nav-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-right: 15px;
}

.btn-login {
	padding: 9px 20px;
	border-radius: 6px;
	border: 1.5px solid rgba(255, 255, 255, .5);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
}

.btn-login:hover {
	background: rgba(255, 255, 255, .1);
	color: #fff;
}

.btn-register {
	padding: 9px 20px;
	border-radius: 6px;
	background: var(--orange);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border: none;
}

.btn-register:hover {
	background: #d96e11;
	color: #fff;
}

#registericon img {
	transition: transform 0.3s ease-in-out;
}

#registericon img:hover {
	transform: translateY(-5px);
}

.mainnav>.wrap>ul>li>a {
	position: relative;
}

.mainnav>.wrap>ul>li>a::after {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 6px;
	height: 3px;
	border-radius: 3px;
	background: var(--orange);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .25s ease;
}

.mainnav>.wrap>ul>li>a:hover::after,
.mainnav>.wrap>ul>li>a.nav-active::after {
	transform: scaleX(1);
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 260px;
	background: #ffffff;
	list-style: none;
	margin: 0;
	padding: 8px 0;
	z-index: 9999;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
}

.mainnav ul li:hover>.dropdown-menu {
	display: block;
}

.dropdown-menu li {
	width: 100%;
}

.dropdown-menu li a {
	display: block;
	padding: 12px 18px;
	color: #222 !important;
	background: #fff;
	text-decoration: none;
	font-size: 14px;
}

.dropdown-menu li a:hover {
	background: #f3f6fb;
	color: #0b2c56 !important;
}

/* ===== Hero ===== */
.hero {
	position: relative;
	background-image: url("/images/hero-banner.png");
	background-size: cover;
	background-position: right bottom;
	background-repeat: no-repeat;
	background-color: #eaf2fc;
	padding: 48px 24px 40px;
	overflow: hidden;
	height: 70vh;
	min-height: 490px;
	max-height: 700px;
	display: flex;
	align-items: center;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(255, 255, 255, .94) 0%, rgba(255, 255, 255, .78) 32%, rgba(255, 255, 255, .25) 55%, rgba(255, 255, 255, 0) 70%);
	z-index: 1;
}

.hero .wrap {
	position: relative;
	z-index: 2;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

.hero-copy {
	max-width: 560px;
}

.hero-copy h2 {
	font-size: 44px;
	font-weight: 800;
	color: var(--navy);
	line-height: 1.15;
	margin-bottom: 18px;
}

.hero-copy p {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.6;
	margin-bottom: 28px;
	max-width: 480px;
}

.hero-cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.btn-primary-hero {
	background: var(--navy);
	color: #fff;
	padding: 13px 26px;
	border-radius: 8px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	text-decoration: none;
}

.btn-primary-hero:hover {
	background: #0f2040;
	color: #fff;
}

.btn-secondary-hero {
	background: var(--green);
	color: #fff;
	padding: 13px 26px;
	border-radius: 8px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	text-decoration: none;
}

.btn-secondary-hero:hover {
	background: #17702f;
	color: #fff;
}

@media (max-width: 992px) {
	.hero {
		background-position: center bottom;
		height: auto;
		min-height: 420px;
		max-height: none;
		padding: 50px 24px 30px;
	}

	.hero::before {
		background: linear-gradient(180deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .85) 40%, rgba(255, 255, 255, .55) 100%);
	}

	.hero-copy {
		max-width: 100%;
	}
}

html {
	scroll-behavior: smooth;
}

#stats {
	scroll-margin-top: 90px;
}

/* ===== Responsive header: utility bar / masthead / nav ===== */
@media (max-width: 992px) {
	.mainnav .wrap {
		flex-wrap: wrap;
	}

	.nav-toggle {
		display: flex;
	}

	/* Off-canvas dropdown panel instead of the full horizontal menu */
	.mainnav>.wrap>ul,
	.nav-actions {
		flex-basis: 100%;
		width: 100%;
		display: none;
		flex-direction: column;
	}

	.mainnav.nav-open>.wrap>ul,
	.mainnav.nav-open .nav-actions {
		display: flex;
	}

	.mainnav>.wrap>ul>li {
		width: 100%;
	}

	.mainnav>.wrap>ul>li>a {
		padding: 13px 6px;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
	}

	/* Dropdowns become inline accordions on tap, not hover flyouts */
	.dropdown-menu {
		display: none;
		position: static;
		box-shadow: none;
		min-width: 0;
		width: 100%;
		background: rgba(255, 255, 255, .04);
		padding: 0;
	}

	.mainnav ul li:hover>.dropdown-menu {
		display: none;
	}

	.mainnav ul li.submenu-open>.dropdown-menu {
		display: block;
	}

	.dropdown-menu li a {
		color: #dce6f5 !important;
		background: transparent;
		padding: 11px 24px;
		font-size: 13.5px;
	}

	.dropdown-menu li a:hover {
		background: rgba(255, 255, 255, .06);
		color: #fff !important;
	}

	.nav-actions {
		flex-direction: row;
		gap: 10px;
		padding: 14px 6px;
	}

	.nav-actions a {
		flex: 1;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.util-bar {
		flex-wrap: wrap;
		gap: 8px 16px;
		padding: 8px 16px;
		font-size: 11.5px !important;
	}

	.masthead {
		flex-wrap: wrap;
		gap: 12px 16px;
		padding: 14px 16px;
	}

	.masthead-brand-gov {
		order: 1;
		flex: 1 1 auto;
	}

	.nav-toggle {
		order: 2;
	}

	.masthead-title {
		order: 3;
		flex: 1 1 100%;
	}

	.masthead-right {
		order: 4;
	}

	.masthead-right img {
		height: 32px;
	}

	.masthead-title h1 {
		font-size: 19px;
	}
}

@media (max-width: 480px) {
	.masthead-brand-gov .gov-text {
		font-size: 10.5px;
	}

	.masthead-brand-gov img {
		width: 36px;
	}

	.masthead-title h1 {
		font-size: 16.5px;
	}

	.masthead-title p {
		font-size: 11.5px;
	}
}

/* ===== Our Services Grid (home page) ===== */
.services-section {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 24px 10px;
}

.services-section .section-heading {
	text-align: center;
	margin-bottom: 40px;
}

.services-section .section-heading h2 {
	font-size: 30px;
	font-weight: 800;
	color: var(--navy);
	display: inline-block;
	position: relative;
	padding-bottom: 14px;
	margin: 0;
}

.services-section .section-heading h2::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 70px;
	height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--orange), var(--blue), var(--green));
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

@media (max-width: 1100px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.services-grid {
		grid-template-columns: 1fr;
	}
}

.service-card-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 26px 22px;
	box-shadow: 0 2px 10px rgba(15, 40, 80, .05);
	transition: transform .25s ease, box-shadow .25s ease;
}

.service-card-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 30px rgba(15, 40, 80, .12);
}

.service-card-item .icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 16px;
}

.service-card-item h4 {
	font-size: 17px;
	font-weight: 700;
	color: var(--navy);
	margin: 0 0 8px;
}

.service-card-item p {
	font-size: 13.5px;
	color: var(--muted);
	line-height: 1.55;
	margin: 0 0 14px;
	min-height: 58px;
}

.service-card-item a.learn-more {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--blue);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap .2s ease, color .2s ease;
}

.service-card-item a.learn-more:hover {
	color: var(--navy);
	gap: 9px;
}

.service-card-item a.learn-more i {
	font-size: 11px;
}

.icon-blue {
	background: var(--blue-light);
	color: var(--blue);
}

.icon-green {
	background: #e9f7ee;
	color: var(--green);
}

.icon-purple {
	background: #f2ecfb;
	color: #7b3fe4;
}

.icon-orange {
	background: #fdf1e4;
	color: var(--orange);
}

.icon-teal {
	background: #e6f6f6;
	color: #159c9c;
}

.icon-red {
	background: #fdeceb;
	color: #d8453b;
}

.icon-indigo {
	background: #eaeafd;
	color: #4b3fd8;
}

.icon-navy {
	background: var(--blue-light);
	color: var(--navy);
}

/* ===== About page ===== */
body #main {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.about-section {
	width: 100%;
	box-sizing: border-box;
}

.about-section .wrap {
	max-width: 1200px;
	margin: 0 auto;
}

.about-intro h2 {
	font-size: 28px;
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 16px;
	margin-top: 20px;
}

.about-intro p {
	font-size: 15.5px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 14px;
}

.workflow-card {
	margin-top: 36px;
	display: flex;
	align-items: center;
	gap: 32px;
	background: #f1f6fe;
	border-radius: 16px;
	padding: 32px;
	flex-wrap: wrap;
}

.workflow-diagram {
	flex: 1 1 55%;
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

.workflow-panel {
	flex: 1 1 35%;
	min-width: 260px;
}

.workflow-badge {
	max-width: 400px;
	margin-bottom: 16px;
}

.workflow-panel p {
	font-size: 14.5px;
	color: var(--ink);
	line-height: 1.6;
	margin-bottom: 12px;
}

/* ===== MSDG page ===== */
.details-section {
	background: #fafcff;
}

.details-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	padding: 56px 24px;
}

.details-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(15, 40, 80, .08);
}

.details-copy h3 {
	color: var(--navy);
	font-size: 21px;
	font-weight: 700;
	margin: 0 0 12px;
}

.details-copy p {
	font-size: 14.5px;
	color: var(--muted);
	line-height: 1.7;
	margin-bottom: 24px;
}

@media (max-width: 900px) {
	.details-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== Section Title (shared page-header pattern) ===== */
.section-title {
	max-width: 1000px;
	margin: 10px auto;
	padding: 0 24px;
	text-align: center;
}

.section-title h3 {
	position: relative;
	display: inline-block;
	margin-bottom: 28px;
	color: var(--navy);
	font-size: 32px;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.section-title h3::after {
	content: "";
	display: block;
	width: 80px;
	height: 4px;
	margin: 14px auto 0;
	border-radius: 4px;
	background: linear-gradient(90deg, var(--orange), var(--blue), var(--green));
}

.section-title p {
	font-size: 16px;
	line-height: 1.9;
	color: var(--muted);
	text-align: justify;
	margin: 0 auto;
	max-width: 950px;
}

@media (max-width: 768px) {
	.section-title {
		margin: 40px auto;
		padding: 0 18px;
	}

	.section-title h3 {
		font-size: 26px;
	}

	.section-title p {
		font-size: 15px;
		text-align: left;
	}
}

/* ================= SMS Gateway ================= */
.sms-section {
	max-width: 1200px;
	margin: auto;
	padding: 40px 20px 60px;
}

.sms-block {
	margin-top: 60px;
}

.sms-block h2 {
	color: var(--navy);
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	border-left: 6px solid var(--orange);
	padding-left: 15px;
}

.sms-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.sms-grid.two-column {
	grid-template-columns: repeat(3, 1fr);
}

.sms-card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
	transition: .3s;
}

.sms-card:hover {
	transform: translateY(-5px);
}

.sms-card img {
	width: 70px;
	height: 70px;
	object-fit: contain;
	flex-shrink: 0;
}

.sms-card ul {
	margin: 0;
	padding-left: 18px;
}

.sms-card li {
	color: var(--muted);
	line-height: 1.8;
	font-size: 15px;
}

.btn-center {
	text-align: center;
	margin-top: 40px;
}

.register-btn {
	display: inline-block;
	background: var(--orange);
	color: #fff;
	padding: 14px 35px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	transition: .3s;
}

.register-btn:hover {
	background: var(--navy);
	color: #fff;
}

@media (max-width: 992px) {

	.sms-grid,
	.sms-grid.two-column {
		grid-template-columns: 1fr;
	}

	.sms-card {
		flex-direction: column;
		text-align: center;
	}

	.sms-card ul {
		text-align: left;
	}
}

/* ================================================================
   GENERIC CONTENT PAGES
   (IVRS, Mobile Attendance, Mobile Security Testing, Geo-Fencing,
   ChatBot, Services, and any future simple text/feature page)
   ================================================================ */
.content-section {
	max-width: 1100px;
	margin: 0 auto;
	padding: 50px 24px 70px;
}

.content-section .section-title {
	margin-bottom: 10px;
}

.content-body {
	max-width: 950px;
	margin: 0 auto;
}

.content-body p {
	font-size: 15.5px;
	color: var(--muted);
	line-height: 1.85;
	text-align: justify;
	margin-bottom: 16px;
}

.content-body h4 {
	color: var(--navy);
	font-size: 20px;
	font-weight: 700;
	margin: 30px 0 14px;
	border-left: 5px solid var(--orange);
	padding-left: 12px;
}

.content-body ul.plain-list {
	margin: 0 0 16px;
	padding-left: 22px;
}

.content-body ul.plain-list li {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.85;
}

/* Feature card grid — used by IVRS-style "icon + bullet list" blocks */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	margin: 24px 0 10px;
}

.feature-grid.three-col {
	grid-template-columns: repeat(3, 1fr);
}

.feature-card {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 12px;
	padding: 22px;
	box-shadow: 0 2px 10px rgba(15, 40, 80, .05);
	transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 22px rgba(15, 40, 80, .1);
}

.feature-card img {
	width: 56px;
	height: 56px;
	object-fit: contain;
	flex-shrink: 0;
}

.feature-card ul {
	margin: 0;
	padding-left: 18px;
}

.feature-card li {
	font-size: 14.5px;
	color: var(--muted);
	line-height: 1.75;
}

@media (max-width: 900px) {

	.feature-grid,
	.feature-grid.three-col {
		grid-template-columns: 1fr;
	}

	.feature-card {
		flex-direction: column;
		text-align: center;
	}

	.feature-card ul {
		text-align: left;
	}
}

/* Simple centered link/feature list — used by Services page */
.simple-list {
	list-style: none;
	max-width: 640px;
	margin: 24px auto 0;
	padding: 0;
	display: grid;
	gap: 10px;
}

.simple-list li {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 13px 18px;
	font-size: 15px;
	color: var(--ink);
	text-align: center;
	box-shadow: 0 2px 8px rgba(15, 40, 80, .05);
}

.simple-list li a {
	color: var(--blue);
	font-weight: 700;
	text-decoration: none;
}

.simple-list li a:hover {
	color: var(--navy);
}

/* Chart container — used by pages embedding highcharts/amcharts */
.chart-container {
	width: 100%;
	max-width: 900px;
	height: 400px;
	margin: 20px auto;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 8px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
}

/* Flip card (reusable, if any page needs it) */
.flip-card {
	background-color: transparent;
	width: 300px;
	height: 300px;
	perspective: 1000px;
}

.flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.flip-card:hover .flip-card-inner {
	transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.flip-card-front {
	background-color: #bbb;
	color: black;
}

.flip-card-back {
	background: linear-gradient(101deg, rgba(6, 31, 55, 1) 0%, rgba(45, 114, 189, 1) 0%, rgba(0, 25, 85, 1) 100%);
	color: white;
	transform: rotateY(180deg);
}



/* ===== FAQ Section (SMS Pull / general FAQ pages) ===== */
.faq .faq-list {
	list-style: none;
	max-width: 950px;
	margin: 0 auto;
	padding: 0;
}

.faq .faq-list li {
	border-bottom: 1px solid var(--line);
}

.faq .faq-list li:last-child {
	border-bottom: none;
}

.faq .faq-list .question {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16.5px;
	font-weight: 600;
	color: var(--ink);
	padding: 20px 4px;
	cursor: pointer;
	transition: color .2s ease;
}

.faq .faq-list .question:hover {
	color: var(--blue);
}

.faq .faq-list .question i {
	color: var(--orange);
	font-size: 14px;
	transition: transform .25s ease;
	flex-shrink: 0;
}

.faq .faq-list .question:not(.collapsed) i {
	transform: rotate(90deg);
}

.faq .faq-list .answer {
	padding: 0 4px 22px 30px;
}

.faq .faq-list .answer p {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.85;
	text-align: justify;
	margin: 0;
}


/* Chart container — used by pages embedding highcharts/amcharts */
.chart-container {
	width: 100%;
	max-width: 900px;
	height: 400px;
	margin: 20px auto;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 8px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
}


/* ===== Data tables (report/listing pages: SMS Pull, chart pages, Traffic Rates, etc.) ===== */
.data-table-wrap {
	max-width: 900px;
	margin: 0 auto 30px;
}

.data-table-wrap table th {
	font-weight: 600;
	color: var(--navy);
}

.data-table-wrap table tbody th {
	font-weight: 400;
	color: var(--ink);
}

.note-marker {
	color: #d8453b;
	font-weight: 700;
}

.table-scroll-wrap {
	max-width: 900px;
	margin: 0 auto 30px;
}

.inline-link {
	color: var(--blue);
	font-weight: 700;
}

.tariff-link {
	font-size: 18px;
}

.format-image {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(15, 40, 80, .08);
}



/* ===== Workshop / Past Events page ===== */
.workshop-section-heading {
	text-align: center;
	margin-bottom: 8px;
}

.workshop-note-top {
	margin-top: -10px;
}

.workshop-subheading {
	display: block;
	color: var(--navy);
	font-size: 22px;
	font-weight: 700;
	margin: 34px 0 18px;
	text-align: center;
	border-left: none;
}

.workshop-subheading:first-of-type {
	margin-top: 10px;
}

.workshop-note {
	text-align: center;
	font-size: 16px;
	color: var(--muted);
	margin-bottom: 10px;
}

.events-list {
	list-style: none;
	max-width: 900px;
	margin: 0 auto;
	padding: 0;
}

.events-list li {
	position: relative;
	padding: 12px 0 12px 24px;
	font-size: 15px;
	color: var(--muted);
	line-height: 1.7;
	text-align: left;
	border-bottom: 1px solid var(--line);
}

.events-list li:last-child {
	border-bottom: none;
}

.events-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 20px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--orange);
}

/* ===== Technical Articles page: SSL certificate highlight box ===== */
.highlight-ssl {
	background-color: #e3f2fd;
	border-left: 5px solid #2196f3;
	padding: 14px 18px;
	display: block;
	width: fit-content;
	max-width: 100%;
	margin: 24px auto;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(33, 150, 243, 0.35);
	transition: all 0.45s ease-in-out;
}

.highlight-ssl.active {
	background-color: #bbdefb;
	box-shadow: 0 0 28px rgba(33, 150, 243, 0.95);
	transform: translateY(-2px);
}

.highlight-ssl.pulse {
	animation: pulseGlowBlue 2.4s ease-in-out infinite;
}

@keyframes pulseGlowBlue {
	0% {
		box-shadow: 0 0 10px rgba(33, 150, 243, 0.35);
	}

	50% {
		box-shadow: 0 0 22px rgba(33, 150, 243, 0.6);
	}

	100% {
		box-shadow: 0 0 10px rgba(33, 150, 243, 0.35);
	}
}

.highlight-ssl a {
	color: #0d47a1;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.25s ease, transform 0.15s ease;
}

.highlight-ssl a:hover {
	color: #42a5f5;
	transform: scale(1.03);
}

/* Extend the shared plain-list styling to ordered lists (numbered steps) */
.content-body ol.plain-list {
	margin: 0 0 16px;
	padding-left: 22px;
}

.content-body ol.plain-list li {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.85;
	margin-bottom: 10px;
}

/* ===== Videos page ===== */
.video-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
	margin: 24px 0 10px;
}

.video-card h4 {
	margin-top: 0;
}

.video-embed {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	/* 16:9 */
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

.video-embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 900px) {
	.video-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== Press Release page ===== */
.press-table-wrap {
	max-width: 1100px;
	margin: 0 auto 40px;
	overflow-x: auto;
}

.press-table-wrap table {
	width: 100%;
}

.press-table th a,
.press-table td a {
	text-decoration: none;
	font-weight: 600;
	color: var(--blue);
}

.press-table th a:hover,
.press-table td a:hover {
	color: var(--navy);
}

.press-table th[scope="row"] {
	font-weight: 400;
	color: var(--ink);
	line-height: 1.6;
}

/* ===== Shared footer logo row (used across all content pages) ===== */
.footer-logo-row {
	justify-content: center;
	text-align: center;
}

.footer-logo-row img {
	height: 100px;
}



/* ===== Contact Us page ===== */
.contact-card {
	background: #fff;
	border-radius: 24px;
	box-shadow: 0 8px 30px rgba(15, 40, 80, .08);
	padding: 44px 32px;
	margin: 30px auto;
}

.contact-org+.contact-org {
	margin-top: 36px;
}

/* Scoped so it only affects info-box usage inside our content pages,
   without touching how it may already look elsewhere on the site. */
.content-section .info-box {
	text-align: center;
	padding: 10px 12px 24px;
}

.content-section .info-box i {
	display: block;
	font-size: 32px;
	color: var(--blue);
	margin-bottom: 10px;
}

.content-section .info-box h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--navy);
	margin: 6px 0 8px;
}

.content-section .info-box p {
	font-size: 15px;
	color: var(--muted);
	line-height: 1.7;
	text-align: center;
	margin: 0;
}