@charset "utf-8";

:root {
	/* Colors */
	--color-primary: #5b7a8a;
	--color-primary-light: #e8f0f3;
	--color-primary-dark: #3d5561;
	--color-text: #2c3e44;
	--color-text-light: #5f7a84;
	--color-bg: #fafcfd;
	--color-bg-alt: #f0f5f7;
	--color-white: #ffffff;
	--color-border: #dce6ea;

	/* Typography */
	--font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--font-heading: "Georgia", "Times New Roman", serif;

	/* Spacing */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 2rem;
	--space-lg: 4rem;
	--space-xl: 6rem;

	/* Layout */
	--max-width: 1100px;
	--border-radius: 8px;
}

/* ===========================================
           Reset & Base Styles
           =========================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--color-text);
	background-color: var(--color-bg);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color 0.2s ease;
}

a:hover {
	color: var(--color-primary-dark);
}

/* ===========================================
           Typography
           =========================================== */
h1,
h2,
h3,
h4 {
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.3;
	color: var(--color-text);
}

h1 {
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	letter-spacing: -0.02em;
}

h2 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: var(--space-md);
}

h3 {
	font-size: 1.25rem;
	margin-bottom: var(--space-sm);
}

p {
	margin-bottom: var(--space-sm);
}

/* ===========================================
           Layout Components
           =========================================== */
.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 var(--space-md);
}

section {
	padding: var(--space-xl) 0;
}

.section-label {
	font-family: var(--font-main);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: var(--space-xs);
}

/* ===========================================
           Buttons
           =========================================== */
.btn {
	display: inline-block;
	padding: 0.875rem 1.75rem;
	font-family: var(--font-main);
	font-size: 0.9375rem;
	font-weight: 500;
	text-align: center;
	border: none;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-primary {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.btn-primary:hover {
	background-color: var(--color-primary-dark);
	color: var(--color-white);
}

.btn-secondary {
	background-color: transparent;
	color: var(--color-text);
	border: 1px solid var(--color-border);
}

.btn-secondary:hover {
	background-color: var(--color-bg-alt);
	border-color: var(--color-text-light);
	color: var(--color-text);
}

.btn-group {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

/* ===========================================
           Header & Navigation
           =========================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background-color: rgba(250, 252, 253, 0.95);
	backdrop-filter: blur(8px);
	z-index: 100;
	border-bottom: 1px solid var(--color-border);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}

.logo {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	color: var(--color-text);
}

.nav-list {
	display: flex;
	gap: var(--space-md);
	list-style: none;
}

.nav-link {
	font-size: 0.9375rem;
	color: var(--color-text-light);
}

.nav-link:hover {
	color: var(--color-text);
}

.nav-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--space-xs);
}

.nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--color-text);
	margin: 5px 0;
	transition: 0.2s;
}

/* ===========================================
           Hero Section
           =========================================== */
.hero {
	display: flex;
	align-items: center;
	padding-top: 7rem;
	padding-bottom: var(--space-xl);
	background-color: var(--color-bg);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
	align-items: center;
}

.hero-content {
	max-width: 540px;
}

.hero-tagline {
	font-size: 1.125rem;
	color: var(--color-text-light);
	margin-bottom: var(--space-xs);
}

.hero h1 {
	margin-bottom: var(--space-sm);
}

.hero-description {
	font-size: 1.125rem;
	color: var(--color-text-light);
	margin-bottom: var(--space-md);
}

/* Hero Visual / Album Showcase */
.hero-visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.album-showcase {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-md);
}

.album-cover {
	position: relative;
	width: 280px;
	height: 280px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.15),
		0 8px 20px rgba(0, 0, 0, 0.1);
}

.album-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.album-reflection {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg,
			rgba(255, 255, 255, 0.2) 0%,
			rgba(255, 255, 255, 0) 50%);
	pointer-events: none;
}

.audio-visualizer {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 4px;
	height: 40px;
	padding: var(--space-sm) var(--space-md);
	background-color: var(--color-white);
	border-radius: var(--border-radius);
	border: 1px solid var(--color-border);
}

.audio-visualizer .bar {
	width: 4px;
	background-color: var(--color-primary);
	border-radius: 2px;
	height: 8px;
	transition: height 0.1s ease;
}

.audio-visualizer.playing .bar {
	animation: visualizer 0.5s ease-in-out infinite alternate;
}

.audio-visualizer .bar:nth-child(1) {
	height: 12px;
	animation-delay: 0s;
}

