/* ==========================
   Common
========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 95%;
    max-width: 1600px;
    margin: auto;
}

/* ==========================
        TOP BAR
========================== */

.top-bar {
    background: #1B3A6B;
    color: #fff;
    font-size: 14px;

}

.top-bar-wrapper {

    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 45px;

}

.top-left a {

    color: #fff;
    font-weight: 500;

}

.top-center {

    display: flex;
    gap: 12px;
    align-items: center;
    color: #fff;

}

.top-center span {

    opacity: .95;

}

.top-right {

    display: flex;
    gap: 18px;

}

.top-right a {
    color: #1B3A6B;
    background: #fff;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.top-right a:hover {
    background: #FFC107;
    color: #1B3A6B;
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.25);
}

/* ==========================
        HEADER
========================== */

.sticky-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Adjust sticky top for WordPress Admin Bar */
body.admin-bar .sticky-header-wrapper {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .sticky-header-wrapper {
        top: 46px;
    }
}

.site-header {

    background: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .08);

}

.header-wrapper {

    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
    padding: 8px 0;
}

.logo {

    display: flex;
    align-items: center;
}

.logo img {
    width: 250px;
    height: auto;
    display: block;
    transition: .35s ease;
}

.logo img:hover {

    transform: scale(1.03);

}

/* ==========================
      Navigation
========================== */

.nav-menu {

    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-menu li {

    position: relative;
    list-style: none;
}

.nav-menu li a {

    /* color:#1d1d1d;
    font-size:17px;
    font-weight:600;
    letter-spacing:.3px;
    transition:.3s;*/
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    color: #1d1d1d;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: .3px;
    border-radius: 50px;
    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

/*.nav-menu li a::before{
    content:"";
    position:absolute;
    width:8px;
    height:8px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    z-index:-1;
    transition:
        width .35s ease,
        height .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}
.nav-menu li a:hover::before{
    width:55px;
    height:55px;
    background:#E8F4FF;
    border-radius:50%;
    box-shadow:
        0 0 25px rgba(13,61,104,.15);
}*/

.nav-menu li a {
    transition: all .3s ease;
}

.nav-menu li a:hover {
    background: #EDF5FF;
    color: #0D3D68;
    transform: translateY(-2px);
}

/*Active menu*/
.nav-menu li.current-menu-item a,
.nav-menu li.current_page_item a {

    color: #0D3D68;

}

/* Active Circle */

.nav-menu li.current-menu-item a::before,
.nav-menu li.current_page_item a::before {

    width: 100%;
    height: 100%;
    background: #d1e3f4;
    border-radius: 50px;
    box-shadow:
        0 5px 15px rgba(13, 61, 104, .10);

}

.nav-menu li:hover::after {

    width: 100%;
}

/* =========================================================
   CATALOGUE DROPDOWN
========================================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Adjust this to decrease/increase the gap */
}

.catalogue-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}


/* =========================================================
   CATALOGUE BUTTON
========================================================= */

.catalogue-btn {

    display: flex;
    align-items: center;
    gap: 8px;

    padding: 14px 28px;

    border: 1px solid #1B3A6B;
    border-radius: 50px;

    background: #1B3A6B;
    color: #fff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    letter-spacing: .3px;

    cursor: pointer;

    transition: all .25s ease;
}


.catalogue-btn i {

    font-size: 9px;

    transition: transform .25s ease;

}


.catalogue-btn:hover {

    background: #0D2F52;

    border-color: #0D2F52;

}


/* Rotate arrow when open */

.catalogue-dropdown.active .catalogue-btn i {

    transform: rotate(180deg);

}


/* =========================================================
   DROPDOWN BOX
========================================================= */

.catalogue-menu {

    position: absolute;

    top: calc(100% + 12px);

    right: 0;

    width: 285px;

    padding: 8px;

    background: #fff;

    border: 1px solid #E3E8ED;

    border-radius: 8px;

    box-shadow:
        0 15px 40px rgba(13, 47, 82, .15);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;

    z-index: 9999;

}


/* Small arrow above dropdown */

.catalogue-menu::before {

    content: "";

    position: absolute;

    top: -6px;

    right: 28px;

    width: 11px;

    height: 11px;

    background: #fff;

    border-left: 1px solid #E3E8ED;

    border-top: 1px solid #E3E8ED;

    transform: rotate(45deg);

}


/* Open state */

.catalogue-dropdown.active .catalogue-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


/* =========================================================
   DROPDOWN TITLE
========================================================= */

.catalogue-menu-title {

    padding: 11px 13px;

    color: #1B3A6B;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;

    border-bottom: 1px solid #EDF0F3;

}


/* =========================================================
   CATALOGUE ITEM
========================================================= */

.catalogue-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 12px;

    text-decoration: none;

    border-bottom: 1px solid #EDF0F3;

    transition: background .2s ease;

}


.catalogue-item:last-child {

    border-bottom: none;

}


.catalogue-item:hover {

    background: #F5F8FB;

}


/* =========================================================
   PDF ICON
========================================================= */

.catalogue-item-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    background: #EEF4FA;

    border-radius: 5px;

    color: #1B3A6B;

    font-size: 17px;

}


/* =========================================================
   TEXT
========================================================= */

.catalogue-item-content {

    display: flex;

    flex-direction: column;

    gap: 4px;

    flex: 1;

}


.catalogue-item-content strong {

    color: #172B4D;

    font-size: 12px;

    font-weight: 600;

}


.catalogue-item-content small {

    color: #7A8591;

    font-size: 10px;

}


/* =========================================================
   DOWNLOAD ICON
========================================================= */

.catalogue-download-icon {

    color: #7D8995;

    font-size: 11px;

    transition: all .2s ease;

}


.catalogue-item:hover .catalogue-download-icon {

    color: #1B3A6B;

    transform: translateY(2px);

}

/* ==========================
      Button
========================== */

.quote-btn {

    background: #1B3A6B;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;

    transition: .3s;

}

.quote-btn:hover {

    background: #F5A623;
    color: #111;

}

/* ==========================
     Mobile Icon
========================== */

.mobile-menu {

    display: none;
    font-size: 30px;
    cursor: pointer;

}

/* ==========================
      Tablet
========================== */

@media(max-width:991px) {
    .top-center {
        display: none;
    }

    .nav-menu {
        gap: 18px;
    }

    .logo img {
        width: 180px;
    }

    .quote-btn {
        padding: 12px 20px;
    }
}

/* ==========================
      Mobile
========================== */

@media(max-width:768px) {
    .header-wrapper {
        justify-content: space-between;
        gap: 8px;
        padding: 10px 0;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        z-index: 999;
        padding: 20px;
        border-top: 1px solid #eaeaea;
    }

    .main-navigation.nav-active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu li a {
        font-size: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        padding: 10px 0;
    }

    .header-actions {
        display: flex;
        gap: 8px;
        align-items: center;
        flex: 1;
        justify-content: flex-end;
    }

    .header-btn {
        display: none;
    }

    .catalogue-btn {
        padding: 7px 10px;
        font-size: 11px;
    }

    .quote-btn {
        display: none;
    }

    .mobile-menu {
        display: block;
        font-size: 24px;
        margin-left: 5px;
    }

    .top-bar {
        display: block;
    }

    .top-bar-wrapper {
        padding: 5px 15px;
        min-height: auto;
    }

    .top-left a {
        font-size: 12px;
    }

    .top-right {
        gap: 12px;
    }

    .top-right a {
        font-size: 14px;
    }

    .logo img {
        width: 180px;
    }
}