﻿:root {
    --theme-primary: #11296b;
    --theme-primary-light: #d6ebff;
    --theme-primary-dark: #112541;
    --theme-warning: #ffcb05;
    --theme-danger: #eb1d27;
    --theme-green: #34a345;
    --blue: #2184ff;
    --font-family: "segoe-ui", sans-serif;
    --font-heading: "bricolage-grotesque-24-cond", sans-serif;
    --theme-gray: rgb(248, 248, 248);
    --theme-primary-accent: #f1f3f2;
    --theme-dark: #212121;
    --step--2: clamp(0.6076rem, 0.6002rem + 0.0332vw, 0.64rem);
    --step--1: clamp(0.7292rem, 0.7128rem + 0.0726vw, 0.8rem);
    --step-0: clamp(0.875rem, 0.8462rem + 0.1282vw, 1rem);
    --step-1: clamp(1.05rem, 1.0038rem + 0.2051vw, 1.25rem);
    --step-2: clamp(1.26rem, 1.1902rem + 0.3103vw, 1.5625rem);
    --step-3: clamp(1.512rem, 1.4102rem + 0.4524vw, 1.9531rem);
    --step-4: clamp(1.8144rem, 1.6697rem + 0.6431vw, 2.4414rem);
    --step-5: clamp(2.1773rem, 1.9755rem + 0.8969vw, 3.0518rem);
}


/* ===== LEFT SIDEBAR MENU DESIGN ===== */

.leftMenu-Box {
    padding: 0;
}

#leftSideMenu {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
}

#leftSideMenu li {
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Menu Links */
#leftSideMenu li a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover Effect */
#leftSideMenu li a:hover {
    background-color: rgba(255, 255, 255, 0.08);
    padding-left: 26px;
    color: var(--theme-warning);
}

/* Active Menu Item */
#leftSideMenu li a.active-leftPage {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--theme-warning) !important;
    padding-left: 26px;
}

/* Left Yellow Strip (Active Indicator) */
#leftSideMenu li a.active-leftPage::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--theme-warning);
    border-radius: 0 4px 4px 0;
}

/* Heading underline */
.border-head {
    position: relative;
    display: inline-block;
}

.border-head::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--theme-warning);
    border-radius: 50px;
}

.bg-theme-primary
{
    background:#1f3c88 !important;
}

/* ===== Vision & Mission Section ===== */

.vm-box {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.vm-box:hover {
    transform: translateY(-4px);
}

.vm-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.vm-header img {
    width: 50px;
    height: auto;
}

.vm-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--theme-primary);
    margin: 0;
    position: relative;
}

.vm-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .vm-box {
        padding: 20px;
    }

    .vm-header h3 {
        font-size: 20px;
    }

    .vm-header img {
        width: 40px;
    }
}

/** Director's desk style **/
.director-heading {
    text-align: center;
    margin: 8px 0 40px;
    position: relative;
}

.director-heading h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    color: #0b3d91; /* deep blue */
    font-family: 'Poppins', sans-serif;
}

.director-heading h2 span {
    color: #f4b400; /* golden highlight */
}

/* Stylish underline */
.director-heading h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f4b400, #0b3d91);
    border-radius: 10px;
}



.director-heading::before {
    left: 25%;
}

.director-heading::after {
    right: 25%;
}

/* Responsive */
@media (max-width: 768px) {
    .director-heading h2 {
        font-size: 28px;
    }

    .director-heading::before,
    .director-heading::after {
        display: none;
    }
}




.director-box {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.director-img-wrapper {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s ease;
}

.director-img-wrapper:hover {
    transform: translateY(-5px);
}

.director-img {
    width: 220px;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    border: 5px solid #ffcb05; /* yellow theme */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.director-name {
    font-weight: 600;
    color: #0b3d91;
}

.director-designation {
    color: #777;
    font-size: 14px;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .director-img {
        width: 180px;
        height: 220px;
    }
}