:root {
    /* Logo-based color scheme */
    --primary: #1CB5EA;           /* Cyan from logo text */
    --primary-dark: #0d8ab8;      /* Darker cyan for hover */
    --secondary: #45B748;          /* Green from logo */
    --secondary-dark: #3a9c3d;     /* Darker green for hover */
    --accent: #f39c12;             /* Orange accent */
    --light: #f8f9fa;              /* Light background */
    --dark: #2c3e50;               /* Dark text */
    --text-muted: #6c757d;         /* Muted text */
    --border-color: #e9ecef;       /* Border color */

    /* Theme variables (can be overridden by settings) */
    --theme-primary: var(--primary);
    --theme-secondary: var(--secondary);
    --theme-font: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Import Google Fonts - All font pairings */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&family=Montserrat:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&family=Lato:wght@300;400;700&family=Merriweather:wght@300;400;700&family=DM+Sans:wght@400;500;700&family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;600;700&family=Raleway:wght@300;400;500;600;700&family=Nunito:wght@300;400;600;700&family=Lora:wght@400;500;600;700&family=Figtree:wght@300;400;500;600;700&family=Crimson+Text:wght@400;600;700&family=PT+Sans:wght@400;700&display=swap');

/* Smooth scrolling for anchor links */
html {
	scroll-behavior: smooth;
}

body {
    font-family: var(--theme-font);
    color: var(--dark);
    padding-top: 120px;
    background-color: #f9f9f9;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improved typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    /* color: var(--dark); */
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--dark);
}

a {
    color: var(--theme-primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Top bar styling */
.top-bar {
	background-color: var(--primary);
	color: white;
	padding: 3px 0;
	font-size: 1rem;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1030;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.top-contact {
	display: flex;
	align-items: center;
}

.top-contact span {
	margin-right: 20px;
	display: flex;
	align-items: center;
}

.top-contact i {
	margin-right: 5px;
}

.top-social a {
	color: white;
	margin-left: 15px;
	font-size: 1.1rem;
	transition: opacity 0.3s;
}

.top-social a:hover {
	opacity: 0.8;
}

.navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	background-color: white !important;
	padding: 0px 2px 0;
}

/* Position navbar below fixed top-bar */
.navbar.fixed-top {
	top: 37px;
	z-index: 1020;
}

/* Mobile: top-bar is hidden, navbar returns to top */
@media (max-width: 767px) {
	.navbar.fixed-top {
		top: 0;
	}
}

.bg-primary {
    background-color: var(--theme-primary) !important;
}

.btn-primary {
    background-color: var(--theme-primary);
    border-color: var(--theme-primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(28, 181, 234, 0.3);
}

.btn-success {
    background-color: var(--theme-secondary);
    border-color: var(--theme-secondary);
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(69, 183, 72, 0.3);
}

.text-primary {
    color: var(--theme-primary) !important;
}

.text-success {
    color: var(--theme-secondary) !important;
}

/* Improved form controls */
.form-control, .form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 3px rgba(28, 181, 234, 0.15);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.hero {
	background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(26, 82, 118, 0.8)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
	background-size: cover;
	background-position: center;
	padding: 100px 0;
	color: white;
}

.section-padding {
	padding: 25px 0;
}

.section-title {
	margin-bottom: 30px;
	position: relative;
}

.section-title:after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 60px;
	height: 4px;
	background: var(--secondary);
}

.section-title.text-center:after {
	left: 50%;
	transform: translateX(-50%);
}

.card {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-header {
    background-color: var(--theme-primary);
    color: white;
    font-weight: 600;
    padding: 1rem 1.5rem;
}

.team-card {
	text-align: center;
}

.team-img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 20px;
	border: 5px solid var(--light);
}

.branch-list {
	list-style-type: none;
	padding-left: 0;
}

.branch-list li {
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

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

.branch-list i {
	color: var(--secondary);
	margin-right: 10px;
}

.contact-info {
	margin-bottom: 20px;
}

.contact-info i {
	width: 30px;
	color: var(--secondary);
}

footer {
    background-color: var(--theme-primary);
    color: white;
    padding: 30px 0 20px;
}

.footer-links {
	list-style: none;
	padding-left: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
}

.social-links a {
	display: inline-block;
	width: 40px;
	height: 40px;
	/* background: rgba(255, 255, 255, 0.1); */
	background: rgb(34, 183, 234);
	border-radius: 50%;
	text-align: center;
	line-height: 30px;
	color: white;
	margin-right: 10px;
	transition: all 0.3s ease;
}

.social-links a:hover {
	background: var(--secondary);
	transform: translateY(-3px);
}

.page-content {
	display: none;
}

.active-page {
	display: block;
}

.nav-link.active {
	color: var(--primary) !important;
	font-weight: bold;
}

/* Logo styling */
.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.logo-icon {
	font-size: 2rem;
	color: var(--secondary);
	margin-right: 10px;
}

.logo-text {
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--primary);
}

.logo-text span {
	color: var(--secondary);
}

/* Slider Styles */
.slider-container {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	margin-bottom: 40px;
}

.slider {
	display: flex;
	transition: transform 0.5s ease;
}

.slide {
	min-width: 100%;
	position: relative;
}

.slide img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
}

.slide-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
	color: white;
	padding: 30px;
}

