/* Specific Styles for Tender Page using New Design System Colors */
.tender-page-section {
    padding: 180px 0 60px 0;
    background-color: var(--color-6); /* Light blue-ish from root */
    font-family: var(--primary-font);
}

.tender-tabs {
    border-bottom: 2px solid var(--color-4);
    margin-bottom: 30px;
}

.tender-tabs .nav-link {
    color: var(--color-1);
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 18px;
    padding: 15px 25px;
    border: none;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.tender-tabs .nav-link:hover {
    color: var(--color-4);
}

.tender-tabs .nav-link.active {
    color: var(--color-2);
    background-color: var(--color-4);
    border-radius: 5px 5px 0 0;
}

.tender-item {
    background-color: var(--color-2);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-left: 4px solid var(--color-4);
    border-bottom: 4px solid #ffe100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.tender-item:hover {
    box-shadow: 0px 5px 15px rgba(0,0,0,0.05);
    transform: translateX(5px);
}

.tender-title {
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-1);
    margin-bottom: 0;
    max-width: 100%;
}

.tender-download-btn {
    background-color: var(--color-3); /* The red color */
    color: var(--color-2);
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tender-download-btn:hover {
    background-color: var(--color-1);
    color: var(--color-2);
}

.tender-header-title {
    font-family: var(--primary-font);
    font-weight: 700;
    color: var(--color-4);
    font-size: 40px;
    margin-bottom: 20px;
}

.tab-pane {
    display: none;
}
.tab-pane.active {
    display: block;
}
.tab-pane.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}
.tab-pane.fade.show {
    opacity: 1;
}

/* Specific Styles for Downloads Page using New Design System Colors */
:root {
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.08);
    --accent-gold: #fdb515;
    --accent-green: #285135;
    --accent-blue: #0878A8;
    --accent-red: #930012;
}

.downloads-page {
    padding: 160px 0 100px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e1e9f0 100%);
    min-height: 100vh;
    font-family: var(--primary-font);
}

.page-header-box {
    margin-bottom: 60px;
}

.bread-crumb {
    margin-bottom: 15px;
    font-family: var(--secondary-font);
    font-size: 14px;
    color: var(--color-7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bread-crumb a {
    color: var(--accent-blue);
    font-weight: 600;
    transition: color 0.3s ease;
}

.bread-crumb a:hover {
    color: var(--accent-red);
}

.page-title {
    font-family: var(--primary-font);
    font-weight: 800;
    color: var(--color-4);
    font-size: 52px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.download-grid {
    margin-top: 20px;
}

.download-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-premium);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.download-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.download-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(253, 181, 21, 0.1);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.download-card:hover .icon-wrapper {
    background: var(--accent-gold);
    transform: rotate(10deg);
}

.icon-wrapper i {
    font-size: 42px;
    color: var(--accent-gold);
    transition: all 0.4s ease;
}

.download-card:hover .icon-wrapper i {
    color: #fff;
}

.download-title {
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 20px;
    color: var(--color-1);
    line-height: 1.4;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.download-card:hover .download-title {
    color: var(--accent-blue);
}

.btn-download {
    background-color: var(--accent-green);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 12px;
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    display: inline-block;
}

.download-card:hover .btn-download {
    background-color: var(--accent-blue);
    transform: scale(1.05);
}

/* Color variations for icons */
.card-oric .icon-wrapper { background: rgba(147, 0, 18, 0.1); }
.card-oric .icon-wrapper i { color: var(--accent-red); }
.card-oric:hover .icon-wrapper { background: var(--accent-red); }
.card-oric::before { background: var(--accent-red); }

.card-acad .icon-wrapper { background: rgba(40, 81, 53, 0.1); }
.card-acad .icon-wrapper i { color: var(--accent-green); }
.card-acad:hover .icon-wrapper { background: var(--accent-green); }
.card-acad::before { background: var(--accent-green); }

.card-blue .icon-wrapper { background: rgba(8, 120, 168, 0.1); }
.card-blue .icon-wrapper i { color: var(--accent-blue); }
.card-blue:hover .icon-wrapper { background: var(--accent-blue); }
.card-blue::before { background: var(--accent-blue); }

@media (max-width: 991px) {
    .downloads-page {
        padding-top: 120px;
    }
    .page-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .download-card {
        padding: 25px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .downloads-page {
        padding-top: 220px; 
    }
    .page-title {
        font-size: 44px; 
    }
}



/* Anti gender harrasment page css */


        :root {
            --glass-bg: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(255, 255, 255, 0.2);
            --shadow-subtle: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
        }

        .policy-page-section {
            padding: 180px 0 80px 0;
            background: linear-gradient(135deg, #f8fbf9 0%, #ecf8fd 100%);
            min-height: 100vh;
            font-family: var(--primary-font);
        }

        .policy-header-title {
            font-family: var(--primary-font);
            font-weight: 800;
            color: var(--color-4);
            font-size: 48px;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }

        .policy-header-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--color-3);
            border-radius: 2px;
        }

        .content-card {
            background: var(--color-2);
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-subtle);
            border: 1px solid var(--glass-border);
            height: 100%;
        }

        .sidebar-card {
            background: var(--color-11);
            border-radius: 20px;
            padding: 30px;
            color: var(--color-2);
            position: sticky;
            top: 120px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .sidebar-title {
            font-weight: 700;
            font-size: 22px;
            margin-bottom: 25px;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding-bottom: 15px;
        }

        .policy-link-item {
            background: rgba(255, 255, 255, 0.1);
            margin-bottom: 12px;
            padding: 15px 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            border: 1px solid transparent;
        }

        .policy-link-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateX(10px);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .policy-link-item a {
            color: var(--color-2) !important;
            font-family: var(--secondary-font);
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
            display: flex;
            align-items: center;
            width: 100%;
        }

        .policy-link-item i {
            margin-right: 15px;
            font-size: 20px;
            opacity: 0.8;
        }

        .main-text-content {
            line-height: 1.8;
            color: #444;
            font-size: 17px;
            text-align: justify;
        }

        .policy-featured-img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.5s ease;
            width: 100%;
            max-width: 500px;
        }

        .policy-featured-img:hover {
            transform: scale(1.02);
        }

        .bread-crumb {
            margin-bottom: 20px;
            font-family: var(--secondary-font);
            font-size: 14px;
            color: var(--color-7);
        }

        .bread-crumb a {
            color: var(--color-4);
            font-weight: 600;
        }

        .badge-zero-tolerance {
            background-color: var(--color-3);
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 15px;
        }

        @media (max-width: 991px) {
            .sidebar-card {
                position: static;
                margin-top: 40px;
            }
            .policy-header-title {
                font-size: 36px;
            }
        }
        @media (min-width: 992px) and (max-width: 1199px) {
    .downloads-page {
        padding-top: 220px; 
    }
    .page-title {
        font-size: 44px; 
    }
}
    