/* ============================================================
	RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; font-family: 'Open Sans', sans-serif; }

/* ============================================================
	COLOR TOKENS  — exact Cistron navbar variables
============================================================ */
:root {
	/* Primary Navbar Color (Steel Blue) */
	--nav-main:   #1E3A5F;
	/* Gradient Top (Soft Blue) */
	--nav-light:  #2C5F8A;
	/* Accent (Teal Medical Tone) */
	--nav-accent: #3FB8AF;
	/* Text Color */
	--nav-text:   #FFFFFF;
	/* Shadow */
	--nav-shadow: rgba(0,0,0,0.28);
	
	/* legacy aliases used throughout the slider */
	--bg-top   : var(--nav-light);   /* #2C5F8A */
	--bg-mid   : var(--nav-main);    /* #1E3A5F */
	--bg-bot   : #163350;            /* slightly darker for depth */
	--cyan     : var(--nav-accent);  /* #3FB8AF */
	--cyan-dim : #2e9e96;
	--white    : #ffffff;
	--text-mute: rgba(255,255,255,.60);
	--border   : rgba(255,255,255,.12);
	--slide-ms : 5500;
	
	/* CAREER */
    --accent: #2e6da4;
    --gold: #c9973a;
    --light-bg: #f4f7fb;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-mid: #4a5568;
    --text-light: #7a8699;
}


html {
	scroll-behavior: smooth;
	visibility: visible;
}

#backToTop{
	position: fixed;
	bottom: 30px;
	right: 25px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: none;
	background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
	color: #FFFFFF;
	font-size: 20px;
	cursor: pointer;
	display: none;
	z-index: 9999;
	box-shadow: 0 6px 18px rgba(0,0,0,0.25);
	transition: all 0.3s ease;
}

#backToTop:hover{
	background: #374151;
	transform: translateY(-3px);
}


/* ================= BODY ================= */
body {
    margin: 0;
    background-color: #ffffff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media print {
    body {
        display: none !important;
	}
}

#main-content {
    padding-top: 73px; /* desktop navbar height */
}

/* Mobile adjustment */
@media (max-width: 768px) {
    #main-content {
        padding-top: 62px; /* mobile navbar height */
    }
}


/* ================= HEADING ================= */
.heading_title {
    font-size: 20px;
    font-weight: 700;
    color: var(--nav-main);
}

/* ================= TYPOGRAPHY - MOBILE ================= */
@media (max-width: 576px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
    p  {
        font-size: 0.95rem;
        line-height: 1.5;
	}
}

/* ================= NAVBAR ================= */
.navbar-3d {
   background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
    box-shadow: 0 6px 18px var(--nav-shadow);
}

/* ================= NAV LINKS ================= */
.navbar-3d .nav-link {
    color: #FFE4E6 !important;
    font-weight: 300;
    letter-spacing: 0.4px;
    margin-left: 16px;
    position: relative;
    transition: all 0.35s ease;
}

/* Underline effect */
.navbar-3d .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FCA5A5, #F87171, #DC2626);
    border-radius: 10px;
    transition: width 0.35s ease;
}

/* Hover effect */
.navbar-3d .nav-link:hover {
    color: #ffffff !important;
    text-shadow:
	0 0 6px rgba(255, 255, 255, 0.6),
	0 4px 12px rgba(220, 38, 38, 0.7);
}

/* Underline expand on hover */
.navbar-3d .nav-link:hover::after {
    width: 100%;
}

/* Active menu */
.navbar-3d .nav-link.active {
    color: #ffffff !important;
}

.navbar-3d .nav-link.active::after {
    width: 100%;
}

/* ================= LOGO ================= */
.company-logo {
    height: 47px;
    width: auto;
    max-width: 160px;
    padding: 4px 10px;
    background: linear-gradient(
	180deg,
	#ffffff 0%,
	#f9f9f9 100%
    );
    border: 2px solid #dcdcdc;
    border-radius: 15px;
    box-shadow:
	0 4px 10px rgba(0, 0, 0, 0.12),
	inset 0 1px 2px rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

/* Tablet */
@media (max-width: 992px) {
    .company-logo {
        height: 42px;
        max-width: 140px;
	}
}

/* Mobile */
@media (max-width: 576px) {
    .company-logo {
        height: 36px;
        max-width: 120px;
	}
}

/* ================= TOGGLER ================= */
.navbar-toggler {
    border: none;
    font-size: 1.5rem;
    color: #FFE4E6;
    transition: transform 0.25s ease, color 0.25s ease;
}

.navbar-toggler:hover {
    color: #ffffff;
    transform: scale(1.12);
}

.navbar-toggler:focus {
    box-shadow: none;
}




/* ===================== SLIDER START  =============  */
/* ============================================================
	SLIDER WRAPPER
============================================================ */
.hero-slider {
	position: relative;
	width: 100%;
	background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
	box-shadow: 0 6px 18px var(--nav-shadow);
	overflow: hidden;
	/* height controlled by inner content */
}

/* subtle noise overlay */
.hero-slider::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
	opacity: .4;
	pointer-events: none;
	z-index: 0;
}

