/*
Theme Name: WBSU child Theme
Template: wbsu-main
Author: Transcendence
Version: 2.0
*/

/* Your custom styles can go here */


:root {
    --light: #F5F5F5;
    --dark: #202020;
    --primary: #1c345a;
    --primary-hover: #e43b20;
    --secondary: #eda900;
    --blue: #415266;
    --orenge: #eb7d3d;
    --yellow: #ffda4d;
    --white: #fff;
    --black: #000;
    --back: #333333;
    --gray: #b8b8b8;
    --gray_text: #828282;
    --light_gray_text: #c5c5c5;
    --near-black: #282b2d;
    --dark-back: #4b4b4b;
    --main-color: 172, 41, 29;
    --second-color: 65, 82, 102;
    --font-awesome: "Font Awesome 6 free";
    --transition-05s: all ease-in-out .5s;
    --transition-08s: all ease-in-out .8s
}


        .navbar-nav .dropdown-menu {
            position: absolute !important;
        }

        @media only screen and (max-width: 768px) {
            .left-side {
                display: none !important;
            }
            
            /* Refined Mobile Header Styling */
            .header .logo img {
                height: 90px !important;
                margin: 0 auto;
            }
            .logo_sec {
                justify-content: center !important;
            }
            .logo_sec .logo {
                flex-direction: column !important;
                text-align: center !important;
                width: 100%;
            }
            .logo_sec .logo div {
                padding-left: 0 !important;
                padding-top: 12px;
            }
            .logo_sec .logo h1 {
                font-size: 1.3rem !important;
                line-height: 1.3;
            }
            .logo_sec .logo b {
                font-size: 0.85rem !important;
            }
            
            /* Hide bulky contact info on mobile to keep it clean */
            .header-contact-row {
                display: none !important;
            }
            
            /* Center quicklinks nicely */
            .header-quicklinks {
                justify-content: center !important;
                margin-top: 5px;
                margin-bottom: 10px;
                flex-wrap: wrap;
                gap: 8px;
            }
            .hql-btn {
                padding: 6px 12px !important;
                font-size: 0.75rem !important;
            }

            /* Make top bar horizontal scrolling instead of wrapping awkwardly */
            .top-bar .right-side ul.menu {
                display: flex !important;
                flex-wrap: nowrap !important;
                overflow-x: auto;
                justify-content: flex-start !important;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 5px;
                scrollbar-width: none; /* Firefox */
            }
            .top-bar .right-side ul.menu::-webkit-scrollbar {
                display: none; /* Chrome, Safari, Edge */
            }
            .top-bar .right-side ul.menu li {
                white-space: nowrap;
            }
        }

        @media only screen and (max-width: 520px) {
            .social {
                display: none !important;
            }
        }

        @media only screen and (min-width: 521px) {
            .social {
                display: flex !important;
            }
        }

        /* ── Header Right Column ── */
        .header .col-sm-12.col-lg-8 {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-top: 10px;
            padding-bottom: 10px;
        }

        /* Contact Info Row */
        .header-contact-row {
            display: flex;
            flex-wrap: wrap;
            gap: 0 18px;
            align-items: center;
            margin-bottom: 14px;
            justify-content: end;
        }

        .header-contact-item {
            display: flex;
            align-items: center;
            gap: 7px;
            text-decoration: none;
            color: var(--primary);
            font-size: 0.88rem;
            transition: color 0.25s;
        }

        .header-contact-item i {
            color: var(--secondary);
            font-size: 1rem;
        }

        .header-contact-item:hover {
            color: var(--secondary);
            text-decoration: none;
        }

        /* Quick Links Buttons */
        .header-quicklinks {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: end;
        }

        .hql-btn {
            display: inline-block;
            padding: 7px 14px;
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--white);
            background-color: var(--primary);
            border: 2px solid var(--primary);
            border-radius: 4px;
            transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
            white-space: nowrap;
        }

        .hql-btn:hover {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: var(--primary);
            text-decoration: none;
            transform: translateY(-2px);
        }

        @media only screen and (max-width: 768px) {
            .header-contact-row,
            .header-quicklinks {
                justify-content: center;
            }
        }
        /* @media only screen and (min-width: 992px) {
            .logo_sec{
            margin-top: -54px;
        }
        } */

        /* ── Search Button ── */
        #hdr-search-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1rem;
            cursor: pointer;
            margin-left: 6px;
            padding: 4px;
            transition: color 0.2s;
            outline: none;
        }
        #hdr-search-btn:hover {
            color: var(--primary);
        }
        #search-overlay {
            position: fixed;
            inset: 0;
            background: rgba(12,26,54,0.97);
            z-index: 99999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 100px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        #search-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        #search-overlay-close {
            position: absolute;
            top: 24px;
            right: 32px;
            background: none;
            border: none;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            line-height: 1;
            opacity: 0.7;
            transition: opacity 0.2s, transform 0.2s;
        }
        #search-overlay-close:hover { opacity: 1; transform: rotate(90deg); }
        .sov-label {
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--secondary);
            margin-bottom: 18px;
        }
        #sov-form-wrap {
            width: 100%;
            max-width: 680px;
            position: relative;
        }
        #sov-form-wrap .search-field {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 2px solid rgba(255,255,255,0.3);
            color: var(--white);
            font-size: 2rem;
            padding: 10px 50px 10px 0;
            outline: none;
            transition: border-color 0.25s;
        }
        #sov-form-wrap .search-field::placeholder { color: rgba(255,255,255,0.35); }
        #sov-form-wrap .search-field:focus { border-bottom-color: var(--secondary); }
        #sov-form-wrap .search-submit {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: var(--secondary);
            font-size: 1.4rem;
            cursor: pointer;
        }
        #sov-results {
            width: 100%;
            max-width: 680px;
            margin-top: 18px;
        }
        .sov-result-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            text-decoration: none;
            transition: padding-left 0.2s;
        }
        .sov-result-item:hover { padding-left: 8px; }
        .sov-result-item .sri-type {
            font-size: 0.68rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--secondary);
            min-width: 68px;
        }
        .sov-result-item .sri-title {
            font-size: 0.95rem;
            color: var(--white);
            line-height: 1.3;
        }
        .sov-result-item:hover .sri-title { color: var(--secondary); }
        .sov-no-result {
            color: rgba(255,255,255,0.45);
            font-size: 0.9rem;
            margin-top: 14px;
            text-align: center;
        }

        /* ── Text Size Controls ── */
        .txt-size-controls {
            display: inline-flex;
            align-items: center;
            gap: 3px;
            margin-left: 10px;
            vertical-align: middle;
        }
        .txt-size-btn {
            background: transparent;
            border: 1.5px solid var(--primary);
            color: var(--primary);
            border-radius: 4px;
            cursor: pointer;
            font-weight: 700;
            line-height: 1;
            padding: 2px 7px;
            font-size: 0.82rem;
            transition: background 0.2s, color 0.2s, border-color 0.2s;
        }
        .txt-size-btn:hover {
            background: var(--primary);
            color: var(--secondary);
        }
        .txt-size-plus {
            font-size: 1rem;
        }
        .txt-size-reset {
            font-size: 0.75rem;
            border-color: #aaa;
            color: #555;
        }
        .txt-size-reset:hover {
            background: #aaa;
            color: var(--white);
            border-color: #aaa;
        }
        .left-side .menu{
            gap: 7px;
            align-items: center;
        }
         .marquee-item {
    display: inline-block;
    margin-right: 50px;
    text-decoration: none;
  }

  .marquee-item:hover .marquee-text {
    text-decoration: underline;
  }

  .marquee-badge {
    background-color: #ff3c00;
    color: #ffff00;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    margin-right: 8px;
    border: 1px solid #cc0000;
    vertical-align: middle;
  }

  .marquee-text {
    color: #333;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    vertical-align: middle;
  }
