﻿body {
    font-family: 'Arial', sans-serif !important;
}
/**************************Default Page**************************/
:root {
    --bg: #dbdbdb;
    --card-bg: #fff;
    --shadow: 0 6px 14px rgba(0,0,0,0.12);
    --pad: 28px;
    --radius: 18px;
    --accent-1: #00b7b0; /* teal */
    --accent-2: #08b8e6; /* cyan */
    --accent-3: #f6b64a; /* yellow */
    --accent-4: #e94b4b; /* red */
    --muted: #9b9b9b;
}

a {
    text-decoration: none;
}

.rocket {
    filter: invert(19%) sepia(47%) saturate(2910%) hue-rotate(330deg) brightness(91%) contrast(95%);
}


.badge i {
    color: #982a33; /* sets all badge icons to this color */
    font-size: 28px; /* optional: make icons bigger */
}

.b-1 i {
    color: #982a33;
}
/* Startups */
.b-2 i {
    color: #982a33;
}
/* IIC */
.b-3 i {
    color: #982a33;
}
/* IPR */
.infographic {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: start;
    flex-wrap: wrap;
    margin-top: 40px;
}

h1 {
    font-size: 35px;
}

.step {
    position: relative;
    width: 435px;
    min-width: 250px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

    .step .back {
        position: absolute;
        inset: 0;
        background: var(--card-bg);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        z-index: 1;
    }

/* same border side (bottom-right shadow) */
.s1 .back::before,
.s2 .back::before,
.s3 .back::before,
.s4 .back::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    transform: translate(14px,14px);
    box-shadow: var(--shadow);
}

.s1 .back::before {
    background: #982a33;
}

.s2 .back::before {
    background: #982a33;
}

.s3 .back::before {
    background: #982a33;
}


.step .card {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: var(--pad);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.step h6 {
    margin: 0 0 6px 0;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 1px;
    font-size: 13px;
}

.title {
    margin: 4px 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: #666;
}

.subtitle {
    font-size: 12px;
    color: #b3b3b3;
    margin-bottom: 12px;
}

.desc {
    font-size: 12px;
    color: #9b9b9b;
    line-height: 1.4;
    max-width: 220px;
}

/* badge (always on top center) */
.badge {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 3;
    border: 5px solid transparent;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

    .badge svg {
        width: 30px;
        height: 30px;
        display: block;
    }

.b-1 {
    border-color: #cba156;
}

.b-2 {
    border-color: #cba156;
}

.b-3 {
    border-color: #cba156;
}


.b-1 svg path, .b-1 svg circle, .b-1 svg line {
    stroke: var(--accent-1);
    stroke-width: 2;
    fill: none;
}

.b-2 svg path, .b-2 svg circle, .b-2 svg line {
    stroke: var(--accent-2);
    stroke-width: 2;
    fill: none;
}

.b-3 svg path, .b-3 svg circle, .b-3 svg line {
    stroke: var(--accent-3);
    stroke-width: 2;
    fill: none;
}

.b-4 svg path, .b-4 svg circle, .b-4 svg line {
    stroke: var(--accent-4);
    stroke-width: 2;
    fill: none;
}

@media (max-width:1100px) {
    .wrap {
        padding: 30px 12px;
    }

    .infographic {
        gap: 28px;
    }
}

@media (max-width:760px) {
    .infographic {
        gap: 18px;
        justify-content: center;
    }

    .step {
        margin-top: 55px;
    }

    .badge {
        width: 62px;
        height: 62px;
        border-width: 9px;
    }

    h1 {
        font-size: 22px;
    }
}

@media (max-width:520px) {
    .step {
        width: auto !important;
        min-width: unset;
    }
}
/************************Default Page Complete******************************/
section {
    padding: 8px 0;
}

:root {
    --color-primary: #f8f9fa;
    --color-secondary: #007bff;
    --color-accent: #e9ecef;
    --color-text-dark: #343a40;
    --color-text-light: #fff;
    --sidebar-bg: #f0f2f5;
    --card-bg: #ffffff;
    --card-shadow: rgba(0, 0, 0, 0.08);
    --card-hover-shadow: rgba(0, 0, 0, 0.15);
    --icon-color: #555;
    --icon-hover-color: #fff;
}

.header {
    padding: 1rem 1.5rem;
    background-color: var(--color-primary);
    border-bottom: 1px solid var(--color-accent);
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #982a33;
}

.close-btn {
    color: var(--color-text-dark);
    font-size: 2rem;
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    z-index: 1001;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

.sidebar {
    background-color: var(--sidebar-bg);
    max-width: 355px;
    height: auto;
    padding: 1rem 1rem;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 1rem;
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 10px var(--card-shadow);
    text-decoration: none;
    color: var(--color-text-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 10px;
}

    .sidebar-nav a:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px var(--card-hover-shadow);
        color: #982a33;
    }

a:hover {
    color: #982a33 !important;
}

.sidebar-nav .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: var(--icon-color);
    margin-right: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 50px;
}

.sidebar-nav a:hover .icon {
    background-color: #982a33;
    color: var(--icon-hover-color);
}

.link-text {
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    #leftSidebarMenu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 280px;
        background-color: var(--sidebar-bg);
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1050; /* ✅ ensures it stays above content */
    }

        #leftSidebarMenu.show {
            transform: translateX(0);
        }

    .close-btn {
        display: block;
    }
}