.audio-visualizer .bar:nth-child(2) {
	height: 20px;
	animation-delay: 0.1s;
}

.audio-visualizer .bar:nth-child(3) {
	height: 16px;
	animation-delay: 0.15s;
}

.audio-visualizer .bar:nth-child(4) {
	height: 28px;
	animation-delay: 0.2s;
}

.audio-visualizer .bar:nth-child(5) {
	height: 24px;
	animation-delay: 0.05s;
}

.audio-visualizer .bar:nth-child(6) {
	height: 32px;
	animation-delay: 0.25s;
}

.audio-visualizer .bar:nth-child(7) {
	height: 28px;
	animation-delay: 0.1s;
}

.audio-visualizer .bar:nth-child(8) {
	height: 20px;
	animation-delay: 0.3s;
}

.audio-visualizer .bar:nth-child(9) {
	height: 24px;
	animation-delay: 0.15s;
}

.audio-visualizer .bar:nth-child(10) {
	height: 16px;
	animation-delay: 0.2s;
}

.audio-visualizer .bar:nth-child(11) {
	height: 20px;
	animation-delay: 0.05s;
}

.audio-visualizer .bar:nth-child(12) {
	height: 12px;
	animation-delay: 0.25s;
}

@keyframes visualizer {
	0% {
		transform: scaleY(0.3);
	}

	100% {
		transform: scaleY(1);
	}
}

.album-info-card {
	text-align: center;
}

.album-badge {
	display: inline-block;
	padding: 4px 12px;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-primary);
	background-color: var(--color-primary-light);
	border-radius: 20px;
	margin-bottom: var(--space-xs);
}

.album-info-card h3 {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	margin-bottom: 4px;
}

.album-info-card p {
	font-size: 0.875rem;
	color: var(--color-text-light);
	margin-bottom: 0;
}

@media (min-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-xl);
	}

	.album-cover {
		width: 340px;
		height: 340px;
	}
}

.hero-description {
	font-size: 1.125rem;
	color: var(--color-text-light);
	margin-bottom: var(--space-md);
	max-width: 480px;
}

/* ===========================================
           Audio Player
           =========================================== */
.audio-player {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	padding: var(--space-sm) var(--space-md);
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	margin-bottom: var(--space-md);
	max-width: 420px;
	user-select: none;
}

.audio-play-btn {
	width: 44px;
	height: 44px;
	min-width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-primary);
	color: var(--color-white);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
}

.audio-play-btn:hover {
	background-color: var(--color-primary-dark);
}

.audio-play-btn:active {
	transform: scale(0.95);
}

.audio-info {
	flex: 1;
	min-width: 0;
}

.audio-track-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--space-sm);
	margin-bottom: 8px;
}

.audio-track-info {
	display: flex;
	flex-direction: column;
}

.audio-title {
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.audio-artist {
	font-size: 0.75rem;
	color: var(--color-text-light);
}

.audio-progress-wrap {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.audio-progress-bar {
	position: relative;
	height: 6px;
	cursor: pointer;
	padding: 8px 0;
	margin: -8px 0;
}

.audio-progress-bg {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 6px;
	transform: translateY(-50%);
	background-color: var(--color-bg-alt);
	border-radius: 3px;
}

.audio-progress {
	position: absolute;
	top: 50%;
	left: 0;
	height: 6px;
	width: 0%;
	transform: translateY(-50%);
	background-color: var(--color-primary);
	border-radius: 3px;
	pointer-events: none;
}

.audio-progress-handle {
	position: absolute;
	top: 50%;
	left: 0%;
	width: 16px;
	height: 16px;
	background-color: var(--color-primary);
	border: 2px solid var(--color-white);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	cursor: grab;
	transition: transform 0.1s ease;
}

.audio-progress-handle:hover,
.audio-progress-handle.dragging {
	transform: translate(-50%, -50%) scale(1.2);
}

.audio-progress-handle.dragging {
	cursor: grabbing;
}

.audio-time {
	display: flex;
	justify-content: space-between;
	font-size: 0.6875rem;
	color: var(--color-text-light);
	font-variant-numeric: tabular-nums;
}

/* Volume Control */
.volume-control {
	display: none;
	align-items: center;
	gap: 6px;
}

.volume-icon {
	color: var(--color-text-light);
	flex-shrink: 0;
}

.volume-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 50px;
	height: 3px;
	background: var(--color-bg-alt);
	border-radius: 2px;
	outline: none;
	cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 10px;
	height: 10px;
	background: var(--color-primary);
	border-radius: 50%;
	cursor: pointer;
	transition: transform 0.1s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
	transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
	width: 10px;
	height: 10px;
	background: var(--color-primary);
	border: none;
	border-radius: 50%;
	cursor: pointer;
}

@media (min-width: 400px) {
	.volume-control {
		display: flex;
	}
}

/* ===========================================
           About Section
           =========================================== */
.about {
	background-color: var(--color-bg-alt);
}


.about-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
	align-items: center;
}

