/**********************************/
/********** General CSS ***********/
/**********************************/
body {
    color: #ffde59;
    font-family: 'Merriweather', serif;
    font-weight: 400;
    background: #202020;
}

a {
    color: #ffde59;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #ffffff;
    outline: none;
    text-decoration: none;
}

p {
    color: #ffde59;
}

.logo-img {
    height: 60px;
    width: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffde59;
    font-family: 'Merriweather', serif;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #202020;
    color: #ffde59;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 5px;
    border: 2px solid #ffde59;
    left: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top i {
    padding-top: 12px;
    color: #ffde59;
}

/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
#nav {
    position: absolute;
    width: 100%;
    top: 30px;
    z-index: 1;
}

#nav.nav-sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(32, 32, 32, .95) !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
}

#nav .navbar {
    margin: 0 auto;
    padding: 0 15px;
    background: transparent !important;
}

#nav .navbar .navbar-brand {
    font-family: 'Merriweather', serif;
    font-size: 45px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffde59;
}

#nav .navbar-nav {
    flex-wrap: nowrap; /* Ngăn các mục menu xuống hàng */
}

#nav .navbar-light .nav-link {
    position: relative;
    color: #ffde59;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Merriweather', serif;
    padding: 15px 10px;
    white-space: nowrap;
}

#nav .navbar-light .nav-link::after {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    left: 9px;
    bottom: 0;
    background: #ffde59;
    opacity: 0;
}

#nav .navbar-light .nav-link:hover::after,
#nav .navbar-light .nav-link.active::after {
    opacity: 1;
}

#nav .navbar-light .nav-link:focus,
#nav .navbar-light .nav-link:hover,
#nav .navbar-light .nav-link.active {
    color: #ffffff;
}

#nav .navbar-light .dropdown-toggle::after {
    display: none;
}

#nav .dropdown-menu {
    background: rgba(32, 32, 32, .95);
    border: none;
    border-radius: 0;
    margin-top: 0;
    z-index: 1000; /* Đảm bảo menu thả xuống hiển thị phía trên */
    position: absolute; /* Định vị chính xác */
    display: none; /* Ẩn menu thả xuống mặc định */
}

#nav .nav-item.dropdown:hover .dropdown-menu {
    display: block; /* Hiển thị menu thả xuống khi hover */
}

#nav .dropdown-item {
    color: #ffde59;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    font-family: 'Merriweather', serif;
    white-space: nowrap;
}

#nav .dropdown-item:hover,
#nav .dropdown-item:focus {
    color: #ffffff;
    background: transparent;
}

@media(min-width: 992px) {
    #nav .navbar {
        max-width: 1140px;
    }
}

@media(max-width: 767.98px) {
    #nav {
        top: 0;
    }
    #nav .navbar {
        background: #202020 !important;
    }
    
    #nav .navbar-light .nav-link:hover::after,
    #nav .navbar-light .nav-link.active::after {
        opacity: 0;
    }
    
    #nav .dropdown-menu {
        background: #202020;
        z-index: 1000; /* Đảm bảo hiển thị trên di động */
        display: none; /* Giữ ẩn trên di động để tương thích với click */
    }
    
    #nav .nav-item.dropdown:hover .dropdown-menu {
        display: none; /* Vô hiệu hóa hover trên di động */
    }
    
    #nav .navbar-nav {
        flex-wrap: wrap;
    }
}

/**********************************/
/*********** Header CSS ***********/
/**********************************/
#header {
    position: relative;
    padding: 250px 0; /* Tăng padding để chứa ảnh cao 750px */
    background: linear-gradient(to bottom, rgba(32, 32, 32, 0.7) 5%, rgba(32, 32, 32, 0.3)), url(../img/header-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#header .container {
    max-width: 1200px; /* Đủ rộng để chứa ảnh 1000px */
}

#header .header-content {
    width: 100%;
    text-align: center;
    padding-right: 15px;
    padding-left: 15px;
}