/************************Section Head*********************************************/

:root {
    --primary-color: #004D99; /* DPU Blue */
    --secondary-color: #FFC107; /* Accent Yellow */
    --background-light: #f4f7f6;
    --text-dark: #333;
    --text-light: #fff;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-strong: rgba(0, 0, 0, 0.2);
}

.section-head h1 {
    text-align: center;
    color: #982a33;
    font-weight: 700;
    position: relative;
    margin: 0 0 10px 0;
    display: inline-block;
    font-size: 1.9em;
}

.fa-seedling,
.fa-brain,
.fa-users-gear {
    font-size: 30px;
}

header h1::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #cba156;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section {
    padding: 30px;
    background: var(--background-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.3s ease;
}


    .section h2 {
        color: #982a33;
        font-size: 1.6em;
        font-weight: 600;
        border-bottom: 2px solid #cba156;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

.section-head1 {
    color: #982a33;
    font-size: 1.6em;
    font-weight: 600;
    border-bottom: 2px solid #cba156;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.section p {
    margin-bottom: 15px;
    font-weight: 400;
    text-align: justify;
    color: #555;
}

.highlight-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    text-align: center;
}

.highlight-item {
    flex: 1;
    min-width: 150px;
    background: #cba156;
    color: var(--text-light);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .highlight-item:hover {
        background-color: #982a33;
        transform: scale(1.05);
    }

    .highlight-item i {
        font-size: 2.5em;
        margin-bottom: 10px;
    }

    .highlight-item h3 {
        margin: 0;
        font-size: 1.2em;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    header h1 {
        font-size: 2em;
    }

    .section h2 {
        font-size: 1.5em;
    }

    .highlight-box {
        flex-direction: column;
    }
}
/*****************USP Section ***************************/
#USP .section-header {
    margin-top: 20px;
}

    #USP .section-header h2 {
        font-size: 1.6em;
        font-weight: bold;
        color: #982a33;
        margin: 0;
        position: relative;
        display: inline-block;
        margin-bottom: 10px;
    }

    #USP .section-header h1::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: #cba156;
        border-radius: 2px;
    }



#USP .usp-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: transform 0.3s ease;
    margin-bottom: 15px;
    font-size: 18px;
}

    #USP .usp-item .icon-wrapper {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #cba156;
        color: var(--card-bg);
        font-size: 1.5em;
    }

    #USP .usp-item .content {
        flex-grow: 1;
    }

    #USP .usp-item h3 {
        font-size: 1.2em;
        font-weight: 600;
        color: #000;
        margin: 0 0 5px 0;
    }

    #USP .usp-item p {
        font-size: 0.95em;
        color: #555;
        margin: 0;
        text-align: justify;
    }

