﻿/* ===================================== */
/* NOTICE PAGE */
/* ===================================== */

.notice-page {
    padding: 60px 0;
    background: #f4f7fb;
}

/* CONTAINER */

.notice-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* ===================================== */
/* SIDEBAR */
/* ===================================== */

.notice-sidebar {
    width: 32%;
}

.sidebar-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

/* TITLE */

.sidebar-title {
    padding: 25px;
    background: linear-gradient(135deg,#0c2e60,#1f3a63);
}

    .sidebar-title h2 {
        color: #fff;
        margin: 0;
        font-size: 28px;
        font-family: 'Playfair Display', serif;
    }

/* LIST */

.notice-list {
    padding: 20px;
    max-height: 850px;
    overflow-y: auto;
}

/* ITEM */

.notice-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 16px;
    margin-bottom: 15px;
    border-radius: 18px;
    text-decoration: none;
    background: #f8fafc;
    transition: 0.3s;
    border: 1px solid #edf2f7;
}

    /* HOVER */

    .notice-item:hover {
        transform: translateX(5px);
        background: #0c2e60;
    }

        .notice-item:hover h4,
        .notice-item:hover span {
            color: #fff;
        }

/* ACTIVE */

.active-notice {
    background: linear-gradient(135deg,#0c2e60,#1f3a63);
}

    .active-notice h4,
    .active-notice span {
        color: #fff !important;
    }

/* DATE */

.notice-date {
    width: 65px;
    height: 65px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.day {
    font-size: 24px;
    font-weight: 700;
    color: #0c2e60;
    line-height: 1;
}

.month {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}

/* CONTENT */

.notice-content {
    flex: 1;
}

    .notice-content h4 {
        font-size: 15px;
        color: #1e293b;
        line-height: 1.6;
        margin-bottom: 6px;
        transition: 0.3s;
        font-family: 'Poppins', sans-serif;
    }

    .notice-content span {
        color: #94a3b8;
        font-size: 12px;
        transition: 0.3s;
    }

/* ===================================== */
/* DETAILS */
/* ===================================== */

.notice-details {
    width: 68%;
}

.details-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

/* HEADER */

.details-header h1 {
    font-size: 42px;
    color: #0c2e60;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.details-meta {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 30px;
}

/* IMAGE */

.details-image img {
    width: 100%;
 
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 30px;
}

/* BODY */

.details-body {
    color: #475569;
    font-size: 16px;
    line-height: 2;
    font-family: 'Poppins', sans-serif;
}

    .details-body p {
        margin-bottom: 18px;
    }

/* ATTACHMENT */

.attachment-box {
    margin-top: 35px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 18px;
}

    .attachment-box h3 {
        margin-bottom: 15px;
        color: #0c2e60;
    }

.download-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #0c2e60;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    transition: 0.3s;
}

    .download-btn:hover {
        background: #4cd37a;
    }

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:768px) {

    .notice-container {
        flex-direction: column;
    }

    .notice-sidebar,
    .notice-details {
        width: 100%;
    }

    .details-card {
        padding: 22px;
    }

    .details-header h1 {
        font-size: 28px;
    }

    .notice-list {
        max-height: none;
    }
}
/* ===================================== */
/* GALLERY EXTRA CSS */
/* ===================================== */

/* THUMB */

.gallery-thumb {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

    .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* GRID */

.gallery-grid {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

/* ITEM */

.gallery-item {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
}

    .gallery-item:hover {
        transform: translateY(-8px);
    }

    /* IMAGE */

    .gallery-item img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: 0.5s;
        display: block;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

/* MOBILE */

@media(max-width:992px) {

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 220px;
    }

    .gallery-thumb {
        width: 60px;
        height: 60px;
    }
}

/* ===================================== */
/* LIGHTBOX */
/* ===================================== */

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 40px;
}

    /* ACTIVE */

    .gallery-lightbox.active {
        display: flex;
    }

    /* IMAGE */

    .gallery-lightbox img {
        max-width: 90%;
        max-height: 85vh;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    }

/* CLOSE */

.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    z-index: 10;
}

/* BUTTONS */

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
}

    .lightbox-btn:hover {
        background: #ffb400;
        color: #000;
    }

/* PREV */

.prev-btn {
    left: 30px;
}

/* NEXT */

.next-btn {
    right: 30px;
}

/* MOBILE */

@media(max-width:768px) {

    .gallery-lightbox {
        padding: 20px;
    }

        .gallery-lightbox img {
            max-width: 100%;
        }

    .lightbox-btn {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .prev-btn {
        left: 10px;
    }

    .next-btn {
        right: 10px;
    }

    .close-lightbox {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }
}
/* =========================
   VIDEO SECTION
========================= */

.video-section {
    padding: 90px 0;
    background: #f7f9fc;
}

.video-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: #062b57;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
}

/* =========================
   GRID
========================= */

.video-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

/* =========================
   CARD
========================= */

.video-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: 0.4s;
}

    .video-card:hover {
        transform: translateY(-10px);
    }

/* THUMB */

.video-thumb {
    position: relative;
    height: 240px;
    overflow: hidden;
}

    .video-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

.video-card:hover .video-thumb img {
    transform: scale(1.08);
}

/* PLAY BUTTON */

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 75px;
    height: 75px;
    background: rgba(255,180,0,0.95);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}

/* CONTENT */

.video-content {
    padding: 25px;
}

    .video-content h4 {
        font-size: 22px;
        color: #062b57;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .video-content p {
        font-size: 15px;
        color: #666;
        line-height: 1.7;
    }