@media (min-width: 992px) {
    .banner-col {
        flex: 0 0 70%;
        max-width: 70%;
    }

    .events-col {
        flex: 0 0 30%;
        max-width: 30%;
    }
}
/* ── Leadership Section ─────────────────────────── */
  .leadership-section {
    background: linear-gradient(160deg, #0d1f3c 0%, #1c345a 55%, #0d1f3c 100%);
    padding: 70px 0 80px;
    position: relative;
    overflow: hidden;
  }

  .leadership-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(237, 169, 0, 0.07);
    pointer-events: none;
  }

  .leadership-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(237, 169, 0, 0.06);
    pointer-events: none;
  }

  /* Header */
  .leadership-header {
    text-align: center;
    margin-bottom: 52px;
  }

  .leadership-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 10px;
  }

  .leadership-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 18px;
    letter-spacing: 0.5px;
  }

  .leadership-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .leadership-divider span {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #eda900);
  }

  .leadership-divider span:last-child {
    background: linear-gradient(90deg, #eda900, transparent);
  }

  .leadership-diamond {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--secondary);
    transform: rotate(45deg);
    border-radius: 1px;
  }

  /* Card */
  .ldr-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(237, 169, 0, 0.22);
    border-radius: 16px;
    padding: 42px 28px 36px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
    margin-bottom: 20px;
  }

  .ldr-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
    border-color: rgba(237, 169, 0, 0.55);
  }

  /* Corner accents */
  .ldr-corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: var(--secondary);
    border-style: solid;
    border-radius: 3px;
  }

  .ldr-corner-tl {
    top: 12px;
    left: 12px;
    border-width: 2px 0 0 2px;
  }

  .ldr-corner-br {
    bottom: 12px;
    right: 12px;
    border-width: 0 2px 2px 0;
  }

  /* Photo rings */
  .ldr-photo-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .ldr-photo-outer {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    padding: 4px;
    background: conic-gradient(#eda900 0deg, #fff5cc 90deg, #eda900 180deg, #fff5cc 270deg, #eda900 360deg);
    /* animation: ldrSpin 12s linear infinite; */
  }

  .ldr-photo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #0d1f3c;
  }

  .ldr-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
  }

  @keyframes ldrSpin {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  /* Badge */
  .ldr-badge {
    display: inline-block;
    background: linear-gradient(135deg, #eda900, #c98800);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 18px;
    border-radius: 20px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(237, 169, 0, 0.35);
  }

  /* Info */
  .ldr-body {}

  .ldr-name {
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 6px;
    line-height: 1.3;
  }

  .ldr-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px;
    line-height: 1.5;
  }

  .ldr-sep {
    width: 40px;
    height: 2px;
    background: var(--secondary);
    margin: 0 auto 20px;
    border-radius: 2px;
  }

  .ldr-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--secondary);
    border: 1.5px solid var(--secondary);
    padding: 9px 24px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  }

  .ldr-btn:hover {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(237, 169, 0, 0.4);
    text-decoration: none;
  }

  .ldr-btn svg {
    transition: transform 0.2s;
  }

  .ldr-btn:hover svg {
    transform: translateX(4px);
  }

  @media (max-width: 576px) {
    .leadership-title {
      font-size: 1.65rem;
    }

    .ldr-photo-outer {
      width: 140px;
      height: 140px;
    }
  }

  .ldr-btn_2 {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 9px 24px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  }

  .ldr-btn_2:hover {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(237, 169, 0, 0.4);
    text-decoration: none;
  }

   .digital-actions-section {
    padding: 40px 0 30px;
    background: var(--white);
  }

  .digital-actions-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
  }

  .digital-actions-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .digital-action-card {
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    width: 148px;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, transform 0.2s;
    background: var(--white);
  }

  .digital-action-card:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
  }

  .digital-action-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 16px 10px 12px;
    width: 100%;
    height: 100%;
  }

  .digital-action-img-wrap {
    width: 80px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .digital-action-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .digital-action-label {
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.35;
  }

  @media (max-width: 576px) {
    .digital-action-card {
      width: 130px;
      min-height: 120px;
    }
  }
.sub-menu-toggle{
	display:none
}
.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
    /* color: #fff !important; */
    text-decoration: underline !important;
}
.dropdown-menu .active{
    text-decoration: underline !important;
}

