/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.6
Tested up to: 7.0
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

a {
    text-decoration: none;
}

:root {
    /* font-family */
    --primaryFont: "Nunito", sans-serif;

    /* colors */
    --smallFontColor: 64, 74, 61;
    --primaryBlue: 6, 70, 165;
    --primaryGreen: 122, 197, 71;
    --fullWhite: 255, 255, 255;
    --darkBlack: 44, 46, 53;
    --lghtBlack: 92, 102, 114;
    --sectionBg: 237, 242, 236;
    --footerBg: 10, 40, 3, 94%;
    --bottomFooter: 30, 57, 23;
    --offWhit: 237, 242, 236;

    /* heading text sizes */
    --sectionHead: 48px;
    --sectionSubHead: 15px;
    --contentSize: 16px;
    --casualSize: 18px;
    --sectionCardHead: 24px;
    --topHeadCard: 20px;
}

body {
    font-family: var(--primaryFont);
}

/* Tablet optimization: Switch to mobile toggle at 1100px instead of 991px */
@media(max-width: 1100px) {
    .d-none.d-md-block {
        display: none !important; /* Hide desktop menu */
    }
    .d-lg-none {
        display: block !important; /* Show mobile toggle */
    }
    .main-nav-container .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media(min-width: 1500px) {
	.block-end__contact {
		gap: 33px !important;
	}
}
@media (min-width: 768px) {
	.d-md-block {
		display: block!important;
		white-space: nowrap;
	}
}

/* top navbar */
.topnav {
    background: rgba(var(--primaryBlue));
    padding: 10px 20px;
    border-bottom: 3px solid rgba(var(--fullWhite));
    font-family: var(--primaryFont);
}

.top-contact {
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-item i {
    color: rgba(var(--fullWhite));
    font-size: 14px;
}

.contact-item a {
    color: rgba(var(--fullWhite));
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: rgba(var(--primaryGreen));
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    color: rgba(var(--fullWhite));
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: rgba(var(--primaryGreen));
    ;
    transform: translateY(-2px);
}

/* main nav */
.main-nav {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.main-nav-container {
    padding: 10px;
}

#primary-menu {
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    margin-bottom: 0px;
    gap: 70px;
}

#primary-menu li a {
    color: var(--darkBlack);
}

.nav-button {
    background-color: rgba(var(--primaryGreen));
    padding: 10px 25px;
    color: rgb(var(--fullWhite));
    border-radius: 50px;
    border: none;
}
.nav-button_dist {
    background-color:  #0646a5 ;
    padding: 10px 25px;
    color: rgb(var(--fullWhite));
    border-radius: 50px;
    border: none;
}
.footer-dev-link {
    color: #0d6efd; 
    text-decoration: none !important;
    border-bottom: 2px solid transparent; 
    transition: border-color 0.3s ease; 
}

.footer-dev-link:hover {
    border-bottom: 2px solid #ffffff; 
    color: #ffffff !important;
}
.nav-button:hover {
   
    color: rgb(var(--fullWhite));
    background-color: #0646a5;
}
.nav-button_dist:hover {
   
    color: rgb(var(--fullWhite));
    background-color: rgba(var(--primaryGreen));
}

.nav-button a {
    color: rgba(var(--fullWhite));
}

.nav-button i {
    transform: rotate(-45deg);
}

/* banner */
.hero-slider-section {
    padding: 15px 15px 0px 15px;
    background: rgb(var(--fullWhite));
}

.heroSwiper {
    border-radius: 30px;
    overflow: hidden;
}

.hero-slide {
    height: 760px;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(var(--fullWhite));
    font-size: 18px;
    margin-bottom: 20px;
}

.hero-tag img {
    width: auto;
    height: auto;
}

.hero-content h1 {
    color: rgba(var(--fullWhite));
    font-size: 70px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.trans-icon {
    transform: rotate(-45deg);
}

.btn-primary-custom {
    background: rgba(var(--primaryBlue));
    color: rgb(var(--fullWhite));
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, .6);
    color: rgba(var(--fullWhite));
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    /* backdrop-filter: blur(10px); */
    background-color: rgba(var(--fullWhite), 0.26);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.swiper-button-prev,
.swiper-button-next {
    color: rgba(var(--fullWhite));
    width: 60px;
    height: 60px;
}

.swiper-button-prev {
    left: 40px;
}

.swiper-button-next {
    right: 40px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 28px;
    font-weight: 300;
}

/* feature cards section */
.feature-cards {
    background-color: rgb(var(--offWhit));
    padding: 64px 0px;
}

.card-head {
    font-size: var(--topHeadCard);
    color: rgb(var(--darkBlack));
    margin-top: 24px;
    margin-top: 10px;
}

.card-content {
    color: rgb(var(--lghtBlack));
}

/* about section */
.about-section {
    padding: 64px 0;
    overflow: hidden;
}

.section-head {
    font-size: var(--sectionHead);
    line-height: 1.15;
    font-weight: 800;
    color: var(--darkBlack);
    margin-bottom: 25px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgb(var(--smallFontColor));
    margin-bottom: 20px;
}

.section-tag i {
    color: var(--primaryGreen);
}

.about-content p {
    font-size: var(--contentSize);
    color: rgb(var(--lghtBlack));
    line-height: 1.9;
    margin-bottom: 25px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(var(--lghtBlack));
    font-size: 15px;
}

.feature-item i {
    color: rgb(var(--primaryGreen));
}

.about-bottom {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primaryGreen);
    color: var(--fullWhite);
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: .3s;
}

.about-btn:hover {
    background: var(--primaryBlue);
    color: var(--fullWhite);
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgb(var(--primaryBlue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--fullWhite));
}

.contact-box span {
    display: block;
    color: rgb(var(--lghtBlack));
}

.contact-box a {
    color: rgb(var(--primaryGreen));
    font-size: var(--topHeadCard);
    font-weight: 700;
    text-decoration: none;
}

.about-image-wrapper {
    position: relative;
    padding-top: 90px;
}

.about-image {
    object-fit: cover;
    border-radius: 18px;
}

.trust-card {
    position: absolute;
    top: -134px;
    right: 0px;
    /* width: 330px; */
    background: rgb(var(--primaryBlue));
    color: rgb(var(--fullWhite));
    padding: 50px 35px;
    border-radius: 12px;
    z-index: 2;
}

.trust-card span {
    display: block;
    font-size: 14px;
    margin-bottom: 15px;
}

.trust-card h3 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(255, 255, 255, .4);
}

