/* ======================================================================
   COMMON.CSS — Consolidated stylesheet for the Cistron Systems website
   Merged from: style.css + inline <style> blocks (career.php,
   career_view.php, category.php, product_view.php) + former inline
   style="" attributes.

   Structure:
     1. Google Font imports (from former page-level <style> blocks)
     2. Base/global styles (from the original shared style.css)
     3. Page-scoped styles — each page's own rules are namespaced under
        a body class (body.page-career, body.page-career-view,
        body.page-category, body.page-product) so that class names which
        were previously isolated inside separate <style> blocks (e.g.
        .career-section, .cat-label, .product-card, .hero-h1, body)
        cannot collide with each other or with the global rules below,
        even though they now live in one file.
   ====================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ---------------------------------------------------------------
   BASE / GLOBAL (from original shared style.css)
   --------------------------------------------------------------- */

/* ============================================================
	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;
    visibility: hidden;   /* 🔥 ADD THIS */
    pointer-events: none;
    will-change: opacity, transform;
    transition: opacity .75s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;  /* 🔥 ADD THIS */
    pointer-events: all;
    position: relative;
    z-index: 2;
}

/* ============================================================
	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; }
}

/* ======================================================================
   PAGE: career.php  (scope: body.page-career)
   ====================================================================== */
/* ══════════════════════════════════
           HERO — same as career_view.php
        ══════════════════════════════════ */

body.page-career .career-hero {
            background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
            padding: 120px 24px 64px;
            position: relative;
            overflow: hidden;
            text-align: left;
        }

body.page-career .career-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
        }

body.page-career .career-hero::after {
            content: "";
            position: absolute;
            top: -100px;
            right: -100px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(58, 106, 191, .25) 0%, transparent 70%);
            pointer-events: none;
        }

body.page-career .hero-breadcrumb {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 5px 8px;
            background: rgba(255, 255, 255, .09);
            border: 1px solid rgba(255, 255, 255, .16);
            border-radius: 30px;
            padding: 7px 18px;
            font-size: 12px;
            color: rgba(255, 255, 255, .75);
            margin-bottom: 1.75rem;
            max-width: 100%;
            position: relative;
            z-index: 1;
        }

body.page-career .hero-breadcrumb a {
            color: rgba(255, 255, 255, .7);
            text-decoration: none;
            transition: color .2s;
        }

body.page-career .hero-breadcrumb a:hover {
            color: #fff;
        }

body.page-career .hero-breadcrumb .bc-active {
            color: #f5c542;
            font-weight: 600;
        }

body.page-career .hero-breadcrumb .bc-sep {
            color: rgba(255, 255, 255, .32);
        }

body.page-career .cat-label {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

body.page-career .cat-label__line {
            height: 1px;
            width: 40px;
            background: #c9953a;
        }

body.page-career .cat-label__text {
            color: #c9953a;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: .16em;
            text-transform: uppercase;
        }

body.page-career .hero-h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.13;
            margin-bottom: .4rem;
            position: relative;
            z-index: 1;
        }

body.page-career .hero-h1 .gold {
            color: #f5c542;
        }

body.page-career .hero-desc {
            font-size: 15px;
            color: rgba(255, 255, 255, .68);
            line-height: 1.85;
            max-width: 580px;
            position: relative;
            z-index: 1;
        }

/* ══════════════════════════════════
           CAREER SECTION
        ══════════════════════════════════ */

body.page-career .career-section {
            padding: 3rem 1rem 5rem;
            background: #f0f2f8;
        }

body.page-career .career-heading {
            font-size: 1.6rem;
            font-weight: 700;
            color: #111;
        }

body.page-career .back-btn {
            font-size: 13px;
            font-weight: 500;
            padding: 9px 22px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
            color: #fff;
            letter-spacing: 0.4px;
            transition: opacity 0.2s, transform 0.15s;
            white-space: nowrap;
        }

body.page-career .back-btn:hover {
            opacity: .88;
            transform: translateY(-1px);
        }

/* ── Cards ── */

body.page-career .product-card {
            background: #fff;
            border: 0.5px solid rgba(0, 0, 0, .10);
            border-radius: 18px;
            padding: 1.5rem 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            position: relative;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
            height: 100%;
            box-shadow: 0 2px 16px rgba(13, 31, 78, .05);
        }

