:root {
    --primary-color: #b8862d;
    /* Gold */
    --secondary-color: #013220;
    /* Dark Green */
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* --- 1. HOVER DROPDOWN (Desktop Only) --- */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.3s;
    }

}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utilities */
.text-gold {
    color: var(--primary-color) !important;
}

.text-dark-green {
    color: var(--secondary-color) !important;
}

.bg-gold {
    background-color: var(--primary-color) !important;
}

.separator {
    height: 3px;
    width: 60px;
    margin-top: 10px;
}

/* Navbar */
.top-bar {
    background-color: rgba(26, 60, 43, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    background-color: var(--secondary-color);
    transition: var(--transition);
    padding: 0;
}

.navbar .nav-link {
    color: #eee !important;
    font-size: 14px;
    padding: 25px 15px !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    background: var(--secondary-color);
    border: none;
    border-radius: 0;
    margin: 0;
}

.dropdown-item {
    color: #ddd;
    padding: 10px 20px;
    font-size: 14px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.social-icon-link {
    color: white;
    margin-left: 15px;
    transition: var(--transition);
}

.social-icon-link:hover {
    color: var(--primary-color);
}

.navbar-brand img {
    width: 160px;
    padding: 10px 0;
}

.abtimg img {
  width: 100%;
  border: 4px solid #c78526;
  border-radius: 20px 0;
  height: 400px;
}

/* Buttons */
.btn-gold {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-gold:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.navbar-brand {
  height: 100%!important;
}
/* Hero Slider */
.hero-slide {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- 2. OWL CAROUSEL ARROWS (Fix) --- */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    border-radius: 50%;
    font-size: 20px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.owl-nav button:hover {
    background: var(--primary-color) !important;
    color: var(--secondary-color) !important;
}

.owl-prev {
    left: -20px;
}

.owl-next {
    right: -20px;
}

/* Adjust arrows for mobile */
@media(max-width: 768px) {
    .owl-prev {
        left: 0;
    }

    .owl-next {
        right: 0;
    }
}

/* Cards & Services */
.service-card-modern,
.product-card-modern {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #eee;
    margin: 10px 5px;
}

.service-card-modern a {
  color: var(--primary-color);
  display: block;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 500;
}
#about h5 {
  display: block;
}
.cat-content h5 a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.service-card-modern {
    padding: 30px 20px;
    text-align: center;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--primary-color);
}

.icon-wrapper {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.list-unstyled.footer-menu.small li a {
    color: #fff;
    text-decoration: none;
}

.product-img-wrapper {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 60, 43, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-modern:hover .product-overlay {
    opacity: 1;
}

#productSlider .owl-nav {
    display: block;
}

.category-item-modern {
    position: relative;
    margin: 0 5px;
}

.category-item-modern img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.cat-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 60, 43, 0.8);
    color: white;
    padding: 10px;
    text-align: center;
}

#categorySlider .owl-nav {
    display: block;
}

/* Contact Fix Styles */
.contact-section-fixed .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.footer-section {
    background: #0d3c2b;
}

.tag-cloud a {
    text-decoration: none;
}


/* floating  button css */

.floating_btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

.contact_icon {
    background-color: #42db87;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 30px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 #42db87;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 300ms ease-in-out;
}


.text_icon {
    margin-top: 8px;
    color: #707070;
    font-size: 13px;
}


/* scroll top css */
button.back-to-top {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    height: 0px;
    width: 0px;
    overflow: hidden;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    color: transparent;
    clear: both;
    visibility: hidden;
    position: fixed;
    cursor: pointer;
    display: block;
    border: none;
    right: 50px;
    bottom: 75px;
    font-size: 0px;
    outline: 0 !important;
    z-index: 99;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

button.back-to-top:hover,
button.back-to-top:active,
button.back-to-top:focus {
    outline: 0 !important;
}

button.back-to-top::before,
button.back-to-top::after {
    content: "";
    display: block;
    border-bottom: solid 10px #EA5D5F;
    border-left: solid 10px transparent;
    line-height: 0;
    border-right: solid 10px transparent;
    height: 0;
    margin: 18px auto 0;
    width: 0;
    border-radius: 20px;
    visibility: hidden;
}

button.back-to-top.show::after,
button.back-to-top.show::before {
    visibility: visible;
}

button.back-to-top::after {
    border-bottom-color: #fff;
    position: relative;
    top: -24px;
}

button.back-to-top.show {
    display: block;
    background: #fff;
    color: #00ab6c;
    font-size: 25px;
    right: 25px;
    bottom: 50px;
    height: 50px;
    width: 50px;
    visibility: visible;
    box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

button.back-to-top.show:active {
    box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.25);
}



@media(max-width: 992px) {
    .navbar-brand img {
        width: 120px;
        padding: 5px 0;
    }
}

@media(max-width:768px) {
    html {
        overflow-x: hidden;
        width: 100%;

    }

    .hero-slide {
        height: 36vh;
    }

    .item.hero-slide a.btn {
        padding: .5rem 2rem;
        padding-right: 2rem;
        padding-left: 2rem;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 24px;
    }
}



@media screen and (min-width: 992px) and (max-width: 1230px){


    .navbar-brand img {
        width: 120px;
        padding: 7px 0;
    }

    .navbar .nav-link {
        font-size: 13px;
        padding: 25px 10px !important;
    }

    .social-icon-link {
        margin-left: 0px;
    }
}