#USP .facilitator-section {
    background-color: var(--card-bg);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-light);
}

    #USP .facilitator-section h2 {
        font-size: 1.6em;
        font-weight: 700;
        color: #525151;
        margin-bottom: 25px;
    }

#USP .facilitator-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

    #USP .facilitator-list li {
        font-size: 1.1em;
        color: #982a33;
        padding: 12px 25px;
        border-radius: 5px;
        border: 1px solid #982a33;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

        #USP .facilitator-list li:hover {
            background-color: #cba156;
            color: #fff;
            border: 1px solid #cba156;
        }

@media (max-width: 768px) {
    #USP .usp-container {
        grid-template-columns: 1fr;
    }

    #USP .section-header h2 {
        font-size: 1.3em !important;
    }

    #USP .usp-item .icon-wrapper {
        width: 60px !important;
        height: 60px !important;
    }
}

@media(max-width:480px) {
    #USP .usp-item {
        display: block !important;
    }
}
/**********************Key Thrust Areas*************************************/

#KeyThrustAreas .card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}



#KeyThrustAreas .card-icon {
    font-size: 3.5rem;
    color: #982a33;
    margin-bottom: 1rem;
}

#KeyThrustAreas .accordion-item {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

#KeyThrustAreas .accordion-button1 {
    background-color: #f8f9fa;
    color: #212529;
    font-weight: 500;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    cursor: default;
}

.accordion-button1 {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

#KeyThrustAreas .accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #982a33;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

/*******************Eco System**************************/

.card {
    position: relative;
    border-left: 5px solid #982a33;
    border-top: 5px solid #982a33;
    border-radius: 15px;
    padding: 50px 20px 25px; /* extra top padding for icon overlap */
    text-align: center;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); /* added box shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: -40px; /* half inside, half outside */
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 8px 18px rgba(0,0,0,0.25); /* shadow for floating look */
    transition: transform 0.3s ease;
}

.card:hover .icon {
    transform: translateX(-50%) scale(1.1);
}

#ecosystem .owl-carousel .owl-item img {
    width: 50px !important;
}

#ecosystem .owl-carousel.owl-theme.owl-loaded.owl-drag {
    position: relative;
}

.owl-next {
    position: absolute;
    top: 50px;
    bottom: 0;
    right: 10px;
    margin: auto -20px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50px !important;
}

.owl-prev {
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 10px;
    margin: auto -20px !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50px !important;
}

.card h3 {
    font-size: 20px;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
}

.card p {
    font-size: 14px;
    color: #666;
}

/* Different border & icon gradient colors */
.border-left {
    border-color: #982a33;
    margin-top: 50px;
    width: 100%;
    min-height: 181px;
}

.owl-theme .owl-dots, .owl-theme .owl-nav {
}