body.page-career .product-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
        }

body.page-career .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 36px rgba(13, 31, 78, .12);
            border-color: rgba(42, 82, 152, .2);
        }

body.page-career .job-type-badge {
            display: inline-flex;
            align-items: center;
            font-size: 11px;
            font-weight: 600;
            background: #e8eef8;
            color: #1a3a6b;
            padding: 4px 12px;
            border-radius: 20px;
            width: fit-content;
            letter-spacing: .02em;
        }

body.page-career .heading_title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #111;
            line-height: 1.4;
            text-align: left;
        }

body.page-career .card-body p {
            font-size: 13px;
            color: #666;
        }

body.page-career .card-body p strong {
            color: #333;
            font-weight: 600;
        }

body.page-career .product-info-row {
            margin-top: auto;
            padding-top: .85rem;
            border-top: .5px solid rgba(0, 0, 0, .09);
        }

body.page-career .product-info-row .btn-outline-primary {
            font-size: 13px;
            font-weight: 500;
            padding: 9px 24px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
            color: #fff;
            letter-spacing: 0.4px;
            transition: opacity 0.2s, transform 0.15s;
            text-decoration: none;
            display: inline-block;
        }

body.page-career .product-info-row .btn-outline-primary:hover {
            opacity: .88;
            transform: translateY(-1px);
            color: #fff;
        }

/* empty state */

body.page-career .empty-state {
            text-align: center;
            padding: 4rem 1rem;
            color: #999;
        }

body.page-career .empty-state i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
            color: #ccc;
        }

/* ══════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════ */

@media (max-width: 768px) {
  body.page-career .career-hero {
                padding: 110px 20px 52px;
                text-align: center;
            }
  body.page-career .hero-breadcrumb {
                justify-content: center;
            }
  body.page-career .cat-label {
                justify-content: center;
            }
  body.page-career .hero-desc {
                margin: 0 auto;
            }
  body.page-career .hero-h1 {
                font-size: clamp(1.7rem, 7vw, 2.4rem);
            }
  body.page-career .career-section {
                padding: 2rem 1rem 4rem;
            }
  body.page-career .section-topbar {
                flex-direction: column;
                align-items: flex-start !important;
                gap: 12px;
            }
  body.page-career .heading_title {
                text-align: left;
            }
}

@media (max-width: 480px) {
  body.page-career .career-hero {
                padding: 100px 16px 44px;
            }
  body.page-career .hero-breadcrumb {
                font-size: 11px;
                padding: 6px 14px;
            }
  body.page-career .hero-desc {
                font-size: 14px;
            }
  body.page-career .career-section {
                padding: 1.5rem .75rem 3.5rem;
            }
  body.page-career .product-card {
                padding: 1.25rem 1rem;
            }
  body.page-career .section-topbar {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 10px;
                margin-bottom: 1.5rem !important;
            }
}

/* ======================================================================
   PAGE: career_view.php  (scope: body.page-career-view)
   ====================================================================== */
/* ─── Reset ─── */

/* ══════════════════════════════════
           HERO SECTION
        ══════════════════════════════════ */

body.page-career-view .career-hero {
            background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
            padding: 120px 24px 64px;
            position: relative;
            overflow: hidden;
            text-align: left;
        }

/* subtle dot-grid texture */

body.page-career-view .career-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
        }

/* glow orb top-right */

body.page-career-view .career-hero::after {
            content: "";
            position: absolute;
            top: -100px; right: -100px;
            width: 420px; height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(58,106,191,.25) 0%, transparent 70%);
            pointer-events: none;
        }

/* Breadcrumb pill */

body.page-career-view .hero-breadcrumb {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 5px 8px;
            background: rgba(255,255,255,.09);
            border: 1px solid rgba(255,255,255,.16);
            border-radius: 30px;
            padding: 7px 18px;
            font-size: 12px;
            color: rgba(255,255,255,.75);
            margin-bottom: 1.75rem;
            max-width: 100%;
            position: relative;
            z-index: 1;
        }

body.page-career-view .hero-breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; transition: color .2s; }

