body {
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand {
    font-size: 1.5rem;
    color: #8B4513 !important;
    letter-spacing: 1px;
}

.menu-link {
    position: relative;
    font-weight: 600;
    padding: 10px 18px !important;
    color: #333;
    transition: color 0.35s ease, opacity 0.35s ease;
}

.nav-item a {
    font-size: 1.05rem;
    font-weight: 600;
}

.menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0%;
    height: 2px;
    background-color: #8B4513;
    transition: width 0.35s ease;
    border-radius: 3px;
}

.menu-link:hover {
    color: #8B4513 !important;
    opacity: 0.8;
}

.menu-link:hover::after {
    width: 100%;
}

.menu-link.active {
    color: #8B4513 !important;
}

.menu-link.active::after {
    width: 100%;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.product-card img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card .card-body {
    padding: 1.25rem;
}

.product-card .card-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-card .btn {
    transition: all 0.3s ease;
}

.product-card .btn:hover {
    background-color: #8B4513;
    color: white;
    border-color: #8B4513;
}

.btn-primary {
    background-color: #8B4513;
    border-color: #8B4513;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6B3410;
    border-color: #6B3410;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-outline-primary {
    color: #8B4513;
    border-color: #8B4513;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #8B4513;
    border-color: #8B4513;
    color: white;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #FFA500;
    transform: translateY(-2px);
}

.footer-link i {
    margin-right: 6px;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 1.2rem;
}

.footer-link:hover i {
    color: #FFA500;
    transform: translateY(-2px);
}

section {
    position: relative;
}

section h2 {
    position: relative;
    display: inline-block;
}

section h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #8B4513;
    border-radius: 2px;
}

.service-icon {
    transition: transform 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.1);
}

.service-icon i {
    transition: color 0.3s ease;
}

.service-icon:hover i {
    color: #D2691E !important;
}

img {
    max-width: 100%;
    height: auto;
}

.img-fluid {
    transition: transform 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.02);
}

.card {
    border-radius: 10px;
    overflow: hidden;
}

.card-img-top {
    border-radius: 0;
}

.badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
}

.page-banner {
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/backgound3.webp') center/cover;
    opacity: 0.1;
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.achievement-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }

    .product-card img {
        height: 180px;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .achievement-item h1 {
        font-size: 2rem !important;
    }
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: #8B4513;
    color: white;
}

::-moz-selection {
    background-color: #8B4513;
    color: white;
}

.product-image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.thumbnail-img {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail-img:hover {
    border-color: #8B4513;
    transform: scale(1.05);
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #8B4513;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #6B3410;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #666;
}