.slide-content h2,
.slide-content p {
	color: white !important;
}

.slider-controls {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
    margin-left: 10px;
}

.slider-dot.active {
	background: white;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: background 0.3s;
}

.slider-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
	left: 15px;
}

.slider-arrow.next {
	right: 15px;
}

/* Map Styles */
.map-container {
	height: 400px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#map {
	height: 100%;
	width: 100%;
}

/* New color scheme adjustments */
.btn-outline-primary {
	color: var(--primary);
	border-color: var(--primary);
}

.btn-outline-primary:hover {
	background-color: var(--primary);
	color: white;
}

.bg-light-primary {
	background-color: rgba(26, 82, 118, 0.1);
}

.text-accent {
	color: var(--accent);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--primary);
	font-family: var(--theme-font);
	line-height: 1;
}

.service-icon {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 15px;
}

/* Loan product cards */
.loan-card {
	height: 100%;
	transition: all 0.3s ease;
}

.loan-card img {
	height: 200px;
	object-fit: cover;
}

/* .loan-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
} */

/* Mini contact form */
.mini-contact {
	/* background-color: var(--primary); */
    background-color: #45b748;
    color: white;
    padding: 40px 0;
    margin-top: 25px;
    margin-bottom: 50px;
}

/* News cards */
.news-card {
	margin-bottom: 20px;
}

.news-card img {
	height: 160px;
	object-fit: cover;
}

.news-date {
	font-size: 0.85rem;
	color: #6c757d;
}

/* FAQ styling */
.faq-item {
	margin-bottom: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
}

.faq-question {
	font-weight: 600;
	color: var(--primary-dark);
	margin-bottom: 10px;
	font-size: 20px;
}