body.page-career-view .hero-breadcrumb a:hover { color: #fff; }

body.page-career-view .hero-breadcrumb .bc-active { color: #f5c542; font-weight: 600; }

body.page-career-view .hero-breadcrumb .bc-sep { color: rgba(255,255,255,.32); }

body.page-career-view .cat-label {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

body.page-career-view .cat-label__line { height: 1px; width: 40px; background: #c9953a; }

body.page-career-view .cat-label__text { color: #c9953a; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

body.page-career-view .hero-h1 {
            font-family: "Playfair Display", serif;
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.13;
            margin-bottom: .4rem;
            position: relative;
            z-index: 1;
        }

body.page-career-view .hero-h1 .gold { color: #f5c542; }

body.page-career-view .hero-desc {
            font-size: 15px;
            color: rgba(255,255,255,.68);
            line-height: 1.85;
            max-width: 580px;
            position: relative;
            z-index: 1;
        }

/* ══════════════════════════════════
           CAREER SECTION
        ══════════════════════════════════ */

body.page-career-view .career-section {
            padding: 3rem 1rem 5rem;
            background: #f0f2f8;
        }

/* ── Main Card ── */

body.page-career-view .product-card {
            border-radius: 22px;
            border: 0.5px solid rgba(0,0,0,.08);
            background: #fff;
            overflow: hidden;
            width: 100%;
            box-shadow: 0 4px 32px rgba(13,31,78,.07);
        }

/* ── Card gradient header ── */

body.page-career-view .card-hero {
            background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
            padding: 2rem 2.25rem 1.75rem;
            position: relative;
            overflow: hidden;
        }

body.page-career-view .card-hero::after {
            content: "";
            position: absolute;
            top: -60px; right: -60px;
            width: 220px; height: 220px;
            border-radius: 50%;
            background: rgba(255,255,255,.05);
            pointer-events: none;
        }

body.page-career-view .card-hero-title {
            font-family: "Playfair Display", serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1.1rem;
            position: relative;
            z-index: 1;
        }

body.page-career-view .badge-row {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

body.page-career-view .pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            font-family: "DM Sans", sans-serif;
        }

body.page-career-view .pill-loc { background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.28); }

body.page-career-view .pill-type { background: #e1f5ee; color: #085041; }

body.page-career-view .pill-sal { background: #faeeda; color: #633806; }

body.page-career-view .cat-label {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

body.page-career-view .cat-label__line { height: 1px; width: 40px; background: #c9953a; }

body.page-career-view .cat-label__text { color: #c9953a; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

/* ── Section blocks ── */

body.page-career-view .card-body-inner { padding: 2rem 2.25rem; }

body.page-career-view .section-block { margin-bottom: 1.75rem; }

body.page-career-view .section-label {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: .85rem;
        }

body.page-career-view .icon-circle {
            width: 34px; height: 34px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

body.page-career-view .ic-blue { background: #E6F1FB; }

body.page-career-view .ic-teal { background: #E1F5EE; }

body.page-career-view .ic-amber { background: #FAEEDA; }

body.page-career-view .ic-purple { background: #EEEDFE; }

body.page-career-view .ic-pink { background: #FBEAF0; }

body.page-career-view .section-title {
            font-size: 12px;
            font-weight: 600;
            color: #444;
            letter-spacing: .06em;
            text-transform: uppercase;
            font-family: "DM Sans", sans-serif;
        }

body.page-career-view .section-content {
            font-size: 14px;
            color: #555;
            line-height: 1.9;
            padding-left: 44px;
            font-family: "DM Sans", sans-serif;
        }

body.page-career-view .section-content ul { padding-left: 1.2rem; margin: 0; }

body.page-career-view .section-content li { margin-bottom: 5px; }

/* ── Skill tags ── */

body.page-career-view .skill-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-left: 44px; }

body.page-career-view .skill-tag {
            padding: 5px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            font-family: "DM Sans", sans-serif;
        }

body.page-career-view .st-blue { background: #E6F1FB; color: #0C447C; }

body.page-career-view .st-teal { background: #E1F5EE; color: #085041; }

body.page-career-view .st-purple { background: #EEEDFE; color: #3C3489; }

body.page-career-view .st-amber { background: #FAEEDA; color: #633806; }

body.page-career-view .st-pink { background: #FBEAF0; color: #72243E; }

/* ── Divider ── */

body.page-career-view .sec-divider { border: none; border-top: .5px solid rgba(0,0,0,.08); margin: 1.75rem 0; }

/* ── Apply button ── */

body.page-career-view .apply-btn {
            font-size: 14px;
            font-weight: 600;
            padding: 13px 40px;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
            color: #fff;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            transition: opacity .2s, transform .18s, box-shadow .2s;
            box-shadow: 0 4px 18px rgba(42,82,152,.28);
            font-family: "DM Sans", sans-serif;
        }

body.page-career-view .apply-btn:hover { opacity: .9; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,82,152,.35); }

/* ── Modal header ── */

body.page-career-view .modal-header.bg-primary {
            background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%) !important;
        }

body.page-career-view .modal-content { border-radius: 20px; overflow: hidden; border: none; box-shadow: 0 24px 64px rgba(0,0,0,.2); }

body.page-career-view .modal-body { padding: 1.75rem 2rem; }

body.page-career-view .modal-footer { padding: 1rem 2rem 1.5rem; border-top: .5px solid rgba(0,0,0,.08); }

/* form polish */

body.page-career-view .form-control {
            border: .5px solid rgba(0,0,0,.15);
            border-radius: 10px;
            padding: 11px 14px;
            font-size: 14px;
            font-family: "DM Sans", sans-serif;
            transition: border .2s, box-shadow .2s;
        }

body.page-career-view .form-control:focus { border-color: #2a5298; box-shadow: 0 0 0 3px rgba(42,82,152,.1); outline: none; }

body.page-career-view .form-label.fw-semibold { font-size: 12px; font-weight: 600; color: #444; letter-spacing: .04em; text-transform: uppercase; }

body.page-career-view .btn-primary { background: linear-gradient(135deg,#0d1f4e,#2a5298 60%,#3a6abf); border: none; border-radius: 10px; font-family: "DM Sans",sans-serif; font-weight: 600; padding: 11px 28px; }

body.page-career-view .btn-danger { border-radius: 10px; font-family: "DM Sans",sans-serif; font-weight: 500; }

body.page-career-view .input-group .btn { border-radius: 0 10px 10px 0 !important; font-size: 12px; font-weight: 600; }

body.page-career-view .input-group .form-control { border-radius: 10px 0 0 10px !important; }

/* ══════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════ */

/* Tablet */

@media (max-width: 991px) {
  body.page-career-view .card-body-inner { padding: 1.75rem 1.75rem; }
}

/* Mobile landscape / large phone */

@media (max-width: 768px) {
  body.page-career-view .career-hero {
                padding: 110px 20px 52px;
                text-align: center;
            }
  body.page-career-view .hero-breadcrumb { justify-content: center; }
  body.page-career-view .cat-label { justify-content: center; }
  body.page-career-view .hero-desc { margin: 0 auto; }
  body.page-career-view .hero-h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  body.page-career-view .card-hero { padding: 1.6rem 1.5rem 1.4rem; }
  body.page-career-view .card-hero-title { font-size: 1.3rem; }
  body.page-career-view .card-body-inner { padding: 1.5rem 1.25rem; }
  body.page-career-view .section-content { padding-left: 0; }
  body.page-career-view .skill-tags { padding-left: 0; }
  body.page-career-view .modal-body { padding: 1.25rem 1.25rem; }
  body.page-career-view .modal-footer { padding: .875rem 1.25rem 1.25rem; }
}

/* Small phone */

@media (max-width: 480px) {
  body.page-career-view .career-hero { padding: 100px 16px 44px; }
  body.page-career-view .hero-breadcrumb { font-size: 11px; padding: 6px 14px; }
  body.page-career-view .pill { font-size: 11px; padding: 6px 12px; }
  body.page-career-view .card-hero { padding: 1.3rem 1.1rem 1.2rem; }
  body.page-career-view .card-hero-title { font-size: 1.15rem; }
  body.page-career-view .card-body-inner { padding: 1.25rem 1rem; }
  body.page-career-view .apply-btn { width: 100%; justify-content: center; padding: 13px 24px; }
  body.page-career-view .section-title { font-size: 11px; }
  body.page-career-view .section-content { font-size: 13.5px; }
  body.page-career-view .icon-circle { width: 30px; height: 30px; border-radius: 8px; }
  body.page-career-view .section-label { gap: 8px; }
}

/* Very small */

@media (max-width: 360px) {
  body.page-career-view .badge-row { gap: 7px; }
  body.page-career-view .pill { padding: 5px 10px; font-size: 10.5px; }
}

/* ======================================================================
   PAGE: category.php  (scope: body.page-category)
   ====================================================================== */
/* ---- Hero ---- */

body.page-category .cat-hero {
            background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
            padding: 120px 24px 64px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

body.page-category .cat-hero__dots {
            position: absolute; inset: 0;
            background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }

body.page-category .cat-hero__glow {
            position: absolute; top: 0; right: 0;
            width: 50%; height: 100%;
            background: radial-gradient(ellipse at right center, rgba(80,140,220,0.25), transparent 70%);
            pointer-events: none;
        }

body.page-category .cat-hero__inner { max-width: 820px; margin: 0 auto; position: relative; }

body.page-category .cat-breadcrumb {
            display: inline-flex; align-items: center; gap: 6px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 30px; padding: 6px 18px; margin-bottom: 26px;
        }

body.page-category .cat-breadcrumb span { color: rgba(255,255,255,0.7); font-size: 13px; }

body.page-category .cat-breadcrumb span.sep { color: rgba(255,255,255,0.35); }

body.page-category .cat-breadcrumb span.active { color: #f0c040; font-weight: 600; }

body.page-category .cat-label {
            display: flex; align-items: center; justify-content: center;
            gap: 12px; margin-bottom: 16px;
        }

body.page-category .cat-label__line { height: 1px; width: 40px; background: #c9953a; }

body.page-category .cat-label__text { color: #c9953a; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }

body.page-category .cat-hero h1 { margin: 0; }

body.page-category .cat-hero h1 span.white { display: block; margin: 0 0 4px; font-size: clamp(26px, 5vw, 46px); font-weight: 800; color: #fff; line-height: 1.15; }

body.page-category .cat-hero h1 span.gold { display: block; margin: 0 0 20px; font-size: clamp(26px, 5vw, 46px); font-weight: 800; color: #f0c040; line-height: 1.15; }

body.page-category .cat-hero p.desc {
            margin: 0 auto 34px;
            font-size: 15px; color: rgba(255,255,255,0.78);
            line-height: 1.85; max-width: 620px; font-weight: 400;
        }

/* Stats bar */

body.page-category .cat-stats {
            display: inline-grid;
            grid-template-columns: repeat(3, 1fr);
            background: rgba(255,255,255,0.09);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 14px; overflow: hidden;
            max-width: 580px; width: 100%;
        }

body.page-category .cat-stats__item {
            padding: 20px 24px; text-align: center;
            border-right: 1px solid rgba(255,255,255,0.1);
        }

body.page-category .cat-stats__item:last-child { border-right: none; }

body.page-category .cat-stats__num { font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }

body.page-category .cat-stats__num.gold { font-size: 20px; color: #f0c040; }

body.page-category .cat-stats__lbl { font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-top: 5px; }

/* ---- Body ---- */

body.page-category .cat-body { background: #eef1f5; padding: 52px 24px 80px; }

body.page-category .cat-body__wrap { max-width: 1200px; margin: 0 auto; }

/* Section header */

body.page-category .cat-sec-header {
            display: flex; align-items: center;
            justify-content: space-between;
            flex-wrap: wrap; gap: 16px;
            margin-bottom: 36px;
        }

body.page-category .cat-sec-label {
            display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
        }

body.page-category .cat-sec-label__line { height: 2px; width: 26px; background: #c9953a; border-radius: 2px; }

body.page-category .cat-sec-label__text { color: #c9953a; font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

body.page-category .cat-sec-header h2 { margin: 0; font-size: clamp(20px, 3vw, 30px); font-weight: 800; color: #0d1f4e; }

/* Back button */

body.page-category .cat-back-btn {
            background: transparent;
            border: 1.5px solid #0d1f4e;
            color: #0d1f4e;
            padding: 10px 22px;
            border-radius: 30px;
            font-family: "Poppins", sans-serif;
            font-size: 13px; font-weight: 600;
            cursor: pointer;
            display: inline-flex; align-items: center; gap: 7px;
            transition: background 0.2s, color 0.2s;
            text-decoration: none;
        }

body.page-category .cat-back-btn:hover { background: #0d1f4e; color: #fff; }

/* Grid */

body.page-category .cat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 30px;
        }

/* Card */

body.page-category .cat-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(13,31,78,0.07);
            border-top: 3px solid #c9953a;
            display: flex; flex-direction: column;
            transition: transform 0.25s, box-shadow 0.25s;
        }

body.page-category .cat-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 16px 44px rgba(13,31,78,0.14);
        }

body.page-category .cat-card__top {
            padding: 20px 20px 0;
            display: flex; align-items: center; justify-content: space-between;
        }

body.page-category .cat-card__icon {
            width: 44px; height: 44px;
            background: linear-gradient(135deg, #0d1f4e, #2a5298);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
        }

body.page-category .cat-card__badge {
            background: #e8f5e9; color: #2e7d32;
            font-size: 10px; font-weight: 700; letter-spacing: 0.07em;
            padding: 4px 12px; border-radius: 20px; text-transform: uppercase;
        }

body.page-category .cat-card__img-wrap {
            display: block;
            margin: 16px 0 0;
            overflow: hidden;
            border-radius: 0;
            background: #f4f6fb;
            aspect-ratio: 3 / 2;
            text-decoration: none;
        }

body.page-category .cat-card__img {
            width: 100%; height: 100%;
            object-fit: cover;
            padding: 0;
            transition: transform 0.4s;
        }

body.page-category .cat-card__img-wrap:hover .cat-card__img { transform: scale(1.06); }

body.page-category .cat-card__info { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }

body.page-category .cat-card__title {
            margin: 0 0 7px;
            font-size: 16px; font-weight: 700; color: #0d1f4e; line-height: 1.3;
            text-decoration: none;
        }

body.page-category .cat-card__title:hover { color: #c9953a; }

body.page-category .cat-card__line { height: 2px; width: 32px; background: #c9953a; margin-bottom: 14px; border-radius: 2px; }

body.page-category .cat-card__link {
            display: inline-flex; align-items: center; gap: 6px;
            color: #1a3a6b; font-family: "Poppins", sans-serif;
            font-size: 13px; font-weight: 700;
            text-decoration: none; margin-top: auto;
            transition: color 0.2s, gap 0.2s;
        }

body.page-category .cat-card__link:hover { color: #c9953a; gap: 11px; }

/* Empty state */

body.page-category .cat-empty {
            grid-column: 1 / -1; text-align: center;
            padding: 80px 20px; background: #fff;
            border-radius: 14px; border-top: 3px solid #c9953a;
        }

body.page-category .cat-empty__icon {
            width: 72px; height: 72px; background: #f0f4ff;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            margin: 0 auto 16px;
        }

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  body.page-category .cat-hero { padding: 100px 16px 52px; }
  body.page-category .cat-stats { grid-template-columns: repeat(3, 1fr); }
  body.page-category .cat-stats__item { padding: 16px 12px; }
  body.page-category .cat-stats__num { font-size: 20px; }
  body.page-category .cat-stats__num.gold { font-size: 16px; }
  body.page-category .cat-stats__lbl { font-size: 8.5px; }
  body.page-category .cat-body { padding: 40px 16px 60px; }
  body.page-category .cat-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
}

@media (max-width: 480px) {
  body.page-category .cat-stats { grid-template-columns: 1fr; max-width: 280px; }
  body.page-category .cat-stats__item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.1); }
  body.page-category .cat-stats__item:last-child { border-bottom: none; }
  body.page-category .cat-grid { grid-template-columns: 1fr; }
  body.page-category .cat-sec-header { flex-direction: column; align-items: flex-start; }
}

/* ======================================================================
   PAGE: product_view.php  (scope: body.page-product)
   ====================================================================== */
body.page-product {
            margin: 0; padding: 0;
            font-family: "Poppins", system-ui, sans-serif;
            background: #eef1f5;
            color: #1a2332;
        }

/* ---- HERO ---- */

body.page-product .pdt-hero {
            background: linear-gradient(135deg, #0d1f4e 0%, #1a3a6b 45%, #2a5298 80%, #3a6abf 100%);
            padding: 120px 24px 64px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

body.page-product .pdt-hero__dots {
            position: absolute; inset: 0;
            background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
        }

body.page-product .pdt-hero__glow {
            position: absolute; top: 0; right: 0;
            width: 50%; height: 100%;
            background: radial-gradient(ellipse at right center, rgba(80,140,220,0.25), transparent 70%);
            pointer-events: none;
        }

body.page-product .pdt-hero__inner { max-width: 860px; margin: 0 auto; position: relative; }

/* Breadcrumb */

body.page-product .pdt-breadcrumb {
            display: inline-flex; align-items: center; gap: 6px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 30px; padding: 6px 18px; margin-bottom: 26px;
            flex-wrap: wrap; justify-content: center;
        }

body.page-product .pdt-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; }

body.page-product .pdt-breadcrumb a:hover { color: #f0c040; }

body.page-product .pdt-breadcrumb .sep { color: rgba(255,255,255,0.35); font-size: 13px; }

body.page-product .pdt-breadcrumb .active { color: #f0c040; font-size: 13px; font-weight: 600; }

/* Label */

body.page-product .pdt-label { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }

body.page-product .pdt-label__line { height: 1px; width: 40px; background: #c9953a; }

body.page-product .pdt-label__text { color: #c9953a; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }

body.page-product .pdt-hero h1 {
            margin: 0 0 14px;
            font-size: clamp(24px, 4.5vw, 44px);
            font-weight: 800; color: #fff; line-height: 1.15;
        }

body.page-product .pdt-hero h1 span { color: #f0c040; }

/* Back btn */

body.page-product .pdt-back-btn {
            display: inline-flex; align-items: center; gap: 7px;
            background: transparent;
            border: 1.5px solid rgba(255,255,255,0.35);
            color: rgba(255,255,255,0.85);
            padding: 9px 22px; border-radius: 30px;
            font-family: "Poppins", sans-serif;
            font-size: 13px; font-weight: 600;
            cursor: pointer; text-decoration: none;
            transition: background 0.2s, border-color 0.2s, color 0.2s;
            margin-top: 20px;
        }

body.page-product .pdt-back-btn:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

/* ---- BODY ---- */

body.page-product .pdt-body { background: #eef1f5; padding: 52px 24px 80px; }

body.page-product .pdt-body__wrap { max-width: 1200px; margin: 0 auto; }

/* ---- MAIN PRODUCT CARD ---- */

body.page-product .pdt-main-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(13,31,78,0.08);
            border-top: 3px solid #c9953a;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            margin-bottom: 32px;
        }

/* Left: info */

body.page-product .pdt-main-card__info { padding: 44px 44px 44px 44px; display: flex; flex-direction: column; justify-content: flex-start; }

body.page-product .pdt-sec-label { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }

body.page-product .pdt-sec-label__line { height: 2px; width: 26px; background: #c9953a; border-radius: 2px; }

body.page-product .pdt-sec-label__text { color: #c9953a; font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

body.page-product .pdt-main-card__title {
            margin: 0 0 6px;
            font-size: clamp(20px, 2.5vw, 30px);
            font-weight: 800; color: #0d1f4e; line-height: 1.2;
        }

body.page-product .pdt-main-card__line { height: 3px; width: 48px; background: #c9953a; border-radius: 2px; margin-bottom: 20px; }

body.page-product .pdt-main-card__divider { border: none; border-top: 1px solid #e8edf5; margin: 0 0 20px; }

body.page-product .pdt-desc-heading {
            font-size: 13px; font-weight: 700; color: #c9953a;
            letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 10px;
        }

body.page-product .pdt-main-card__desc {
            font-size: 14.5px; color: #475569; line-height: 1.85;
            margin: 0; font-weight: 400;
        }

/* Right: image */

body.page-product .pdt-main-card__img-wrap {
            background: #f4f6fb;
            display: flex; align-items: center; justify-content: center;
            min-height: 400px;
            overflow: hidden;
            position: relative;
        }

body.page-product .pdt-main-card__img {
            width: 100%; height: 100%;
            object-fit: contain;
            padding: 32px;
            transition: transform 0.4s;
        }

body.page-product .pdt-main-card__img:hover { transform: scale(1.05); }

/* ---- SPECS & FEATURES GRID ---- */

body.page-product .pdt-detail-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 26px;
        }

body.page-product .pdt-detail-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 18px rgba(13,31,78,0.07);
            border-top: 3px solid #c9953a;
        }

body.page-product .pdt-detail-card__header {
            padding: 22px 28px 16px;
            border-bottom: 1px solid #eef1f5;
            display: flex; align-items: center; gap: 12px;
        }

body.page-product .pdt-detail-card__icon {
            width: 40px; height: 40px; min-width: 40px;
            background: linear-gradient(135deg, #0d1f4e, #2a5298);
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
        }

body.page-product .pdt-detail-card__title {
            margin: 0;
            font-size: 16px; font-weight: 700; color: #0d1f4e;
        }

body.page-product .pdt-detail-card__body { padding: 20px 28px 24px; }

body.page-product .pdt-spec-list { list-style: none; margin: 0; padding: 0; }

body.page-product .pdt-spec-list li {
            display: flex; align-items: flex-start; gap: 10px;
            padding: 10px 0;
            border-bottom: 1px solid #f1f5f9;
            font-size: 14px; color: #334155; line-height: 1.55;
        }

body.page-product .pdt-spec-list li:last-child { border-bottom: none; }

body.page-product .pdt-spec-list li::before {
            content: "";
            width: 7px; height: 7px; min-width: 7px;
            border-radius: 50%;
            background: #c9953a;
            margin-top: 6px;
        }

body.page-product .pdt-spec-list li.empty { color: #94a3b8; font-style: italic; }

body.page-product .pdt-spec-list li.empty::before { background: #cbd5e1; }

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  body.page-product .pdt-main-card {
                grid-template-columns: 1fr;
            }
  body.page-product .pdt-main-card__img-wrap { min-height: 300px; }
  body.page-product .pdt-main-card__info { padding: 30px 28px; }
}

@media (max-width: 768px) {
  body.page-product .pdt-hero { padding: 100px 16px 52px; }
  body.page-product .pdt-body { padding: 36px 16px 60px; }
  body.page-product .pdt-detail-grid { grid-template-columns: 1fr; gap: 20px; }
  body.page-product .pdt-main-card__info { padding: 24px 20px; }
  body.page-product .pdt-detail-card__header { padding: 18px 20px 14px; }
  body.page-product .pdt-detail-card__body { padding: 16px 20px 20px; }
}

@media (max-width: 480px) {
  body.page-product .pdt-breadcrumb { font-size: 11px; padding: 5px 14px; }
  body.page-product .pdt-main-card__img-wrap { min-height: 240px; }
}

/* ======================================================================
   FORMER INLINE style="" ATTRIBUTES (converted to utility classes)
   ====================================================================== */
/* index.php */
.util-center-pad { padding: 0 24px; text-align: center; }
.empty-icon-circle-68 { width: 68px; height: 68px; background: #f0f4ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.empty-icon-circle-64 { width: 64px; height: 64px; background: #f0f4ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.empty-title-17 { margin: 0 0 6px; font-size: 17px; font-weight: 700; color: #0d1f4e; font-family: 'Poppins', sans-serif; }
.empty-title-16 { margin: 0 0 6px; font-size: 16px; font-weight: 700; color: #0d1f4e; }
.empty-desc { margin: 0; font-size: 13px; color: #94a3b8; }
.svg-center-icon { margin: 0 auto 12px; display: block; }
.relative-z1 { position: relative; z-index: 1; }
.contact-info-card__value--sm { font-size: 12.5px; font-weight: 500; color: #475569; }
.footer-badge-label { font-size: 11.5px; font-weight: 400; color: rgba(255,255,255,0.65); }

/* category.php */
.cat-breadcrumb-link { color: rgba(255,255,255,0.7); text-decoration: none; }
.cat-title-inherit { margin: 0; font-size: inherit; font-weight: inherit; color: inherit; font-family: inherit; }

/* shared by category.php + product_view.php empty/not-found states */
.empty-state-title { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: #0d1f4e; font-family: 'Poppins', sans-serif; }
.empty-state-desc { margin: 0; color: #94a3b8; font-size: 14px; }

/* product_view.php */
.pdt-not-found-box { text-align: center; padding: 80px 20px; background: #fff; border-radius: 14px; border-top: 3px solid #c9953a; }
.pdt-not-found-icon { width: 72px; height: 72px; background: #f0f4ff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.pdt-not-found-desc { margin: 0 0 20px; color: #94a3b8; font-size: 14px; }
.pdt-back-btn--center { margin: 0 auto; }

/* career_view.php — plain (non-!important) so JS's own inline style.display
   assignments (verifyEmailOTP flow) continue to override this as before */
.js-hidden { display: none; }