.about-image {
	aspect-ratio: 4 / 5;
	background-color: var(--color-border);
	border-radius: var(--border-radius);
	overflow: hidden;
	max-width: 280px;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 768px) {
	.about-image {
		max-width: none;
	}
}

.about-text p {
	color: var(--color-text-light);
	font-size: 5px;
}

.about-text p:last-child {
	margin-bottom: 0;
}

.about-text p.about-note {
	font-size: 10px;
	color: var(--color-text-light);
	margin-top: var(--space-md);
	padding: var(--space-sm);
	background-color: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	width: 94%;
}

/* ===========================================
           Services Section
           =========================================== */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-md);
}

.service-card {
	padding: var(--space-md);
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	transition: border-color 0.2s ease;
}

.service-card:hover {
	border-color: var(--color-primary);
}

.service-icon {
	width: 250px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-primary-light);
	border-radius: var(--border-radius);
	margin-bottom: var(--space-sm);
	color: var(--color-primary);
}

.service-icon svg {
	width: 32px;
	height: 32px;
}

.service-card p, table {
	color: var(--color-text-light);
	margin-bottom: var(--space-sm);
}

.btn-small {
	display: inline-block;
	padding: 0.5rem 1rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--color-primary);
	background-color: transparent;
	border: 1px solid var(--color-primary);
	border-radius: var(--border-radius);
	transition: all 0.2s ease;
}

.btn-small:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
}

/* ===========================================
           Featured Work Section
           =========================================== */
.work {
	background-color: var(--color-bg-alt);
}

.work-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-md);
}

.work-card {
	background-color: var(--color-white);
	border-radius: var(--border-radius);
	overflow: hidden;
	border: 1px solid var(--color-border);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.work-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.work-image {
	aspect-ratio: 16 / 10;
	background-color: var(--color-border);
	overflow: hidden;
}

.work-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.work-info {
	padding: var(--space-sm) var(--space-md) var(--space-md);
}

.work-category {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: var(--space-xs);
}

.work-info h3 {
	margin-bottom: var(--space-xs);
}

.work-info p {
	color: var(--color-text-light);
	font-size: 0.9375rem;
	margin-bottom: 0;
}

/* ===========================================
           Testimonials Section
           =========================================== */
.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-md);
}

.testimonial-card {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: var(--space-md);
	padding: var(--space-md);
	background-color: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	align-items: center;
}

.testimonial-author {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 2px;
	width: 120px;
}

.testimonial-avatar {
	width: 60px;
	height: 60px;
	background-color: var(--color-primary-light);
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	margin-bottom: 6px;
}

.testimonial-name {
	font-weight: 600;
	color: var(--color-text);
	font-size: 0.9375rem;
	margin: 0;
}

.testimonial-role {
	font-size: 0.6875rem;
	color: var(--color-text-light);
	margin: 0;
}

.testimonial-text {
	font-family: var(--font-heading);
	font-size: 0.9375rem;
	font-style: italic;
	color: var(--color-text);
	margin-bottom: 0;
	line-height: 1.5;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-name {
	font-weight: 600;
	color: var(--color-text);
}

.testimonial-role {
	font-size: 0.8rem;
	color: var(--color-text-light);
}

/* ===========================================
           Contact Section
 =========================================== */
.contact-box{
    margin:25px 0;
    border:1px solid #ddd;
    border-radius:8px;
    padding:20px;
    background:#fafafa;
}

.contact-table{
    width:100%;
    border-collapse:collapse;
}

.contact-table td{
    padding:10px;
    border-bottom:1px solid #e5e5e5;
    vertical-align:top;
}

.contact-table td:first-child{
    width:180px;
    font-weight:bold;
}

.map-container{
    margin-top:25px;
    border-radius:8px;
    overflow:hidden;
}

/* ===========================================
           Newsletter Section
           =========================================== */
.newsletter {
	background-color: var(--color-bg);
	padding: var(--space-lg) 0;
	border-top: 1px solid var(--color-border);
}

.newsletter-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-md);
	align-items: center;
}

