html,
body {
    width: 100%
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .55);
    z-index: -1
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px
}

.text-slider {
    position: relative;
    width: 100%;
    max-width: 950px;
    min-height: 280px;
    padding: 20px;
}

.slide {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 100%;
    transform: translateY(-50%)rotate(-10deg);
    opacity: 0;
    transition: all 1s ease
}

.slide.active {
    left: 0;
    transform: translateY(-50%)rotate(0);
    opacity: 1
}

.slide.prev {
    left: -100%;
    transform: translateY(-50%)rotate(10deg);
    opacity: 0
}

.slide h1 {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, .4)
}

.slide p {
    color: #f5f5f5;
    font-size: 20px;
    line-height: 1.7;
    max-width: 720px;
    margin: auto
}

.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    background: #fff;
    color: #036;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: .4s ease
}

.hero-btn:hover {
    transform: translateY(-4px);
    background: #036;
    color: #fff
}

@media(max-width:1200px) {
    .slide h1 {
        font-size: 48px
    }
}

@media(max-width:992px) {
    .hero-banner {
        height: 90vh
    }

    .text-slider {
        min-height: 300px
    }

    .slide h1 {
        font-size: 42px
    }

    .slide p {
        font-size: 18px
    }
}

@media(max-width:768px) {
    .hero-banner {
        height: 85vh
    }

    .hero-content {
        padding: 15px
    }

    .text-slider {
        min-height: 320px;
        padding: 15px
    }

    .slide h1 {
        font-size: 30px;
        line-height: 1.35
    }

    .slide p {
        font-size: 15px;
        line-height: 1.6
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 14px;
        margin-top: 25px
    }
}

@media(max-width:480px) {
    .hero-banner {
        height: 80vh
    }

    .text-slider {
        min-height: 340px
    }

    .slide h1 {
        font-size: 24px;
        line-height: 1.4
    }

    .slide p {
        font-size: 14px;
        line-height: 1.5
    }

    .hero-btn {
        padding: 11px 24px;
        font-size: 13px
    }
}

.interactive-notice-board {
    padding: 100px 8%;
    background: #f8fafc
}

.container {
    max-width: 1400px;
    margin: auto
}

.section-header {
    text-align: center;
    margin-bottom: 60px
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #111827;
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #111827
}

.section-header p {
    color: #64748b;
    font-size: 16px
}

.notice-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 35px
}

.notice-preview {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: #fff;
    padding: 45px;
    border-radius: 30px;
    position: sticky;
    top: 30px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all .4s ease
}

.preview-badge {
    display: inline-block;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .15);
    margin-bottom: 25px;
    font-size: 13px;
    backdrop-filter: blur(10px)
}

.notice-preview h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 22px
}

.notice-preview p {
    color: rgba(255, 255, 255, .85);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 16px
}

.preview-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, .8)
}

.preview-btn {
    width: fit-content;
    padding: 14px 26px;
    border-radius: 14px;
    background: #fff;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    transition: .3s ease
}

.preview-btn:hover {
    transform: translateY(-3px)
}

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.notice-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    gap: 22px;
    cursor: pointer;
    transition: all .35s ease
}

.notice-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06)
}

.notice-item.active {
    border-color: #1e3a8a;
    background: #eff6ff
}

.notice-date {
    min-width: 75px;
    height: 75px;
    background: #111827;
    color: #fff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.notice-date span {
    font-size: 24px;
    font-weight: 700
}

.notice-date small {
    font-size: 11px;
    letter-spacing: 1px
}

.notice-content h4 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 8px
}

.notice-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px
}

@media(max-width:991px) {
    .notice-wrapper {
        grid-template-columns: 1fr
    }

    .notice-preview {
        position: relative;
        top: 0;
        min-height: auto
    }
}

@media(max-width:768px) {
    .interactive-notice-board {
        padding: 80px 5%
    }

    .section-header h2 {
        font-size: 32px
    }

    .notice-preview h2 {
        font-size: 28px
    }

    .notice-item {
        flex-direction: column
    }
}

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 620px;
    overflow-y: auto;
    padding-right: 8px
}

.notice-list::-webkit-scrollbar {
    width: 6px
}

.notice-list::-webkit-scrollbar-track {
    background: #e2e8f0;
    border-radius: 50px
}

.notice-list::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 50px
}

.notice-list::-webkit-scrollbar-thumb:hover {
    background: #64748b
}

.navbar {
    background: #fff;
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 9999
}

.navbar-nav>li {
    position: relative
}

.navbar-nav>li>a {
    color: #111827 !important;
    font-size: 15px;
    font-weight: 600;
    padding: 15px 10px !important;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.navbar-nav>li>a:hover {
    color: #2563eb !important;
    transform: translateY(-2px)
}

.navbar-nav>li>a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 14px;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: all .35s ease;
    transform: translateX(-50%)
}

