@charset "UTF-8";
  /* * =============================================
         * Brand Color Variables
         * =============================================
        */
        :root {
            --resc-color-yellow: #F3E04E;
            --resc-color-deep-blue: #1C3C6E;
            --resc-color-light-blue: #0061CD;
            --resc-color-white: #FFFFFF;
            --resc-color-light-gray: #f1f5f9;
            --resc-color-text: #4a4a4a;
            --resc-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
            --resc-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            --resc-max-width: 1400px;
        }
        .tkmaxwidth {
            max-width: var(--resc-max-width);
            padding: 0 2rem 0rem 2rem;
        }
        .banner_inpage .tkmaxwidth{display:none;}
        .inpage_section_title{border:0px;display:none;}
        .tkpage.services-container {
            width: 100% !important;
            padding-top: 0px;
        }

        /* * =============================================
         * Main Page Structure
         * =============================================
        */
        .resc-page-container {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            line-height: 1.6;
            font-size: 16px;
        }

        .resc-main-content-area {
            display: flex;
            flex-grow: 1;
            width: 100%;
            max-width: var(--resc-max-width);
            margin: 0 auto;
        }

        /* * =============================================
         * Hero Section
         * =============================================
        */
        .resc-hero-section {
            min-height: 75vh;
            /* Use min-height for flexibility */
            background-image: url('../../../static/img/Resources-1.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--resc-color-white);
            position: relative;
            padding: 2rem;
            box-sizing: border-box;
        }

        .resc-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(28, 60, 110, 0.6);
        }

        .resc-hero-container {
            position: relative;
            z-index: 1;
            max-width: var(--resc-max-width);
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
            animation: resc-fadeInHero 1s ease-out forwards;
        }

        @keyframes resc-fadeInHero {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .resc-hero-text-content {
            text-align: left;
            flex: 1.5;
        }

        .resc-hero-text-content h1 {
            font-size: 5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .resc-hero-text-content p {
            max-width: 80%;
            margin-bottom: 1.5rem;
            font-size: 20px;
        }

        .resc-hero-download-card {
            background-color: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            padding: 1.8rem;
            border-radius: 12px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex: 1;
            max-width: 320px;
            gap: 0.9rem;
        }

        .resc-hero-download-card h3 {
            font-size: 1.6rem;
            color: var(--resc-color-white);
            margin: 0;
        }

        .resc-hero-download-card img {
            max-width: 100%;
            width: 180px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .resc-hero-download-card .resc-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        /* * =============================================
         * Sidebar and Main Content Layout
         * =============================================
        */
        .resc-left-sidebar {
            width: 25%;
            padding: 4rem 2rem;
            position: sticky;
            top: 20px;
            height: calc(100vh - 40px);
            align-self: flex-start;
        }

        .resc-sidebar-nav h3 {
            color: var(--resc-color-deep-blue);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--resc-color-yellow);
            padding-left: 1rem;
        }

        .resc-sidebar-nav ul {
            list-style: none;
            padding: 0;
        }

        .resc-sidebar-nav>ul>li {
            margin-bottom: 1rem;
        }

        .resc-sidebar-nav ul ul {
            padding-left: 1.5rem;
            margin-top: 0.5rem;
        }

        .resc-sidebar-nav li a {
            display: block;
            padding: 0.5rem 1rem;
            text-decoration: none;
            color: var(--resc-color-text);
            font-weight: 500;
            border-radius: 6px;
            transition: background-color 0.3s ease, color 0.3s ease;
            position: relative;

        }

        .resc-sidebar-nav>ul>li>a {
            font-weight: 700;
            color: var(--resc-color-deep-blue);
        }

        .resc-sidebar-nav li a.active,
        .resc-sidebar-nav li a:hover {
            background-color: var(--resc-color-deep-blue);
            color: var(--resc-color-white);
        }

        .resc-sidebar-nav li a.active::before {
            content: '';
            position: absolute;
            left: -1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--resc-color-yellow);
            border-radius: 50%;
        }

        .resc-sidebar-cta {
            margin-top: 2.5rem;
            padding: 0 1rem;
            text-align: left;
        }

        .resc-right-content {
            width: 75%;
            padding: 4rem 2rem;
            background: var(--resc-color-white);
            border-left: 1px solid #e2e8f0;
        }

        /* * =============================================
         * Content Section Styling
         * =============================================
        */
        .resc-content-section {
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .resc-content-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .resc-content-section p {
            color: var(--resc-color-text);
        }

        .resc-content-section h2 {
            font-size: 3rem !important;
            color: var(--resc-color-deep-blue);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 2rem;
        }

        .resc-content-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 90px;
            height: 4px;
            background: linear-gradient(90deg, var(--resc-color-yellow), var(--resc-color-light-blue));
            border-radius: 2px;
        }

        .resc-content-section h3 {
            font-size: 2.5rem !important;
            color: var(--resc-color-deep-blue);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 1.5rem;
        }

        .resc-content-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--resc-color-yellow), var(--resc-color-light-blue));
            border-radius: 1.5px;
        }

        /* * =============================================
         * Card Component Styles
         * =============================================
        */
        .resc-card-grid-3-col {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .resc-card {
            background: var(--resc-color-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--resc-shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .resc-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--resc-shadow-md);
        }

        .resc-card-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .resc-card-content {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .resc-card-content ul li{
            list-style: disc;
        }

        .resc-card-content h4 {
            font-size:1.8rem !important;
            color: var(--resc-color-deep-blue);
            margin: 0 0 0.5rem 0;
        }

        .resc-card-content p {
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .resc-card-link {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
            color: var(--resc-color-light-blue);
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .resc-card-link:hover {
            color: var(--resc-color-deep-blue);
        }

        .resc-card-link svg {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .resc-card-link:hover svg {
            transform: translateX(4px);
        }

        .resc-publication-item {
            display: flex;
            gap: 2rem;
            background: var(--resc-color-white);
            border-radius: 12px;
            box-shadow: var(--resc-shadow-sm);
            margin-bottom: 2rem;
            padding: 2rem;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .resc-publication-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--resc-shadow-md);
        }

        .resc-publication-item-img {
            flex-shrink: 0;
            width: 300px;
            height: 200px;
        }

        .resc-publication-item-img div {
            width: 100%;
            height: 100%;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            border-radius: 8px;
        }

        .resc-publication-item-content h4 {
            font-size: 1.8rem !important;
            color: var(--resc-color-deep-blue);
            margin-top: 0;
        }

        .resc-knowledge-hub-card {
            display: flex;
            background: var(--resc-color-white);
            border-radius: 12px;
            box-shadow: var(--resc-shadow-sm);
            margin-bottom: 2rem;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .resc-knowledge-hub-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--resc-shadow-md);
        }

        .resc-knowledge-hub-card .resc-card-image {
            width: 30%;
            min-width: 200px;
            height: auto;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            background-color: #f8f9fa;
        }

        .resc-knowledge-hub-card .resc-card-content {
            width: 70%;
            padding: 2rem;
        }

        .resc-knowledge-hub-card .resc-card-content h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--resc-color-deep-blue);
            margin-top: 0;
            margin-bottom: 1rem;
        }


        .resc-hotspot-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .resc-hotspot-card {
            position: relative;
            overflow: hidden;
        }

        .resc-hotspot-card .resc-hotspot-image-wrapper {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            border-radius: 8px;
        }

        .resc-hotspot-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            margin: 0;
        }

        .resc-hotspot-card .resc-hotspot-button-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .resc-hotspot-card:hover .resc-hotspot-button-overlay {
            opacity: 1;
        }

        .resc-hotspot-card .resc-hotspot-button-overlay .resc-btn {
            padding: 0.7rem 1.5rem;

            white-space: nowrap;
        }

        .resc-hotspot-card .resc-card-content {
            padding: 1.5rem;
            text-align: left;
        }

        .resc-hotspot-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--resc-color-deep-blue);
            margin: 0 0 1rem 0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            line-height: 1.4;
        }

        .resc-hotspot-card h4 a {
            display: flex;
            align-items: center;
            color: inherit;
            text-decoration: none;
            width: 100%;
        }

        .resc-hotspot-card h4 a svg {
            margin-left: 0.5rem;
            flex-shrink: 0;
        }

        .resc-resource-item {
            display: flex;
            gap: 2rem;
            background: var(--resc-color-white);
            border-radius: 12px;
            box-shadow: var(--resc-shadow-sm);
            margin-bottom: 2rem;
            padding: 2rem;
            align-items: center;
        }

        .resc-resource-item-img {
            flex-shrink: 0;
            width: 200px;
            height: 200px;
        }

        .resc-resource-item-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }

        .resc-resource-item-content h4 {
            font-size: 2rem !important;
            color: var(--resc-color-deep-blue);
            margin-top: 0;
        }

        .resc-resource-item-content ul {
            padding-left: 20px;
            margin-top: 1rem;
            margin-bottom: 1rem;
            text-align: left;
        }

        .resc-resource-item-content li {
            margin-bottom: 0.5rem;
            list-style: disc;
        }

        .resc-section-cta {
            text-align: left;
            margin-top: 2.5rem;
        }

        .resc-faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            align-items: stretch;
        }

        .resc-faq-grid .resc-card {
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-color: var(--resc-color-light-gray);
            height: 100%;
            box-sizing: border-box;
        }

        .resc-faq-grid .resc-card:hover {
            transform: none;
            box-shadow: var(--resc-shadow-sm);
        }

        .resc-faq-grid .resc-card h4 {
            margin: 0;
            font-size: 1.8rem !important;
            color: var(--resc-color-deep-blue);
        }

        /* * =============================================
         * Call to Action (CAT) and Footer
         * =============================================
        */
        .resc-cat-section {
            background: linear-gradient(45deg, var(--resc-color-deep-blue), var(--resc-color-light-blue));
            color: var(--resc-color-white);
            padding: 5rem 2rem;
            text-align: center;
        }

        .resc-cat-content h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        .resc-cat-content p {
            max-width: var(--resc-max-width);
            margin: 0 auto 2rem;
        }

        .resc-btn {
            padding: 0.8rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .resc-btn-primary {
            background-color: var(--resc-color-yellow);
            color: #000 !important;
            box-shadow: 0 4px 15px rgba(243, 224, 78, 0.4);
        }

        .resc-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(243, 224, 78, 0.6);
        }

        .resc-btn-secondary {
            background-color: transparent;
            color: var(--resc-color-deep-blue);
            border: 2px solid var(--resc-color-deep-blue);
        }

        .resc-btn-secondary:hover {
            background-color: var(--resc-color-deep-blue);
            color: var(--resc-color-white);
        }



        /* * =============================================
         * Responsive Design Media Queries
         * =============================================
        */
        @media (min-width: 768px) {
            .resc-card-grid-3-col {
                grid-template-columns: repeat(3, 1fr);
            }

            .resc-hotspot-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .resc-faq-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1200px) {
            .resc-knowledge-hub-card {
                flex-direction: column;
            }

            .resc-knowledge-hub-card .resc-card-image,
            .resc-knowledge-hub-card .resc-card-content {
                width: 100%;
                box-sizing: border-box;
            }

            .resc-knowledge-hub-card .resc-card-image {
                height: 200px;
            }

            .resc-resource-item,
            .resc-publication-item {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 1024px) {
            .resc-main-content-area {
                flex-direction: column;
            }

            .resc-left-sidebar {
                position: static;
                width: 100%;
                height: auto;
                padding: 2rem 1rem;
                border-bottom: 1px solid #e2e8f0;
                box-sizing: border-box;
            }

            .resc-sidebar-nav ul {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
                justify-content: center;
            }

            .resc-sidebar-nav ul ul {
                display: none;
            }

            .resc-sidebar-nav h3 {
                text-align: center;
            }

            .resc-right-content {
                width: 100%;
                padding: 2rem 1rem;
                border-left: none;
                box-sizing: border-box;
            }
        }

        @media (max-width: 768px) {



            .resc-hero-section {
                height: auto;
                min-height: auto;
                padding: 4rem 1rem;
            }

            .resc-hero-container {
                flex-direction: column;
                text-align: center;
            }

            .resc-hero-text-content {
                text-align: center;
            }

            .resc-hero-text-content h1 {
                font-size: 2.5rem;
            }

            .resc-hero-text-content p {
                margin-left: auto;
                margin-right: auto;
                font-size: 1.1rem;
            }

            .resc-content-section h2 {
                font-size: 2rem;
            }

            .resc-publication-item,
            .resc-resource-item {
                padding: 1.5rem;
            }

            .resc-publication-item-img {
                width: 100%;
            }

            .resc-cat-content h2 {
                font-size: 2.2rem;
            }
        }