#header .header-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #ffc259;
    font-family: 'Merriweather', serif;
    text-align: center;
    display: block;
    margin: 0 auto;
}

#header .header-content h2 span {
    color: #ffde59;
    text-transform: uppercase;
    font-size: 70px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 222, 89, 0.5);
    display: block;
    text-align: center;
}

#header .header-content h3 {
    font-size: 36px; /* Giữ nguyên kích thước chữ mặc định của h3 */
    font-weight: 700;
    color: #ffc259;
    font-family: 'Merriweather', serif;
    text-align: center;
    display: block;
    margin: 0 auto;
}

#header .header-content h3 span {
    color: #ffde59;
    text-transform: uppercase;
    font-size: 36px; /* Giữ nguyên kích thước chữ mặc định của h3 */
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 222, 89, 0.5);
    display: block;
    text-align: center;
}

#header .header-content p.features {
    color: #fcf8f5;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Big Shoulders Display', sans-serif;
    margin-bottom: 20px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#header .header-content .btn {
    padding: 7px 30px 8px 30px;
    font-size: 22px;
    color: #fcf8f5;
    letter-spacing: 3px;
    border: 2px solid #ffde59;
    background: #202020;
    transition: .3s;
    font-family: 'Merriweather', serif;
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

#header .header-content .btn:hover {
    color: #202020;
    border-color: #ffffff;
    background: #ffffff;
}

#header .header-content .discount-text {
    color: #fcf8f5;
    font-size: 18px;
    font-family: 'Merriweather', serif;
    text-align: center;
    display: block;
    margin: 0 auto;
    padding: 5px 0;
}

#header .header-content .countdown {
    color: #ffde59;
    font-size: 20px;
    font-family: 'Merriweather', serif;
    text-align: center;
    margin-top: 15px;
    display: block;
    border: 2px solid #ffde59;
    padding: 10px;
    background: rgba(32, 32, 32, 0.8);
    border-radius: 5px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

#header .header-content .countdown span {
    font-weight: 700;
    color: #ffc259;
    margin: 0 5px;
}

#header .header-img {
    position: relative;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 1000px; /* Container hỗ trợ ảnh 1000px */
    margin: 0 auto;
}

#header .header-img img {
    width: 100%;
    max-width: 1000px; /* Ảnh đạt tối đa 1000px */
    height: auto; /* Giữ tỷ lệ 4:3 (1000x750px) */
}

@media (max-width: 991.98px) {  
    #header .header-content h2 {
        font-size: 40px;
    }

    #header .header-content h2 span {
        font-size: 50px;
    }

    #header .header-content h3 {
        font-size: 30px; /* Điều chỉnh kích thước chữ h3 */
    }

    #header .header-content h3 span {
        font-size: 30px; /* Điều chỉnh kích thước chữ h3 span */
    }

    #header .container {
        max-width: 960px; /* Điều chỉnh container */
    }

    #header .header-img {
        max-width: 750px; /* Giảm kích thước container */
    }

    #header .header-img img {
        width: 100%;
        max-width: 750px; /* Giảm kích thước ảnh */
        height: auto;
    }
}

@media (max-width: 767.98px) {
    #header .header-content {
        text-align: center;
        padding-right: 15px;
        padding-left: 15px;
    }

    #header .container {
        max-width: 720px; /* Điều chỉnh container */
    }

    #header .header-img {
        text-align: center;
        margin-bottom: 45px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%; /* Container vừa với màn hình */
    }

    #header .header-img img {
        width: 100%;
        max-width: 100%; /* Ảnh vừa với container */
        height: auto;
    }
}