/* Custom NAAC Menu Dropdown Styling */
.hql-menu-container {
    position: relative;
    display: inline-block;
}
.hql-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
/* Top level items look like hql-btn */
.hql-menu > li > a {
    display: inline-block;
    padding: 7px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background-color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 4px;
    transition: background-color 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
    white-space: nowrap;
    line-height: 1.5;
}
.hql-menu > li > a:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
    text-decoration: none;
    transform: translateY(-2px);
}
/* First level dropdown */
.hql-menu li {
    position: relative;
}
.hql-menu li ul.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 160px;
    box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.15);
    z-index: 99999;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.05);
}
.hql-menu li:hover > ul.sub-menu {
    display: block;
}
.hql-menu li ul.sub-menu li {
    position: relative;
}
.hql-menu li ul.sub-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom: 1px solid #f1f1f1;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}
.hql-menu li ul.sub-menu li:last-child > a {
    border-bottom: none;
}
.hql-menu li ul.sub-menu li a:hover {
    background-color: var(--secondary);
    color: var(--white);
}
/* Second level dropdown (Sub-submenu) */
.hql-menu li ul.sub-menu li ul.sub-menu {
    top: -5px;
    left: 100%;
    margin-left: 2px;
}


.hql-menu > li {
  margin-left: 5px;
  margin-bottom: 5px;
}
.hql-menu li li{
  margin-left:0px;
  text-align: left
}