/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    /* Colors */
    --primary: #072f5f;
    --secondary: #0c5c8f;
    --gold: #d6a11d;
    --light: #f5f5f5;
    --white-text: #fff;
    --grey-text: #777;
    --dark-text: #444;
    --footer-bg: #222;
    --overlay-bg: rgba(0, 0, 0, 0.4);
    --border-color: #0c5c8f;
    
     /* Fonts */
    --font-body: sans-serif;
    --font-heading: 'Source Serif 4', sans-serif;
}



/* ==========================================================================
   Base Typography
   ========================================================================== */

body {
    font-family:var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-text);
    background: var(--white-text);
}

p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--grey-text);
}

section
{
    padding:60px 0px 0px 0px;
 
}


/* ==========================================================================
   Header
   ========================================================================== */

.cit-header {
    background: var(--primary);
    min-height: 100px;
    display: flex;
    align-items: center;
}

.cit-container {
    max-width: 1800px;
    padding-left: 60px;
    padding-right: 60px;
}

/* ==========================================================================
   Branding
   ========================================================================== */

.cit-branding {
    display: flex;
    align-items: center;
}

.cit-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
}

.custom-logo-link {
    display: inline-flex;
}

.custom-logo {
    max-height: 90px;
    width: auto;
}

.cit-logo-text {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    text-decoration: none;
}

/* ==================================================
   NAVIGATION
================================================== */

.cit-navbar {
    justify-content: flex-end;
    width: 100%;
}

/* ==================================================
   DESKTOP MENU
================================================== */

.cit-desktop-menu {
    width: 100%;
}

.cit-menu {
    /*display: flex;*/
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cit-menu > li {
    position: relative;
}

.cit-menu li {
    list-style: none;
}

.cit-menu li a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    padding: 12px 0;
    transition: all .3s ease;
}

/* Active */

.cit-menu .current-menu-item > a,
.cit-menu .current-menu-parent > a,
.cit-menu .current_page_parent > a,
.cit-menu .current-page-ancestor > a {
    color: var(--gold);
}

/* Hover */

.cit-menu li:hover > a {
    color: var(--gold);
}

/* ==================================================
   DESKTOP DROPDOWN
================================================== */

.cit-menu .menu-item-has-children > a::after {
    content: "\f282";
    font-family: bootstrap-icons;
    font-size: 11px;
    margin-left: 6px;
}

.cit-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #fff;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .3s ease;
    z-index: 9999;
}

.cit-menu .sub-menu li {
    width: 100%;
}

.cit-menu .sub-menu li a {
    color: #333;
    padding: 12px 20px;
    font-size: .95rem;
    white-space: nowrap;
}

.cit-menu .sub-menu li a:hover {
    background: #f5f5f5;
    color: var(--primary);
}

.cit-menu .sub-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .3s ease;
}

.cit-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Level 2 */

.cit-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

/* ==================================================
   HAMBURGER BUTTON
================================================== */