@media (max-width: 575.98px) {  
    #header .header-content h2 {
        font-size: 30px;
    }

    #header .header-content h2 span {
        font-size: 40px;
    }

    #header .header-content h3 {
        font-size: 24px; /* Điều chỉnh kích thước chữ h3 */
    }

    #header .header-content h3 span {
        font-size: 24px; /* Điều chỉnh kích thước chữ h3 span */
    }

    #header .header-content p.features {
        font-size: 16px;
    }

    #header .header-content .btn {
        font-size: 18px;
        padding: 5px 25px 6px 25px;
    }

    #header .header-content .discount-text {
        font-size: 16px;
        padding: 4px 0;
    }

    #header .header-content .countdown {
        font-size: 16px;
        padding: 8px;
    }

    #header .container {
        max-width: 540px; /* Điều chỉnh container */
    }

    #header .header-img img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

/**********************************/
/******** Mini Feature CSS ********/
/**********************************/
#feature-mini {
    position: relative;
    background: transparent;
    margin-top: -80px;
}

#feature-mini .container {
    max-width: 992px;
    background: #ffde59;
    /* Xoá display: flex để giữ lưới Bootstrap hoạt động */
}

#feature-mini .col-md-3 {
    border-right: 1px solid #202020;
    border-bottom: 1px solid #202020;
    box-sizing: border-box;
    padding: 0; /* Loại bỏ padding nếu có */
}

#feature-mini .feature-item {
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffde59;
}

#feature-mini .feature-item i {
    color: #000000;
    font-size: 35px;
    margin-bottom: 10px;
}

#feature-mini .feature-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #202020;
}

#feature-mini .feature-item p {
    margin: 0;
    font-size: 16px;
    color: #202020;
}

/* Responsive border fix */
@media (max-width: 575.98px) {
    #feature-mini .col-md-3 {
        border-right: none;
    }

    #feature-mini .col-md-3:last-child {
        border-bottom: none;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    #feature-mini .col-md-3:nth-child(2n) {
        border-right: none;
    }

    #feature-mini .col-md-3:nth-child(3n),
    #feature-mini .col-md-3:nth-child(4n) {
        border-bottom: none;
    }
}

@media (min-width: 768px) {
    #feature-mini .col-md-3 {
        border-bottom: none;
    }

    #feature-mini .col-md-3:nth-child(4n) {
        border-right: none;
    }
}

/**********************************/
/******* Section Header CSS *******/
/**********************************/
.section-header {
    position: relative;
    max-width: 700px;
    margin: 0 auto 45px auto;
    padding-bottom: 20px;
}

.section-header::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    left: calc(50% - 25px);
    bottom: 10px;
    background: #ffde59;
}

.section-header::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    left: calc(50% - 50px);
    bottom: 0;
    background: #ffffff;
}

.section-header p {
    margin: 0;
    color: #ffde59;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
}

.section-header h1 {
    margin: 0;
    color: #ffde59;
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-align: center;
}

@media (max-width: 575.98px) {
    .section-header h1 {
        font-size: 45px;
    }
}

/**********************************/
/********** Feature CSS ***********/
/**********************************/
#feature {
    position: relative;
    padding: 90px 0;
    background: #202020;
}

#feature .col-md-4:first-child .product-feature {
    text-align: right;
}

#feature .product-feature {
    position: relative;
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

#feature .product-feature:last-child {
    margin: 0;
}

#feature .product-icon {
    position: relative;
    width: 60px;
    height: inherit;
    float: left;
}

#feature .product-icon i {
    color: #ffde59;
    font-size: 40px;
    margin-top: 5px;
}

#feature .product-content {
    position: relative;
    width: calc(100% - 60px);
    float: left;
}

#feature .product-feature h2 {
    font-size: 18px;
    font-weight: 400;
    color: #ffde59; /* Explicitly set to ensure heading color remains yellow */
}

#feature .product-feature p {
    font-size: 16px;
    margin-bottom: 0;
    color: #fcf8f5; /* Updated paragraph text color */
}

#feature .product-img {
    position: relative;
    width: 100%;
    overflow: hidden;
}

#feature .product-img img {
    width: 100%;
}