/* =========================
   POPUP
========================= */

.video-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

    .video-popup.active {
        display: flex;
    }

/* WRAPPER */

.video-wrapper {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
}

    /* FRAME */

    .video-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 20px;
    }

/* CLOSE */

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px) {

    .video-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .video-section {
        padding: 60px 0;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .video-thumb {
        height: 220px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .close-btn {
        font-size: 40px;
        right: 20px;
    }
}
/* =====================================
   STICKY SIDEBAR
===================================== */

.notice-sidebar {
    width: 32%;
    position: sticky;
    top: 20px;
}

/* =====================================
   SCROLLABLE LIST
===================================== */

.notice-list {
    padding: 20px;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

    /* =====================================
   CUSTOM SCROLLBAR
===================================== */

    .notice-list::-webkit-scrollbar {
        width: 8px;
    }

    .notice-list::-webkit-scrollbar-track {
        background: #edf2f7;
        border-radius: 20px;
    }

    .notice-list::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg,#0c2e60,#1f3a63);
        border-radius: 20px;
    }

        .notice-list::-webkit-scrollbar-thumb:hover {
            background: #ffb400;
        }

/* =====================================
   ACTIVE ITEM AUTO FOCUS
===================================== */

.notice-item.active-notice {
    border: 2px solid #ffb400;
    transform: scale(1.02);
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px) {

    .notice-sidebar {
        position: relative;
        top: auto;
    }

    .notice-list {
        max-height: 450px;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8fafc;
}

/* HERO SECTION */
.founder-hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('images/about-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

    .founder-hero h1 {
        font-size: 64px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .founder-hero p {
        font-size: 18px;
        letter-spacing: 1px;
    }

/* MAIN SECTION */
.founder-section {
    padding: 90px 8%;
}

.founder-container {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* LEFT CARD */
.founder-card {
    width: 360px;
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 30px;
}

    .founder-card img {
        width: 100%;
        border-radius: 18px;
        margin-bottom: 22px;
        display: block;
    }

    .founder-card h2 {
        font-size: 32px;
        color: #1f2937;
        margin-bottom: 10px;
    }

    .founder-card span {
        color: #6b7280;
        font-size: 18px;
    }

/* RIGHT CONTENT */
.founder-content {
    flex: 1;
    min-width: 320px;
}

.small-title {
    color: #22c55e;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.founder-content h1 {
    font-size: 58px;
    color: #1f2937;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.designation {
    color: #6b7280;
    font-size: 20px;
    display: block;
    margin-bottom: 28px;
}

.line {
    width: 95px;
    height: 4px;
    background: #22c55e;
    border-radius: 10px;
    margin-bottom: 35px;
}

.founder-content p {
    font-size: 17px;
    line-height: 2;
    color: #4b5563;
    text-align: justify;
    margin-bottom: 28px;
}

.quote {
    background: #fff;
    border-left: 5px solid #22c55e;
    padding: 28px;
    border-radius: 14px;
    margin: 40px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-size: 19px;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
}

/* RESPONSIVE */
@media(max-width:991px) {

    .founder-container {
        flex-direction: column;
    }

    .founder-card {
        width: 100%;
        position: relative;
        top: 0;
    }

    .founder-content h1 {
        font-size: 42px;
    }

    .founder-hero h1 {
        font-size: 42px;
    }

    .founder-section {
        padding: 70px 6%;
    }
}

<style >

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f8fafc;
}

/* HERO SECTION */
.principal-hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('images/about-banner.jpg');
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

    .principal-hero h1 {
        font-size: 64px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .principal-hero p {
        font-size: 18px;
        letter-spacing: 1px;
    }

/* MAIN SECTION */
.principal-section {
    padding: 90px 8%;
}

.principal-container {
    display: flex;
    gap: 70px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* LEFT CARD */
.principal-card {
    width: 360px;
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: sticky;
    top: 30px;
}

    .principal-card img {
        width: 100%;
        border-radius: 18px;
        margin-bottom: 22px;
        display: block;
    }

    .principal-card h2 {
        font-size: 32px;
        color: #1f2937;
        margin-bottom: 10px;
    }

    .principal-card span {
        color: #6b7280;
        font-size: 18px;
    }

/* RIGHT CONTENT */
.principal-content {
    flex: 1;
    min-width: 320px;
}

.small-title {
    color: #2563eb;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.principal-content h1 {
    font-size: 58px;
    color: #1f2937;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.designation {
    color: #6b7280;
    font-size: 20px;
    display: block;
    margin-bottom: 28px;
}

.line {
    width: 95px;
    height: 4px;
    background: #2563eb;
    border-radius: 10px;
    margin-bottom: 35px;
}

.principal-content p {
    font-size: 17px;
    line-height: 2;
    color: #4b5563;
    text-align: justify;
    margin-bottom: 28px;
}

.quote {
    background: #fff;
    border-left: 5px solid #2563eb;
    padding: 28px;
    border-radius: 14px;
    margin: 40px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-size: 18px;
    line-height: 1.9;
    color: #374151;
    font-style: italic;
}

/* RESPONSIVE */
@media(max-width:991px) {

    .principal-container {
        flex-direction: column;
    }

    .principal-card {
        width: 100%;
        position: relative;
        top: 0;
    }

    .principal-content h1 {
        font-size: 42px;
    }

    .principal-hero h1 {
        font-size: 42px;
    }

    .principal-section {
        padding: 70px 6%;
    }
}

</style >