@charset "UTF-8";

/* =========================
   GLOBAL RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;

    background:
    linear-gradient(
     135deg,
    #F5F5F5
    );

    overflow-x:hidden;
    color:#222;
    position:relative;
}
/* =========================
   Navigation Section
========================= */
.navbar{
    background:#003366;
    overflow:hidden;
    max-width: 1300px;
    margin: 20px auto 30px auto;
    border-radius: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-weight: 500;
    
}

.navbar a,
.dropdown .dropbtn{

    float:none;
    font-size:16px;
    color:white;
    text-align:right;
    padding:14px 18px;
    text-decoration:none;
    border:none;
    background:none;
    cursor:pointer;
}

.navbar a:hover,
.dropdown:hover .dropbtn{
    background:#0056b3;
}

.dropdown{
    float:none;
    overflow:hidden;
}

.dropdown-content{

    display:none;
    position:absolute;
    background:#fff;
    min-width:220px;
    box-shadow:0 4px 8px rgba(0,0,0,0.2);
    z-index:999;
}

.dropdown-content a{

    float:none;
    color:#333;
    padding:12px 16px;
    text-decoration:none;
    display:block;
    text-align:left;
}

.dropdown-content a:hover{
    background:#f2f2f2;
}

.dropdown:hover .dropdown-content{
    display:block;
}

/* =========================
   HERO SECTION
========================= */

.hero-wrapper{
    width:100%;
    padding:10px;
    
}

.hero-container{
    width:100%;
    max-width:1300px;
    background:#ffffff;
    border-radius:30px;
    align-items: center;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    padding:40px 40px;
    text-align:center;
    margin: 30px auto;
   
}

.hero-title{
    font-size:clamp(24px,4vw,42px);
    font-weight:700;
    color:#002147;
    margin-bottom:10px;
}

.hero-tagline{
    font-size:clamp(14px,2vw,22px);
    color:#555;
    font-style:italic;
    margin-bottom:20px;
}

.hero-subtitle{
    font-size:clamp(18px,3vw,34px);
    color:#c8102e;
    font-weight:600;
    border-top:2px solid #eee;
    padding-top:15px;
}

/* =========================
   WHATS NEW
========================= */

.news-container{
    width:95%;
    max-width:1300px;
    margin:30px auto;
    display:flex;
    align-items:center;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.news-title{
    background:#003366;
    color:#fff;
    padding:15px 25px;
    font-size:22px;
    font-weight:600;
    white-space:nowrap;
}

.news-marquee-wrapper{
    flex:1;
    overflow:hidden;
    height:60px;
    display:flex;
    align-items:center;
    background:#fff;
}

.news-marquee-content{
    white-space:nowrap;
    padding-left:100%;
    animation:newsScroll 25s linear infinite;
}

.news-marquee-wrapper:hover .news-marquee-content{
    animation-play-state:paused;
}

.news-marquee-content a{
    text-decoration:none;
    color:#333;
    font-size:17px;
    margin-right:60px;
}

.news-marquee-content a:hover{
    color:#0056b3;
}

.news-badge{
    background:red;
    color:#fff;
    font-size:11px;
    padding:2px 6px;
    border-radius:10px;
    margin-left:5px;
}

@keyframes newsScroll{
    0%{transform:translateX(0);}
    100%{transform:translateX(-100%);}
}

/* =========================
   RESEARCH SECTION
========================= */

.research-section{
    width:95%;
    max-width:1300px;
    margin:40px auto;
    background:#fff;
    border-radius:18px;
    padding:40px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.research-title{
    text-align:center;
    color:#002147;
    font-size:32px;
    margin-bottom:20px;
}

.research-text{
    line-height:1.4;
    color:#444;
font-size: clamp(14px,4vw,16px);
    text-align:justify;
    margin-bottom:25px;
}

.research-carousel{
    position:relative;
    overflow:hidden;
    border-radius:14px;
}

.research-track{
    display:flex;
    transition:transform 0.5s ease;
}

.research-track img{
    width:100%;
    height:500px;
    object-fit:cover;
    flex-shrink:0;
}

.carousel-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    border:none;
    background:rgba(0,33,71,0.7);
    color:#fff;
    padding:10px 15px;
    cursor:pointer;
    border-radius:50%;
}

.prev-btn{left:10px;}
.next-btn{right:10px;}

/* =========================
   DEAN MESSAGE
========================= */

.dean-section{
   
  width:95%;
    max-width:1300px;
    margin:40px auto;
}

.dean-card{
    display:flex;
    flex-wrap:wrap;
    background:linear-gradient(135deg,#ffffff,#f7f9fc);
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    position:relative;
}

.dean-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:8px;
    height:100%;
    background:linear-gradient(to bottom,#002147,#c8102e);
}

.dean-image{
    flex:1 1 340px;
    background:linear-gradient(135deg,#f59e0b, #f97316);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 25px;
}

.dean-image img{
    width:100%;
    max-width:320px;
    border-radius:20px;
    object-fit:cover;
    border:5px solid rgba(255,255,255,0.2);
    box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.dean-content{
    flex:2 1 700px;
    padding:45px;
}

.dean-title{
    font-size:32px;
    color:#002147;
    margin-bottom:25px;
    font-weight:700;
    position:relative;
}

.dean-title::after{
    content:'';
    width:80px;
    height:4px;
    background:#c8102e;
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:10px;
}

.dean-quote{
    font-size:clamp(14px,4vw,16px);
    line-height:1.2;
    color:#444;
    margin-bottom:25px;
    text-align:justify;
}

.dean-content p{
    font-size: clamp(14px,4vw,16px);
    line-height:1.2;
    color:#444;
    margin-bottom:18px;
    text-align:justify;
}

.dean-content ul{
    font-size: clamp(14px,4vw,16px);
    padding-left:25px;
    margin-top:15px;

}

.dean-content li{
    margin-bottom:16px;
    line-height:1.2;
text-align:justify;
    color:#444;
font-size: clamp(14px,4vw,16px);
}

.dean-name{
    margin-top:35px;
    font-size:22px;
    color:#002147;
    font-weight:700;
}

.dean-designation{
    color:#c8102e;
    font-size:15px;
    margin-top:8px;
    font-weight:500;
    line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:768px){

    .dean-card{
        flex-direction:column;
    }

    .dean-content{
        padding:30px 22px;
    }

    .dean-title{
        font-size:30px;
    }

    .dean-image{
        padding:30px 20px;
    }

    .dean-image img{
        max-width:250px;
    }
}


/* =========================
   TEAM SECTION
========================= */

.team-section{
    width:95%;
    max-width:1200px;
    margin:50px auto;
    text-align:center;
}

.team-title{
    font-size:32px;
    color:#002147;
    margin-bottom:40px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.team-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    box-shadow:0 6px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.team-card:hover{
    transform:translateY(-8px);
}

.team-card img{
    width:220px;
    height:220px;
    object-fit:cover;
    border-radius:50%;
    border:4px solid #002147;
    margin-bottom:15px;
}

.team-card h3{
    color:#002147;
    margin-bottom:8px;
}

.team-card p{
    color:#666;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .news-container{
        flex-direction:column;
    }

    .news-title{
        width:100%;
        text-align:center;
    }

    .dean-card{
        flex-direction:column;
    }

    .research-track img{
        height:300px;
    }

    .team-card img{
        width:180px;
        height:180px;
    }
}

.srcMetricPro-wrapper{
    max-width:1250px;
    margin:50px auto;
    padding:20px;
    font-family:'Poppins',sans-serif;
}

.srcMetricPro-title{
    text-align:center;
    font-size:36px;
    font-weight:700;
    margin-bottom:35px;
    letter-spacing:0.5px;

    background:linear-gradient(
        135deg,
        #002147,
        #005792,
        #00A6A6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Grid Layout */

.srcMetricPro-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

/* Card */

.srcMetricPro-card{

    position:relative;
    overflow:hidden;

    background:rgba(255,255,255,0.95);

    backdrop-filter:blur(10px);

    border-radius:22px;

    padding:28px 22px;

    box-shadow:
        0 10px 25px rgba(0,33,71,0.08),
        0 4px 10px rgba(0,0,0,0.04);

    transition:all .4s ease;
}

/* Top Gradient Border */

.srcMetricPro-card::after{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:6px;

    background:linear-gradient(
        90deg,
        #002147,
        #005792,
        #00A6A6,
        #D4A017
    );
}

/* Shine Effect */

.srcMetricPro-card::before{

    content:'';

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    transform:skewX(-25deg);

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.7),
        transparent
    );

    transition:.8s;
}

.srcMetricPro-card:hover::before{
    left:150%;
}

.srcMetricPro-card:hover{

    transform:translateY(-10px);

    box-shadow:
        0 18px 35px rgba(0,33,71,0.15),
        0 8px 20px rgba(0,166,166,0.15);
}

/* Icon */

.srcMetricPro-icon{
    text-align:center;
    font-size:34px;
    margin-bottom:12px;
}

/* Metric Name */

.srcMetricPro-name{
    text-align:center;
    font-size:22px;
    font-weight:700;
    color:#002147;
    margin-bottom:22px;
}

/* Metric Rows */

.srcMetricPro-row{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 0;
}

.srcMetricPro-row:not(:last-child){
    border-bottom:1px solid #edf2f7;
}

.srcMetricPro-label{
    color:#5f6b7a;
    font-size:14px;
    font-weight:500;
}

.srcMetricPro-value{
    font-size:28px;
    font-weight:700;
}

/* Filed Count */

.srcMetricPro-row:first-of-type .srcMetricPro-value{
    color:#00A6A6;
}

/* Granted Count */

.srcMetricPro-row:last-of-type .srcMetricPro-value{
    color:#D4A017;
}

/* Loading / Error */

.srcMetricPro-message{
    grid-column:1/-1;
    text-align:center;
    padding:30px;
    color:#666;
    font-size:16px;
}

/* Tablet */

@media (min-width:769px) and (max-width:1024px){

    .srcMetricPro-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .srcMetricPro-title{
        font-size:30px;
    }
}

/* Mobile */

@media (max-width:768px){

    .srcMetricPro-wrapper{
        padding:12px;
    }

    .srcMetricPro-title{
        font-size:26px;
        margin-bottom:25px;
    }

    .srcMetricPro-grid{
        grid-template-columns:1fr;
        gap:18px;
    }

    .srcMetricPro-card{
        padding:22px 18px;
    }

    .srcMetricPro-name{
        font-size:20px;
    }

    .srcMetricPro-value{
        font-size:24px;
    }
}
/* ==============================
   DASHBOARD WRAPPER
============================== */

.iithProjDashWrapper{
    max-width:1400px;
    margin:40px auto;
    padding:25px;
    font-family:'Poppins',sans-serif;
    position:relative;
    overflow:hidden;
}

/* ==============================
   IIT HYDERABAD WATERMARK
============================== */

.iithProjDashWrapper::before{

    content:'';

    position:absolute;
    inset:0;

    background:
    url('https://upload.wikimedia.org/wikipedia/en/thumb/5/58/IIT_Hyderabad_logo.svg/512px-IIT_Hyderabad_logo.svg.png')
    center center no-repeat;

    background-size:500px;

    opacity:.10;

    animation:iithProjDashLogoFloat 20s ease-in-out infinite;

    pointer-events:none;

    z-index:0;
}

@keyframes iithProjDashLogoFloat{

    0%{
        transform:translateX(-25px);
    }

    25%{
        transform:translateX(25px)
                  translateY(-10px);
    }

    50%{
        transform:translateX(50px);
    }

    75%{
        transform:translateX(25px)
                  translateY(10px);
    }

    100%{
        transform:translateX(-25px);
    }
}

.iithProjDashWrapper > *{
    position:relative;
    z-index:2;
}

/* ==============================
   TITLE
============================== */

.iithProjDashTitle{

    text-align:center;

    font-size:38px;

    font-weight:700;

    margin-bottom:30px;

    background:
    linear-gradient(
        135deg,
        #002147,
        #005792,
        #00A6A6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ==============================
   KPI CARDS
============================== */

.iithProjDashKPI{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    margin-bottom:35px;
}

.iithProjDashCard{

    background:white;

    border-radius:20px;

    padding:25px;

    text-align:center;

    box-shadow:
    0 10px 25px rgba(0,33,71,.08);

    transition:.35s;

    animation:iithProjDashSlideUp .8s ease;
}

.iithProjDashCard:hover{

    transform:
    translateY(-10px)
    scale(1.02);

    box-shadow:
    0 15px 35px rgba(0,33,71,.15);
}

.iithProjDashCardTitle{

    font-size:15px;

    color:#666;

    margin-bottom:10px;
}

.iithProjDashCardValue{

    font-size:36px;

    font-weight:700;

    color:#002147;
}

@keyframes iithProjDashSlideUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ==============================
   TABLE
============================== */

.iithProjDashTableWrap{

    background:white;

    border-radius:20px;

    overflow:hidden;

    box-shadow:
    0 10px 25px rgba(0,33,71,.08);

    margin-bottom:35px;

    animation:iithProjDashSlideLeft 1s ease;
}

@keyframes iithProjDashSlideLeft{

    from{
        opacity:0;
        transform:translateX(-60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

.iithProjDashTable{

    width:100%;

    border-collapse:collapse;
}

.iithProjDashTable thead{

    background:
    linear-gradient(
        135deg,
        #002147,
        #005792
    );

    color:white;
}

.iithProjDashTable th{

    padding:16px;

    text-align:center;

    font-weight:600;
}

.iithProjDashTable td{

    padding:15px;

    text-align:center;
}

.iithProjDashTable tbody tr:nth-child(even){

    background:#f5f9fc;
}

.iithProjDashTable tbody tr:hover{

    background:#e8f4ff;
}

/* ==============================
   CHARTS
============================== */

.iithProjDashChartsRow{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;
}

.iithProjDashChartCard{

    background:white;

    border-radius:20px;

    padding:25px;

    box-shadow:
    0 10px 25px rgba(0,33,71,.08);

    animation:iithProjDashSlideRight 1s ease;
  display:flex;
    flex-direction:column;
    align-items:center;
}
.iithProjDashChartCard canvas{

    width:60% !important;

    max-width:300px;

    height:auto !important;
}

@keyframes iithProjDashSlideRight{

    from{
        opacity:0;
        transform:translateX(60px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }
}

.iithProjDashChartTitle{

    text-align:center;

    font-size:22px;

    font-weight:600;

    color:#002147;

    margin-bottom:10px;
}

/* ==============================
   RESPONSIVE
============================== */

@media(max-width:992px){

    .iithProjDashChartsRow{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .iithProjDashWrapper{
        padding:12px;
    }

    .iithProjDashTitle{
        font-size:28px;
    }

    .iithProjDashCardValue{
        font-size:28px;
    }

    .iithProjDashTableWrap{
        overflow-x:auto;
    }
}
*{
    margin:0;
    padding:0;
   
    font-family:'Segoe UI', sans-serif;
}


body{
    padding:40px 20px;
   
}

.container{
    max-width:1200px;
    margin:auto;
    background:#ffffff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    overflow:hidden;
}

.heading{
    background:linear-gradient(135deg,#123c6b,#1f5fa5);
    color:white;
    text-align:center;
    padding:28px;
    font-size:34px;
    font-weight:700;
    letter-spacing:0.5px;
}

.table-container{
    padding:25px;
}

table{
    width:100%;
    border-collapse:collapse;
}

thead{
    background:#1f5fa5;
    color:white;
}

th{
    padding:18px 15px;
    text-align:left;
    font-size:16px;
    font-weight:700;
}

td{
    padding:16px 15px;
    font-size:15px;
    color:#333;
    line-height:1.6;
}

tbody tr:nth-child(odd){
    background:#f4f8ff;
}

tbody tr:nth-child(even){
    background:#eaf1fb;
}

tbody tr:hover{
    background:#d9e9ff;
    transition:0.3s ease;
}

/* ==========================
   MOBILE RESPONSIVE DESIGN
   ========================== */

@media (max-width:768px){

    body{
        padding:10px;
    }

    .container{
        border-radius:12px;
    }

    .heading{
        font-size:22px;
        padding:18px;
    }

    .table-container{
        padding:12px;
    }

    table,
    thead,
    tbody,
    th,
    td,
    tr{
        display:block;
        width:100%;
    }

    thead{
        display:none;
    }

    tbody tr{
        background:#ffffff !important;
        margin-bottom:15px;
        border-radius:12px;
        box-shadow:0 4px 12px rgba(0,0,0,0.08);
        padding:10px;
        overflow:hidden;
    }

    td{
        border:none;
        position:relative;
        padding:10px 10px 10px 45%;
        text-align:left;
        font-size:14px;
        min-height:40px;
        word-break:break-word;
    }

    td::before{
        position:absolute;
        left:10px;
        top:10px;
        width:40%;
        font-weight:600;
        color:#1f5fa5;
    }

    td:nth-child(1)::before{
        content:"S.No.";
    }

    td:nth-child(2)::before{
        content:"Name";
    }

    td:nth-child(3)::before{
        content:"Department";
    }

    td:nth-child(4)::before{
        content:"Role";
    }
}
/* ==========================
   Contact Section
   ========================== */
.contact-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Heading */
.contact-section h2 {
    text-align: center;
    font-size: 28px;
    color: #002147;
    margin-bottom: 25px;
}

/* Contact Info */
.contact-info {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-info a {
    color: #c8102e;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Divider */
.divider {
    border-top: 1px solid #eee;
    margin: 30px 0;
}

/* Links Grid */
.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

/* Link Item */
.link-item {
    background: #f9fbff;
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #002147;
}

.link-item:hover {
    background: #eef3fb;
    transform: translateX(5px);
}

/* Link Style */
.link-item a {
    text-decoration: none;
    color: #002147;
    font-size: 14px;
    font-weight: 500;
}

.link-item a:hover {
    color: #c8102e;
}