@media (max-width: 767.98px) {
    #feature .col-md-4:first-child .product-feature {
        text-align: left;
    }
    
    #feature .col-md-4:first-child .product-feature .product-icon {
        float: left;
    }
    
    #feature .col-md-4:first-child .product-feature .product-content {
        float: right;
    }
    
    #feature .product-img img {
        margin: 45px 0;
    }
}

/**********************************/
/********* Newsletter CSS *********/
/**********************************/
#newsletter {
    position: relative;
    padding: 45px 0;
    text-align: right;
    background: linear-gradient(to left, rgba(32, 32, 32, 1), rgba(32, 32, 32, 0)), url(../img/header-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#newsletter img {
    position: absolute;
    height: 300px;
    left: 0;
    bottom: -40px;
    z-index: 1;
}

#newsletter h2 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 15px;
}

#newsletter h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    right: 0;
    bottom: 0;
    background: #ffffff;
}

#newsletter .btn {
    position: relative;
    height: 40px;
    padding: 5px 30px;
    color: #ffde59;
    font-size: 16px;
    letter-spacing: 3px;
    background: #202020;
    border: 2px solid #ffde59;
    z-index: 1;
}

#newsletter .btn:hover {
    color: #202020;
    background: #ffffff;
}

#newsletter .btn:focus {
    box-shadow: none;
}

@media(max-width: 767.98px) {
    #newsletter img {
        height: 200px;
        left: 0;
        bottom: 0;
        z-index: 0;
    }
}
/**********************************/
/************ Demo CSS ************/
/**********************************/
#demo {
    position: relative;
    padding: 90px 0;
    background: #202020;
}

#demo h2 {
    font-size: 50px;
    font-weight: 700;
    color: #ffde59;
    text-align: center;
    margin-bottom: 45px;
    text-transform: uppercase;
}

#demo .demo-video {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 500px;
}

#demo .demo-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#demo .demo-text {
    height: 500px;
    color: #ffde59;
    text-align: left;
}

#demo .demo-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffde59;
    margin-bottom: 15px;
    text-align: left;
}

#demo .demo-text p {
    font-size: 16px;
    color: #fcf8f5;
    margin-bottom: 15px;
    text-align: left;
}

#demo .demo-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    #demo .row {
        flex-direction: column;
    }
    #demo .demo-video {
        margin: 0 auto 30px auto;
        display: block;
    }
    #demo .demo-text {
        height: auto;
    }
}
/**********************************/
/********** Process CSS ***********/
/**********************************/
#process {
    position: relative;
    padding: 75px 0 90px 0;
    background: #202020;
}

#process .process-col {
    width: 100%;
    text-align: center;
    margin-bottom: 45px;
}

#process .process-col::after {
    position: absolute;
    top: 12px;
    right: -12px;
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 45px;
    color: #555555;
}

#process .col-md-4:last-child .process-col::after {
    display: none;
}

#process .process-col i {
    color: #ffde59;
    font-size: 90px;
    margin-bottom: 15px;
}

#process .process-col h2 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
    display: inline-block; /* Ensure width matches content */
}

#process .process-col p {
    font-size: 18px;
    margin: 0;
    color: #fcf8f5;
}

/* Video Section CSS */
#video-section {
    position: relative;
    padding: 30px 0;
    background: #202020;
}

.container {
    padding: 0;
    max-width: 960px; /* Đảm bảo đủ không gian cho 3 cột 300px + 2 gap 10px */
}

/* Table CSS */
.video-table {
    width: 100%;
    border-collapse: collapse; /* Loại bỏ khoảng cách giữa các ô */
    border: none; /* Không viền */
    background: transparent; /* Không nền */
}

.video-cell {
    padding: 0 5px; /* Khoảng cách nhỏ giữa các ô */
    vertical-align: top; /* Căn chỉnh trên cùng */
    border: none; /* Không viền cho ô */
    background: transparent; /* Không nền cho ô */
}

.demo-video {
    position: relative;
    height: 500px; /* Đồng bộ với iframe */
    max-width: 300px; /* Đồng bộ với iframe */
    overflow: hidden;
    border-radius: 5px;
    background: #333333; /* Giữ background giống slideshow */
}