.trust-card p {
    margin: 0;
    line-height: 1.8;
    font-size: 14px;
}

/* product section */
.product-section {
    background-color: rgb(var(--offWhit));
    position: relative;
    padding: 64px 0px;
}

.scrtach-img {
    position: absolute;
    width: 100%;
    top: -24px;
}

.scrtach-img-2 {
    position: absolute;
    width: 100%;
    bottom: -24px;
}

.productSwiper {
    margin-top: 60px;
    overflow: visible;
}

.product-card {
    background: rgb(var(--fullWhite));
    border-radius: 12px;
    padding: 20px;
    position: relative;
    text-align: center;
    height: 100%;
    transition: .4s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-weight {
    position: absolute;
    top: 22px;
    right: 20px;
    background: rgb(var(--primaryGreen));
    color: rgb(var(--fullWhite));
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 4px;
}

.product-image {
    height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    object-fit: contain;
}

.slide-wrap {
    overflow: hidden;
}

.product-content {
    padding-top: 40px;
}

.product-content h4 {
    font-size: 24px;
    color: rgb(var(--darkBlack));
    font-weight: 700;
    margin-bottom: 12px;
}

.product-content a {
    color: rgb(var(--primaryGreen));
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.product-content a:hover {
    color: rgb(var(--primaryBlue));
}

/* choose section */
.choose-section {
    padding: 80px 0;
    background: rgb(var(--fullWhite));
}

.choose-wrapper {
    margin-top: 60px;
    /* border-top: 1px solid rgba(0,0,0,.08);
    border-left: 1px solid rgba(0,0,0,.08); */
}

.horizontal {
    color: rgb(201 198 198);
    height: 0.85px;
    margin: 15px 0px;
}

.choose-center-card {
    border-right: 1px solid rgba(0, 0, 0, .08);
    border-left: 1px solid rgba(0, 0, 0, .08);
}

.choose-card {
    text-align: center;
    padding: 42px 30px;
    /* border-right: 1px solid rgba(0,0,0,.08); */
    /* border-bottom: 1px solid rgba(0,0,0,.08); */
    height: 100%;
    transition: .3s ease;
}

.choose-card:hover {
    background: rgb(var(--offWhit));
}

.choose-icon {
    width: 82px;
    height: 82px;
    background: rgb(var(--offWhit));
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.choose-card h4 {
    font-size: rgb(var(--sectionCardHead));
    color: rgb(var(--darkBlack));
    font-weight: 700;
    margin-bottom: 12px;
}

.choose-card p {
    font-size: 15px;
    color: rgb(var(--lghtBlack));
    line-height: 1.7;
    margin-bottom: 0;
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
}

/* product benefit section */
.product-benefits {
    position: relative;
    padding: 64px 0;
    background: rgb(var(--sectionBg));
}

.benefit-list {
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 50px;
}

.benefit-number {
    min-width: 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgb(var(--primaryGreen));
    color: rgb(var(--fullWhite));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.benefit-content h4 {
    font-size: var(--sectionCardHead);
    color: rgb(var(--darkBlack));
    margin-bottom: 6px;
    font-weight: 700;
}

.benefit-content p {
    margin: 0;
    color: rgb(var(--lghtBlack));
}

.benefit-item>svg {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.benefit-item::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: 0;
    width: 2px;
    background-image: linear-gradient(to bottom, #b1b9c2 60%, rgba(255, 255, 255, 0) 0%);
    background-position: top;
    background-size: 2px 14px;
    background-repeat: repeat-y;
    z-index: 1;
}

.benefit-item:last-child {
    padding-bottom: 0;
}

.benefit-item:last-child::before {
    display: none;
}

.benefit-content h4 {
    margin: 0 0 6px 0;
}

.benefit-content p {
    margin: 0;
}

/*  testimonial-section */
.testimonial-section {
    padding: 64px 0px;
}

.testimonial-image img {
    border-radius: 25px;
}

.testimonial-wrapper {
    position: relative;
    padding: 0px 50px;
}

.rating {
    margin-bottom: 25px;
}

.rating i {
    color: #f4c542;
    margin-right: 3px;
    font-size: 16px;
}

.testimonial-content h3 {
    font-size: 28px;
    color: #0A2803;
    max-width: 700px;
    margin-bottom: 35px;
    font-weight: 500;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h5 {
    margin: 0;
    font-size: 18px;
    color: var(--darkBlack);
    font-weight: 700;
}

.client-info span {
    color: var(--lghtBlack);
    font-size: 14px;
}

.quote-icon {
    position: absolute;
    right: 120px;
    bottom: 0;
    color: var(--primaryGreen);
    opacity: .8;
}

.testimonial-nav {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    cursor: pointer;
    color: var(--lghtBlack);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #808080;
    transition: .3s;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: var(--primaryGreen);
}

.testimonial-prev {
    margin-bottom: 10px;
}

/* before footer */
.before-footer-section {
    position: relative;
    margin-bottom: -120px;
    z-index: 10;
}

.before-footer {
    background: url('https://hivends.org/abibba/site/wp-content/themes/twentythirteen/images/assets/before-footer-bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    overflow: hidden;
    padding: 0;
}

.before-footer-img img {
    position: absolute;
    left: 0;
    top: -40px;
}

.before-footer .col-lg-7:last-child {
    padding: 50px;
}

.before-footer-title {
    font-size: var(--sectionHead);
    line-height: 1.2;
    font-weight: 800;
    color: rgb(var(--fullWhite));
    margin: 15px 0 25px;
}

.before-footer-content {
    color: rgba(255, 255, 255, .85);
    line-height: 1.9;
    margin-bottom: 35px;
}

.before-footer-btns {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgb(var(--primaryBlue));
    color: rgb(var(--fullWhite));
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-phone span {
    display: block;
    color: rgba(255, 255, 255, .8);
}

.footer-phone h5 {
    color: rgb(var(--fullWhite));
    margin: 0;
    font-weight: 700;
}

/* main footer */

.main-footer-section {
    background:
        linear-gradient(rgba(10, 40, 3, .94), rgba(10, 40, 3, .94)),
        url('https://hivends.org/abibba/site/wp-content/themes/twentythirteen/images/assets/footer-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--fullWhite);
    /* padding-top: 180px; */
    position: relative;
}

.newsletter-row {
    padding-bottom: 50px;
    margin-bottom: 60px;
    /* margin-top: 60px; */
}

.foot-head {
    font-size: var(--sectionCardHead);
    font-weight: 700;
    color: rgb(var(--fullWhite));
    margin: 0;
    line-height: 1.4;
}

.newsletter-form {
    display: flex;
    align-items: center;
    gap: 20px;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    padding: 15px 0;
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .7);
}

.newsletter-form button {
    border: none;
    background: rgb(var(--primaryGreen));
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
}



.footer-logo {
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-about {
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    margin-bottom: 25px;
}

.footer-social {
    list-style: none;
    display: flex;
    gap: 18px;
    padding: 0;
    margin: 0;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
}

.footer-title {
    color: #fff;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
}

.double-arrow {
    margin-right: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: rgb(var(--primaryGreen));
}

.foot-contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: rgb(var(--primaryBlue));
    display: flex;
    align-items: center;
    justify-content: center;
}

.foot-contact-item span {
    color: rgba(255, 255, 255, .75);
    display: block;
    margin-bottom: 5px;
}

.foot-contact-item h6 {
    color: #fff;
    line-height: 1.7;
    font-size: var(--topHeadCard);
    margin: 0;
}

.footer-bottom {
    background: rgb(var(--bottomFooter));
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
}

@media(max-width:992px) {
    .top-contact {
        justify-content: center;
        gap: 15px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }

    .social-icons {
        justify-content: center;
    }

    .hero-slide {
        height: 650px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .before-footer {
        padding: 40px 20px;
    }

    .before-footer .col-lg-6:last-child {
        padding: 20px;
    }

    .before-footer-img {
        margin-top: 0;
        margin-bottom: 30px;
    }

    .before-footer-title {
        font-size: 38px;
    }

    .choose-card {
        padding: 35px 20px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-image-wrapper {
        padding-top: 0;
    }

    .trust-card {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
        top: 0;
        right: 0;
    }

    .before-footer-img img {
        position: absolute;
        left: 0px;
        top: 77px;
        width: 450px;
    }
}

@media(max-width:767px) {

    .hero-slide {
        height: 550px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .before-footer-title {
        font-size: 30px;
    }

    .before-footer-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-box a {
        font-size: 18px;
    }

    .benefit-content h4 {
        font-size: 22px;
    }

    .choose-wrapper {
        border: none;
    }

    .choose-card {
        border: 1px solid rgba(0, 0, 0, .08);
        margin-bottom: 15px;
        border-radius: 12px;
    }
}

@media (max-width: 575px) {
    :root {
        --sectionHead: 25px;
    }

    .trust-card h3 {
        font-size: 40px;
    }

    .about-content p {
        line-height: normal;
    }

    .top-contact {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .scrtach-img {
        top: -7px;
    }

    .scrtach-img-2 {
        bottom: -8px;
    }

    .client-info img {
        width: 40px;
        height: 40px;
    }

    .client-info h5 {
        font-size: 16px;
    }

    .client-info span {
        font-size: 12px;
    }

    .quote-icon {
        right: 0px;
    }

    .testimonial-content h3 {
        font-size: var(--sectionCardHead);
    }

    .before-footer-img img {
        position: relative;
        top: 0;
        left: 0;
    }

    .before-footer .col-lg-7:last-child {
        padding: 0px;
    }

    .before-footer-section {
        margin-bottom: -180px;
    }

    .newsletter-form {
        gap: 0px;
    }

    .newsletter-row {
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   MAX MEGA MENU - VARIABLES & ALIGNMENT BRIDGE
   ========================================================================== */

/* 1. Eliminate duplicate mobile toggles built into the plugin */
#mega-menu-wrap-primary .mega-menu-toggle {
    display: none !important;
}

@media only screen and (max-width: 768px) {
    #mega-menu-wrap-primary .mega-menu-toggle+#mega-menu-primary {
        flex-direction: column;
        flex-wrap: nowrap;
        color: #222;
        background-color: transparent !important;
        padding: 0px;
        display: block !important;
    }

    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-item>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-menu-ancestor>a.mega-menu-link,
    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-current-page-ancestor>a.mega-menu-link {
        color: black !important;
        background-color: transparent !important;
    }

    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
        border: 0;
        margin: 0;
        line-height: 40px;
        height: 40px;
        padding: 0 10px;
        background: transparent;
        text-align: left;
        color: black !important;
        font-size: 14px;
    }

    #mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item.mega-toggle-on>a.mega-menu-link {
        color: white;
        background-color: transparent !important;
    }
}

div#tertiary {
    display: none;
}

header.entry-header {
    display: none;
}

article#post-111 {
    margin: 39px;
}

/* Fix alignment for the footer links */
.footer-links li {
    display: flex !important;
    /* Forces the image and text onto one line */
    align-items: center;
    /* Vertically centers image and text */
    margin-bottom: 12px;
    /* Adds breathing room */
}

/* Ensure the image doesn't force the text away */
.footer-links .double-arrow {
    width: 15px;
    /* Adjust size as needed */
    height: auto;
    margin-right: 10px;
    /* Adds space between arrow and text */
    flex-shrink: 0;
    /* Prevents the image from shrinking */
}

/* Ensure the link text is visible and styled */
.footer-link-text {
    color: #ffffff !important;
    /* Force color to ensure visibility */
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
}

/* Floating Action Bar Styles */
.floating-action-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-action-bar a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.floating-action-bar a:hover {
    transform: translateY(-5px);
    color: #fff;
}

.float-call {
    background-color: #007bff;
}

.float-mail {
    background-color: #ea4335;
}

.float-whatsapp {
    background-color: #25d366;
}

.floating-action-bar .mobile-text {
    display: none;
    /* Can be shown on hover using tooltips if desired */
}

/* Scroll to Top Button */
.float-scroll-up {
    position: fixed;
    bottom: 30px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: rgb(var(--primaryGreen, 76, 175, 80));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.float-scroll-up.show {
    opacity: 1;
    visibility: visible;
}

.float-scroll-up:hover {
    transform: translateY(-5px);
    background-color: rgb(var(--darkBlack, 0, 0, 0));
}

/* Mobile Horizontal Bottom Bar */
@media (max-width: 767px) {
    .floating-action-bar {
        left: 0;
        bottom: 0;
        width: 100%;
        flex-direction: row;
        gap: 0;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .floating-action-bar a {
        flex: 1;
        border-radius: 0;
        height: 60px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        font-size: 20px;
        box-shadow: none;
    }

    .floating-action-bar a:hover {
        transform: none;
    }

    .floating-action-bar .mobile-text {
        display: block;
        font-size: 11px;
        font-weight: 500;
        margin-top: 2px;
    }

    .float-scroll-up {
        bottom: 75px;
        /* Kept above the new bottom bar */
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Search Results================================ */
#search-results {
    max-height: 300px; 
    overflow-y: auto;   
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    margin-top: 5px;
    scrollbar-width: thin;
}

/* Optional: Make the scrollbar look cleaner */
#search-results::-webkit-scrollbar {
    width: 6px;
}
#search-results::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
}