    .headtxt {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .headtxt a {
        text-decoration: none;
        white-space: nowrap;
    }

    .social-links {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .carousel-item img {
        width: 100%;
        height: 500px;
    }

    /* Tablet */
    @media (max-width: 768px) {

        .head .row {
            text-align: center;
        }

        .headtxt {
            justify-content: center;
            padding-bottom: 10px;
        }

        .social-links {
            justify-content: center !important;
            margin-top: 5px;
        }
    }

    /* Mobile */
    @media (max-width: 576px) {

        .head {
            padding: 8px 0;
        }

        .headtxt {
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .headtxt a {
            width: 100%;
            white-space: normal;
            text-align: center;
            line-height: 22px;
        }

        .social-links {
            justify-content: center !important;
            gap: 15px;
            font-size: 18px;
            text-align: center;
        }

        .social-links a {
            margin: 0 !important;
        }
    }

    @media (max-width:767px) {
        .header-logo {
            width: 60% !important;
        }

        .clg-name {
            text-align: center !important;
        }
    }

    @media (max-width:1400px) {
        .navbar ul {
            gap: 0px !important;
        }
    }

    /* Navbar base */
    .navbar {
        width: 100%;
        padding: 0;
    }

    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    /* Toggler */
    .navbar-toggler {
        margin: 8px 0;
        border: 1px solid rgba(0, 0, 0, .15);
        box-shadow: none !important;
    }

    /* Menu alignment */
    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
    }

    .navbar-nav {
        width: 100%;
        gap: 0;
        justify-content: center;
        align-items: center;
    }

    .navbar-nav .nav-item {
        position: relative;
    }

    .navbar-nav .nav-link {
        white-space: nowrap;
        padding: 12px 14px;
        font-size: 14px;
        font-weight: 600;
    }

    /* Dropdown */
    /* .dropdown-menu {
        border-radius: 10px;
        padding: 6px 0;
    }

    .dropdown-item {
        white-space: normal;
        padding: 8px 14px;
        font-size: 14px;
    } */

    /* Desktop */
    @media (min-width: 768px) {
        .navbar-collapse {
            flex-basis: auto;
        }

        .navbar-nav {
            width: auto;
        }
    }

    /* Mobile */
    @media (max-width: 767.98px) {
        .navbar .container {
            padding-left: 10px;
            padding-right: 10px;
        }

        .navbar-collapse {
            width: 100%;
            margin-top: 8px;
        }

        .navbar-nav {
            width: 100%;
            align-items: stretch;
            text-align: left;
            padding-bottom: 8px;
        }

        .navbar-nav .nav-item {
            width: 100%;
        }

        .navbar-nav .nav-link {
            width: 100%;
            padding: 10px 12px;
        }
    }

    /* Large screen responsive fix */
    @media (max-width: 1400px) {

        .navbar-nav {
            flex-wrap: wrap;
            justify-content: center;
        }

        .navbar-nav .nav-link {
            padding: 10px 8px !important;
            font-size: 13px;
        }

        .navbar .container {
            max-width: 100%;
            padding-left: 10px;
            padding-right: 10px;
        }
    }

    /* Extra compact */
    @media (max-width: 1200px) {

        .navbar-nav .nav-link {
            padding: 8px 6px !important;
            font-size: 12px;
        }

        .carousel-item img {
            width: 100%;
            height: 300px;
        }
    }

    .vissionImg {
        height: 250px;
    }

    .vc_img {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .vc_img img {
        height: 280px;
        width: 100%;
        border-radius: 50%;
        border: 2px dashed #68a4c4;
        padding: 5px;
    }

    .vc_img h5 {
        margin-top: 10px;
        font-weight: bold;
        color: #68a4c4;
    }

    .vc_img p {
        font-weight: bold;
        border-bottom: 3px solid #68a4c4;
    }

    :root {
        --theme-dark: #214d61;
        --theme-dark-2: #173947;
        --theme-light: #cee3f5;
        --theme-bg: #f6fbff;
        --line: #dbe7f0;
        --text: #263442;
        --muted: #647382;
    }

    .staff-section {
        background: linear-gradient(180deg, #ffffff 0%, var(--theme-bg) 100%);
        padding: 30px 0 45px;
    }

    .staff-card {
        background: #fff;
        border: 1px solid var(--line);
        overflow: hidden;
        box-shadow: 0 10px 28px rgba(33, 77, 97, .08);
        transition: all .35s ease;
        height: 100%;
        position: relative;
    }

    .staff-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(33, 77, 97, .16);
    }

    .staff-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(33, 77, 97, .06), transparent 60%);
        opacity: 0;
        transition: .35s ease;
        pointer-events: none;
    }

    .staff-card:hover::before {
        opacity: 1;
    }

    .staff-topbar {
        height: 7px;
        background: linear-gradient(90deg, var(--theme-dark) 0%, var(--theme-dark-2) 100%);
    }

    .staff-body {
        padding: 22px 18px 18px;
        text-align: center;
    }

    .staff-photo-wrap {
        display: flex;
        justify-content: center;
        margin-top: -6px;
        margin-bottom: 16px;
    }
   
    .staff-photo {
        width: 128px;
        height: 128px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid var(--theme-light);
        background: #eef6fb;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .10);
        transition: transform .35s ease, box-shadow .35s ease;
    }

    .staff-card:hover .staff-photo {
        transform: scale(1.06);
        box-shadow: 0 14px 26px rgba(0, 0, 0, .16);
    }

    .staff-photo img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        display: block;
    }

    .staff-name {
        font-size: 20px;
        font-weight: 800;
        color: var(--text);
        margin: 0 0 8px;
        line-height: 1.25;
    }

    .staff-designation {
        display: inline-block;
        background: var(--theme-light);
        color: var(--theme-dark-2);
        font-size: 13px;
        font-weight: 700;
        padding: 7px 12px;
        border-radius: 999px;
        margin-bottom: 14px;
    }

    .staff-meta {
        display: grid;
        gap: 10px;
        text-align: left;
        margin-top: 8px;
    }

    .meta-item {
        display: flex;
        justify-content: space-between;
        background: #fbfdff;
        border: 1px solid #edf3f8;
        border-radius: 14px;
        padding: 11px 13px;
    }
     @media (max-width:400px) {
         .meta-item {
             flex-direction: column;
             align-items: flex-start;
             gap: 6px;
         }
    }
    .meta-label {
        font-size: 12px;
        font-weight: 800;
        color: var(--theme-dark);
        text-transform: uppercase;
        letter-spacing: .4px;
        margin-bottom: 5px;
    }

    .meta-value {
        font-size: 14px;
        color: var(--text);
        word-break: break-word;
        line-height: 1.45;
    }

    .staff-footer {
        padding: 0 18px 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .staff-chip {
        font-size: 12px;
        font-weight: 700;
        padding: 6px 10px;
        border-radius: 999px;
        background: #eef6fb;
        color: var(--theme-dark-2);
        border: 1px solid #dbe9f3;
    }

    .staff-serial {
        position: absolute;
        top: 14px;
        left: 14px;
        background: rgba(33, 77, 97, .95);
        color: #fff;
        font-size: 12px;
        font-weight: 700;
        padding: 6px 10px;
        border-radius: 999px;
        z-index: 1;
        transition: transform .35s ease;
    }

    .staff-card:hover .staff-serial {
        transform: translateY(-2px);
    }

    @media (max-width: 991.98px) {
        .staff-body {
            padding: 20px 16px 16px;
        }

        .staff-photo {
            width: 118px;
            height: 118px;
        }
    }

    @media (max-width: 575.98px) {
        .staff-photo {
            width: 110px;
            height: 110px;
        }

        .staff-name {
            font-size: 18px;
        }
    }