/* =========================================================
   IJRCSIT PREMIUM HEADER
========================================================= */

:root {

    --ijrcsit-primary: #1e4356;
    --ijrcsit-primary-dark: #12313f;
    --ijrcsit-accent: #68a4c4;

    --ijrcsit-text: #243746;
    --ijrcsit-muted: #6c7c87;

    --ijrcsit-white: #ffffff;
    --ijrcsit-border: #e6edf1;

    --ijrcsit-shadow:
        0 8px 30px rgba(21, 52, 67, 0.08);

}


/* =========================================================
   HEADER
========================================================= */

.ijrcsit-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    height: 78px;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid rgba(30, 67, 86, 0.10);

    z-index: 9999;

    transition:
        height 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;

}


/* SCROLLED HEADER */

.ijrcsit-header.ijrcsit-scrolled {

    height: 70px;

    background: rgba(255, 255, 255, 0.99);

    box-shadow: var(--ijrcsit-shadow);

}


/* =========================================================
   INNER CONTAINER
========================================================= */

.ijrcsit-header-inner {

    width: min(1380px, calc(100% - 44px));

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================================================
   BRAND
========================================================= */

.ijrcsit-brand {

    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 250px;

    text-decoration: none !important;

}


.ijrcsit-brand-mark {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 8px;

    background:
        linear-gradient(
            145deg,
            #1e4356,
            #315f74
        );

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: -0.8px;

    box-shadow:
        0 5px 14px rgba(30, 67, 86, 0.18);

}


.ijrcsit-brand-content {

    display: flex;

    flex-direction: column;

    line-height: 1.1;

}


.ijrcsit-brand-name {

    color: var(--ijrcsit-primary);

    font-family: "Manrope", sans-serif;

    font-size: 21px;

    font-weight: 800;

    letter-spacing: 0.4px;

}


.ijrcsit-brand-subtitle {

    margin-top: 4px;

    color: var(--ijrcsit-muted);

    font-family: "Inter", sans-serif;

    font-size: 8.5px;

    font-weight: 500;

    letter-spacing: 0.35px;

    white-space: nowrap;

    text-transform: uppercase;

}


/* =========================================================
   NAVIGATION
========================================================= */

.ijrcsit-nav {

    height: 100%;

    display: flex;

    align-items: center;

}


.ijrcsit-menu {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 2px;

    height: 100%;

    margin: 0;

    padding: 0;

    list-style: none;

}


.ijrcsit-menu > li {

    position: relative;

    height: 100%;

    display: flex;

    align-items: center;

}


/* =========================================================
   NORMAL NAV LINKS
========================================================= */

.ijrcsit-menu > li > a,
.ijrcsit-dropdown-toggle {

    position: relative;

    height: 42px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 0 13px;

    border: 0;

    background: transparent;

    color: var(--ijrcsit-text);

    font-family: "Inter", sans-serif;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none !important;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease;

}


/* HOME ICON */

.ijrcsit-menu > li > a .bi {

    font-size: 14px;

}


/* =========================================================
   HOVER
========================================================= */

.ijrcsit-menu > li > a:hover,
.ijrcsit-dropdown-toggle:hover {

    color: var(--ijrcsit-primary);

    background: #f4f8fa;

    border-radius: 6px;

}


/* =========================================================
   ACTIVE UNDERLINE
========================================================= */

.ijrcsit-menu > li > a::after {

    content: "";

    position: absolute;

    left: 13px;
    right: 13px;

    bottom: 3px;

    height: 2px;

    background: var(--ijrcsit-accent);

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.25s ease;

    border-radius: 10px;

}


.ijrcsit-menu > li > a:hover::after,
.ijrcsit-menu > li > a.active::after {

    transform: scaleX(1);

}


/* =========================================================
   CONFERENCE
========================================================= */

.ijrcsit-conference-link {

    color: var(--ijrcsit-primary) !important;

}


.ijrcsit-new-badge {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 17px;

    padding: 0 5px;

    border-radius: 4px;

    background: #eaf5f9;

    color: #39738c;

    font-family: "Inter", sans-serif;

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.4px;

}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.ijrcsit-dropdown-toggle i {

    font-size: 10px;

    transition:
        transform 0.25s ease;

}


.ijrcsit-dropdown.ijrcsit-open >
.ijrcsit-dropdown-toggle i {

    transform: rotate(180deg);

}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.ijrcsit-dropdown-menu {

    position: absolute;

    top: calc(100% - 1px);

    left: 0;

    min-width: 235px;

    margin: 0;

    padding: 8px;

    list-style: none;

    background: #ffffff;

    border: 1px solid var(--ijrcsit-border);

    border-radius: 9px;

    box-shadow:
        0 16px 38px rgba(25, 52, 64, 0.13);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(8px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

}


/* DESKTOP HOVER */

@media (min-width: 1101px) {

    .ijrcsit-dropdown:hover >
    .ijrcsit-dropdown-menu {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }

}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.ijrcsit-dropdown-menu > li {

    position: relative;

}


.ijrcsit-dropdown-menu a,
.ijrcsit-subdropdown-toggle {

    width: 100%;

    min-height: 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    padding: 9px 11px;

    border: 0;

    border-radius: 6px;

    background: transparent;

    color: #314653;

    font-family: "Inter", sans-serif;

    font-size: 12.5px;

    font-weight: 500;

    text-decoration: none !important;

    text-align: left;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;

}


.ijrcsit-dropdown-menu a:hover,
.ijrcsit-subdropdown-toggle:hover {

    color: var(--ijrcsit-primary);

    background: #f2f7f9;

}


/* =========================================================
   SUBMENU
========================================================= */

.ijrcsit-submenu {

    position: absolute;

    top: -8px;

    left: calc(100% + 7px);

    min-width: 225px;

    margin: 0;

    padding: 8px;

    list-style: none;

    background: #ffffff;

    border: 1px solid var(--ijrcsit-border);

    border-radius: 9px;

    box-shadow:
        0 16px 38px rgba(25, 52, 64, 0.13);

    opacity: 0;

    visibility: hidden;

    transform: translateX(7px);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;

}


@media (min-width: 1101px) {

    .ijrcsit-subdropdown:hover >
    .ijrcsit-submenu {

        opacity: 1;

        visibility: visible;

        transform: translateX(0);

    }

}


/* =========================================================
   HEADER SPACE
========================================================= */

.ijrcsit-header-space {

    height: 78px;

}


/* =========================================================
   MOBILE BUTTON
========================================================= */

.ijrcsit-mobile-toggle {

    display: none;

    width: 42px;

    height: 42px;

    padding: 0;

    border: 1px solid #dce6eb;

    border-radius: 7px;

    background: #ffffff;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

}


.ijrcsit-mobile-toggle span {

    display: block;

    width: 19px;

    height: 2px;

    border-radius: 4px;

    background: var(--ijrcsit-primary);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;

}


/* =========================================================
   MOBILE TOGGLE ACTIVE
========================================================= */

.ijrcsit-mobile-toggle.ijrcsit-active span:nth-child(1) {

    transform: translateY(7px) rotate(45deg);

}


.ijrcsit-mobile-toggle.ijrcsit-active span:nth-child(2) {

    opacity: 0;

}


.ijrcsit-mobile-toggle.ijrcsit-active span:nth-child(3) {

    transform: translateY(-7px) rotate(-45deg);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1250px) {

    .ijrcsit-header-inner {

        width: min(100% - 30px, 1180px);

    }

    .ijrcsit-brand {

        min-width: 225px;

    }

    .ijrcsit-brand-subtitle {

        display: none;

    }

    .ijrcsit-menu > li > a,
    .ijrcsit-dropdown-toggle {

        padding-left: 9px;

        padding-right: 9px;

        font-size: 12px;

    }

}


/* =========================================================
   MOBILE / TABLET NAVIGATION
========================================================= */

@media (max-width: 1100px) {

    .ijrcsit-header {

        height: 70px;

    }


    .ijrcsit-header-space {

        height: 70px;

    }


    .ijrcsit-header-inner {

        width: calc(100% - 28px);

    }


    .ijrcsit-brand-mark {

        width: 39px;

        height: 39px;

        font-size: 14px;

    }


    .ijrcsit-brand-name {

        font-size: 19px;

    }


    .ijrcsit-mobile-toggle {

        display: flex;

        flex-shrink: 0;

    }


    .ijrcsit-nav {

        position: absolute;

        top: 70px;

        left: 0;

        right: 0;

        width: 100%;

        height: auto;

        max-height: calc(100vh - 70px);

        overflow-y: auto;

        padding: 8px 14px 16px;

        background: #ffffff;

        border-top: 1px solid var(--ijrcsit-border);

        box-shadow:
            0 15px 30px rgba(20, 45, 58, 0.12);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-8px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;

    }


    .ijrcsit-nav.ijrcsit-nav-open {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .ijrcsit-menu {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 2px;

        width: 100%;

        height: auto;

    }


    .ijrcsit-menu > li {

        display: block;

        width: 100%;

        height: auto;

    }


    .ijrcsit-menu > li > a,
    .ijrcsit-dropdown-toggle {

        width: 100%;

        min-height: 44px;

        height: auto;

        justify-content: space-between;

        padding: 10px 12px;

        font-size: 13px;

        border-radius: 6px;

    }


    .ijrcsit-menu > li > a::after {

        display: none;

    }


    /* DROPDOWN */

    .ijrcsit-dropdown-menu {

        position: static;

        width: 100%;

        min-width: 0;

        display: none;

        margin: 2px 0 5px;

        padding: 4px;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        border-radius: 7px;

        background: #f7fafb;

    }


    .ijrcsit-dropdown.ijrcsit-open >
    .ijrcsit-dropdown-menu {

        display: block;

    }


    /* SUBMENU */

    .ijrcsit-submenu {

        position: static;

        width: 100%;

        min-width: 0;

        display: none;

        margin: 0;

        padding: 3px 3px 3px 12px;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        border: 0;

        background: transparent;

    }


    .ijrcsit-subdropdown.ijrcsit-open >
    .ijrcsit-submenu {

        display: block;

    }


    .ijrcsit-dropdown-menu a,
    .ijrcsit-subdropdown-toggle {

        min-height: 39px;

        font-size: 12.5px;

    }


    .ijrcsit-subdropdown-toggle i {

        transition: transform 0.2s ease;

    }


    .ijrcsit-subdropdown.ijrcsit-open
    .ijrcsit-subdropdown-toggle i {

        transform: rotate(90deg);

    }


    .ijrcsit-new-badge {

        margin-left: auto;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

    .ijrcsit-header-inner {

        width: calc(100% - 20px);

    }


    .ijrcsit-brand {

        min-width: 0;

        gap: 8px;

    }


    .ijrcsit-brand-mark {

        width: 37px;

        height: 37px;

        border-radius: 7px;

        font-size: 13px;

    }


    .ijrcsit-brand-name {

        font-size: 18px;

    }


    .ijrcsit-brand-subtitle {

        display: none;

    }


    .ijrcsit-mobile-toggle {

        width: 40px;

        height: 40px;

    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.ijrcsit-menu a:focus-visible,
.ijrcsit-menu button:focus-visible {

    outline: 2px solid var(--ijrcsit-accent);

    outline-offset: 2px;

}


/* =========================================================
   REDUCE MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .ijrcsit-header,
    .ijrcsit-nav,
    .ijrcsit-dropdown-menu,
    .ijrcsit-submenu,
    .ijrcsit-menu > li > a,
    .ijrcsit-dropdown-toggle {

        transition: none !important;

    }

}
```css
/* =========================================================
   IJRCSIT PREMIUM FOOTER
========================================================= */

.ijrcsit-footer {

    width: 100%;

    margin-top: 0;

    font-family: "Inter", sans-serif;

    background: #12313f;

    color: #dce7ec;

}


/* =========================================================
   FOOTER MAIN
========================================================= */

.ijrcsit-footer-main {

    padding: 48px 0 42px;

    background:
        linear-gradient(
            135deg,
            #12313f 0%,
            #173e4f 52%,
            #1e4356 100%
        );

}


/* =========================================================
   CONTAINER
========================================================= */

.ijrcsit-footer-container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

}


/* =========================================================
   FOOTER SECTION
========================================================= */

.ijrcsit-footer-section {

    height: 100%;

}


/* =========================================================
   BRAND
========================================================= */

.ijrcsit-footer-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

}


.ijrcsit-footer-logo {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background: #ffffff;

    color: #1e4356;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 800;

}


.ijrcsit-footer-title {

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 22px;

    font-weight: 800;

    letter-spacing: .4px;

}


.ijrcsit-footer-subtitle {

    margin-top: 3px;

    color: #a9c2cc;

    font-size: 9px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: .45px;

}


/* =========================================================
   HEADING
========================================================= */

.ijrcsit-footer-heading {

    position: relative;

    display: inline-block;

    margin-bottom: 17px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-size: 16px;

    font-weight: 700;

}


.ijrcsit-footer-heading::after {

    content: "";

    display: block;

    width: 32px;

    height: 2px;

    margin-top: 7px;

    background: #68a4c4;

    border-radius: 5px;

}


/* =========================================================
   CONTACT
========================================================= */

.ijrcsit-footer-contact {

    display: flex;

    flex-direction: column;

    gap: 14px;

}


.ijrcsit-footer-contact p {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin: 0;

    color: #c5d5dc;

    font-size: 12.5px;

    line-height: 1.7;

}


.ijrcsit-footer-contact p > i {

    flex: 0 0 17px;

    margin-top: 3px;

    color: #78b5d0;

    font-size: 15px;

}


.ijrcsit-footer-contact strong {

    color: #ffffff;

    font-weight: 600;

}


.ijrcsit-footer-contact a {

    color: #c5dfe9;

    text-decoration: none;

    transition: color .2s ease;

}


.ijrcsit-footer-contact a:hover {

    color: #ffffff;

}


/* =========================================================
   MAP
========================================================= */

.ijrcsit-map-wrapper {

    width: 100%;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,.13);

    border-radius: 9px;

    background: #0f2a35;

    box-shadow:
        0 10px 25px rgba(0,0,0,.12);

}


.ijrcsit-map-wrapper iframe {

    display: block;

    width: 100%;

    height: 230px;

    border: 0;

    filter:
        grayscale(15%)
        contrast(95%);

}


/* =========================================================
   LOCATION NOTE
========================================================= */

.ijrcsit-footer-location-note {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 11px;

    color: #9fb8c2;

    font-size: 11.5px;

}


.ijrcsit-footer-location-note i {

    color: #78b5d0;

    font-size: 13px;

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.ijrcsit-footer-bottom {

    padding: 17px 0;

    background: #0e2935;

    border-top: 1px solid rgba(255,255,255,.09);

}


.ijrcsit-copyright {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    color: #9fb4bd;

    font-size: 11.5px;

    text-align: center;

}


.ijrcsit-copyright strong {

    color: #ffffff;

    font-family: "Manrope", sans-serif;

    font-weight: 700;

}


.ijrcsit-footer-bottom-line {

    margin-top: 6px;

    color: #728e99;

    font-size: 10px;

    text-align: center;

}


/* =========================================================
   SCROLL TOP
========================================================= */

.ijrcsit-scroll-top {

    position: fixed;

    right: 22px;

    bottom: 22px;

    width: 40px;

    height: 40px;

    border-radius: 7px;

    background: #1e4356;

    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 6px 18px rgba(16,42,53,.22);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease,
        background .2s ease;

    z-index: 9998;

}


.ijrcsit-scroll-top.active {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.ijrcsit-scroll-top:hover {

    background: #68a4c4;

    color: #ffffff;

}


.ijrcsit-scroll-top i {

    font-size: 21px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .ijrcsit-footer-main {

        padding: 38px 0 32px;

    }


    .ijrcsit-footer-container {

        width: calc(100% - 30px);

    }


    .ijrcsit-footer-brand {

        margin-bottom: 20px;

    }


    .ijrcsit-map-wrapper iframe {

        height: 210px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .ijrcsit-footer-main {

        padding: 32px 0 28px;

    }


    .ijrcsit-footer-container {

        width: calc(100% - 28px);

    }


    .ijrcsit-footer-title {

        font-size: 20px;

    }


    .ijrcsit-footer-subtitle {

        font-size: 8px;

    }


    .ijrcsit-footer-heading {

        font-size: 15px;

    }


    .ijrcsit-footer-contact p {

        font-size: 12px;

    }


    .ijrcsit-map-wrapper iframe {

        height: 190px;

    }


    .ijrcsit-copyright {

        flex-wrap: wrap;

        line-height: 1.6;

    }


    .ijrcsit-footer-bottom-line {

        line-height: 1.5;

    }


    .ijrcsit-scroll-top {

        right: 15px;

        bottom: 15px;

        width: 37px;

        height: 37px;

    }

}