.navbar-toggler {
    border: 2px solid rgba(255,255,255,.2);
    border-radius: 10px;
    padding: 8px 12px;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* ==================================================
   OFFCANVAS
================================================== */

.cit-offcanvas {
    width: 320px;
    background: var(--primary);
    color: #fff;
}

.cit-offcanvas .offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.cit-mobile-logo {
    max-width: 160px;
    height: auto;
}

.cit-offcanvas .btn-close {
    filter: invert(1);
}

.offcanvas-backdrop.show {
    opacity: .4;
    backdrop-filter: blur(4px);
}
/* ==================================================
   MOBILE MENU
================================================== */

.cit-mobile-menu,
.cit-mobile-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cit-mobile-menu > li {
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.cit-mobile-menu li a {
    display: block;
    color: #fff;
    font-family:var(--font-heading);
    text-decoration: none;
    padding: 14px 0;
    font-size: 1rem;
    transition: all .3s ease;
}

.cit-mobile-menu li a:hover {
    color: var(--gold);
}

.cit-mobile-menu .current-menu-item > a,
.cit-mobile-menu .current-menu-parent > a {
    color: var(--gold);
}

/* Mobile dropdown */

.cit-mobile-menu .menu-item-has-children > a {
    position: relative;
}

.cit-mobile-menu .menu-item-has-children > a::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.cit-mobile-menu .menu-item-has-children.active > a::after {
    content: "-";
}

.cit-mobile-menu .sub-menu {
    display: none;
    padding-left: 15px;
    padding-bottom: 10px;
}

.cit-mobile-menu .menu-item-has-children.active > .sub-menu {
    display: block;
}

.cit-mobile-menu .sub-menu a {
    font-size: .92rem;
    opacity: .85;
    padding: 10px 0;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (min-width: 992px) {

    .navbar-toggler,
    .cit-offcanvas {
        display: none !important;
    }

    .cit-desktop-menu {
        display: block !important;
    }
    
    #citMobileMenu {
        display: none !important;
    }
    
    .cit-menu {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        justify-content: flex-end;
        gap: 32px;
    }

    .cit-menu > li {
        display: block;
    }
}

}

@media (max-width: 991px) {

    .cit-desktop-menu {
        display: none !important;
    }

    .cit-navbar {
        justify-content: flex-end;
    }
}
/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section{
    background: url('../images/hero-bg.jpg') center center no-repeat;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay{
    width: 100%;
    padding: 60px 0;
    display: flex;
    align-items: center;
}

.hero-content{
    /*max-width: 900px;*/
    padding: 40px;
    background: rgba(0,0,0,0.45);
}

.hero-content h1{
    margin: 0;
    padding-left: 25px;
    border-left: 3px solid var(--gold);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--white-text);
}

.hero-content p{
    margin-top: 25px;

    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;

    color: var(--white-text);
}

/* ==========================================================================
   Large Desktop
   ========================================================================== */

@media (min-width: 1400px){

    .hero-content{
        max-width: 950px;
    }

    .hero-content h1{
        font-size: 2.2rem;
    }

    .hero-content p{
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   Laptop
   ========================================================================== */

@media (max-width: 1199px){

    .hero-overlay{
        padding: 80px 0;
    }

    .hero-content{
        max-width: 800px;
        padding: 35px;
    }

    .hero-content h1{
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 991px){

    .hero-section{
        min-height: auto;
    }

    .hero-overlay{
        padding: 70px 0;
    }

    .hero-content{
        max-width: 100%;
        padding: 30px;
    }

    .hero-content h1{
        font-size: 1.5rem;
        line-height: 1.5;
        padding-left: 20px;
    }

    .hero-content p{
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 767px){

    .hero-overlay{
        padding: 60px 0;
    }

    .hero-content{
        padding: 25px;
    }

    .hero-content h1{
        font-size: 1.25rem;
        line-height: 1.6;
        padding-left: 15px;
    }

    .hero-content p{
        font-size: 0.9rem;
        line-height: 1.8;
        margin-top: 20px;
    }
}

/* ==========================================================================
   Small Mobile
   ========================================================================== */

@media (max-width: 480px){

    .hero-overlay{
        padding: 50px 0;
    }

    .hero-content{
        padding: 20px;
    }

    .hero-content h1{
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .hero-content p{
        font-size: 0.85rem;
        line-height: 1.8;
    }
}

/* ==========================================================
   CTA SECTION
   ========================================================== */

.cta-section {
    padding: 80px 0;
}

.cta-section h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.cta-section p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ===================================
   CTA Buttons Wrapper
=================================== */

.cit-cta-buttons {
    display: flex;
    flex-direction: column;
    max-width: 420px;
}

/* ===================================
   Common Button
=================================== */

.cit-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    min-height: 50px;

    padding: 18px 24px;

    text-decoration: none;
    border-radius: 10px;

    transition: all .3s ease;
}

/* ===================================
   Text
=================================== */

.cit-cta-text {
    flex: 1;

    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;

    text-transform: uppercase;
    letter-spacing: 0.5px;

    color: inherit;
}

/* ===================================
   Arrow
=================================== */

.cit-cta-icon {
    margin-left: 15px;
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;

    transition: transform .3s ease;
}

/* Hover Animation */

.cit-cta-btn:hover .cit-cta-icon {
    transform: translateX(5px);
}

/* ===================================
   Common Button
=================================== */

.cit-cta-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    padding:18px 25px;
    text-decoration:none;
    border-radius:4px;
    transition:all .3s ease;
}

/* ===================================
   Text
=================================== */

.cit-cta-text{
    font-family:var(--font-heading);
    font-size:1rem;
    font-weight:400;
    line-height:1.4;

    text-align:center;
    color:inherit;

    white-space:normal;
}

/* ===================================
   Arrow
=================================== */

.cit-cta-icon{
    margin-left:12px;
    font-size:28px;
    line-height:1;
    flex-shrink:0;
}

/* ===================================
   Outline Button
=================================== */

.cit-cta-btn-outline {
    border: 1px solid #0c5c8f;
    color: #0c5c8f;
    background: #ffffff;
}

.cit-cta-btn-outline:hover {
    background: #0c5c8f;
    color: #ffffff;
}

/* ===================================
   Filled Button
=================================== */

.cit-cta-btn-filled {
    background: #0c5c8f;
    border: 2px solid #0c5c8f;
    color: #ffffff;
}

.cit-cta-btn-filled:hover {
    background: #072f5f;
    border-color: #072f5f;
}

/* ===================================
   Tablet
=================================== */

@media (max-width: 991px) {

    .cta-section {
        padding: 60px 0;
    }

    .cta-section .row {
        row-gap: 40px;
    }

    .cit-cta-buttons {
        max-width: 100%;
    }

    .cit-cta-btn {
        min-height: 64px;
        padding: 16px 20px;
    }

    .cit-cta-text {
        font-size: 0.95rem;
    }

    .cit-cta-icon {
        font-size: 24px;
    }
}

/* ===================================
   Mobile
=================================== */

@media (max-width: 767px) {

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h1 {
        margin-bottom: 18px;
    }

    .cta-section p {
        margin-bottom: 24px;
        font-size: 1rem;
    }

    .cit-cta-btn {
        min-height: 58px;
        padding: 15px 18px;
    }

    .cit-cta-text {
        font-size: 0.9rem;
    }

    .cit-cta-icon {
        font-size: 22px;
        margin-left: 12px;
    }
}
/* ===================================
   Small Mobile
=================================== */

@media (max-width: 480px) {

    .cit-cta-btn {
        min-height: 54px;
        padding: 14px 16px;
    }

    .cit-cta-text {
        font-size: 0.85rem;
        letter-spacing: 0.3px;
    }

    .cit-cta-icon {
        font-size: 20px;
    }
}
/* ==========================================================
   IMAGE
   ========================================================== */

.cta-image {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================
   DESKTOP LARGE
   ========================================================== */

@media (min-width: 1400px) {

    .cta-section {
        padding: 100px 0;
    }

    .cit-cta-btn {
        min-height: 78px;
        font-size: 1.2rem;
    }
}

/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 991px) {

    .cta-section {
        padding: 60px 0;
    }

    .cta-section .row {
        gap: 40px;
    }

    .cta-section h1 {
        margin-bottom: 20px;
    }

    .cta-section p {
        margin-bottom: 28px;
    }

    .cit-cta-btn {
        min-height: 64px;
        font-size: 1rem;
        padding: 16px 20px;
        gap: 14px;
    }

    .cit-cta-btn i {
        font-size: 1.1rem;
    }

    .cta-image {
        margin-top: 10px;
    }
}

/* ==========================================================================
   Intro Section
   ========================================================================== */

.intro-section {
    background: var(--white-text);
}


/* ==========================================================================
   Info Cards
   ========================================================================== */

.info-card {
    height: 100%;
    padding: 35px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    transition: 0.3s;
}

.info-card.active {
    color: var(--white-text);
    background: var(--secondary);
}

.info-card.active h3,
.info-card.active p {
    color: var(--white-text);
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    text-transform: none;
    color: var(--secondary);
}

.cit-page-banner {
    width: 100%;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    /*min-height:600px;*/
    position:relative;
    display:flex;
    align-items:center;
    padding: 100px 0px 100px 0px;
}

.cit-banner-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: var(--primary);
}

.cit-breadcrumb{
    margin:0;
}

.cit-breadcrumb a, .cit-breadcrumb-current{
    text-decoration:none;
    font-family:var(--font-heading) ;
    color:var(--grey);
    font-size:0.93rem;
}


@media (max-width: 991px) {

    .cit-page-banner {
        min-height: 450px !important;
    }

    .cit-banner-title {
        font-size: 42px !important;
    }
}

.cit-content-section{
    padding:60px 0px 0px 0px;
}

.cit-content-wrapper{
    max-width:1400px;
}

.cit-section-title{
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    line-height: 23px;
    color:var(--primary);
    margin-bottom:20px;
}

.cit-section-content p{
    text-align: start;
    font-size: 0.93rem;
    font-weight: 400;
    line-height:1.6;
}

.cit-section-content p:last-child{
    margin-bottom:0;
}

.cit-research-cta-section{
    padding:50px 0;
}

/* Button */
.cit-cta-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    height:48px;
    padding:0 20px;
    font-size:0.93rem;
    text-decoration:none;
    transition:all .3s ease;
}

/* Icon */
.cit-cta-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    line-height:1;
    flex-shrink:0;
}

/* Text */
.cit-cta-text{
    font-family:var(--font-heading);
    line-height:1.2;
    text-align:center;
    white-space:nowrap;
    margin:0;
}

/* Colors */
.cit-cta-btn-dark{
    background:#000;
    color:#fff;
}

.cit-cta-btn-grey{
    background:#b5b5b5;
    color:#fff;
}

.cit-cta-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

.cit-cta-btn-dark:hover{
    background:#0a4f83;
}

.cit-cta-btn-grey:hover{
    background:#8f8f8f;
}

.cit-cta-btn:hover .cit-cta-icon{
    transform:translateX(3px);
    transition:.3s ease;
}

/* Tablet */
@media (max-width:991px){

    .cit-research-cta-section{
        padding:60px 0;
    }

    .cit-cta-btn{
        min-height:56px;
        height:auto;
        padding:14px 18px;
        gap:10px;
    }

    .cit-cta-text{
        white-space:normal;
    }
}

/* Mobile */
@media (max-width:767px){

    .cit-cta-btn{
        flex-direction:row; /* keep icon + text on same line */
        justify-content:center;
        align-items:center;
        gap:10px;
        width:100%;
    }

    .cit-cta-icon{
        font-size:22px;
    }

    .cit-cta-text{
        font-size:15px;
        line-height:1.3;
        white-space:normal;
    }
}
.cit-design-implication-section{
    padding:50px 0;
    margin-top:30px;
}

.cit-design-content{
    padding-right:50px;
}

.cit-design-title{
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    line-height: 23px;
    color:var(--primary);
    margin-bottom:20px;
}

.cit-design-text p{
    text-align: start;
    font-size: 0.93rem;
    font-weight: 400;
    line-height:1.6;
    color:var(--grey);
}

.cit-design-text p:last-child{
    margin-bottom:0;
}

.cit-design-image{
    overflow:hidden;
}

.cit-design-image img{
    width:100%;
    height:auto;
    display:block;
}

/* ==========================
   CIT CONTEXT SECTION
========================== */

.cit-context-section {
    background: #eef3f5;
    padding: 90px 0;
    margin-top: 40px;
}

.cit-context-image {
    width: 100%;
    height: auto;
    display: block;
}

.cit-context-content {
    padding-right: 40px;
    border-right: 1px solid #d7dde2;
}

.cit-context-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    line-height: 23px;
    color:var(--primary);
    margin-bottom:20px;
}

.cit-context-text p,
.cit-context-side-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #6c7078;
}

.cit-context-quote {
    margin-top: 45px;
    border-left: 4px solid #e5b400;
    padding-left: 22px;
}

.cit-context-quote p {
    margin: 0;
    font-size:1rem;
    line-height: 1.5;
    color: #000;
    font-style: italic;
}

.cit-context-side-content {
    padding-left: 15px;
}

/* ==========================
   LARGE SCREEN
========================== */

@media (max-width: 1399px) {

    .cit-context-title {
        font-size: 1.5rem;
    }

    .cit-context-text p,
    .cit-context-side-content p {
        font-size: 0.9rem;
    }

    .cit-context-quote p {
        font-size: 1rem;
    }
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {

    .cit-context-section {
        padding: 70px 0;
        margin-top: 40px;
    }

    .cit-context-content {
        border-right: none;
        padding-right: 0;
    }

    .cit-context-title {
        font-size: 2.2rem;
        margin-top: 25px;
    }

    .cit-context-side-content {
        padding-left: 0;
        margin-top: 20px;
    }

    .cit-context-text p,
    .cit-context-side-content p {
        font-size: 1.1rem;
    }

    .cit-context-quote p {
        font-size: 1rem;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {

    .cit-context-section {
        padding: 50px 0;
         margin-top: 40px;
    }

    .cit-context-title {
        font-size: 1.9rem;
    }

    .cit-context-text p,
    .cit-context-side-content p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .cit-context-quote {
        margin-top: 30px;
        padding-left: 15px;
    }

    .cit-context-quote p {
        font-size: 1rem;
    }
}
/* ==========================
   LARGE SCREEN
========================== */

.cit-section{
    background:#F6FCFF;
    margin-top:20px;
}

.cit-image-wrap{
    height:100%;
}

.cit-image{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.cit-heading{
    font-size:1.5rem;
    font-family:var(--font-heading);
    font-weight:500;
    color:var(--primary);
    margin-bottom:25px;
    line-height:1.4;
}

.cit-content p{
    font-size:0.9rem;
    color:var(--grey);
    line-height:1.8;
    margin-bottom:25px;
}

.cit-highlight-box{
    border-left:4px solid #d7ab17;
    padding-left:25px;
    margin:15px 0;
}

.cit-highlight-text{
    font-size:1.9rem;
    font-style:italic;
    color:#000;
    line-height:1.4;
    margin:0;
}

@media (max-width: 991px){

    .cit-content{
        padding-left:0;
        padding-top:30px;
    }

    .cit-highlight-text{
        font-size:1.3rem;
    }
}

@media (max-width: 767px){

    .cit-section{
        padding:40px 0;
    }

    .cit-heading{
        font-size:1.5rem;
    }

    .cit-highlight-text{
        font-size:1.1rem;
    }
}

.cit-highlight-section{
    background:#f4f1e6;
    padding:60px 0;
}

.cit-icon-wrapper{
    color:#7f7f7f;
    line-height:1;
    margin-top:5px;
}

.cit-highlight-content{
    padding-left:10px;
}

.cit-highlight-description{
    font-size:0.9rem;
    line-height:1.9;
    color:#666666;
    margin-bottom:0;
    font-weight:400;
}

@media (max-width:991px){

    .cit-highlight-section{
        padding:40px 20px;
    }

    .cit-icon-wrapper{
        margin-bottom:20px;
    }

    .cit-highlight-content{
        padding-left:0;
    }
}

@media (max-width:767px){

    .cit-highlight-description{
        font-size:0.9rem;
        line-height:1.8;
    }

    .cit-icon-wrapper svg{
        width:55px;
        height:55px;
    }
}

/* ==========================================================
   CIT PARA SECTION
   ========================================================== */

.cit-para-section {
    background-color: #fff;
}

.cit-para-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.15;
    color:var(--primary);
}

.cit-para-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #667085;
}

/* ==========================================================
   HIGHLIGHT
   ========================================================== */

.cit-para-highlight {
    position: relative;
    padding-left: 1.5rem;
    padding-bottom:20px;
}

.cit-para-highlight::before {
    content: "";
    position: absolute;
    top: 0.25rem;
    bottom: 0.25rem;
    left: 0;
    width: 3px;
    background-color: #e5b800;
}

.cit-para-highlight {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
    color: #000;
    font-weight:500;
}

/* ====================================
   CIT Worked Examples
==================================== */

#cit-worked-examples {
    background: #f7f7f7;
}

.cit-worked-header {
    padding-top: 20px;
}

.cit-worked-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    line-height: 23px;
    color:var(--primary);
    margin-bottom:20px;
}

.cit-worked-intro {
    font-size: 0.9rem;
    max-width: 1100px;
    line-height: 1.7;
}

/* Example Row */

.cit-example-row {
    margin-bottom: 50px;
}

.cit-example-number-wrap {
    text-align: center;
}

.cit-example-number {
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
    color: #8c8c8c;
    font-family: Georgia, serif;
}

.cit-example-label {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
    font-family: Georgia, serif;
}

.cit-example-content {
    height: 100%;
}

.cit-example-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    text-transform: none;
    font-style: normal;
    line-height: 23px;
    color:var(--primary);
    margin-bottom:20px;
}

.cit-example-content p {
    font-size: 0.9rem;
    line-height: 1.9;
    margin-bottom: 15px;
    text-align:justify;
}

/* Optional Divider */

.cit-example-row:not(:last-child) {
    padding-top:20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e3e3e3;
}

/* ==========================
   Responsive
========================== */

@media (max-width: 991px) {

    .cit-example-number {
        font-size: 3.2rem;
    }

    .cit-example-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {

    .cit-example-row {
        text-align: center;
        margin-bottom: 40px;
    }

    .cit-example-number-wrap {
        margin-bottom: 15px;
    }

    .cit-example-number {
        font-size: 2.8rem;
    }

    .cit-example-title {
        font-size: 1.25rem;
    }

    .cit-example-content p {
        font-size: 0.9rem;
        line-height: 1.8;
    }
}

@media (max-width: 575px) {

    .cit-worked-title {
        font-size: 1.6rem;
    }

    .cit-example-number {
        font-size: 2.5rem;
    }

    .cit-example-label {
        font-size: 0.8rem;
    }

    .cit-example-title {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Contact Form 
   ========================================================================== */

.cit-contact-section {
    background: #ffffff;
}

.cit-contact-card {
    background: #fff;
    border: 1px solid var(--border-color);
    padding: 25px;
    margin-bottom: 20px;
}

.cit-contact-card h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.cit-contact-form-wrapper {
    padding: 40px;
    border: 1px solid var(--secondary);
    border-radius:20px;
}

.cit-contact-title {
    color: #072f5f;
    margin-bottom: 25px;
}

.cit-submit-btn {
    background: #072f5f;
    color: #fff;
    border: none;
    padding: 12px 30px;
}

.cit-submit-btn:hover {
    background: #0a417f;
}

.wpcf7-form-control {
    width: 100%;
}

.wpcf7-form-control.form-control {
    border-radius: 0;
    min-height: 50px;
}

textarea.wpcf7-form-control.form-control {
    min-height: 180px;
}

.cit-map-wrapper {
    overflow: hidden;
}

.cit-contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.cit-contact-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--secondary);
    font-family:var(--font-heading);
}

/* Form Fields */

.cit-contact-form-wrapper .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 6px 18px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.cit-contact-form-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.cit-contact-form-wrapper .wpcf7-form-control:focus {
    outline: none;
    border-color: #072f5f;
    box-shadow: 0 0 0 3px rgba(7,47,95,0.1);
}

/* Labels */

.cit-contact-form-wrapper label {
    display: block;
    font-weight: 500;
    color:var(--secondary);
    margin-bottom: 15px;
}

/* Submit Button */

.cit-contact-form-wrapper .wpcf7-submit {
    background: #072f5f;
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cit-contact-form-wrapper .wpcf7-submit:hover {
    background: #0a458d;
}

/* Validation */

.cit-contact-form-wrapper .wpcf7-not-valid {
    border-color: #dc3545;
}

.cit-contact-form-wrapper .wpcf7-not-valid-tip {
    font-size: 14px;
    color: #dc3545;
    margin-top: 5px;
}

.cit-contact-form-wrapper .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 15px;
    border-radius: 8px;
}

/* Success Message */

.cit-contact-form-wrapper .wpcf7 form.sent .wpcf7-response-output {
    border: 1px solid #198754;
    background: #d1e7dd;
    color: #0f5132;
}

/* Error Message */

.cit-contact-form-wrapper .wpcf7 form.invalid .wpcf7-response-output,
.cit-contact-form-wrapper .wpcf7 form.failed .wpcf7-response-output {
    border: 1px solid #dc3545;
    background: #f8d7da;
    color: #842029;
}

/* ==========================================
   Contact Info Cards
========================================== */

.cit-contact-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.cit-contact-card h4 {
    font-size: 1.5rem;
    font-weight: 500;
    font-family:var(--font-heading);
    color: var(--secondary);
    margin-bottom: 10px;
}

.cit-contact-card p {
    margin: 0;
    color: #555;
    line-height: 1.7;
}

.cit-contact-card a {
    color: #072f5f;
    text-decoration: none;
}

.cit-contact-card a:hover {
    text-decoration: underline;
}

/* ==========================================
   Google Map
========================================== */

.cit-map-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.cit-map-wrapper iframe {
    display: block;
}

/* ==========================================
   Responsive
========================================== */

@media (max-width: 991px) {

    .cit-contact-form-wrapper {
        padding: 30px;
    }

    .cit-contact-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {

    .cit-contact-form-wrapper {
        padding: 20px;
    }

    .cit-contact-card {
        padding: 20px;
    }
}

/* ====================================
   CIT Services Overview
==================================== */

#cit-services-overview {
    background: #ffffff;
}

.cit-service-card {
    border: 1px solid #0b6897;
    border-radius: 8px;
    padding: 24px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.cit-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.cit-service-title {
    font-size: 1.5rem;
    font-weight: 500;
    color:var(--primary);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.cit-service-subtitle {
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cit-service-card p {
    font-size: 0.9rem;
    line-height: 1.8;
   
    margin-bottom: 18px;
}

.cit-service-duration {
    font-weight: 700;
    color: #555;
    margin-bottom: 0;
}

/* Highlighted Blue Card */
.cit-service-card--highlight {
    background: #005f8c;
    border-color: #005f8c;
}

.cit-service-card--highlight .cit-service-title,
.cit-service-card--highlight .cit-service-subtitle,
.cit-service-card--highlight .cit-service-duration,
.cit-service-card--highlight p {
    color: #ffffff;
}

/* ====================================
   Responsive
==================================== */

@media (max-width: 991px) {

    .cit-service-card {
        padding: 20px;
    }

    .cit-service-title {
        font-size: 24px;
    }

    .cit-service-subtitle {
        font-size: 18px;
    }

    .cit-service-card p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {

    .cit-service-card {
        padding: 18px;
    }

    .cit-service-title {
        font-size: 22px;
    }

    .cit-service-subtitle {
        font-size: 17px;
    }

    .cit-service-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .cit-service-duration {
        font-size: 14px;
    }
}

@media (max-width: 575px) {

    .cit-service-card {
        padding: 15px;
        border-radius: 6px;
    }

    .cit-service-title {
        font-size: 20px;
    }

    .cit-service-subtitle {
        font-size: 16px;
    }
}

/* ===================================
   CIT Behavioural Architecture Intro
=================================== */


/* Large Desktop */
@media (max-width: 1400px) {

    .cit-behavioural-title {
        font-size: 3rem;
    }

    .cit-behavioural-content p {
        font-size: 1.5rem;
    }
}

/* Tablet */
@media (max-width: 991px) {

    .cit-behavioural-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .cit-behavioural-content p {
        font-size: 1.25rem;
        line-height: 1.7;
    }
}

/* Mobile */
@media (max-width: 767px) {

    #cit-behavioural-intro {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .cit-behavioural-title {
        font-size: 2rem;
        text-align: center;
    }

    .cit-behavioural-content {
        text-align: center;
    }

    .cit-behavioural-content p {
        font-size: 1.05rem;
        line-height: 1.8;
    }
}

/* Small Mobile */
@media (max-width: 575px) {

    .cit-behavioural-title {
        font-size: 1.75rem;
    }

    .cit-behavioural-content p {
        font-size: 1rem;
    }
}

/* ===================================
   CIT 404 Page
=================================== */

#cit-404-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background: #f8f9fa;
}

.cit-404-content {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cit-404-code {
    display: block;
    font-size: 120px;
    line-height: 1;
    font-weight: 700;
    color: #005b8f;
    font-family: "Source Serif 4", serif;
    margin-bottom: 15px;
}

.cit-404-title {
    font-size: 42px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 20px;
    font-family: "Source Serif 4", serif;
}

.cit-404-description {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cit-404-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #005b8f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cit-404-btn:hover {
    background: #00456d;
    color: #fff;
}

.cit-404-search {
    margin-top: 40px;
}

.cit-404-search .search-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.cit-404-search .search-field {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
}

.cit-404-search .search-submit {
    padding: 12px 20px;
    background: #005b8f;
    color: #fff;
    border: none;
    border-radius: 6px;
}

/* Responsive */

@media (max-width: 991px) {

    .cit-404-code {
        font-size: 90px;
    }

    .cit-404-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {

    #cit-404-page {
        padding: 60px 0;
    }

    .cit-404-content {
        padding: 40px 25px;
    }

    .cit-404-code {
        font-size: 70px;
    }

    .cit-404-title {
        font-size: 28px;
    }

    .cit-404-description {
        font-size: 16px;
    }

    .cit-404-search .search-form {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
    .cit-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.cit-footer {
    background: var(--primary);
    padding: 35px 0;
    position: relative;
    margin-top:30px;
}

.cit-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.cit-footer-copyright {
    margin: 0;
    color:var(--white-text);
    font-family:var(--font-heading);
    font-size:1rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Scroll To Top Button */

.cit-scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e88ff;
    color: var(--white-text);
    text-decoration: none;
    font-size: 24px;
    border-radius: 4px;
    z-index: 9999;
    transition: all 0.3s ease;
}

.cit-scroll-top:hover {
    background: #006be6;
    color:var(--white-text);
}