.newsletter-content {
	text-align: center;
}

.newsletter-content h3 {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: var(--space-xs);
}

.newsletter-content p {
	color: var(--color-text-light);
	font-size: 0.9375rem;
	margin-bottom: var(--space-md);
}

.newsletter-form {
	display: flex;
	flex-direction: column;
	gap: var(--space-sm);
	max-width: 360px;
	margin: 0 auto;
}

.newsletter-map {
	height: 200px;
	border-radius: var(--border-radius);
	overflow: hidden;
	background-color: var(--color-bg-alt);
}

@media (min-width: 480px) {
	.newsletter-form {
		flex-direction: row;
		max-width: 400px;
	}

	.newsletter-form .form-input {
		flex: 1;
	}

	.newsletter-form .btn {
		flex-shrink: 0;
	}
}

@media (min-width: 768px) {
	.newsletter-grid {
		grid-template-columns: 1fr 2fr;
		gap: var(--space-lg);
	}

	.newsletter-map {
		height: 100%;
		min-height: 180px;
	}
}

/* ===========================================
           Footer
           =========================================== */
.footer {
	padding: var(--space-md) 0;
	background-color: var(--color-bg);
	border-top: 1px solid var(--color-border);
}

.footer-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

.footer-copyright {
	font-size: 0.875rem;
	color: var(--color-text-light);
	margin: 0;
}

.footer-credit {
	font-size: 0.875rem;
	color: var(--color-text-light);
}

.footer-credit:hover {
	color: var(--color-primary);
}

/* ===========================================
           Responsive Design
           =========================================== */
@media (min-width: 640px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.work-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.about-grid {
		grid-template-columns: 1fr 1.5fr;
	}

	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.work-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.nav {
		position: fixed;
		top: 4rem;
		left: 0;
		right: 0;
		background-color: var(--color-bg);
		border-bottom: 1px solid var(--color-border);
		padding: var(--space-md);
		transform: translateY(-100%);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s ease;
		overflow-y: auto;
		max-height: calc(100vh - 4rem);
		max-height: calc(100dvh - 4rem);
	}

	.nav.active {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
	}

	.nav-list {
		flex-direction: column;
		gap: var(--space-sm);
	}

	.nav-toggle {
		display: block;
	}
}


/* ===========================================
           PRODUCTS cARDS
 =========================================== */
.products{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    padding:20px 5%;
    background:#f7f9fc;
}

.product-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.product-card img{
    display:block;
    width:80px;
    height:80px;
    object-fit:contain;
    margin:0 auto 20px;
}

.product-card h3{
    margin-bottom:12px;
    color:#0b3d91;
}

.product-card p{
    color:#666;
    line-height:1.6;
    margin-bottom:20px;
}

.product-card a{
    text-decoration:none;
    color:#0066ff;
    font-weight:600;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}


/**--Logo1---*/
.logo1{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#003366;
    font-weight:700;
    font-size:1rem;
}

.logo1 img{
    width:45px;
    height:45px;
    object-fit:contain;
}



/* ===========================
   Board of Directors
=========================== */

.directors-section{
    width:100%;
    padding:0;
    background:transparent;
}

.section-title{
    text-align:center;
    margin-bottom:35px;
}

.section-title h2{
    margin:0;
    font-size:34px;
    color:#0b3d91;
    font-weight:700;
}

.section-title p{
    margin-top:10px;
    color:#666;
    font-size:16px;
}

/* Director Grid */

.directors-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:25px;
}

/* Director Card */

.director-card{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:16px;
    padding:25px 20px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
    transition:.3s ease;
}

.director-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,.12);
    border-color:#0b3d91;
}

.director-card img{
    display:block;
    width:180px;
    height:220px;
    margin:0 auto 20px;
    object-fit:cover;
    border-radius:10px;
    border:3px solid var(--color-primary-dark);
}

.director-card h3{
    margin:0 0 8px;
    color:#0b3d91;
    font-size:14px;
    font-weight:600;
}

.director-card span{
    display:inline-block;
    padding:7px 18px;
    background:var(--color-primary-dark);
    color:#fff;
    border-radius:20px;
    font-size:14px;
    font-weight:500;
}

