/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
:root {
    --primary-color: #800e13; 
    --text-color: #333333; 
    --background-color: #f5f5f5; 
    --card-background: #FFFFFF; 
    --button-hover-color: #FF5722; 
    --footer-border-color: #008080; 
    --service-button-color: #FFC107; 
    --highlight-color: #F4E1C1; 
  }
  
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}



.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    width: 40px;
    height: 40px;
    background-color: var(--footer-border-color) !important; 
    color: var(--background-color);
    border: none;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--button-hover-color); 
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
h1, h2, h3, .h1, .h2, .h3 {
    font-weight: 400 !important;
    font-family: 'Playball', cursive !important;
    color: var(--primary-color);
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 600 !important;
    font-family: 'Open Sans', sans-serif !important;
    color: var(--text-color);
}

p {
    color: var(--text-color) !important;
}


.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


.wow, .animated {
    animation-duration: 2s !important;
}


button:hover {
    background-color: var(--button-hover-color) !important; /* Hover effect */
    color: var(--background-color) !important;
}

.btn.btn-primary {
    border: 0;
    background-color: var(--primary-color);
    color: var(--background-color);
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.btn {
    font-weight: 600;
    transition: .5s;
    background-color: var(--secondary-color); 
    color: var(--text-color);
}

.btn-square, .btn-sm-square, .btn-md-square, .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.navbar .navbar-nav .nav-link {
    padding: 10px 12px;
    font-weight: 600;
    font-size: 17px;
    transition: .5s;
    color: var(--primary-color); 
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--footer-border-color); 
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
        background-color: var(--background-color);
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        opacity: 1;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--secondary-color); 
    color: var(--background-color); 
}

#searchModal .modal-content {
    background-color: rgba(255, 255, 255, .95);
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.event .tab-class .nav-item a.active {
    background: var(--secondary-color) !important; 
}

.event .event-img .event-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(212, 167, 98, 0.7); 
    border-radius: 8px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.event .event-img:hover .event-overlay {
    opacity: 1;
}

.service .service-item {
    position: relative;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    bottom: auto;
    background: var(--secondary-color); 
    border-radius: 8px;
    transition: 1s;
}

.service-item:hover .service-content::after {
    height: 100%;
    opacity: 1;
    transition: height 1s, opacity 1s;
}

.service-item .service-content-icon {
    position: relative;
    z-index: 2;
}

.service-item .service-content-icon i,
.service-item .service-content-icon p {
    transition: 1s;
}

.service-item:hover .service-content-icon i {
    color: var(--primary-color); 
}

.service-item:hover .service-content-icon p {
    color: var(--background-color); 
}

.service-item:hover .service-content-icon a.btn-primary {
    background: var(--background-color); 
    color: var(--primary-color); 
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.service-item .service-content-icon a.btn-primary {
    transition: 1s !important;
}

.menu .nav-item a.active {
    background: var(--secondary-color) !important; 
}

.menu .menu-item .border-bottom {
    border-bottom-style: dashed !important;
}

.video {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(rgba(254, 218, 154, 0.1), rgba(254, 218, 154, 0.1)), url(../img/thumbnail.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 8px;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
    color: var(--highlight-color) !important;
    background-color: var(--primary-color) !important; 
}

.video .btn-play:hover {
    background-color: var(--background-color) !important; 
}
.play-icon{
    font-size: 50px;
    color: var(--background-color) !important;
    z-index: 999 ;
    position: absolute;
    right: 10px;
    top: 18px ;
}

.video .btn-play:hover .play-icon {
    color: var(--primary-color) !important; 
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--footer-border-color); 
    border-radius: 50%;
    transition: all 200ms;
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.blog-item {
    position: relative;
}

.blog-item img {
    transition: 0.5s;
}

.blog-item:hover img {
    transform: scale(1.3);
}

.blog-item .blog-content {
    position: relative;
    transform: translateY(-50%);
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item .blog-content a.btn h5 {
    transition: 0.5s;
}

.blog-item:hover .blog-content a.btn h5 {
    color: var(--secondary-color) !important; 
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.team-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-item .team-icon {
    position: absolute;
    top: 0;
    right: 0;
}

.team-item .team-icon .share-link {
    opacity: 0;
    transition: opacity 0.9s ease-in-out;
}

.team-item:hover .share-link {
    opacity: 1;
}

.team-item .team-content {
    transition: background 0.9s ease, color 0.9s ease;
}

.team-item:hover .team-content {
    background: var(--primary-color) !important; 
    color: var(--dark-color) !important; 
}

.team-item .team-content h4,
.team-item .team-content p {
    transition: color 0.5s ease;
}

.team-item:hover .team-content h4 {
    color: var(--dark-color) !important; 
}

.team-item:hover .team-content p {
    color: var(--white-color); 
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.testimonial-item {
    border: 1px solid var(--primary-color); 
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-carousel.owl-rtl .testimonial-item {
    direction: ltr !important;
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.contact-form {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: box-shadow 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
}

.footer .footer-item a.text-body:hover {
    color: var(--primary-color) !important; 
}


footer {
    background-color: var(--secondary-color) !important; 
}

small {
    background-color: var(--primary-color) !important; 
    color: var(--footer-border-color) !important; 
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.cont {
    max-width: 400px;
    margin: 2rem auto;
}


.product-card {
    background-color: var(--card-background);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.product-card__image {
    height: 250px;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.product-card:hover .product-card__image img {
    transform: scale(1.05);
}


.product-card__info {
    padding: 20px;
}

.product-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.product-card__description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}


.product-card__price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-card__price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}
.product-card__btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.product-card__btn:hover {
    background-color: var(--hover-color);
    transform: scale(1.05); 
}


#container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 1rem; 
    background-color: none !important;
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
@media screen and (max-width: 1366px) {
    #container {
        grid-template-columns: repeat(2, 1fr); 
        gap: 15px; 
    }
}

@media screen and (max-width: 768px) {
    #container {
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */