@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');
.card-heading img,
.card-icon{
    filter: brightness(0) saturate(100%) invert(24%) sepia(94%) saturate(2794%) hue-rotate(219deg) brightness(101%) contrast(102%);
}
/* ==========================
   GLOBAL
========================== */

.library-page,
.library-page *{
    font-family:'DM Sans',sans-serif;
    box-sizing:border-box;
}
.library-page{
    background-color: white;
}

.library-page .container{
    max-width:1460px;
    margin:0 auto;
    padding:0 15px;
}
.container { 
    background: none !important; padding: none !important; border-radius: none !important; box-shadow: none !important; }

/* ==========================
   HERO SECTION
========================== */

.library-banner{
    height:400px;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
}

.banner-overlay{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.45)
    );
}

.banner-title{
    color:#fff;
    font-size:52px;
    font-weight:800;
    margin-bottom:12px;
    line-height:1.2;
}

.banner-subtitle{
    color:rgba(255,255,255,.95);
    font-size: 18px !important;
    font-weight:400;
    margin:0;
}

/* ==========================
   OVERVIEW SECTION
========================== */

.overview-section{
    padding:70px 0;
}

.overview-heading{
    font-size:30px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
}

.overview-description{
    color:#64748b;
    font-size:17px !important;
    margin-bottom:35px;
}

.overview-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.overview-card{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:12px;
    padding:22px 24px;
    display:flex;
    align-items:center;
    gap:16px;
    transition:all .35s ease;
    cursor:pointer;
}

.overview-card:hover{
    transform:translateY(-5px);
    border-color:#0d6efd;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.card-icon{
    width:24px;
    height:24px;
    object-fit:contain;
    flex-shrink:0;
}

.card-content h6{
    margin:0;
    font-size:14px;
    font-weight:600;
    letter-spacing:.6px;
    text-transform:uppercase;
    color:#64748b;
}

.card-content h3{
    margin:6px 0;
    font-size:22px;
    font-weight:800;
    color:#0f172a;
    line-height:1.1;
}

.card-content span{
    font-size:14px;
    color:#64748b;
}

/* ==========================
   TIMING + USER GROUPS
========================== */

.library-info{
    padding:20px 0 80px;
}

.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.info-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-top:3px solid #0d6efd;
    border-radius:12px;
    padding:30px;
    transition:all .35s ease;
}

.info-card:hover{
    transform:translateY(-5px);
    box-shadow:0 14px 35px rgba(0,0,0,.08);
}

.card-heading{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.card-heading img{
    width:22px;
    height:22px;
    object-fit:contain;
}

.card-heading h3{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#0f172a;
}

.timing-text{
    font-size: 20px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
    line-height:1.3;
}

.info-card hr{
    border:none;
    border-top: 1px solid #245da8;
    margin:22px 0;
}

.info-card h4{
    font-size:17px;
    font-weight:600;
    color:#64748b;
    margin-bottom:12px;
}

.card-paragraph{
    color:#334155;
    line-height:1.8;
    font-size:16px;
}

.card-paragraph ul{
    margin:0;
    padding-left:18px;
}

.card-paragraph li{
    margin-bottom:10px;
}

.card-paragraph li::marker{
    color:#0d6efd;
}

/* ==========================
   SMOOTH EFFECTS
========================== */

.overview-card,
.info-card,
.banner-title,
.banner-subtitle{
    transition:all .3s ease;
}

/* ==========================
   MOBILE
========================== */

@media (max-width:991px){

    .banner-title{
        font-size:38px;
    }

    .banner-subtitle{
        font-size:16px;
    }

    .overview-cards{
        grid-template-columns:1fr;
    }

    .info-grid{
        grid-template-columns:1fr;
    }

    .timing-text{
        font-size:26px;
    }
}

@media (max-width:767px){

    .library-banner{
        height:300px;
    }

    .overview-section{
        padding:50px 0;
    }

    .overview-heading{
        font-size:26px;
    }

    .info-card{
        padding:22px;
    }
}

.library-services{
    background:#ffffff;
    position:relative;
    padding-bottom: 30px;
}

.services-header{
    margin-bottom:40px;
}

.services-main-heading{
    font-size:30px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:10px;
    font-family:'DM Sans',sans-serif;
}

.services-main-subheading{
    font-size:17px !important;
    color:#64748b;
    margin:0;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.service-card{
    background:#f5fbf7;
    border:1px solid #b9f0c7;
    border-radius:14px;
    padding:24px;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-color:#4ade80;
    background:#ffffff;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        #22c55e,
        #4ade80
    );
    transform:scaleX(0);
    transition:.35s;
}

.service-card:hover::before{
    transform:scaleX(1);
}

.service-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:20px;
}