/* ============================================================
	SLIDE
============================================================ */
.slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity .75s ease;
	z-index: 1;
}
.slide.active {
	opacity: 1;
	pointer-events: all;
	position: relative; /* only active slide takes space */
}

/* ============================================================
	SLIDE INNER GRID  — Desktop: 2 columns  |  ≤900: stacked
============================================================ */
.slide-inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 0 auto;
	padding: 72px 60px 80px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

/* ============================================================
	LEFT — TEXT BLOCK
============================================================ */
.slide-text {
	display: flex;
	flex-direction: column;
	gap: 22px;
	align-items: flex-start;
}

.slide-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(77,216,240,.12);
	border: 1px solid rgba(77,216,240,.35);
	color: var(--cyan);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	padding: 7px 18px;
	border-radius: 40px;
}

.slide-title {
	font-size: clamp(26px, 3.4vw, 48px);
	font-weight: 900;
	line-height: 1.1;
	color: var(--white);
}
.slide-title span { color: var(--cyan); }

.slide-desc {
	font-size: clamp(13px, 1.3vw, 15px);
	color: var(--text-mute);
	line-height: 1.85;
	max-width: 440px;
}

.divider-line {
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, var(--cyan), transparent);
	border-radius: 3px;
}

.slide-stats {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 800;
	color: var(--cyan);
}
.stat-label {
	font-size: 10px;
	color: rgba(255,255,255,.45);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.slide-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--cyan);
	color: #0d2e45;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .8px;
	text-transform: uppercase;
	padding: 14px 32px;
	border-radius: 6px;
	text-decoration: none;
	box-shadow: 0 6px 28px rgba(77,216,240,.30);
	transition: transform .2s, box-shadow .2s, background .2s;
	flex-shrink: 0;
}
.slide-btn:hover {
	background: #7de8f8;
	transform: translateY(-2px);
	box-shadow: 0 12px 34px rgba(77,216,240,.45);
}
.slide-btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ============================================================
	RIGHT — IMAGE VISUAL
============================================================ */
.slide-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 420px;
	flex-shrink: 0;
}

/* Glow behind image */
.img-glow {
	position: absolute;
	width: 360px; height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(45,106,142,.55) 0%, rgba(77,216,240,.08) 55%, transparent 75%);
	animation: pulseGlow 3.2s ease-in-out infinite;
	z-index: 0;
}
@keyframes pulseGlow {
	0%,100% { transform: scale(1);    opacity: .7; }
	50%      { transform: scale(1.12); opacity: 1;  }
}

/* Outer dashed spinning ring */
.ring-spin {
	position: absolute;
	width: 390px; height: 390px;
	border-radius: 50%;
	border: 1.5px dashed rgba(77,216,240,.20);
	animation: spinRing 22s linear infinite;
	z-index: 0;
}
.ring-spin-2 {
	position: absolute;
	width: 420px; height: 420px;
	border-radius: 50%;
	border: 1px dashed rgba(255,255,255,.08);
	animation: spinRing 34s linear infinite reverse;
	z-index: 0;
}
@keyframes spinRing { to { transform: rotate(360deg); } }

/* Actual product image */
.slide-img {
	position: relative;
	z-index: 2;
	max-width: 88%;
	max-height: 370px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 20px 50px rgba(0,0,0,.55)) drop-shadow(0 4px 16px rgba(0,0,0,.3));
	animation: imgFloat 4.5s ease-in-out infinite;
}
@keyframes imgFloat {
	0%,100% { transform: translateY(0px) rotate(0deg); }
	50%      { transform: translateY(-16px) rotate(.4deg); }
}

/* Floating info badges */
.img-badge {
	position: absolute;
	z-index: 4;
	background: rgba(13,40,62,.88);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(77,216,240,.30);
	border-radius: 12px;
	padding: 10px 16px;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 8px 28px rgba(0,0,0,.4);
	white-space: nowrap;
}
.badge-icon { font-size: 22px; line-height: 1; }
.badge-text { display: flex; flex-direction: column; gap: 2px; }
.badge-text strong {
	color: var(--cyan);
	font-size: 13px;
	font-weight: 800;
}
.badge-text span { color: rgba(255,255,255,.55); font-size: 10px; }

.badge-tl { top: 6%;  left: -4%; animation: badgeFloat 4s ease-in-out infinite; }
.badge-br { bottom: 8%; right: -4%; animation: badgeFloat 4s 2s ease-in-out infinite; }
@keyframes badgeFloat {
	0%,100% { transform: translateY(0); }
	50%      { transform: translateY(-9px); }
}

/* Floating particles */
.particle {
	position: absolute;
	border-radius: 50%;
	z-index: 3;
	opacity: 0;
	animation: particleRise 5.5s ease-in-out infinite;
}
.pa { width:7px;  height:7px;  background:var(--cyan);         top:12%; left:62%; animation-delay:0s; }
.pb { width:5px;  height:5px;  background:var(--cyan);         top:75%; left:72%; animation-delay:1.4s; }
.pc { width:9px;  height:9px;  background:rgba(255,255,255,.3); top:45%; left:18%; animation-delay:2.8s; }
.pd { width:4px;  height:4px;  background:var(--cyan);         top:82%; left:30%; animation-delay:.9s; }
.pe { width:6px;  height:6px;  background:rgba(255,255,255,.25);top:22%; left:30%; animation-delay:2.0s; }
@keyframes particleRise {
	0%   { opacity:0; transform: translateY(0) scale(.4); }
	20%  { opacity:.9; }
	80%  { opacity:.3; }
	100% { opacity:0; transform: translateY(-55px) scale(1.3); }
}