.navbar-nav>li>a:hover::after,
.navbar-nav>.active>a::after {
    width: 70%
}

.navbar-nav>.active>a {
    background: transparent !important;
    color: #2563eb !important
}

.navbar-toggle {
    border: 0;
    margin-top: 18px;
    transition: .3s ease
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background: transparent
}

.navbar-toggle .icon-bar {
    background: #111827 !important;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    transition: all .4s ease
}

.navbar-toggle:hover {
    transform: rotate(90deg)
}

@media(max-width:991px) {
    .navbar {
        padding: 10px 15px
    }

    .navbar-collapse {
        border-top: none;
        box-shadow: none;
        background: #fff;
        border-radius: 20px;
        margin-top: 15px;
        padding: 10px;
        animation: mobileMenuFade .4s ease
    }

    .navbar-nav>li>a {
        padding: 16px 20px !important;
        border-radius: 14px;
        margin-bottom: 6px;
        transition: all .3s ease
    }

    .navbar-nav>li>a:hover {
        background: #eff6ff !important;
        color: #2563eb !important;
        padding-left: 28px !important
    }

    .navbar-nav>li>a::after {
        display: none
    }

    .navbar-nav>.active>a {
        background: #2563eb !important;
        color: #fff !important
    }
}

@keyframes mobileMenuFade {
    from {
        opacity: 0;
        transform: translateY(-15px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.top-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 2px solid #e8e8e8;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.header-logo img {
    height: 85px;
    width: auto;
    object-fit: contain;
    transition: .3s ease
}

.header-logo img:hover {
    transform: scale(1.06)
}

.header-title {
    flex: 1;
    text-align: center;
    padding: 0 20px
}

.header-title h1 {
    margin: 0;
    font-size: 34px;
    font-weight: 700;
    color: #036;
    letter-spacing: .5px
}

.header-title p {
    margin-top: 6px;
    font-size: 16px;
    color: #666
}

@media(max-width:768px) {
    .top-header {
        display: none
    }

    .header-container {
        flex-direction: column;
        gap: 10px
    }

    .college-logo,
    .university-logo {
        display: none
    }

    .header-title {
        padding: 0
    }

    .header-title h1 {
        font-size: 24px;
        line-height: 1.4
    }

    .header-title p {
        font-size: 14px
    }
}

.mobile-college-name {
    display: none
}

@media(max-width:768px) {
    .navbar-header {
        position: relative;
        min-height: 55px
    }

    .mobile-college-name {
        display: block;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        font-weight: 600;
        color: #036;
        width: 75%;
        line-height: 1.3
    }

    .navbar-toggle {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0
    }
}

.about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
    padding: 100px 0
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    background: #0d6efd;
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: pulse 2s infinite
}

.about-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #111
}

.about-title span {
    color: #0d6efd
}

.about-text {
    color: #555;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 20px
}

.director-card {
    position: relative;
    text-align: center
}

.image-wrapper {
    position: relative;
    display: inline-block
}

.director-img {
    width: 100%;
    max-width: 420px;
    border-radius: 25px;
    position: relative;
    z-index: 2;
    transition: .5s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15)
}

.image-wrapper:hover .director-img {
    transform: translateY(-10px)scale(1.03)
}

.glow-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(13, 110, 253, .2);
    border-radius: 50%;
    top: -30px;
    left: -30px;
    z-index: 1;
    filter: blur(20px);
    animation: floating 5s infinite ease-in-out
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px
}

.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    transition: .4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden
}

.feature-box i {
    font-size: 32px;
    color: #0d6efd;
    margin-bottom: 15px
}

.feature-box h5 {
    font-weight: 700;
    margin: 0
}

.feature-box:hover {
    transform: translateY(-10px);
    background: #0d6efd;
    color: #fff
}

.feature-box:hover i {
    color: #fff
}

.about-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 35px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s ease;
    position: relative;
    overflow: hidden
}

.about-btn:hover {
    background: #084298;
    transform: translateY(-4px);
    color: #fff
}

.shape {
    position: absolute;
    border-radius: 50%;
    z-index: 0
}

.shape1 {
    width: 200px;
    height: 200px;
    background: rgba(13, 110, 253, .08);
    top: 10%;
    right: -60px;
    animation: floating 7s infinite ease-in-out
}

.shape2 {
    width: 120px;
    height: 120px;
    background: rgba(13, 110, 253, .1);
    bottom: 10%;
    left: -40px;
    animation: floating 5s infinite ease-in-out
}

@keyframes floating {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(20px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, .5)
    }

    70% {
        box-shadow: 0 0 0 12px rgba(13, 110, 253, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0)
    }
}

.animate-left,
.animate-right {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease
}

.animate-left.show,
.animate-right.show {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:991px) {
    .about-title {
        font-size: 32px
    }

    .features-grid {
        grid-template-columns: 1fr
    }

    .director-img {
        max-width: 100%
    }
}

