/*=========================================
    ORIC VARIABLES
=========================================*/
:root {
    --oric-primary: #006A41;
    --oric-primary-dark: #115640;
    --oric-primary-light: #22A64A;
    --oric-text: #2f2f2f;
    --oric-border: #e8e8e8;
    --oric-white: #ffffff;
    --oric-transition: .3s ease;
    --oric-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    --oric-header-height: 135px;
    --oric-footer-border: rgba(255, 255, 255, .12);
    --oric-footer-text: rgba(255, 255, 255, .85);
}
@media (max-width: 1280px) and (min-width: 1024px) {
    :root { --oric-header-height: 150px; }
}
@media (max-width: 991px) {
    :root { --oric-header-height: 60px; }
}
/*=========================================
    MOBILE (≤575px)
=========================================*/
@media (max-width: 575.98px) {
    .oric-navbar { min-height: 70px; }
    .oric-navbar>.container { min-height: 70px; }
    .oric-navbar__logo { max-width: 90px; }
    .oric-navbar__divider { height: 30px; }
}
/*=========================================
    GLOBAL
=========================================*/
html {
    scroll-behavior: smooth;
}
.oric-page {
    margin-top: var(--oric-header-height);
}
/*=========================================
    NAVBAR
=========================================*/
.oric-navbar {
    position: relative;
    background: #fff;
    border-bottom: 1px solid var(--oric-border);
    min-height: 90px;
    transition: all var(--oric-transition);
    z-index: 1;
}
.oric-navbar.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}
.oric-navbar>.container {
    min-height: 90px;
}
.oric-navbar .navbar-brand {
    margin: 0;
    padding: 0;
}
.oric-navbar .navbar-toggler {
    padding: 0;
    font-size: 30px;
    color: var(--oric-primary);
}
.oric-navbar .navbar-toggler:focus {
    box-shadow: none;
}
/*=========================================
    BRAND
=========================================*/
.oric-navbar__logo {
    width: 100%;
    max-width: 130px;
    height: auto;
}
.oric-navbar__divider {
    width: 1px;
    height: 48px;
    background: var(--oric-border);
}
/* Hide GIU logo and divider initially */
.oric-navbar__logo--giu,
.oric-navbar__divider {
    display: none;
}
/* Show them when the ORIC navbar becomes sticky */
.oric-navbar.is-sticky .oric-navbar__logo--giu,
.oric-navbar.is-sticky .oric-navbar__divider {
    display: block;
}
/*=========================================
    MENU
=========================================*/
.oric-navbar .nav-link {
    color: var(--oric-text);
    font-weight: 600;
    padding: 1rem .9rem !important;
    transition: var(--oric-transition);
    position: relative;
}
.oric-navbar .nav-link:hover,
.oric-navbar .nav-link.active {
    color: var(--oric-primary);
}
.oric-navbar .nav-link:hover::after,
.oric-navbar .nav-link.active::after {
    width: 60%;
}
/*=========================================
    CONTACT
=========================================*/
.oric-navbar__phone {
    color: var(--oric-primary);
    font-weight: 600;
    transition: var(--oric-transition);
}
.oric-navbar__phone:hover {
    color: var(--oric-primary-dark);
}
.oric-navbar__phone i {
    font-size: 18px;
}
/*=========================================
    SOCIAL
=========================================*/
.oric-navbar__social {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--oric-primary);
    color: #fff;
    transition: var(--oric-transition);
}
.oric-navbar__social:hover {
    color: #fff;
    transform: translateY(-2px);
}
.oric-navbar__social--light {
    background: #fff;
    color: var(--oric-primary) !important;
}
.oric-navbar__social--light:hover {
    background: #fff;
    transform: translateY(-2px);
}
.oric-navbar__social i {
    font-size: 17px;
}
/*=========================================
    ORIC FOOTER
=========================================*/
.oric-footer {
    background: var(--oric-primary-dark);
    color: #fff;
    padding: 60px 0 25px;
}
.oric-footer>.container {
    padding-inline: 1.5rem;
}
.oric-footer__logo {
    max-width: 180px;
}
.oric-footer__title {
    font-size: 28px;
    color: white;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.oric-footer__text {
    color: var(--oric-footer-text);
    line-height: 1.8;
    margin-bottom: 28px;
    text-align: justify;
}
.oric-footer__copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
}
/* contact */
.oric-footer ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}
.oric-footer ul li:last-child {
    margin-bottom: 0;
}
.oric-footer i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.oric-footer a {
    color: #fff;
    transition: .3s;
}
.oric-footer a:hover {
    color: #d6f4e7;
}
/* divider */
.oric-footer__col {
    position: relative;
    height: 100%;
}
@media(min-width:992px) {
    .oric-footer__col::after {
        content: "";
        position: absolute;
        top: 10px;
        bottom: 10px;
        right: -14px;
        width: 2px;
        background: var(--oric-footer-border);
    }
}
.oric-footer__social-col p {
    color: var(--oric-footer-text);
}
/* responsiveness */
@media(max-width:991px) {
    .oric-footer { padding: 50px 0 30px; }
    .oric-footer__title { font-size: 24px; }
    .oric-footer__col {
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }
    .col-lg-4:last-child .oric-footer__col {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media(max-width:575px) {
    .oric-footer { text-align: left; }
    .oric-footer ul li { text-align: left; }
    .oric-footer .d-flex { justify-content: left; }
}
/*=========================================
    ORIC SECTION HEADING
=========================================*/
.oric-section-heading{ gap:1rem; }
.oric-section-heading h2{
    margin:0;
    color:var(--oric-primary-dark);
    font-size:clamp(1.5rem,2vw,2rem);
    font-weight:700;
    text-transform:uppercase;
    text-align:center;
    white-space:nowrap;
}
.oric-section-heading__line{
    width:90px;
    height:2px;
    background:var(--oric-primary);
    border-radius:50px;
    flex-shrink:0;
}
@media (max-width:576px){
    .oric-section-heading__line{ width:40px;}
}
/*=========================================
    ORIC TEAM
=========================================*/
.oric-team-card{
    height:100%;
    background:#faf9f6;
    border:2px solid var(--oric-border);
    border-radius:12px;
    overflow:hidden;
    transition:var(--oric-transition);
    box-shadow:0 4px 12px rgba(0,0,0,.05);
}
.oric-team-col{
    width:min(210px,90vw);
}
.oric-team-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}
.oric-team-card__header{
    background:var(--oric-primary-dark);
    padding:16px 14px;
    min-height:72px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.oric-team-card__header h3{
    margin:0;
    color:#fff;
    font-size:15px;
    font-weight:700;
    line-height:1.4;
    text-transform:uppercase;
}
.oric-team-card__body{
    padding:28px 18px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
.oric-team-card__image{
    width:95px;
    height:95px;
    border-radius:50%;
    overflow:hidden;
    margin-bottom:18px;
    background:#f8f9fa;
    transition:var(--oric-transition);
}
.oric-team-card:hover .oric-team-card__image{
    transform:scale(1.06);
}
.oric-team-card__image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.oric-team-card__name{
    margin:0;
    color:var(--oric-primary-dark) !important;
    font-size:18px;
    font-weight:600;
    line-height:1.5;
    text-align:center;
}
/*=========================================
    ORIC EVENTS
=========================================*/
.oric-events-wrapper{
    background:#fff;
    border:2px solid var(--oric-border);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,.06);
}
.oric-events-table{
    margin-bottom:0;
}
.oric-events-table thead th{
    background:var(--oric-primary-dark);
    color:#fff;
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
    padding:18px 20px;
    border:0;
    white-space:nowrap;
}
.oric-events-table tbody td{
    padding:18px 20px;
    vertical-align:middle;
    border-color:var(--oric-border);
}
.oric-events-table tbody tr{
    transition:var(--oric-transition);
}
.oric-events-table tbody tr:hover{
    background:rgba(5,85,51,.04);
}
/* Event Icon & Details Button */
.oric-event-icon{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(5,85,51,.08);
    color:var(--oric-primary);
    font-size:20px;
    transition:var(--oric-transition);
}
.oric-events-table tbody tr:hover .oric-event-icon{
    background:var(--oric-primary);
    color:#fff;
    transform:scale(1.08);
}
.oric-event-view{
    width:38px;
    height:38px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:var(--oric-primary);
    transition:var(--oric-transition);
}
.oric-event-view:hover{
    background:var(--oric-primary);
    color:#fff;
    transform:translateX(3px);
}
/* Typography */
.oric-events-table td:nth-child(5){
    min-width:340px;
    font-weight:500;
}
.oric-events-table td:nth-child(6){
    min-width:220px;
}
/* Responsiveness */
@media(max-width:991.98px){
    .oric-events-table thead th,
    .oric-events-table tbody td{
        padding:15px;
    }
}
@media(max-width:767.98px){
    .oric-events-wrapper{
        border-radius:10px;
    }
    .oric-event-icon{
        width:36px;
        height:36px;
        font-size:18px;
    }
    .oric-event-view{
        width:34px;
        height:34px;
    }
}