/* ============================================================
	PROGRESS BAR
============================================================ */
.progress-bar {
	position: absolute;
	bottom: 0; left: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--cyan), var(--cyan-dim));
	width: 0%;
	z-index: 30;
	border-radius: 0 3px 3px 0;
}

/* ============================================================
	DOTS NAV
============================================================ */
.slider-dots {
	position: absolute;
	bottom: 22px; left: 50%;
	transform: translateX(-50%);
	display: flex; gap: 10px;
	z-index: 30;
}
.dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: rgba(255,255,255,.28);
	border: none; cursor: pointer; padding: 0;
	transition: all .3s;
}
.dot.active { background: var(--cyan); transform: scale(1.5); }

/* ============================================================
	ARROW BUTTONS
============================================================ */
.arrow-btn {
	position: absolute;
	top: 50%; transform: translateY(-50%);
	background: rgba(255,255,255,.08);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,.18);
	color: #fff;
	width: 48px; height: 48px;
	border-radius: 50%;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	z-index: 30;
	transition: all .25s;
}
.arrow-btn:hover { background: rgba(77,216,240,.22); border-color: var(--cyan); color: var(--cyan); }
.arrow-prev { left: 20px; }
.arrow-next { right: 20px; }

/* ============================================================
	SLIDE ENTRANCE ANIMATIONS
============================================================ */
.slide.active .slide-tag   { animation: fadeUp .55s .05s both; }
.slide.active .slide-title { animation: fadeUp .55s .15s both; }
.slide.active .divider-line{ animation: fadeUp .55s .22s both; }
.slide.active .slide-desc  { animation: fadeUp .55s .28s both; }
.slide.active .slide-stats { animation: fadeUp .55s .36s both; }
.slide.active .slide-btn   { animation: fadeUp .55s .44s both; }
.slide.active .slide-visual{ animation: zoomIn .65s .1s both; }
.slide.active .img-badge   { animation: popIn .5s .65s both; }

@keyframes fadeUp {
	from { opacity:0; transform: translateY(30px); }
	to   { opacity:1; transform: translateY(0); }
}
@keyframes zoomIn {
	from { opacity:0; transform: scale(.88) translateX(24px); }
	to   { opacity:1; transform: scale(1) translateX(0); }
}
@keyframes popIn {
	from { opacity:0; transform: scale(.7); }
	to   { opacity:1; transform: scale(1); }
}

/* ============================================================
	RESPONSIVE — TABLET  (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
	.slide-inner {
		padding: 56px 40px 76px;
		gap: 36px;
	}
	.slide-visual { height: 360px; }
	.img-glow, .ring-spin { width: 280px; height: 280px; }
	.ring-spin-2 { width: 310px; height: 310px; }
	.slide-img { max-height: 310px; }
	.badge-tl { left: -2%; }
	.badge-br { right: -2%; }
}

/* ============================================================
	RESPONSIVE — TABLET PORTRAIT / LARGE MOBILE (≤ 768px)
============================================================ */
@media (max-width: 768px) {
	.mock-nav { padding: 0 20px; }
	.mock-nav .nav-links { display: none; }
	.hamburger { display: flex; }
	
	.slide-inner {
		grid-template-columns: 1fr;       /* stack vertically */
		padding: 40px 24px 76px;
		gap: 32px;
		text-align: center;
		align-items: center;
		justify-items: center;
	}
	
	/* image goes on TOP on mobile */
	.slide-visual { order: -1; height: 260px; width: 100%; }
	.img-glow, .ring-spin { width: 220px; height: 220px; }
	.ring-spin-2 { width: 250px; height: 250px; }
	.slide-img { max-height: 230px; }
	
	.slide-text {
		align-items: center;    /* center all text children */
		text-align: center;
	}
	.slide-desc { text-align: center; max-width: 100%; }
	.slide-stats { justify-content: center; }
	.divider-line { margin: 0 auto; }
	
	.badge-tl { top: 2%; left: 2%; }
	.badge-br { bottom: 2%; right: 2%; }
	.img-badge { padding: 7px 12px; }
	.badge-text strong { font-size: 11px; }
	.badge-icon { font-size: 18px; }
	
	.arrow-btn { width: 38px; height: 38px; }
	.arrow-prev { left: 8px; }
	.arrow-next { right: 8px; }
	
	.hero-slider { min-height: unset; }
}