.demo-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Đảm bảo video lấp đầy không bị méo */
    border: none;
}

/* Responsive */
@media (max-width: 767.98px) {
    .video-table {
        display: block; /* Chuyển thành block để stack dọc */
        max-width: 300px; /* Match single video width */
        margin: 0 auto; /* Center the table */
    }
    .video-cell {
        display: block;
        width: 100%;
        margin-bottom: 30px;
        text-align: center; /* Center content within the cell */
    }
    .demo-video {
        max-width: 300px; /* Keep consistent width */
        margin: 0 auto; /* Center the video container */
        display: block; /* Ensure it behaves as a block for centering */
        height: 500px;
    }
}

/* Slideshow CSS */
#slideshow-section {
    position: relative;
    padding: 30px 0;
    background: #202020;
}

.slideshow-container {
    position: relative;
    margin: 0 auto;
    height: 500px; /* Reduced height */
    overflow: hidden;
    border-radius: 5px;
    background: #333333;
    width: 100%; /* Default to full column width */
    max-width: 300px; /* Increased width to make it slightly wider */
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images fill the slideshow without distortion */
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: #ffde59;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #ffde59;
}
/**********************************/
/******* Call To Action CSS *******/
/**********************************/
#call-to-action {
    position: relative;
    padding: 45px 0;
    text-align: left;
    background: linear-gradient(to right, rgba(32, 32, 32, 1), rgba(32, 32, 32, 0)), url(../img/header-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#call-to-action img {
    position: absolute;
    height: 300px;
    right: 0;
    bottom: -40px;
    z-index: 1;
}

#call-to-action h2 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding-bottom: 15px;
}

#call-to-action h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #ffffff;
}

#call-to-action a.btn {
    position: relative;
    height: 40px;
    padding: 5px 30px;
    color: #ffde59;
    font-size: 16px;
    letter-spacing: 3px;
    background: #202020;
    border: 2px solid #ffde59;
    z-index: 1;
}

#call-to-action a.btn:hover {
    color: #202020;
    background: #ffffff;
}

#call-to-action a.btn:focus {
    box-shadow: none;
}

@media(max-width: 767.98px) {
    #call-to-action img {
        height: 200px;
        right: 0;
        bottom: 0;
        z-index: 0;
    }
}
/************************************/
/******** Communication CSS ********/
/************************************/
#communication {
    position: relative;
    padding: 90px 0 60px 0;
    background: #202020;
}

#communication .comm-single {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 30px;
    text-align: center;
    background: #202020;
    border: 1px solid #555555;
    border-radius: 5px;
    transition: .3s;
    min-height: 100%;
}

#communication .comm-single:hover {
    background: #ffde59;
    border-color: #202020;
    box-shadow: 0 0 10px rgba(255, 222, 89, 0.1);
}

#communication .comm-title {
    margin-bottom: 30px;
}

#communication .comm-title h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 400;
}

#communication .comm-title p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
}

#communication .comm-img {
    margin-bottom: 30px;
}

#communication .comm-img img {
    max-width: 100%;
    height: auto;
}

#communication .comm-footer h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

#communication .comm-footer .btn {
    padding: 5px 25px 7px 25px;
    font-size: 16px;
    border: 2px solid #ffde59;
    background-color: #ffde59;
}

#communication .comm-footer .btn:hover {
    color: #202020;
    background: #ffffff;
    border-color: #ffffff;
}

@media (max-width: 767.98px) {
    #communication .comm-single {
        margin-bottom: 45px;
    }
}

/**********************************/
/********** Products CSS **********/
/**********************************/
#products {
    position: relative;
    padding: 90px 0 60px 0;
    background: #202020;
}

#products .product-single {
    position: relative;
    width: 100%;
    padding: 30px;
    text-align: center;
    background: #202020;
    border: 1px solid #555555;
    border-radius: 5px;
    margin-bottom: 30px;
    transition: .3s;

    /* Thêm các dòng sau để căn giữa nội dung */
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; /* đảm bảo chiếm hết chiều cao cột */
}