.blue .icon {
    background: linear-gradient(135deg, #36d1dc, #5b86e5);
}

.green .icon {
    background: linear-gradient(135deg, #38ef7d, #11998e);
}

.orange .icon {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.red .icon {
    background: linear-gradient(135deg, #e73827, #f85032);
}

.purple .icon {
    background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

.pink .icon {
    background: linear-gradient(135deg, #ee0979, #ff6a00);
}
/***********************IIC Page**************************/


/* Global Styles */
:root {
    --light-bg: #f4f7f9;
    --card-bg: #ffffff;
    --dark-blue: #083769;
    --orange: #ff6f42;
    --border-radius-lg: 1rem;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --initiative-bg: #eaf3f7;
    --lightbulb-color: #ffd700;
    --plant-color: #4caf50;
    --book-color: #3f51b5;
}

/* Card Container */
/*.iic-container {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    max-width: 100%;
    padding: 2.5rem;
    box-sizing: border-box;
}*/

/* Header Section */
.iic-header {
    margin-bottom: 2rem;
}

    .iic-header h2 {
        font-size: 1.6rem;
        font-weight: 700;
        margin: 20px 0 0 0;
    }

    .iic-header p {
        font-size: 1.1rem;
        color: #000;
        margin: 0.5rem 0 0;
        font-weight: 600;
    }

/* Content Layout */
.iic-content {
    display: flex;
    flex-wrap: wrap;
}


/* Certificate Showcase */
.certificate-showcase {
    flex: 1 1 300px; /* Allows it to grow and shrink */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.certificate-box {
    position: relative;
    border: 2px solid #cba156;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

    .certificate-box img {
        max-width: 100%;
        height: auto;
        border-radius: 0.3rem;
        display: block;
    }

.recognized-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #982a33;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
}

.recognized-badge1 {
    background-color: #982a33;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    position: absolute;
    top: -11px;
    margin-bottom: 20px;
}

.initiatives-list {
    position: relative;
}

.certificate-showcase p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

/* Initiatives List */
.initiatives-list {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
}

.initiative-item {
    display: flex;
    align-items: center;
    background-color: #cccccc59;
    border: 1px solid #d1dce7;
    border-radius: 0.75rem;
    padding: 1.25rem 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 20px;
}


.item-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
}

.item-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .item-text h3 {
        font-size: 1rem;
        font-weight: 600;
        margin: 0 0 0.2rem;
        line-height: 1.3;
    }

    .item-text p {
        font-size: 0.85rem;
        color: #555;
        margin: 0;
    }

.arrow {
    font-size: 2rem;
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .iic-content {
        flex-direction: column;
    }

    .iic-header h1 {
        font-size: 1.8rem;
    }

    .iic-header p {
        font-size: 0.9rem;
    }

    .certificate-showcase {
        margin-bottom: 2rem;
    }

    .recognized-badge {
        right: 0px;
    }
}

/*******************************************/
:root {
    --primary-color: #3b5998;
    --secondary-color: #f0f2f5;
    --text-color: #333;
    --card-bg: #fff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

.sessions-container {
    max-width: 100%;
    margin: 0 auto;
}


.sub-heading {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.session-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}



.card-header {
    font-weight: 600;
    color: white;
    padding: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.expert {
    background-color: #982a33;
}


.card-content {
    padding: 20px;
    text-align: left;
    flex-grow: 1;
}

.expert-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 10px;
}

.expert-info {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

.event-date {
    font-size: 0.9rem;
    color: #777;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {


    .sessions-grid {
        grid-template-columns: 1fr;
    }
}
/****************************IPR Page***********************************/
/* Container for the document links */
.document-list-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between each link */
}

/* Individual link styling */
.single-document-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #ffffff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    text-decoration: none;
    color: #1a3c61;
    font-weight: 500;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

    /* Hover effect */
    .single-document-link:hover {
        background-color: #eaf1f7;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

    /* PDF label using pseudo-element */
    .single-document-link::after {
        content: 'PDF';
        font-size: 0.85rem;
        color: #607d8b;
        background-color: #e0e6ed;
        padding: 4px 8px;
        border-radius: 4px;
        font-weight: bold;
        margin-left: 15px;
    }




.summary-banner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 25px 40px;
    background-color: #982a33;
    color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.summary-icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
}



.summary-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.summary-value {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.summary-label {
    font-size: 1.2em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 576px) {
    .summary-banner {
        flex-direction: column;
        padding: 25px 20px;
        text-align: center;
        gap: 15px;
    }

    .summary-content {
        align-items: center;
    }

    .summary-value {
        font-size: 3em;
    }
}

.summary-banner.alt-style {
    background: linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d);
    background: -webkit-linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d);
    background: -moz-linear-gradient(90deg, #1a2a6c, #b21f1f, #fdbb2d);
}

    .summary-banner.alt-style .summary-icon-container {
        background-color: transparent;
    }

    .summary-banner.alt-style .summary-value,
    .summary-banner.alt-style .summary-label {
        color: #ffffff;
    }

:root {
    --primary-color: #004d99;
    --secondary-color: #6c757d;
    --background-color: #f8f9fa;
    --card-background: #ffffff;
    --border-color: #dee2e6;
    --text-color: #343a40;
    --patent-color: #007bff;
    --copyright-color: #28a745;
    --design-color: #fd7e14;
}


.ip-dashboard-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--card-background);
    border-radius: 12px;
}

.page-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.stats-display-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .stat-item-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .stat-item-card .icon-graphic {
        width: 80px;
        height: 80px;
        margin-bottom: 10px;
    }

    .stat-item-card .stat-heading {
        font-size: 1.2em;
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--text-color);
    }

    .stat-item-card .stat-figure {
        font-size: 2.5em;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .stat-item-card .data-breakdown-list {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
    }

    .stat-item-card .data-breakdown-list-item {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        font-size: 0.9em;
        color: var(--secondary-color);
        border-bottom: 1px solid var(--border-color);
    }

        .stat-item-card .data-breakdown-list-item:last-child {
            border-bottom: none;
        }

    .stat-item-card .data-label {
        font-weight: 700;
    }

    .stat-item-card .data-count {
        font-weight: 400;
        color: #000;
    }

    .stat-item-card.patent-type .stat-figure {
        color: #982a33;
    }

    .stat-item-card.copyright-type .stat-figure {
        color: #982a33;
    }

    .stat-item-card.design-type .stat-figure {
        color: #982a33;
    }




@media (max-width: 768px) {
    .page-title {
        font-size: 2em;
    }

    .ip-dashboard-wrapper {
        padding: 20px;
    }

    .stats-display-grid {
        grid-template-columns: 1fr;
    }
}


/*== Footer css start ==*/
.footer {
    background-color: #982a33;
    font-size: 14px;
    position: absolute;
    border: 0;
    bottom: 0;
    position: fixed;
    width: 100%;
}
/***********************Startup Page****************************/

.card-redesign {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 12px;
    background-color: #f7f9fc;
    border: 1px solid #e0e6ed;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.card-icon {
    flex-shrink: 0;
}

.card-content {
    flex-grow: 1;
}

.card-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
}

.card-subtitle {
    margin: 8px 0 0;
    font-size: 1rem;
    font-weight: 500;
    color: #4a5568;
}

@media (max-width: 600px) {
    .card-redesign {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}

.grantapproved {
    border-radius: 5px;
    background-color: #fff;
    padding: 5px;
}
/****************************Profile Page**********************************/
.split-card {
    display: flex;
    width: 95%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .split-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.split-left {
    background: linear-gradient(135deg, #982a33, #c94a54);
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

    .split-left img {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        border: 6px solid #fff;
        object-fit: cover;
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

.split-right {
    flex: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: #2b2b40;
    margin: 0 0 5px;
}

.profile-title {
    font-size: 1.1rem;
    color: #982a33;
    margin: 0 0 8px;
}

.profile-subtitle {
    font-size: 0.95rem;
    color: #444;
    margin: 0 0 3px;
}

.profile-org {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 18px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

    .contact-item i {
        color: #982a33;
        min-width: 20px;
    }

    .contact-item a {
        color: #2b2b40;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 15px;
    }

        .contact-item a:hover {
            color: #982a33;
        }

.extra-info {
    margin-top: 18px;
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
}

.pdf-btn {
    margin-top: 22px;
    align-self: flex-start;
    padding: 10px 18px;
    background: #982a33;
    color: #fff;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(152,42,51,0.3);
    transition: background 0.3s, transform 0.3s;
}

    .pdf-btn:hover {
        background: #fff;
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .split-card {
        flex-direction: column;
    }

    .split-left {
        padding: 30px;
    }

        .split-left img {
            width: 160px;
            height: 160px;
        }

    .split-right {
        padding: 25px;
    }

    .contact-info {
        display: block;
    }
}

.topcontainer {
    padding: 100px 0 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../images/breadcrumb.jpg');
    background-size: cover;
    position: relative;
}