.director-card p{
    margin-top:15px;
    color:#666;
    line-height:1.6;
    font-size:14px;
}

/* Responsive */

@media (max-width:768px){

    .section-title h2{
        font-size:24px;
    }

    .directors-grid{
        grid-template-columns:1fr;
    }

    .director-card img{
        width:160px;
        height:200px;
    }

}

/*==============================
        About Us Layout
===============================*/

.about-container{
    width:100%;
    max-width:1400px;
    margin:80px auto;
    padding:0 ;
    display:grid;
    grid-template-columns:210px 1fr;
    gap:30px;
    align-items:start;      /* Important for sticky */
}

/* Sidebar */

.about-sidebar{
    position: sticky;
    top: 90px;                 /* Adjust according to your header height */
    background: var(--color-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,.08);
    height: fit-content;
    width: 100%;
}

.about-sidebar h3{
    margin:0;
    padding:18px;
    background:var(--color-primary-dark);
    color:#fff;
    font-size:20px;
    text-align:center;
}

.about-sidebar a{
    display:block;
    padding:16px 20px;
    text-decoration:none;
    color:#333;
    border-bottom:1px solid #eee;
    transition:.3s;
    font-weight:500;
    font-size: 14px;
}

.about-sidebar a:hover,
.about-sidebar a.active{
    background:var(--color-primary-dark);
    color:#fff;
    padding-left:25px;
}

/* Content */

.about-content{
	width:100%;
    background:#fff;
    border-radius:10px;
    padding:25px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
}

.about-content h2{
    color:var(--color-primary-dark);
    margin-bottom:20px;
    font-size:28px;
    border-bottom:3px solid #0b3d91;
    display:inline-block;
    padding-bottom:8px;
}

.about-content p{
    color:#555;
    line-height:1.8;
    text-align:justify;
    font-size: 14px;
}

/* Responsive */

@media(max-width:992px){

    .about-container{
        grid-template-columns:1fr;
    }

}


/*=========================
        Staff Grid
=========================*/

.staff-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.staff-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:15px;
    padding:10px;
    text-align:center;
    transition:.3s;

}

.staff-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.staff-card img{
    width:160px;
    height:190px;
    object-fit:cover;
    border-radius:10px;
    border:3px solid var(--color-primary-dark);
    margin:0 auto 15px;
    display:block;
}

.staff-card h3{
    margin:0;
    font-size:14px;
    color:#0b3d91;
    font-weight:550;
    width:auto-fit;
}

.staff-card span{
    display:block;
    margin-top:8px;
    color:#666;
    font-size:14px;
    font-weight:400;
    width:auto-fit;
}

@media(max-width:768px){

    .staff-grid{
        grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    }

    .staff-card img{
        width:140px;
        height:170px;
    }

}

/*====================================
        SERVICE CHARGES
====================================*/

.service-charges{
    width:100%;
}

.service-charges .section-title{
    text-align:center;
    margin-bottom:30px;
}

.service-charges .section-title h2{
	font-family: var(--font-heading);
    margin:0;
    color:#0b3d91;
    font-size:34px;
    font-weight:700;
}

.service-charges .section-title p{
    margin-top:10px;
    color:#666;
    font-size:15px;
}

/* Table */

.table-wrapper{
    border:1px solid #cfd8e6;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.charges-table{
    width:100%;
    border-collapse:collapse;
    font-size:15px;
}

.charges-table thead th{
    background:#0b3d91;
    color:#fff;
    padding:14px;
    border:1px solid #2f5ea9;
    text-align:center;
    font-weight:600;
}

.charges-table tbody td{
    border:1px solid #dfe5ee;
    padding:12px 14px;
    vertical-align:middle;
    color:#333;
}

/* Alternate rows */

.charges-table tbody tr:nth-child(even){
    background:#f8fbff;
}

.charges-table tbody tr:hover{
    background:#eef5ff;
    transition:.3s;

}

/* Column Alignment */

.charges-table td:first-child{
    text-align:left;
    font-weight:600;
    width:70px;
}

.charges-table td:nth-child(2){
    font-weight:600;
}

.charges-table td:nth-child(3){
    font-weight:400;
}

.charge{
    text-align:right;
    font-weight:600;
    white-space:nowrap;
}

/* Note */

.charges-note{
    margin-top:20px;
    padding:18px;
    background:#f8fbff;
    border-left:5px solid #0b3d91;
    border-radius:8px;
    color:#555;
    line-height:1.7;
}