.custom-dropdown {
    position: relative
}

.custom-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 0 0 10px 10px;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .35s ease;
    z-index: 999
}

.custom-dropdown:hover .custom-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.custom-submenu li {
    list-style: none
}

.custom-submenu li a {
    display: inline-block;
    position: relative;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: .3s ease
}

.custom-submenu li a::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: 8px;
    width: 0;
    height: 2px;
    background: #036;
    transition: .35s ease
}

.custom-submenu li a:hover::after {
    width: calc(100% - 40px)
}

.custom-submenu li a:hover {
    color: #036
}

@media(max-width:768px) {
    .custom-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        background: #f8f8f8
    }

    .custom-dropdown.active .custom-submenu {
        display: block
    }

    .custom-submenu li a {
        display: block;
        padding: 12px 25px
    }

    .custom-submenu li a::after {
        left: 25px
    }

    .custom-submenu li a:hover::after {
        width: calc(100% - 50px)
    }
}

.gallery-section {
    padding: 80px 5%
}

.gallery-title {
    text-align: center;
    margin-bottom: 50px
}

.gallery-title h2 {
    font-size: 42px;
    color: #036;
    margin-bottom: 15px
}

.gallery-title p {
    color: #666;
    font-size: 17px
}

.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px
}

.filter-btn {
    padding: 12px 28px;
    border: 0;
    background: #fff;
    color: #036;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: .35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08)
}

.filter-btn:hover,
.filter-btn.active {
    background: #036;
    color: #fff;
    transform: translateY(-3px)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    height: 260px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08)
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease
}

.gallery-item:hover img {
    transform: scale(1.18)
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, .15));
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: .4s ease
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-content {
    transform: translateY(20px);
    transition: .4s ease
}

.gallery-item:hover .gallery-content {
    transform: translateY(0)
}

.gallery-content h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px
}

.gallery-content p {
    color: #f1f1f1;
    font-size: 14px
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: .4s ease
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    transform: scale(.8);
    transition: .4s ease
}

.gallery-lightbox.active img {
    transform: scale(1)
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer
}

@media(max-width:768px) {
    .gallery-title h2 {
        font-size: 32px
    }

    .gallery-grid {
        grid-template-columns: 1fr
    }

    .gallery-item {
        height: 240px
    }

    .gallery-content h3 {
        font-size: 20px
    }
}

.title {
    text-align: center;
    margin-bottom: 25px
}

.title h1 {
    font-size: 34px;
    color: #0d3b66;
    margin-bottom: 10px
}

.title p {
    color: #555
}

.table-wrapper {
    margin-bottom: 40px;
    overflow-x: auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08)
}

table {
    width: 100%;
    border-collapse: collapse
}

th {
    background: #0d3b66;
    color: #fff;
    padding: 18px;
    text-align: left;
    font-size: 16px
}

td {
    padding: 18px;
    border-bottom: 1px solid #eee
}

tr:hover {
    background: #f9fbff
}

.btn {
    border: 0;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: .3s;
    margin-right: 8px
}

.eligibility-btn {
    background: #1b98e0;
    color: #fff
}

.eligibility-btn:hover {
    background: #157ab5
}

.document-btn {
    background: #06a77d;
    color: #fff
}

.document-btn:hover {
    background: #048965
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px
}

.modal-content {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    animation: popup .3s ease;
    overflow-y: auto
}

@keyframes popup {
    from {
        transform: scale(.8);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.modal-header {
    background: #0d3b66;
    color: #fff;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.modal-header h2 {
    font-size: 24px
}

.close-btn {
    position: absolute;
    top: 0;
    right: 11px;
    font-size: 28px;
    cursor: pointer
}

.modal-body {
    padding: 30px
}

.language-selection {
    text-align: center;
    padding: 40px 20px
}

.language-selection h3 {
    margin-bottom: 25px;
    font-size: 24px
}

.language-btn {
    padding: 14px 30px;
    border: 0;
    border-radius: 10px;
    background: #0d3b66;
    color: #fff;
    cursor: pointer;
    margin: 10px;
    font-size: 16px;
    transition: .3s
}

.language-btn:hover {
    background: #14508a
}

.content-section {
    display: none
}

.content-section h3 {
    margin-bottom: 20px;
    color: #0d3b66
}

.content-section ul {
    padding-left: 20px
}

.content-section li {
    margin-bottom: 14px;
    line-height: 1.6
}

@media(max-width:768px) {
    body {
        padding: 15px
    }

    .title h1 {
        font-size: 26px
    }

    th,
    td {
        padding: 14px;
        font-size: 14px
    }

    .btn {
        width: 100%;
        margin-bottom: 10px
    }

    .modal-body {
        padding: 20px
    }
}