/* ============================================================
	RESPONSIVE — SMALL MOBILE  (≤ 480px)
============================================================ */
@media (max-width: 480px) {
	.mock-nav { padding: 0 16px; }
	.slide-inner { padding: 32px 16px 68px; gap: 24px; }
	.slide-visual { height: 200px; }
	.img-glow, .ring-spin { width: 170px; height: 170px; }
	.ring-spin-2 { width: 195px; height: 195px; }
	.slide-img { max-height: 180px; }
	.slide-stats { gap: 20px; }
	.stat-num { font-size: 20px; }
	.slide-btn { padding: 12px 24px; font-size: 11px; }
	
	/* hide badges on very small screens */
	.img-badge { display: none; }
}



/* ===================== SLIDER END  =============  */


/* ===================== ABOUT SECTION ===================== */
.about-us {
    background: #fff;
    overflow: hidden;
    padding: 80px 20px;
}

/* Left content animation */
.about-content {
    animation: fadeSlideUp 1s ease forwards;
    opacity: 0;
}

/* Button */
.about-us .btn-danger {
    font-weight: 600;
    padding: 8px 24px;
    background-color: var(--nav-main);
    border: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
}

.about-us .btn-danger:hover {
    background-color: #9e1a1a;
}

/* Button ripple effect */
.about-us .btn-danger::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    top: 0;
    left: 0;
    transition: width 0.4s ease;
}

.about-us .btn-danger:hover::after {
    width: 100%;
}

/* Image styling */
.about-img {
    border-radius: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeSlideRight 1.2s ease 0.3s forwards;
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
}

/* Keyframes */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
	}
    100% {
        opacity: 1;
        transform: translateY(0);
	}
}

@keyframes fadeSlideRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
	}
    100% {
        opacity: 1;
        transform: translateX(0);
	}
}

/* Tablet */
@media (max-width: 768px) {
    .about-us {
        padding: 60px 15px;
	}
	
    .about-us p {
        font-size: 1rem;
	}
	
    .about-us .btn-danger {
        font-size: 0.95rem;
	}
}

/* Mobile */
@media (max-width: 576px) {
    .about-us {
        padding: 40px 12px;
	}
	
    .about-us p {
        font-size: 0.95rem;
	}
	
    .about-img {
        max-width: 100%;
        height: auto;
	}
}