.service-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.service-icon img{
    width:30px;
    height:30px;
    object-fit:contain;
}

.service-badge{
    background:#dcfce7;
    color:#15803d;
    font-size:13px;
    font-weight:700;
    padding:7px 14px;
    border-radius:8px;
}

.service-title{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
    line-height:1.3;
}

.service-description{
    font-size:17px !important;
    line-height:1.7;
    color:#64748b;
    margin:0;
}

/* Responsive */

@media(max-width:991px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-main-heading{
        font-size:32px;
    }

    .service-title{
        font-size:22px;
    }

}
/* ==================================
   PLAGIARISM & AI DETECTION
================================== */

.plagiarism-section{
    padding:80px 0;
    background:#fff;
}

.plagiarism-header{
    margin-bottom:35px;
}

.plagiarism-header h2{
    font-size:34px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:10px;
}

.plagiarism-header p{
    color:#64748b;
    font-size:17px !important;
}

.plagiarism-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:30px;
}

.plagiarism-left,
.plagiarism-right{
    background:#fff;
}

.plagiarism-left{
    border:1px solid #dbeafe;
    border-top:3px solid #2563eb;
    border-radius:12px;
    padding:25px;
}

.plagiarism-right{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.plagiarism-title{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:20px;
}

.plagiarism-title img{
    width:28px;
    height:28px;

        filter: brightness(0) saturate(100%)
            invert(27%) sepia(98%)
            saturate(2400%)
            hue-rotate(219deg)
            brightness(99%)
            contrast(101%);
}

.plagiarism-title h3{
    font-size:24px;
    font-weight:700;
    margin:0;
}

.plagiarism-description{
    color:#475569;
    line-height:1.8;
    margin-bottom:25px;
}

.feature-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.feature-item{
    display:flex;
    gap:15px;
    padding:15px;
    border-radius:10px;
    background:#f8fafc;
    transition:.3s;
}

.feature-item:hover{
    background:#eff6ff;
    transform:translateX(5px);
}

.feature-item img{
    width:22px;
    height:22px;
    margin-top:3px;
}

.feature-item h4{
    margin:0 0 6px;
    font-size:17px;
    font-weight:700;
}

.feature-item p{
    margin:0;
    color:#64748b;
    font-size:14px;
}

/* RIGHT SIDE */

.access-card,
.support-card{
    background:#fff;
    border:1px solid #dbeafe;
    border-top:3px solid #2563eb;
    border-radius:12px;
    padding:20px;
    transition:.3s;
}

.access-card:hover,
.support-card:hover{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.access-card h4,
.support-card h4{
    margin-bottom:15px;
    font-size:17px;
    font-weight:700;
}

.access-content,
.support-content{
    color:#475569;
    line-height:1.8;
}

.support-title{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
}

.support-title img{
    width:22px;
    height:22px;
}

.support-contact{
    margin-top:15px;
    padding-top:15px;
    border-top:1px solid #e2e8f0;
}

.support-contact a{
    display:block;
    color:#2563eb;
    text-decoration:none;
    margin-top:5px;
}
.contact-name{
    font-size: 17px;
    font-weight: 700;
}

.support-contact a:hover{
    text-decoration:underline;
}

/* Mobile */

@media(max-width:991px){

    .plagiarism-wrapper{
        grid-template-columns:1fr;
    }

}
/* CONTACT CARD */

.contact-card{
    background:#f8fbff;
    border:1px solid #dbeafe;
    border-top:3px solid #2563eb;
    border-radius:12px;
    padding:20px;
    margin-bottom:20px;
}

.contact-card-title{
    font-size:20px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.contact-label{
    display:block;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    color:#64748b;
    margin-bottom:8px;
}

.contact-mail{
    color:#2563eb;
    text-decoration:none;
    font-weight:600;
    word-break:break-word;
}

.contact-mail:hover{
    text-decoration:underline;
}

/* SUPPORT HEADER */

.support-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
}

.support-header img{
    width:22px;
    height:22px;
}
/* ===================================
   E-RESOURCES & DIGITAL ACCESS
=================================== */

.eresources-section{
    padding:70px 0;
    font-family:DM Sans,sans-serif;
}

.section-header{
    margin-bottom:25px;
}

.section-header h2{
    font-size:32px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:8px;
}

.section-header p{
    color:#64748b;
    font-size:17px !important;
}

.eresources-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.resource-card{
    background:#fff;
    border:1px solid #dbeafe;
    border-top:3px solid #2563eb;
    border-radius:8px;
    padding:22px;
    transition:.3s ease;
}

.resource-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(37,99,235,.08);
}

.resource-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
}

.resource-header img{
    width:22px;
    height:22px;
    object-fit:contain;
     
        filter: brightness(0) saturate(100%)
            invert(27%) sepia(98%)
            saturate(2400%)
            hue-rotate(219deg)
            brightness(99%)
            contrast(101%);
}

.resource-header h3{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#0f172a;
}

.resource-card h5{
    font-size:14px;
    font-weight:600;
    color:#334155;
    margin-bottom:10px;
}

.resource-description{
    color:#64748b;
    font-size:14px;
    line-height:1.8;
    margin-top: 10px;
}

.resource-btn{
    width: 100%;
    text-align: center;
    text-decoration: none;
    display:inline-block;
    margin-top:15px;
    padding:10px 18px;
    background:#2563eb;
    color:#fff;
    border-radius:4px;
    font-size:14px;
    font-weight:600;
}

.resource-btn:hover{
    background:#1d4ed8;
    text-decoration: none;
    color:#fff;
}

@media(max-width:768px){

    .eresources-grid{
        grid-template-columns:1fr;
    }

}

/* ===================================
   DATABASE COLLECTIONS
=================================== */

.database-section{
    padding-top:50px;
    font-family:DM Sans,sans-serif;
}

.database-header{
    margin-bottom:20px;
}

.database-header h2{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:0;
}

.database-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.database-card{
    background:#fff;
    border:1px solid #dbeafe;
    border-top:3px solid #2563eb;
    border-radius:6px;
    padding:18px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
    transition:all .3s ease;
    position:relative;
}

.database-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(37,99,235,.10);
    border-color:#bfdbfe;
}

.database-content{
    flex:1;
}

.database-content h4{
    margin:0 0 6px;
    font-size:15px;
    font-weight:700;
    color:#0f172a;
    font-family:DM Sans,sans-serif;
}

.database-content p{
    margin:0 0 8px;
    font-size:13px;
    color:#64748b;
    font-family:DM Sans,sans-serif;
}

.database-location{
    font-size:12px;
    color:#0891b2;
    line-height:1.6;
    font-family:DM Sans,sans-serif;
}

.database-location a{
    color:#0891b2;
    text-decoration:none;
}

.database-location a:hover{
    text-decoration:underline;
}

.database-badge{
    background:#eff6ff;
    color:#2563eb;
    border:1px solid #bfdbfe;
    padding:4px 10px;
    border-radius:4px;
    font-size:11px;
    font-weight:600;
    white-space:nowrap;
    font-family:DM Sans,sans-serif;
}

.database-card:hover .database-badge{
    background:#2563eb;
    color:#fff;
    border-color:#2563eb;
}

/* Mobile */

@media(max-width:768px){

    .database-grid{
        grid-template-columns:1fr;
    }

}

/* ===================================
   ACCESSMEDICINE SECTION
=================================== */

.accessmedicine-section{
    font-family:DM Sans,sans-serif;
}

.accessmedicine-card{
    background:#fff;
    border:1px solid #dbeafe;
    border-top:4px solid #2563eb;
    border-radius:10px;
    padding:32px;
    box-shadow:0 4px 20px rgba(15,23,42,.05);
    transition:.3s ease;
}

.accessmedicine-card:hover{
    box-shadow:0 12px 35px rgba(37,99,235,.10);
    transform:translateY(-3px);
}

/* Header */

.accessmedicine-header{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:20px;
}

.accessmedicine-header img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.accessmedicine-header h3{
    margin:0;
    color:#0f172a;
    font-size:24px;
    font-weight:700;
    line-height:1.3;
    font-family:DM Sans,sans-serif;
}

.accessmedicine-subheading{
    margin-top:24px;
    font-size:15px;
    font-weight:600;
    font-family:DM Sans,sans-serif;
}

/* Description */

.accessmedicine-description{
    color:#475569;
    line-height:1.9;
    font-size:15px;
    margin-bottom:18px;
    font-family:DM Sans,sans-serif;
}

/* Main Content */

.accessmedicine-content{
    color:#334155;
    line-height:1.9;
    font-size:15px;
    font-family:DM Sans,sans-serif;
}

.accessmedicine-content ul{
    margin:18px 0;
    padding-left:22px;
}

.accessmedicine-content li{
    margin-bottom:10px;
}

.accessmedicine-content strong{
    color:#0f172a;
}

/* Button */

.accessmedicine-btn-wrap{
    margin-top:25px;
}

.accessmedicine-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 24px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    transition:.3s ease;
    text-decoration: none;
    width: 100%;
}

.accessmedicine-btn:hover{
    background:#1d4ed8;
    color:#fff;
    transform:translateY(-2px);
    text-decoration: none;
    width: 100%;
}

/* Footer Box */

.accessmedicine-footer{
    margin-top:30px;
    background:#eff6ff;
    border:1px solid #bfdbfe;
    border-left:4px solid #2563eb;
    border-radius:8px;
    padding:20px;
}
.accessmedicine-footer p{
    margin: 0;
}
.accessmedicine-footer h4{
    margin:0 0 10px;
    color:#1e40af;
    font-size:17px;
    font-weight:700;
    font-family:DM Sans,sans-serif;
}

.footer-content{
    color:#475569;
    line-height:1.8;
    font-size:14px;
    font-family:DM Sans,sans-serif;
}

.footer-content p:last-child{
    margin-bottom:0;
}

/* Mobile */

@media(max-width:768px){

    .accessmedicine-card{
        padding:22px;
    }

    .accessmedicine-header{
        flex-direction:column;
        gap:10px;
    }

    .accessmedicine-header h3{
        font-size:22px;
    }

    .accessmedicine-btn{
        width:100%;
    }

}

/* ===================================
   OPAC SECTION
=================================== */

.opac-section{
    padding:60px 0;
    font-family:DM Sans,sans-serif;
}

.opac-header{
    margin-bottom:30px;
}

.opac-header h2{
    font-size:30px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:10px;
    line-height:1.3;
}

.opac-header p{
    font-size:18px !important;
    color:#64748b;
    line-height:1.8;
    max-width:850px;
}

/* Main Card */

.opac-card{
    padding: 60px 0;
    align-items: center;
    display: flex;
    flex-direction: column;
    background:#ffffff;
    border:1px solid #dbeafe;
    border-top:4px solid #2563eb;
    border-radius:10px;
    transition:all .3s ease;
}

.opac-card:hover{
    box-shadow:0 10px 25px rgba(37,99,235,.08);
}

/* Header */

.opac-card-header{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:15px;
    margin-bottom:20px;
}

.opac-card-header img{
    width:42px;
    height:42px;
    object-fit:contain;

    filter:
    brightness(0)
    saturate(100%)
    invert(29%)
    sepia(96%)
    saturate(2710%)
    hue-rotate(218deg)
    brightness(98%)
    contrast(96%);
}

.opac-card-header h3{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#0f172a;
    line-height:1.4;
}

.opac-short-desc{
    margin-top:10px;
    font-size:14px;
    font-weight:600;
}

/* Content */

.opac-description{
    text-align: center;
    color:#475569;
    font-size:15px;
    line-height:1.9;
    margin-bottom:25px;
}

.opac-description p:last-child{
    margin-bottom:0;
}


/* Button */

.opac-btn{
    text-align: center;
    display:inline-block;
    padding:12px 24px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    transition:all .3s ease;
    border:none;
}

.opac-btn:hover{
    background:#1d4ed8;
    color:#fff;
    text-decoration:none;
}

/* Mobile */

@media (max-width:768px){

    .opac-section{
        padding:40px 0;
    }

    .opac-card{
        padding:20px;
    }

    .opac-card-header{
        flex-direction:column;
        gap:10px;
    }

    .opac-header h2{
        font-size:26px;
    }

    .opac-card-header h3{
        font-size:20px;
    }

    .opac-btn{
        width:100%;
        text-align:center;
    }
}

/* ===================================
   NEWSPAPER COLLECTION
=================================== */

.newspaper-wrapper{
    margin-top: 30px;
    display: flex;
    gap: 30px;
    flex-direction: row;
    justify-content: space-between;
}

.newspaper-section{
    padding:50px 0 60px;
    font-family:DM Sans,sans-serif;
    border-top:1px solid #e5e7eb;
}

.newspaper-header{
    margin-bottom:20px;
}

.newspaper-header h2{
    font-size:22px;
    font-weight:700;
    color:#111827;
    margin:0 0 4px;
    line-height:1.3;
}

.newspaper-header p{
    margin:0;
    font-size:13px;
    color:#6b7280;
    line-height:1.5;
}

.section-subtitle{
font-size: 17px;
}

/* Grid */

.newspaper-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

/* Card */

.newspaper-card{
    background: #fff;
    border: 1px solid #d1d5db;
    border-top: 3px solid #2563eb;
    padding: 35px 20px;
    border-radius: 10px;
    width: 50%;
}

.newspaper-card h3{
    font-size:17px;
    font-weight:700;
    color:#111827;
    margin:0 0 18px;
    line-height:1.4;
}

/* Content */

.newspaper-content{
    font-size:13px;
    color:#374151;
}

.newspaper-content ul{
    margin:0;
    padding:0;
    list-style:none;
}

.newspaper-content li{
    position:relative;
    padding-left:18px;
    margin-bottom:12px;
    line-height:1.5;
}

/* Small newspaper icon style */

.newspaper-content li:before{
    content:"📰";
    position:absolute;
    left:0;
    top:1px;
    font-size:11px;
    opacity:.65;
}

.newspaper-content p{
    margin:0 0 10px;
}

/* Mobile */

@media(max-width:768px){

    .newspaper-grid{
        grid-template-columns:1fr;
    }

    .newspaper-card{
        min-height:auto;
    }

}


/* ===================================
   ICT INFRASTRUCTURE
=================================== */

.ict-section{
    padding:55px 0;
    font-family:DM Sans,sans-serif;
    border-top:1px solid #e5e7eb;
}

.ict-header{
    margin-bottom:20px;
}

.ict-header h2{
    font-size:30px;
    font-weight:700;
    color:#111827;
}

.ict-header p{
    margin:0;
    font-size: 17px !important;
    color:#6b7280;
}

/* Feature Box */

.ict-feature-box{
    border-radius: 10px;
    background:#fff;
    border:1px solid #d1d5db;
    border-top:3px solid #2563eb;
    padding:18px 20px;
}

.ict-feature-box h3{
    font-size:17px;
    font-weight:700;
    color:#111827;
}

.ict-feature-content{
    font-size:13px;
    color:#374151;
}

.ict-feature-content ul{
    margin:0;
    padding-left:18px;
}

.ict-feature-content li{
    margin-bottom:6px;
    line-height:1.6;
}

.ict-feature-content li::marker{
    color:#2563eb;
}

/* Mobile */

@media(max-width:768px){

    .ict-stats-grid{
        grid-template-columns:1fr;
    }

}

/* ===================================
   FUTURE DEVELOPMENT ROADMAP
=================================== */

.roadmap-section{
    padding:55px 0;
    font-family:DM Sans,sans-serif;
    border-top:1px solid #e5e7eb;
}

.roadmap-header{
    margin-bottom:22px;
}

.roadmap-header h2{
    margin:0 0 4px;
    font-size:30px !important;
    font-weight:700;
    color:#111827;
}

.roadmap-header p{
    margin:0;
    font-size: 17px !important;
    color:#6b7280;
}

/* Grid */

.roadmap-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

/* Card */

.roadmap-card{
    border-radius: 10px;
    background:#fff;
    border:1px solid #d1d5db;
    border-top:3px solid #2563eb;
    padding:18px;
    transition:.3s ease;
}

.roadmap-card:hover{
    box-shadow:0 6px 18px rgba(37,99,235,.08);
    transform:translateY(-2px);
}

.roadmap-card-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
}

.roadmap-card-header img{
    width:16px;
    height:16px;
    object-fit:contain;

    filter:
    brightness(0)
    saturate(100%)
    invert(29%)
    sepia(96%)
    saturate(2710%)
    hue-rotate(218deg)
    brightness(98%)
    contrast(96%);
}

.roadmap-card-header h3{
    margin:0;
    font-size:15px;
    font-weight:700;
    color:#111827;
    line-height:1.4;
}

/* Description */

.roadmap-description{
    margin:0 0 18px;
    font-size:13px;
    color: #484e58;
    line-height:1.7;
}

