/*
Theme Name: Synkrone
Theme URI: 
Author: Technostacks
Author URI: https://technostacks.com/
Description: A classic WordPress theme converted from a static HTML site.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: synkrone-classic
*/


/* Sub Menu Dropdown Styling */
.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    background-color: #001D3D;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 50;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
}

.sub-menu.flex {
    display: flex !important;
}


/* Submenu toggle icon transition */
.submenu-toggle {
    transition: transform 0.3s ease;
}

.submenu-toggle.rotate-180 {
    transform: rotate(180deg);
}

/* Submenu link styling */
.sub-menu a {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.sub-menu a:hover {
    color: #2468FD !important;
}

/* Mobile sub-menu styling overrides */
@media (max-width: 1023px) {
    .sub-menu {
        position: static !important;
        background-color: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0.5rem 0 0 1rem !important;
        margin-top: 0 !important;
        min-width: auto !important;
    }
    
    .sub-menu a {
        white-space: normal;
        display: block;
    }
}

/* Contact Form 7 */
.cf7-field {
    width: 100%;
    height: 48px;
    border: 1px solid #D5DCE5;
    border-radius: 10px;
    padding: 0 20px;
    font-size: 14px;
    color: #07244D;
    outline: none;
    transition: border-color 0.3s ease;
}

.cf7-field:focus {
    border-color: #315EFB;
}

.cf7-field::placeholder {
    color: #8A97AA;
}

.cf7-textarea {
    width: 100%;
    min-height: 140px;
    border: 1px solid #D5DCE5;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 14px;
    color: #07244D;
    resize: none;
    outline: none;
    transition: border-color 0.3s ease;
}

.cf7-textarea:focus {
    border-color: #315EFB;
}

.cf7-textarea::placeholder {
    color: #8A97AA;
}

.cf7-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 48px 12px 24px;
    background-color: #2468FD;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    background-image: url('img/arrow.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
}

.cf7-submit:hover {
    background-color: #1d4ed8;
}

@media (min-width: 640px) {
    .cf7-submit {
        width: auto;
    }
}

.wpcf7 form .wpcf7-response-output {
    margin: 0 0.5em 1em !important;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
}
/* Remove dot list-style bullet for header menus */
#main-header li::before {
    display: none !important;
    content: none !important;
}

#main-header li {
    padding-left: 0 !important;
}
.blog-grid{
    width: 80%;
}