/*
Theme Name: itsolu child theme
Theme URI: https://techitrowmari.com/wp/itsolu-child-theme
Description: Itsolu - Technology & IT Solutions Wordpress Theme
Author: techtime
Author URI: https://www.templatemonster.com/authors/techtime/
Version: 1.0.0
Tags: custom-menu, editor-style, featured-images
Template: itsolu
Text Domain: itsolu-child-theme
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


/*
    Please Add your custom styles here
*/

/* ================= Header customizations ================= */

/* Sticky header polish */
.header-sticky {
    transition: all 0.35s ease;
}
.header-sticky.is-sticky {
    background-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 20, 60, 0.10);
}
.header-sticky.is-sticky .container,
.header-sticky.is-sticky .container-fluid {
    padding-top: 6px;
    padding-bottom: 6px;
}
.header-sticky .container,
.header-sticky .container-fluid {
    transition: padding 0.3s ease;
}
.header-sticky.is-sticky .logo img,
.header-sticky.is-sticky .standard-logo img {
    max-height: 45px;
    transition: max-height 0.3s ease;
}

/* Header top bar polish */
.itsolu-header-top {
    padding-top: 6px;
    padding-bottom: 6px;
}
.itsolu-header-top .top-address p,
.itsolu-header-top a,
.itsolu-header-top span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Main menu link styling */
.itsolu_menu ul.sub-menu > li > a {
    transition: color 0.25s ease;
    font-weight: 600;
}
.itsolu_menu ul.sub-menu > li > a:hover,
.itsolu_menu ul.sub-menu > li.current-menu-item > a {
    color: #1f5fd1 !important;
}

/* Header CTA button */
.header-cta-item {
    display: flex;
    align-items: center;
    margin-left: 20px;
    list-style: none;
}
.header-cta-btn {
    background: #1f5fd1;
    color: #ffffff !important;
    padding: 11px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
}
.header-cta-btn:hover {
    background: #143b8c;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(31,95,209,0.35);
}
@media (max-width: 1199px) {
    .header-cta-item { display: none; }
}


/* ================= Professional menu styling ================= */
.itsolu_menu ul.sub-menu {
    display: flex;
    align-items: center;
}
.itsolu_menu ul.sub-menu > li {
    position: relative;
    margin: 0 16px;
}
.itsolu_menu ul.sub-menu > li > a {
    color: #2b2b2b !important;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 10px 2px;
    position: relative;
    display: inline-block;
}
.itsolu_menu ul.sub-menu > li > a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 2px;
    background-color: #1f5fd1;
    transition: width 0.3s ease;
}
.itsolu_menu ul.sub-menu > li > a:hover::after,
.itsolu_menu ul.sub-menu > li.current-menu-item > a::after {
    width: 100%;
}
.itsolu_menu ul.sub-menu > li > a:hover,
.itsolu_menu ul.sub-menu > li.current-menu-item > a {
    color: #1f5fd1 !important;
}