/* Mobile */

@media(max-width:768px){

    .table-wrapper{
        overflow-x:auto;
    }

    .charges-table{
        min-width:700px;
    }

}


/*==================================
        Notice Banner
==================================*/

.notice-banner{
    width:100%;
    padding:40px 5%;
    background:#f7f9fc;
}

.notice-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.notice-header h2{
    margin:0;
    color:#0b3d91;
    font-size:30px;
}

.notice-header a{
    text-decoration:none;
    color:#0b3d91;
    font-weight:600;
}

.notice-card{
    background:#fff;
    border:1px solid #dfe5ee;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.notice-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.notice-card img{
    display:block;
    width:100%;
    height:auto;
}

/* Mobile */

@media(max-width:768px){

    .notice-header{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

}

/*====================================
        DICGC Banner
====================================*/

.dicgc-banner{
    width:100%;
    max-width:1400px;
    margin:30px auto;
    padding:0 5%;
}

.dicgc-banner a{
    display:block;
    text-decoration:none;
}

.dicgc-banner img{
    width:100%;
    height:auto;
    display:block;
    border:1px solid #d9e3f0;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.dicgc-banner img:hover{
    transform:scale(1.01);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}




//*====================================
        Generic Bank Rate Tables
====================================*/

.rate-table-wrapper{
    width:auto;
    overflow-x:auto;
    background:#fff;
    border:1px solid var(--color-border);
    border-radius:16px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);
}

.bank-rate-table{
    width:100%;
    min-width:710px;
    border-collapse:collapse;

}

.bank-rate-table thead{
    background:linear-gradient(135deg,var(--color-primary-dark),var(--color-primary));
}

.bank-rate-table thead th{
    padding:10px 18px;
    color:#fff;
    text-align:center;
    font-size:14px;
    font-weight:600;
    border:none;
}

.bank-rate-table tbody td{
    padding:14px 18px;
    border:1px solid #E8EEF5;
    color:#444;
    vertical-align:middle;
    line-height:1.6;
}

.bank-rate-table tbody tr:nth-child(even){
    background:#F8FBFE;
}

.bank-rate-table tbody tr:hover{
    background:#EEF7FF;
}

.rate-table-note{
    margin-top:20px;
    padding:16px 20px;
    background:#F5FAFE;
    border-left:5px solid var(--color-primary);
    border-radius:10px;
    color:#555;
    line-height:1.7;
}

.rate-table-note strong{
    color:var(--color-primary-dark);
}

@media(max-width:768px){

    .bank-rate-table{
        min-width:650px;
    }

}



/*===============================
       TWO COLUMN laYOUT
================================*/

/*====================================
        Generic Information Layout
====================================*/

.info-layout{

    display:grid;
    grid-template-columns:320px 1fr;
    gap:10px;
    align-items:start;



}

.info-sidebar{

    position:sticky;
    top:70px;

}

.info-content{

    width:100%;


}

.info-card{

    background:#fff;
    border:1px solid var(--color-border);
    border-radius:14px;
    padding:22px;
    margin-bottom:22px;
    box-shadow:0 8px 24px rgba(0,0,0,.08);

}

.info-card:last-child{

    margin-bottom:0;

}

.info-card h2{

    margin:0 0 15px;
    color:var(--color-primary-dark);
    font-size:28px;

}

.info-card h3{

    margin:0 0 15px;
    color:var(--color-primary-dark);
    font-size:20px;

}

.info-card p{

    margin:0 0 15px;
    line-height:1.8;
    color:#555;
    text-align:justify;
    

}

.info-card ul{

    margin:0;
    padding-left:20px;

}

.info-card li{

    margin-bottom:10px;
    color:#555;
    line-height:1.7;
     

}

.info-card .btn{

    margin-top:10px;

}

@media(max-width:992px){

    .info-layout{

        grid-template-columns:1fr;

    }

    .info-sidebar{

        position:static;

    }

}       


/*==============================
	President's Message
===============================*/

.president-photo{
    float:left;
    width:240px;
    max-width:35%;
    margin:0 25px 15px 0;
    border-radius:10px;
    border:1px solid #dcdcdc;
    padding:5px;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.12);
}

.about-content::after{
    content:"";
    display:block;
    clear:both;
}

@media (max-width:768px){
    .president-photo{
        float:none;
        display:block;
        max-width:100%;
        width:220px;
        margin:0 auto 20px;
    }
}