/* Dropdown menu styling */
.dropdown-menu {
	border: none;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item:hover {
	background-color: rgba(26, 82, 118, 0.1);
}

/* Footer news */
.footer-news {
	list-style: none;
	padding-left: 0;
}

.footer-news li {
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-news li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.footer-news a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-news a:hover {
	color: white;
}

.news-title {
	font-weight: 500;
	display: block;
}

.news-date-small {
	font-size: 0.8rem;
	opacity: 0.7;
}

.navbar .nav-link {
	color: var(--dark) !important;
	/*color:#10B1E8 !important;*/
	font-weight: 600;	
	font-size: 1.1rem;
}

.navbar .nav-link:hover {
	color: var(--primary) !important;
}

.navbar .btn-success {
	color: white !important;
}


main.pt-5.mt-4 {
  padding-top: 0rem !important;
  /* margin-top: 0.5rem !important;		   */
   margin-top: 0rem !important;	
}		

.dropdown-menu.show li + li {
  border-top: 1px solid #e9ecef; 
}

.dropdown-menu.show li {
  padding: 0;
}
.dropdown-menu.show .dropdown-item {
  padding: 0.5rem 1rem;
}

.dropdown-menu.show li + li::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #dee2e6;
  margin-top: 0.25rem 0; 
}

.navbar-nav > .nav-item {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.top-contact a[href^="mailto:"],
a[href^="tel:"] {
  color: #fff; 
  font-weight: 600;
  text-decoration: none;
}

.top-contact a[href^="mailto:"]:hover,
a[href^="tel:"]:hover {
  text-decoration: none;
}

a[href^="mailto:"]{ 
  text-decoration: none;
}

.navbar-brand img {
  /* height: 96px;     */
  height: 70px;      
  width: auto;         
  object-fit: contain;  
}

.footer-social {
  display: flex;
  gap: 1rem;              
  justify-content: center; 
  align-items: center;
  margin-top: 1rem;
}

.footer-social a {
  color: white;
  font-size: 1.25rem;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #198754;        
}

.company p{
 text-align:justify-content;
 line-height:24px;
 margin-bottom:0.7rem;
 color: white;
}

.company h5 {
 color: white;
}

.company .mb-3 {
    margin-bottom: 0.5rem !important;
}

footer h5{
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--bs-heading-color);
}

.text-center.copyright p {
  font-size: 1rem !important;
  color: white;
}


.company .navbar-brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-body {    
    padding: 30px 35px;    
}

.login-btn {
  padding: 3px 10px;
  margin-left:5px;
  /* background-color: #3498db; */
  color: white;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid white; 
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-btn i {
  margin-right: 8px;
}

.login-btn:hover {
  text-decoration: none;
  opacity: 0.9;
  background-color: #2980b9;
  color: white;
} 

.nav-link.btn-success:hover {
  color: white !important;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.card-title{
display: flex;
justify-content: center;
align-items: center;
font-weight: 600;
font-size:22px;
}

.team-card .card-body {
    padding: 20px 25px;
    min-height: 460px;
}


.team-card .card-body .text-success {
	/* color: var(--secondary) !important; */
	color: var(--primary) !important;;
	font-size: 20px;
	font-weight:600;
} 

.team-card .card-body .text-primary {	
	/* font-size: 20px; */
	font-weight:600;
} 

/* Jobs */
.hero-section {
	background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(26, 82, 118, 0.8)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 80px 0;
	text-align: center;
}
.job-card {
	border: none;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s, box-shadow 0.3s;
	height: 100%;
}
/* .job-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
} */
.job-type-badge {
	font-size: 0.8rem;
	padding: 5px 10px;
	border-radius: 20px;
}
.department-badge {
	background-color: #e9f7fe;
	color: #1a5276;
}
.location-badge {
	background-color: #fef5e7;
	color: #d35400;
}
.filter-section {
	background-color: #f8f9fa;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 30px;
}
.job-feature {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.job-feature i {
	width: 24px;
	margin-right: 10px;
	color: #1a5276;
}
.empty-state {
	text-align: center;
	padding: 60px 20px;
}
.empty-state i {
	font-size: 4rem;
	color: #dee2e6;
	margin-bottom: 20px;
}
.pagination {
	justify-content: center;
	margin-top: 30px;
}
.view-toggle {
	cursor: pointer;
}
.view-toggle.active {
	color: #ffffff;
}
.list-view .job-card {
	margin-bottom: 20px;
}
.card-view .col-md-6 {
	margin-bottom: 25px;
}

.job-title {
	color: #1a5276;
	transition: color 0.3s;
}

/* .job-card:hover .job-title {
	color: #45B748;
} */

.row.jobs-list{
    background:rgba(237, 238, 239, 0.901);
    padding:20px 15px;
    margin-bottom:15px;  
}

.row.jobs-list{
    background:rgba(237, 238, 239, 0.901);
    padding:20px 15px;
    margin-bottom:15px;  
}

.row.jobs-filter{
	background:#f8f9fa;
}

#jobListings{
	padding:20px 15px;
}

.job-header p{
    font-size: 1.75rem;
    font-weight: 600;
	margin-bottom: 30px;
}

.job-header .section-title {
    margin-bottom: 30px;     
}

/* job-details */
.job-header {
	background: linear-gradient(rgba(26, 82, 118, 0.9), rgba(26, 82, 118, 0.9)), url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
	background-size: cover;
	background-position: center;
	color: white;
	padding: 60px 0;
}

.job-detail-card {
	border: none;
	/* border-radius: 10px; */
	/* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08); */
	margin-bottom: 25px;
}

.job-type-badge {
	font-size: 0.8rem;
	padding: 5px 10px;
	border-radius: 20px;
}

.detail-icon {
	width: 24px;
	margin-right: 10px;
	color: #1a5276;
}

.requirements-list, .responsibilities-list {
	list-style-type: none;
	padding-left: 0;
}

.requirements-list li, .responsibilities-list li {
	margin-bottom: 8px;
	padding-left: 25px;
	position: relative;
}

.requirements-list li:before, .responsibilities-list li:before {
	content: "•";
	color: #1a5276;
	font-weight: bold;
	position: absolute;
	left: 0;
}
.sidebar-widget {
	background-color: #f8f9fa;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 25px;
}

.related-job-card {
	border: none;
	border-radius: 8px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	margin-bottom: 15px;
	transition: transform 0.3s;
}

.related-job-card:hover {
	transform: translateY(-3px);
}

.application-deadline {
	background-color: #fff4e6;
	border-left: 4px solid #ffa94d;
}

.job-title {
	color: #1a5276;
}

.btn-apply {
	padding: 7px 20px;
	font-weight: 600;
}

.sticky-sidebar {
	position: sticky;
	top: 100px;
}

.job-header .badge{
	margin-left:10px;
}

.job-detail-title h2{
	margin-top:30px;
}

.job-header h1{
	font-size: 28px;
}

.share-position{
	margin-right:20px;
}

/* News */
	.news-detail-img {
	height: 400px;
	object-fit: cover;
	width: 100%;
	border-radius: 8px;
	margin-bottom: 20px;
}

.news-meta {
	color: #6c757d;
	margin-bottom: 20px;
}

.news-content {
	line-height: 1.8;
	font-size: 1.1rem;
}

.back-to-news {
	margin-bottom: 30px;
}

.news-card {
	transition: transform 0.3s ease;
	height: 100%;
}

.news-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-image {
	height: 200px;
	object-fit: cover;
}

.error-card {
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.retry-button {
	margin-top: 15px;
}

.load-more-container {
	display: flex;
	justify-content: center;
	margin-top: 30px;
}

.loading-spinner {
	display: none;
	width: 2rem;
	height: 2rem;
}


/* Privacy Policy Specific Styles */
.privacy-section {
    border-left: 4px solid #2E8B57;
    padding-left: 20px;
    margin-bottom: 30px;
}

.privacy-section h3 {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.privacy-section h5 {
    color: #495057;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-section strong {
    color: #2E8B57;
}

.card-header {
    border-bottom: 3px solid rgba(255,255,255,.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .privacy-section {
        padding-left: 15px;
        border-left-width: 3px;
    }
}

/* Terms and Conditions Specific Styles */
.terms-section {
    border-left: 4px solid #2E8B57;
    padding-left: 20px;
    margin-bottom: 30px;
}

.terms-section h3 {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.terms-section ul {
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.download-buttons {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin-bottom: 30px;
}

.card-header {
    border-bottom: 2px solid rgba(0,0,0,.125);
}

.alert-info {
    border-left: 4px solid #17a2b8;
}

.alert-warning {
    border-left: 4px solid #ffc107;
}

@media print {
    .download-buttons,
    .alert-info,
    .alert-warning {
        display: none;
    }
}

/* Legal Links Styling */
.legal-links {
    font-size: 0.9rem;
}

.legal-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.legal-links i {
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .legal-links {
        text-align: center;
    }
    
    .legal-links a {
        display: inline-block;
        margin: 5px 10px;
    }
}


.rounded-circle {
    border-radius:65% !important;
}


