/*
 * Help Scout Portal Page Custom Stylesheet for efficialtec.io - Dark Teal Theme
 * Designed for a sophisticated, modern aesthetic with calming colors and subtle interactions.
 *
 * How to use:
 * 1. Log in to your Help Scout account.
 * 2. Go to 'Manage' > 'Sites' > Select your specific site (e.g., help.efficialtec.io).
 * 3. Click on 'Custom Code'.
 * 4. Paste this entire CSS code into the 'Custom Stylesheet' text area.
 * 5. Save your changes and clear your browser cache to see the updates.
 */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Universal Box-Sizing for Consistent Layout */

*, *::before, *::after {
    box-sizing: border-box;
}


body {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  font-style: normal;  
  position: relative;
}

body:before {
    content: "";
    width: 100%;
    height: 78px;
    bottom:0;
    position: absolute;
    background: #4D4D4D;
}

body a {
    color: #4D4D4D;
}

body a:hover, body a:focus, body a:active {
    transition: .2s ease all;
    color: #F15A24;
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: #F15A24;
}
body::-webkit-scrollbar-corner {
  background: #F15A24;
}
body::-webkit-scrollbar-thumb {
  background: #F15A24;
}
body::-webkit-scrollbar-thumb:hover {
  background: #F15A24;
}
body::-webkit-scrollbar-track {
  background-color: #4D4D4D;
}

h2 a {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Base Styles â€“ unchanged from your snippet unless noted */
header.navbar .navbar-inner {
    padding: 1.5em 20px;
    background: #FFF;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .02);
    position: relative;
    z-index: 1000;
}

header.navbar .navbar-inner .container-fluid {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.brand {
    padding: 0 !important;
}

.brand img {
    max-width: 250px;
}

.navbar .nav {
    margin: 9px 0;
    display: flex;
    flex-direction: row;
}

.navbar .nav li a {
    color: #4D4D4D !important;
    font-family: Poppins, sans-serif !important;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
}

.navbar .brand,
.navbar .nav li a:hover,
.navbar .nav li a:focus,
.navbar .nav .active a,
.navbar .nav .active a:hover,
.navbar .nav .active a:focus {
    transition: .2s ease all;
    color: #F15A24!important;
}

.navbar .nav > li > a {
    padding: 0 10px;
    font-size: 14px;
}

.nav-collapse, .nav-collapse.collapse {
   height: 100% !important; 
   background: #4D4D4D;
}

.nav-collapse.open ul li a {
    padding: 0 !important;
    color: #FFF !important;
}

.nav-collapse.open ul li {
    padding: 10px 15px !important;
}

.navbar .btn-navbar .icon-bar {
   background: #4D4D4D !important; 
}

.navbar .btn-navbar {
    margin-top: 5px !important;
}

button.menu-close-btn {
    position: absolute;
    top: 25px;
    right: 20px;
    border: 0;
    box-shadow: none;
    background: transparent;
    color: #FFF;
    font-size: 30px;
}


.contentWrapper h1 {
    font-weight: 600;
    text-transform: uppercase;
}


#searchBar .search-query {
   border-radius: 6px !important; 
}

#searchBar button {
    text-shadow: none !important;
    border-radius: 0 6px 6px 0 !important;
    background: #F15A24!important;
    border: 1px solid #F15A24!important;
}


#searchBar button:hover {
    transition: .2s ease all;
    background: #F15A24!important;
}

.threeCol .collection, .twoCol .collection {
    border: 0 !important;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
    border-radius: 18px;

}

.threeCol {
    grid-gap: 20px;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(3, 1fr);  
}

.threeCol:before {
    display: none;
}

.threeCol .collection {
    width: 100%;
    margin: 0;
}

#main-content {
  border-radius: 18px;
background: transparent;  
}

#main-content .contentWrapper {
    border-radius: 18px;
    border:0;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 15%);
}

#sidebar form button {
    right: 0;
    padding: 0 15px;
}

#searchBar.sm button .icon-search {
    color: #FFF;
}

footer {
    background: #4D4D4D;
    margin-top: 80px;
    padding: 30px 0; 
    position: relative;
   
}



footer p {
    margin: 0;
    color: #FFF;
    text-align: center;
}

footer p a {
    color: #FFF;
}

footer p span {
    display: none;
}



#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    background-color: #F15A24;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#scrollToTopBtn:hover {
    transform: translateY(-3px);
    background-color: #F15A24;
}

#scrollToTopBtn.visible {
    opacity: 1;
    visibility: visible;
}



/* ðŸ”½ Responsive Styling */
@media (max-width: 1035px) {
    .navbar .nav > li > a {
        font-size: 12px;
    }
}

/*@media (max-width: 991px) {*/
    header.navbar .navbar-inner .container-fluid {
        justify-content: center;
    }
    .navbar .btn-navbar {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        top: 0;
        left: 10px;
        position: absolute;
    }
    .navbar .nav {
        position: relative;
    }
    .btn-navbar .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        background: #4D4D4D;
        margin: 4px 0;
    }

    .nav-collapse, .nav-collapse.collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100%;
        background: #4D4D4D;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding-top: 60px;
        z-index: 9999;
    }

    .nav-collapse.open {
        left: 0;
    }

    .nav-collapse nav ul.nav {
        flex-direction: column;
        padding-left: 0;
        margin: 0;
    }

    .nav-collapse nav ul.nav li {
        width: 100%;
        text-align: left;
        padding: 10px 20px;
    }

    .nav-collapse nav ul.nav li a {
        display: block;
        padding: 10px 0;
    }
/*}*/


@media (max-width: 990px) {
   .threeCol {
        grid-template-columns: repeat(2, 1fr);  
    } 
}

@media (max-width: 768px) {
    body:before {
        display: none;
    }
}

@media (max-width: 767px) {
   .threeCol {
        grid-template-columns: repeat(1, 1fr);  
    } 
}