#products .product-single:hover {
    background: #ffde59;
    border-color: #202020;
    box-shadow: 0 0 10px rgba(255, 222, 89,0.1);
}

#products .product-title {
    position: relative;
    margin-bottom: 30px;
}

#products .product-title h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 400;
}

#products .product-title p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
}

#products .product-single .product-img {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

#products .product-img img {
    max-width: 100%;
}

#products .product-footer {
    position: relative;
}

#products .product-footer h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

#products .product-footer .btn {
    padding: 5px 25px 7px 25px;
    font-size: 16px;
    background: #ffde59; /* Yellow background */
    border: 2px solid #ffde59; /* Yellow border */
}

#products .product-footer .btn:hover {
    color: #fcf8f5;
    background: #ffffff; /* White background on hover */
    border: 2px solid #ffffff; /* White border on hover */
    color: #808080; /* Maintain gray text on hover */
}

@media (max-width: 767.98px) {
    #products .product-single {
        margin-bottom: 45px;
    }
    
    #products .col-lg-3:last-child .product-single {
        margin-bottom: 0;
    }
}

/**********************************/
/******** Testimonial CSS *********/
/**********************************/
#testimonial {
    position: relative;
    padding: 90px 0;
    text-align: center;
    background: linear-gradient(rgba(32, 32, 32,0.8), rgba(32, 32, 32,0.8)), url(../img/header-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

#testimonial .container {
    max-width: 720px;
}

#testimonial .testimonial-slider-nav {
    position: relative;
    width: 240px;
    margin: 0 auto;
}

#testimonial .testimonial-slider-nav .slick-slide {
    position: relative;
    opacity: 0;
    transition: .3s;
}

#testimonial .testimonial-slider-nav .slick-active {
    opacity: 1;
    transform: scale(1.6);
}

#testimonial .testimonial-slider-nav .slick-center {
    z-index: 1;
}

#testimonial .testimonial-slider-nav .slick-slide img {
    position: relative;
    display: block;
    margin-top: 23px;
    width: 100%;
    height: auto;
    border-radius: 100px;
}

#testimonial .testimonial-slider-nav .slick-slide::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 55%;
    top: 23px;
    left: 0;
    border-radius: 200px;
    background: linear-gradient(to bottom, rgba(255, 222, 89,0.5), rgba(0, 0, 0,0.8));
    z-index: 1;
    opacity: 1;
    transition: .3s;
}

#testimonial .testimonial-slider-nav .slick-slide.slick-center::after {
    opacity: 0;
}

#testimonial .testimonial-slider {
    position: relative;
    padding-top: 70px;
}

#testimonial .testimonial-slider::before {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    left: calc(50% - 25px);
    font-family: 'Font Awesome 5 Free';
    content: "\f10d";
    font-weight: 900;
    font-size: 50px;
    color: #ffde59;
}

#testimonial .testimonial-slider h1 {
    font-size: 22px;
    font-weight: 400;
}

#testimonial .testimonial-slider h2 {
    color: #ffde59;
    font-size: 14px;
    font-weight: 400;
}

#testimonial .testimonial-slider p {
    font-size: 20px;
    font-style: italic;
    margin: 0;
}

/**********************************/
/************ FAQs CSS ************/
/**********************************/
#faqs {
    position: relative;
    padding: 90px 0;
    background: #202020;
}

#faqs .faqs-text {
    position: relative;
    width: 100%;
}

@media(max-width: 767.98px) {
    #faqs .faqs-text {
        margin-bottom: 30px;
    }
}

#faqs .faqs-text h2 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

#faqs .faqs-text h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #ffffff;
}

#faqs .faqs-text p:last-child {
    margin: 0;
}

#faqs .card {
    margin-bottom: 15px;
    border: none;
    border-radius: 0;
}