/* Footer */

.roadmap-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-top:12px;
    border-top:1px solid #e5e7eb;
}

.roadmap-timeline{
    font-size: 12px;
    color: #1e1f22;
    font-weight: 500;
}

.roadmap-badge{
    background:#eef2ff;
    color:#2563eb;
    font-size:13px;
    font-weight:600;
    padding:4px 8px;
    border-radius:4px;
}

/* Mobile */

@media(max-width:768px){

    .roadmap-grid{
        grid-template-columns:1fr;
    }

}

/* ===================================
   STAFF DIRECTORY
=================================== */

.staff-section{
    padding:55px 0;
    font-family:DM Sans,sans-serif;
    border-top:1px solid #e5e7eb;
}

.staff-header{
    margin-bottom:22px;
}

.staff-header h2{
    margin:0 0 4px;
    font-size:30px;
    font-weight:700;
    color:#111827;
}

.staff-header p{
    margin:0;
    font-size: 17px !important;
    color:#6b7280;
}

/* Grid */

.staff-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
}

/* Card */

.staff-card{
    background:#fff;
    border:1px solid #d1d5db;
    border-top:3px solid #2563eb;
    padding:18px;
    transition:.3s ease;
    border-radius: 10px;
}

.staff-card:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 18px rgba(37,99,235,.08);
}

/* Top */

.staff-top{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:14px;
}

.staff-top img{
    width:16px;
    height:16px;
    margin-top:3px;
    object-fit:contain;

    filter:
    brightness(0)
    saturate(100%)
    invert(29%)
    sepia(96%)
    saturate(2710%)
    hue-rotate(218deg)
    brightness(98%)
    contrast(96%);
}

.staff-top h3{
    margin:0;
    font-size:16px;
    font-weight:700;
    color:#111827;
    line-height:1.5;
}

.staff-designation{
    font-size: 14px;
    color: #696969;
    line-height: 1.7;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Description */

.staff-description{
    font-weight: 600;
    font-size: 13px;
    color: #000000;
    line-height:1.7;
    margin-bottom:14px;
    padding-bottom:14px;
    border-bottom:1px solid #e5e7eb;
}

/* Email */

.staff-email a{
    font-weight: 700;
    font-size:12px;
    color:#2563eb;
    text-decoration:none;
    word-break:break-word;
}

.staff-email a:hover{
    text-decoration:underline;
}

/* Mobile */

@media(max-width:991px){

    .staff-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .staff-grid{
        grid-template-columns:1fr;
    }

}

/* ===================================
   GET IN TOUCH
=================================== */

.get-touch-section{
    padding:60px 0;
    font-family:DM Sans,sans-serif;
}

.get-touch-header{
    margin-bottom:30px;
}

.get-touch-header h2{
    font-size:30px;
    font-weight:700;
    color:#0f172a;
    margin:0 0 8px;
    font-family:DM Sans,sans-serif;
}

.get-touch-header p{
    font-size: 17px !important;
    color:#64748b;
    margin:0;
    font-family:DM Sans,sans-serif;
}

.get-touch-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.touch-card{
    background:#fff;
    border:1px solid #dbe3ee;
    border-top:3px solid #2563eb;
    border-radius:8px;
    padding: 22px 26px;
    min-height:120px;

    transition:all .3s ease;
    box-shadow:0 2px 8px rgba(0,0,0,.04);
}

.touch-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 28px rgba(37,99,235,.12);
}

.touch-card h3{
    font-size: 20px;
    font-weight:700;
    color:#0f172a;
    line-height:1.2;
    font-family:DM Sans,sans-serif;
}

.touch-content{
    font-size:16px;
    line-height:1.7;
    color:#64748b;
    font-family:DM Sans,sans-serif;
}

.touch-link{
    color:#2563eb;
    text-decoration:none;
    font-size:16px;
    line-height:1.7;
    word-break:break-word;
    transition:.3s;
    font-family:DM Sans,sans-serif;
}

.touch-link:hover{
    color:#1d4ed8;
    text-decoration:underline;
}

/* Responsive */

@media(max-width:991px){

    .get-touch-grid{
        grid-template-columns:1fr;
    }

    .touch-card{
        min-height:auto;
    }

}

@media(max-width:768px){

    .get-touch-header h2{
        font-size:30px;
    }

    .touch-card h3{
        font-size:22px;
    }

}