/* ===================== PRODUCTS SECTION ===================== */
.cst-products-section {
    padding: 80px 0;
    background: #eef1f5;
    font-family: 'Poppins', system-ui, sans-serif;
    position: relative;
    overflow: hidden;
}
.cst-products-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(13,31,78,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* ---- Heading ---- */
.cst-products-section .cst-section-tag {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 14px; position: relative; z-index: 1;
}
.cst-products-section .cst-section-tag .gold-line { height: 1px; width: 36px; background: #c9953a; }
.cst-products-section .cst-section-tag .tag-text {
    color: #c9953a; font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
}
.cst-products-section .cst-main-title {
    font-size: clamp(24px, 4vw, 38px); font-weight: 800;
    color: #0d1f4e; margin: 0 0 8px; text-align: center; line-height: 1.2;
    position: relative; z-index: 1;
}
.cst-products-section .cst-main-title span { color: #c9953a; }
.cst-products-section .cst-subtitle {
    font-size: 14px; color: #64748b;
    text-align: center; margin: 0 auto 52px;
    max-width: 500px; line-height: 1.7;
    position: relative; z-index: 1;
}

/* ---- Grid ---- */
.cst-products-grid {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    position: relative; z-index: 1;
}

/* ---- Card ---- */
.cst-product-card {
    background: #fff;
    border-radius: 16px;
    border-top: 3px solid #c9953a;
    box-shadow: 0 4px 20px rgba(13,31,78,0.07);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none;
    position: relative;
}
.cst-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 48px rgba(13,31,78,0.14);
}

/* Category tag */
.cst-product-card__tag {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: linear-gradient(135deg, #0d1f4e, #1a3a6b);
    color: #f0c040; font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* Image */
.cst-product-card__img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f4f6fb;
    display: flex; align-items: center; justify-content: center;
}
.cst-product-card__img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 20px; box-sizing: border-box;
    transition: transform 0.4s ease;
    display: block;
}
.cst-product-card:hover .cst-product-card__img {
    transform: scale(1.07);
}

/* Info */
.cst-product-card__info {
    padding: 20px 22px 22px;
    display: flex; flex-direction: column; flex: 1;
    border-top: 1px solid #f1f5f9;
}
.cst-product-card__title {
    font-size: 16px; font-weight: 700;
    color: #0d1f4e; margin: 0 0 8px; line-height: 1.3;
}
.cst-product-card__line {
    height: 2px; width: 32px;
    background: linear-gradient(90deg, #c9953a, rgba(201,149,58,0.3));
    border-radius: 2px; margin-bottom: 12px;
}
.cst-product-card__desc {
    font-size: 12.5px; color: #64748b;
    line-height: 1.7; flex: 1; margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cst-product-card__cta {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12.5px; font-weight: 700;
    color: #1a3a6b; text-decoration: none;
    transition: color 0.2s, gap 0.2s;
    align-self: flex-start;
}
.cst-product-card__cta:hover { color: #c9953a; gap: 10px; }
.cst-product-card__cta svg { transition: transform 0.2s; }
.cst-product-card__cta:hover svg { transform: translateX(3px); }

/* ---- Empty ---- */
.cst-products-empty {
    grid-column: 1/-1; text-align: center;
    padding: 70px 20px; background: #fff;
    border-radius: 14px; border-top: 3px solid #c9953a;
    box-shadow: 0 4px 18px rgba(13,31,78,0.06);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .cst-products-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (max-width: 576px) {
    .cst-products-section { padding: 56px 0; }
    .cst-products-section .cst-subtitle { margin-bottom: 36px; }
    .cst-products-grid { grid-template-columns: 1fr; gap: 18px; padding: 0 16px; }
    .cst-product-card__img { padding: 16px; }
    .cst-product-card__info { padding: 16px 18px 20px; }
}


/* ================= SERVICES SECTION ================= */
.cst-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
    font-family: 'Poppins', system-ui, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Dot grid */
.cst-services-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
/* Right glow */
.cst-services-section::after {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(42,82,152,0.3), transparent 65%);
    pointer-events: none;
}

/* ---- Section heading ---- */
.cst-services-section .cst-section-tag {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 14px; position: relative; z-index: 1;
}
.cst-services-section .cst-section-tag .gold-line { height: 1px; width: 36px; background: #c9953a; }
.cst-services-section .cst-section-tag .tag-text {
    color: #c9953a; font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
}
.cst-services-section .cst-main-title {
    font-size: clamp(24px, 4vw, 38px); font-weight: 800;
    color: #fff; margin: 0 0 8px; text-align: center; line-height: 1.2;
    position: relative; z-index: 1;
}
.cst-services-section .cst-main-title span { color: #f0c040; }
.cst-services-section .cst-subtitle {
    font-size: 14px; color: rgba(255,255,255,0.65);
    text-align: center; margin: 0 auto 52px;
    max-width: 500px; line-height: 1.7;
    position: relative; z-index: 1;
}

/* ---- Cards grid ---- */
.cst-services-grid {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative; z-index: 1;
}

/* ---- Card ---- */
.cst-service-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid #c9953a;
    border-radius: 16px;
    padding: 32px 24px 28px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    backdrop-filter: blur(6px);
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s, border-color 0.25s;
    position: relative; overflow: hidden;
}
.cst-service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at top center, rgba(201,149,58,0.06), transparent 70%);
    pointer-events: none;
    opacity: 0; transition: opacity 0.3s;
}
.cst-service-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    border-color: rgba(240,192,64,0.4);
    box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.cst-service-card:hover::before { opacity: 1; }

/* Icon */
.cst-service-card__icon-wrap {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,149,58,0.2), rgba(201,149,58,0.05));
    border: 2px solid rgba(201,149,58,0.35);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
    position: relative;
}
.cst-service-card__icon-wrap::after {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(201,149,58,0.12);
}
.cst-service-card:hover .cst-service-card__icon-wrap {
    transform: scale(1.12) rotate(-4deg);
    background: linear-gradient(135deg, rgba(201,149,58,0.3), rgba(201,149,58,0.1));
    border-color: #c9953a;
}
.cst-service-card__icon-wrap i {
    color: #f0c040; font-size: 26px;
    transition: transform 0.3s;
}
.cst-service-card:hover .cst-service-card__icon-wrap i {
    transform: scale(1.1);
}

/* Title */
.cst-service-card__title {
    font-size: 16px; font-weight: 700;
    color: #fff; margin: 0 0 8px; line-height: 1.3;
}

/* Gold underline */
.cst-service-card__line {
    height: 2px; width: 32px;
    background: linear-gradient(90deg, #c9953a, rgba(201,149,58,0.3));
    border-radius: 2px; margin: 0 auto 14px;
}

/* Description */
.cst-service-card__desc {
    font-size: 13px; color: rgba(255,255,255,0.65);
    line-height: 1.75; flex: 1; margin: 0;
}

/* Card number badge */
.cst-service-card__num {
    position: absolute; top: 14px; right: 16px;
    font-size: 28px; font-weight: 800;
    color: rgba(255,255,255,0.04);
    line-height: 1; pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

/* ---- Empty ---- */
.cst-services-empty {
    grid-column: 1/-1; text-align: center;
    padding: 60px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid #c9953a;
    border-radius: 14px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .cst-services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 576px) {
    .cst-services-section { padding: 56px 0; }
    .cst-services-section .cst-subtitle { margin-bottom: 36px; }
    .cst-services-grid { grid-template-columns: 1fr; gap: 16px; padding: 0 16px; }
    .cst-service-card { padding: 26px 20px 24px; }
    .cst-service-card__icon-wrap { width: 60px; height: 60px; }
    .cst-service-card__icon-wrap i { font-size: 22px; }
}

/* ================= BLOG SECTION ================= */
.cst-blog-section {
    padding: 80px 0;
    background: #eef1f5;
    font-family: 'Poppins', system-ui, sans-serif;
    position: relative;
    overflow: hidden;
}
.cst-blog-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(13,31,78,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* ---- Section heading ---- */
.cst-blog-section .cst-section-tag {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 14px;
}
.cst-blog-section .cst-section-tag .gold-line { height: 1px; width: 36px; background: #c9953a; }
.cst-blog-section .cst-section-tag .tag-text {
    color: #c9953a; font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
}
.cst-blog-section .cst-main-title {
    font-size: clamp(24px, 4vw, 38px); font-weight: 800;
    color: #0d1f4e; margin: 0 0 8px; text-align: center; line-height: 1.2;
}
.cst-blog-section .cst-main-title span { color: #c9953a; }
.cst-blog-section .cst-subtitle {
    font-size: 14px; color: #64748b;
    text-align: center; margin: 0 auto 48px;
    max-width: 480px; line-height: 1.7;
}

/* ---- Slider wrapper ---- */
.cst-blog-outer {
    max-width: 1200px; margin: 0 auto;
    padding: 0 56px;
    position: relative;
}

.cst-blog-slider {
    overflow: hidden;
    border-radius: 4px;
}

.cst-blog-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}

/* ---- Slide ---- */
.cst-blog-slide {
    flex: 0 0 33.3333%;
    padding: 10px 12px;
    box-sizing: border-box;
}

/* ---- Card ---- */
.cst-blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border-top: 3px solid #c9953a;
    box-shadow: 0 4px 18px rgba(13,31,78,0.07);
    display: flex; flex-direction: column;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}
.cst-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13,31,78,0.14);
}

/* Image */
.cst-blog-card__img-wrap {
    width: 100%; height: 210px;
    overflow: hidden; background: #f4f6fb;
    position: relative;
}
.cst-blog-card__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.4s ease;
}
.cst-blog-card:hover .cst-blog-card__img-wrap img {
    transform: scale(1.06);
}

/* Category tag on image */
.cst-blog-card__tag {
    position: absolute; top: 12px; left: 12px;
    background: linear-gradient(135deg, #0d1f4e, #1a3a6b);
    color: #f0c040; font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Content */
.cst-blog-card__body {
    padding: 20px 20px 22px;
    flex: 1; display: flex; flex-direction: column;
}
.cst-blog-card__title {
    font-size: 15.5px; font-weight: 700; color: #0d1f4e;
    margin: 0 0 8px; line-height: 1.4;
}
.cst-blog-card__underline {
    height: 2px; width: 30px;
    background: #c9953a; border-radius: 2px;
    margin-bottom: 12px;
}
.cst-blog-card__desc {
    font-size: 13px; color: #64748b; line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 0 16px;
}
.cst-blog-card__link {
    display: inline-flex; align-items: center; gap: 6px;
    color: #1a3a6b; font-size: 12.5px; font-weight: 700;
    text-decoration: none; margin-top: auto;
    transition: color 0.2s, gap 0.2s;
    align-self: flex-start;
}
.cst-blog-card__link:hover { color: #c9953a; gap: 10px; }
.cst-blog-card__link svg { transition: transform 0.2s; }
.cst-blog-card__link:hover svg { transform: translateX(3px); }

/* ---- Arrows ---- */
.cst-blog-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px; height: 42px; border-radius: 50%;
    background: #fff;
    border: 1.5px solid rgba(13,31,78,0.15);
    box-shadow: 0 4px 14px rgba(13,31,78,0.1);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10;
    color: #0d1f4e; font-size: 20px;
    transition: background 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s;
    line-height: 1;
}
.cst-blog-arrow:hover {
    background: linear-gradient(135deg, #0d1f4e, #2a5298);
    color: #f0c040; border-color: transparent;
    box-shadow: 0 6px 20px rgba(13,31,78,0.22);
}
.cst-blog-arrow--prev { left: 4px; }
.cst-blog-arrow--next { right: 4px; }

/* ---- Dots ---- */
.cst-blog-dots {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 32px;
}
.cst-blog-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(13,31,78,0.18); cursor: pointer;
    transition: background 0.2s, width 0.2s;
    border: none; padding: 0;
}
.cst-blog-dot.active {
    background: #c9953a; width: 24px; border-radius: 4px;
}

/* ---- Empty state ---- */
.cst-blog-empty {
    text-align: center; padding: 60px 20px;
    background: #fff; border-radius: 14px;
    border-top: 3px solid #c9953a;
    max-width: 400px; margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .cst-blog-slide { flex: 0 0 50%; }
    .cst-blog-outer { padding: 0 48px; }
}
@media (max-width: 600px) {
    .cst-blog-section { padding: 56px 0; }
    .cst-blog-section .cst-subtitle { margin-bottom: 32px; }
    .cst-blog-slide { flex: 0 0 100%; }
    .cst-blog-outer { padding: 0 16px; }
    .cst-blog-arrow { display: none; }
    .cst-blog-card__img-wrap { height: 180px; }
}

/* ================= CAREER SECTION ================= */
.career-section {
    padding: 100px 24px;
    background: linear-gradient(160deg, #e8eef8 0%, #f4f7fb 50%, #dde6f4 100%);
    position: relative;
    overflow: hidden;
  }

  /* Decorative blobs */
  .career-section::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(27,58,107,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .career-section::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(201,151,58,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .career-container {
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 1;
  }

  /* Section Header */
  .career-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .career-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .career-label::before,
  .career-label::after {
    content: '';
    width: 28px; height: 1.5px;
    background: var(--gold);
    display: inline-block;
  }

  .career-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 620px;
    margin: 0 auto;
  }

  /* ============================================================
     MAIN CARD — Two-column layout
  ============================================================ */
  .career-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(27,58,107,0.10), 0 4px 16px rgba(0,0,0,0.04);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(27,58,107,0.15), 0 8px 24px rgba(0,0,0,0.06);
  }

  /* ---- LEFT: Image Panel ---- */
  .career-image-panel {
    position: relative;
    min-height: 420px;
    overflow: hidden;
  }

  /* SVG/Illustration background */
  .career-image-panel .img-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
  }

  /* Decorative grid lines */
  .career-image-panel .img-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 36px 36px;
  }

  /* Floating circle accents */
  .career-image-panel .circle-lg {
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.10);
    top: -60px; right: -60px;
  }
  .career-image-panel .circle-sm {
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.10);
    bottom: 30px; left: -40px;
  }

  /* Illustration container */
  .career-illustration {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    z-index: 2;
  }

  /* SVG Illustration: Team/Career visual */
  .career-svg {
    width: 100%;
    max-width: 280px;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.25));
    animation: floatUp 4s ease-in-out infinite;
  }

  @keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
  }

  /* Stats row inside image panel */
  .career-stats {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    display: flex;
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.15);
    z-index: 3;
  }
  .career-stat {
    flex: 1;
    padding: 18px 10px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.12);
  }
  .career-stat:last-child { border-right: none; }
  .career-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
  }
  .career-stat-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
  }

  /* ---- RIGHT: Content Panel ---- */
  .career-content {
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .career-content-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(201,151,58,0.10);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(201,151,58,0.25);
    width: fit-content;
    margin-bottom: 20px;
  }

  .career-content h3 {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--nav-main);
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .career-content p {
    font-size: 0.98rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 32px;
  }

  /* Perk pills */
  .career-perks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
  }
  .perk-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--light-bg);
    border: 1px solid #d8e3f0;
    color: var(--nav-main);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 20px;
    transition: background 0.25s, border-color 0.25s;
  }
  .perk-pill:hover {
    background: #dce8f5;
    border-color: var(--accent);
  }
  .perk-icon { font-size: 0.9rem; }

  /* CTA Button */
  .career-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 6px 20px rgba(27,58,107,0.25);
  }
  .career-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
  }
  .career-btn:hover::before { transform: translateX(100%); }
  .career-btn:hover {
    background: #254d8f;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(27,58,107,0.35);
  }
  .career-btn svg {
    transition: transform 0.3s;
  }
  .career-btn:hover svg { transform: translateX(4px); }

  /* ============================================================
     TABLET  ≤ 991px
  ============================================================ */
  @media (max-width: 991px) {
    .career-section { padding: 72px 20px; }

    .heading_title { font-size: 2.1rem; }

    .career-card {
      grid-template-columns: 1fr;
    }

    .career-image-panel { min-height: 280px; }

    .career-content { padding: 36px 32px; }

    .career-content h3 { font-size: 1.55rem; }
  }

  /* ============================================================
     MOBILE  ≤ 576px
  ============================================================ */
  @media (max-width: 576px) {
    .career-section { padding: 56px 16px; }

    .heading_title { font-size: 1.65rem; }

    .career-subtitle { font-size: 0.95rem; }

    .career-header { margin-bottom: 36px; }

    .career-card { border-radius: 18px; }

    .career-image-panel { min-height: 220px; }

    .career-stat-number { font-size: 1.2rem; }

    .career-content { padding: 28px 22px; }

    .career-content h3 { font-size: 1.35rem; }

    .career-content p { font-size: 0.93rem; }

    .career-btn {
      width: 100%;
      justify-content: center;
      padding: 15px 20px;
      font-size: 0.95rem;
    }

    .career-perks { gap: 8px; }
    .perk-pill { font-size: 0.75rem; padding: 6px 11px; }
  }

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 80px 0;
    background: #eef1f5;
    font-family: 'Poppins', system-ui, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle bg pattern */