#faqs .card:last-child {
    margin-bottom: 0;
}

#faqs .card-header {
    padding: 0;
    border: none;
}

#faqs .card-header a {
    display: block;
    width: 100%;
    padding: 10px 15px 12px 15px;
    color: #ffde59;
    font-size: 16px;
    font-weight: 400;
    background: #202020;
    border: 1px solid #555555;
}

#faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    transition: .3s;
}

#faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    transition: .3s;
}

#faqs .card-body {
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid;
    border-color: transparent #555555 #555555 #555555;
    color: #202020;
}

/************************************/
/*********** News CSS ***************/
/************************************/
#news {
    position: relative;
    padding: 90px 0 60px 0;
    background: #202020;
    margin-bottom: 45px; /* Thêm khoảng cách dưới cùng */
}

#news .news-single {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
    text-align: center;
    background: #202020;
    border: 1px solid #555555;
    border-radius: 5px;
    transition: .3s;
    min-height: 150px;
}

#news .news-single:hover {
    background: #ffde59;
    border-color: #202020;
    box-shadow: 0 0 10px rgba(255, 222, 89, 0.5);
}

#news .news-title h2 {
    font-size: 18px;
    font-weight: 700;
    color: #ffde59; /* Yellow heading */
    margin-bottom: 10px;
}

#news .news-content p {
    font-size: 14px;
    color: #ffffff; /* White paragraph text */
    margin: 0;
}

#news .news-content a {
    color: #ffde59;
    text-decoration: underline;
}

#news .news-content a:hover {
    color: #ffffff;
}


/**********************************/
/********** Contact CSS ***********/
/**********************************/
#contact {
    position: relative;
    width: 100%;
}

#contact .container-fluid,
#contact .container-fluid .col-md-6 {
    padding: 0;
}

#contact .container-fluid .row {
    margin: 0;
}

#contact .container-fluid .col-md-6:first-child {
    min-height: 300px;
    background: url(../img/contact-bg.jpg) center center no-repeat;
    background-size: cover;
}

#contact .contact-info {
    position: relative;
    width: 100%;
    padding: 45px 15px;
    background: #202020;
}

@media(min-width: 768px) {
    #contact .contact-info {
        padding: 45px;
    }
}

#contact .contact-info h2 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

#contact .contact-info h2::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: 0;
    bottom: 0;
    background: #ffffff;
}

#contact .contact-info p {
    font-size: 18px;
    font-weight: 400;
}

#contact .contact-info h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

#contact .contact-info h3 i {
    width: 20px;
    margin-right: 5px;
}

#contact .contact-info button.btn {
    position: relative;
    margin: 15px 0;
    color: #ffde59;
    letter-spacing: 3px;
    border: 2px solid #ffde59;
    background: #202020;
    transition: .3s;
}

#contact .contact-info button.btn:hover {
    color: #202020;
    background: #ffffff;
}

#contact .social {
    position: relative;
    width: 100%;
}

#contact .social a {
    display: inline-block;
    margin: 10px 10px 0 0;
    width: 40px;
    height: 40px;
    padding: 3px 0;
    text-align: center;
    font-size: 20px;
    border: 2px solid #ffde59;
    border-radius: 4px;
}

#contact .social a i {
    color: #ffde59;
}

#contact .social a:hover {
    background: #ffffff;
}

#contact .social a:hover i {
    color: #202020;
}

/**********************************/
/********** Footer CSS ************/
/**********************************/
#footer {
    position: relative;
    padding: 30px 0;
    background: #151515;
}

#footer .col-md-6:first-child p {
    text-align: left;
}

#footer .col-md-6:last-child p {
    text-align: right;
}

@media (max-width: 767.98px) {
    #footer .col-md-6:first-child p,
    #footer .col-md-6:last-child p {
        text-align: center;
    }
}

#footer p {
    color: #ffde59;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

#footer p a {
    font-weight: 700;
}

#footer p a:hover {
    color: #ffffff;
}