a {
	color: #000;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
a:hover {
	text-decoration: none;
	color: #000;
}
a:focus, a:active {
	outline: none;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus, .nav li a:hover{
	background: none;
}
::-webkit-selection {
	color: #fcfcfc;
	background: #bdaeca;
}

::-moz-selection {
	color: #fcfcfc;
	background: #bdaeca;
}

::selection {
	color: #fcfcfc;
	background: #bdaeca;
}
.clearfix{
	clear: both;
}
.team-web {
	background: #fff;
	margin: 0 auto;
	position: relative;
	-webkit-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.07);
	box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.07);
}
.team-web:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	-webkit-box-shadow: -7px 1px 13px 2px rgba(0, 0, 0, 0.08);
	-moz-box-shadow: -7px 1px 13px 2px rgba(0, 0, 0, 0.08);
	box-shadow: -7px 1px 13px 2px rgba(0, 0, 0, 0.08);
}

:root {
    --primary-color: #1a2a44;
    --gold-color: #c5a059;
    --text-dark: #333;
    --light-bg: #f8f9fa;
    --primary-blue: #1a3066;
    --text-gray: #999;
    --light-gray: #eee;
    --dark-gray:  #333;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Navbar Styling */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.5rem;
}
.navbar-brand img{
    width: auto;
    height: 50px;
}

.navbar-nav{
	align-items: center;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 0 10px;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(26, 42, 68, 0.8), rgba(26, 42, 68, 0.8)), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
}

.btn-gold {
    background-color: var(--gold-color);
    color: white;
    padding: 12px 30px;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: bold;
    border: none;
    transition: 0.3s;
}

.btn-gold:hover {
    background-color: #b08d48;
    color: white;
    transform: translateY(-3px);
}

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 3px;
    background-color: var(--gold-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Kiểu dáng cho bài viết nổi bật bên trái */
.featured-post img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.featured-post .post-meta {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 15px;
}
.featured-post .post-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-top: 10px;
    text-transform: uppercase;
    line-height: 1.4;
    text-decoration: none;
    display: block;
}
.featured-post .post-title:hover { color: var(--primary-blue); }

/* Kiểu dáng cho Tabs bên phải */
.news-tabs .nav-tabs {
    border-bottom: none;
    background-color: var(--light-gray);
    display: flex;
}
.news-tabs .nav-link {
    border: none;
    border-radius: 0;
    color: var(--text-gray);
    font-weight: 500;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 14px;
    flex: 1;
    text-align: center;
    margin-left: 0;
}
.news-tabs .nav-link.active {
    background-color: var(--primary-blue);
    color: white !important;
}

/* Danh sách bài viết nhỏ */
.small-post-item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}
.small-post-item:last-child { border-bottom: none; }
.small-post-thumb {
    width: 140px;
    height: 90px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 2px;
}
.small-post-content .post-meta {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 5px;
}
.small-post-content .post-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-gray);
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1.4;
    display: block;
}
.small-post-content .post-title:hover { color: var(--primary-blue); }

.view-more {
    text-align: center;
    margin-top: 20px;
}
.view-more a {
    color: var(--text-gray);
    text-decoration: underline;
    font-weight: 500;
    font-size: 14px;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 40px 30px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--gold-color);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 20px;
}

/* Contact Section */
.contact-info {
    background-color: var(--primary-color);
    color: white;
    padding: 40px;
}

.contact-form {
    background-color: var(--light-bg);
    padding: 40px;
}

.form-control {
    border-radius: 0;
    padding: 12px;
    margin-bottom: 20px;
}

footer {
    background-color: #111;
    color: #999;
    padding: 50px 0 20px;
}
footer .input-group input{
    margin-bottom: 0;
}

footer iframe {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    border: none;
}

.footer-logo {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: block;
}


/* lg */ 
/*@media (min-width: 1200px) { gia tri lg }*/
@media (max-width: 1330px) {
}

/* md */
@media (max-width: 1199px) {
}
/* sm */
@media (max-width: 991px) {
	.navbar-nav{
		align-items: flex-start;
	}
}

/* xs */
@media (max-width: 767px){
}
@media (max-width: 570px){
}
@media (max-width: 440px){
}
@media (max-width: 340px){
}
@media (max-width: 260px){
}