.contact-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(13,31,78,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* ---- Section heading ---- */
.contact-section .cst-section-tag {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin-bottom: 14px;
}
.contact-section .cst-section-tag .gold-line { height: 1px; width: 36px; background: #c9953a; }
.contact-section .cst-section-tag .tag-text  {
    color: #c9953a; font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
}
.contact-section .cst-main-title {
    font-size: clamp(26px, 4vw, 40px); font-weight: 800;
    color: #0d1f4e; line-height: 1.2; margin: 0 0 8px; text-align: center;
}
.contact-section .cst-main-title span { color: #c9953a; }
.contact-section .cst-subtitle {
    font-size: 14.5px; color: #64748b; text-align: center;
    margin: 0 auto 50px; max-width: 500px; line-height: 1.7;
}

/* ---- Two-column layout ---- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Info cards (left col) ---- */
.contact-info-col { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 4px 18px rgba(13,31,78,0.07);
    border-left: 3px solid #c9953a;
    display: flex; align-items: flex-start; gap: 16px;
    transition: transform 0.22s, box-shadow 0.22s;
}
.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13,31,78,0.12);
}
.contact-info-card__icon {
    width: 42px; height: 42px; min-width: 42px;
    background: linear-gradient(135deg, #0d1f4e, #2a5298);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.contact-info-card__icon i { color: #f0c040; font-size: 16px; }
.contact-info-card__body {}
.contact-info-card__label {
    font-size: 10px; font-weight: 700;
    color: #c9953a; letter-spacing: 0.1em;
    text-transform: uppercase; margin-bottom: 4px; display: block;
}
.contact-info-card__value {
    font-size: 13.5px; font-weight: 600; color: #0d1f4e; line-height: 1.5;
}
.contact-info-card__value a {
    color: #0d1f4e; text-decoration: none;
    transition: color 0.2s;
}
.contact-info-card__value a:hover { color: #c9953a; }

/* Highlight card (navy bg) */
.contact-info-card--highlight {
    background: linear-gradient(135deg, #0d1f4e, #1a3a6b);
    border-left: 3px solid #f0c040;
}
.contact-info-card--highlight .contact-info-card__label { color: rgba(255,255,255,0.55); }
.contact-info-card--highlight .contact-info-card__value { color: #fff; }
.contact-info-card--highlight .contact-info-card__value a { color: #f0c040; }
.contact-info-card--highlight .contact-info-card__value a:hover { color: #fff; }

/* ---- Form card (right col) ---- */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 36px 32px;
    box-shadow: 0 4px 24px rgba(13,31,78,0.08);
    border-top: 3px solid #c9953a;
    position: relative;
    overflow: hidden;
}
.contact-form-card::after {
    content: '';
    position: absolute; top: -40px; right: -40px;
    width: 180px; height: 180px; border-radius: 50%;
    background: radial-gradient(circle, rgba(13,31,78,0.04), transparent 70%);
    pointer-events: none;
}

.contact-form-card__header { margin-bottom: 26px; }
.contact-form-card__title {
    font-size: 18px; font-weight: 800; color: #0d1f4e;
    margin: 0 0 4px;
}
.contact-form-card__sub {
    font-size: 12.5px; color: #94a3b8; margin: 0;
}
.contact-form-card__line {
    height: 2px; width: 40px;
    background: linear-gradient(90deg, #c9953a, rgba(201,149,58,0.3));
    border-radius: 2px; margin: 10px 0 0;
}

/* Form elements */
.cst-form-group { margin-bottom: 18px; }
.cst-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }

.cst-form-label {
    display: block; font-size: 12px; font-weight: 600;
    color: #0d1f4e; margin-bottom: 6px; letter-spacing: 0.01em;
}
.cst-form-label .req { color: #e53e3e; margin-left: 2px; }

.cst-form-input,
.cst-form-select,
.cst-form-textarea {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 13.5px;
    font-family: 'Poppins', sans-serif;
    color: #1a2332;
    transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.cst-form-input::placeholder,
.cst-form-textarea::placeholder { color: #b0bec5; font-size: 13px; }
.cst-form-input:focus,
.cst-form-select:focus,
.cst-form-textarea:focus {
    border-color: #1a3a6b;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26,58,107,0.08);
}
.cst-form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%230d1f4e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
}
.cst-form-textarea { resize: vertical; min-height: 110px; }

/* Captcha row */
.cst-captcha-row { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: center; }
.cst-captcha-box {
    background: linear-gradient(135deg, #0d1f4e, #1a3a6b);
    color: #f0c040; font-size: 18px; font-weight: 800;
    letter-spacing: 0.2em; padding: 10px 18px;
    border-radius: 10px; white-space: nowrap;
    user-select: none; font-family: 'Courier New', monospace;
    border: 1.5px solid rgba(201,149,58,0.3);
    min-width: 100px; text-align: center;
}

.cst-err { display: block; font-size: 11px; color: #e53e3e; margin-top: 4px; font-weight: 500; }

/* Submit button */
.cst-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #0d1f4e, #2a5298);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-size: 14px; font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: opacity 0.22s, transform 0.18s;
    letter-spacing: 0.03em;
    margin-top: 6px;
}
.cst-submit-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.cst-submit-btn:active { transform: translateY(0); }

/* Success message */
.cst-success-msg {
    display: none;
    background: #f0fdf4; border: 1.5px solid #86efac;
    border-radius: 10px; padding: 14px 18px;
    font-size: 13.5px; color: #16a34a; font-weight: 600;
    margin-top: 14px; align-items: center; gap: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .contact-info-col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}
@media (max-width: 640px) {
    .contact-section { padding: 56px 0; }
    .contact-info-col { grid-template-columns: 1fr; }
    .cst-form-row { grid-template-columns: 1fr; gap: 0; }
    .contact-form-card { padding: 24px 20px 22px; }
    .cst-captcha-row { grid-template-columns: 1fr; }
    .contact-section .cst-subtitle { margin-bottom: 36px; }
}
@media (max-width: 400px) {
    .contact-layout { padding: 0 16px; }
}