body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7faff;
    color: #222;
}
header {
    background: #003366;
    padding: 0;
}
.navbar {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #003366;
}
.navbar li {
    margin: 0 20px;
}
.navbar a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 20px 0;
    transition: color 0.2s;
}
.navbar a.active, .navbar a:hover {
    color: #00bfff;
    border-bottom: 3px solid #00bfff;
}
main {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 40px 32px;
}
h1, h2, h3 {
    color: #003366;
    margin-top: 0;
}
.home-images {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    justify-content: center;
}
.home-images img {
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #e0e7ef;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
ul {
    padding-left: 20px;
}
.activities-box {
    background: #eaf3fb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 51, 102, 0.07);
    padding: 28px 24px;
    margin-top: 18px;
    margin-bottom: 18px;
}
.activities-list {
    list-style: none;
    padding-left: 0;
}
.activities-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.6;
}
.activities-list li::before {
    content: "\2022";
    color: #00bfff;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.1;
}
#activities h2 {
    margin-bottom: 10px;
    color: #00509e;
}
@media (max-width: 700px) {
    main {
        padding: 20px 8px;
    }
    .navbar li {
        margin: 0 8px;
    }
    .home-images {
        flex-direction: column;
        align-items: center;
    }
    .home-images img {
        width: 90vw;
        max-width: 300px;
        height: 120px;
    }
    .activities-box {
        padding: 14px 6px;
    }
    .activities-list li {
        padding-left: 22px;
        font-size: 0.98rem;
    }
}
.dropdown {
    position: relative;
}
.dropbtn {
    cursor: pointer;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    z-index: 1;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    top: 100%;
    left: 0;
}
.dropdown-content a {
    color: #003366;
    padding: 14px 18px;
    text-decoration: none;
    display: block;
    font-weight: 500;
    background: #fff;
    transition: background 0.2s, color 0.2s;
}
.dropdown-content a:hover {
    background: #eaf3fb;
    color: #00bfff;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover > .dropbtn,
.dropdown:focus-within > .dropbtn {
    color: #00bfff;
    border-bottom: 3px solid #00bfff;
}
@media (max-width: 700px) {
    .dropdown-content {
        min-width: 140px;
    }
    .dropdown-content a {
        padding: 10px 12px;
    }
}
.mv-section {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-bottom: 24px;
}
.mv-card {
    flex: 1 1 320px;
    background: #f0f7ff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,80,160,0.07);
    padding: 28px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 260px;
    position: relative;
}
.mv-card .mv-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #00bfff;
}
.mv-card h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #00509e;
    font-size: 1.4rem;
}
.mv-card p {
    margin: 0;
    color: #222;
    font-size: 1.05rem;
    line-height: 1.7;
}
@media (max-width: 700px) {
    .mv-section {
        flex-direction: column;
        gap: 16px;
    }
    .mv-card {
        padding: 16px 10px 12px 10px;
    }
}
.division-table {
    margin-top: 24px;
}
.division-table h3 {
    margin-top: 32px;
    margin-bottom: 12px;
    color: #003366;
    font-size: 1.18rem;
    font-weight: 600;
}
.table-responsive {
    overflow-x: auto;
    background: #f8fbff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,80,160,0.06);
    margin-bottom: 28px;
    padding: 18px 12px 8px 12px;
}
.table-responsive table {
    width: 100%;
    border-collapse: collapse;
    min-width: 400px;
    background: transparent;
}
.table-responsive th, .table-responsive td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #e0e7ef;
    font-size: 1rem;
}
.table-responsive th {
    background: #eaf3fb;
    color: #003366;
    font-weight: 700;
}
.table-responsive tr:nth-child(even) {
    background: #f0f7ff;
}
.table-responsive tr:hover {
    background: #e0f3ff;
    transition: background 0.2s;
}
@media (max-width: 700px) {
    .table-responsive {
        padding: 8px 2px 4px 2px;
    }
    .table-responsive table {
        min-width: 320px;
        font-size: 0.95rem;
    }
    .division-table h3 {
        font-size: 1.05rem;
    }
}
.home-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background: url('india-energy-bg.jpg') center/cover no-repeat;
}
.home-bg-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,51,102,0.7), rgba(0,51,102,0.5));
    z-index: 1;
    width: 100%;
    height: 100%;
}
.home-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.92);
    border-radius: 16px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    padding: 48px 36px 36px 36px;
    text-align: left;
}
.home-content h1 {
    color: #003366;
    font-size: 2.2rem;
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}
.home-intro {
    font-size: 1.15rem;
    color: #00509e;
    margin-bottom: 24px;
    font-weight: 500;
}
.home-section {
    margin-bottom: 32px;
    background: #f0f7ff;
    border-radius: 10px;
    padding: 24px 18px 18px 18px;
    box-shadow: 0 2px 8px rgba(0,80,160,0.06);
}
.home-section h2 {
    color: #0077b6;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 700;
}
.mou-list {
    margin: 16px 0 16px 0;
    padding-left: 22px;
}
.mou-list li {
    margin-bottom: 8px;
    font-size: 1.05rem;
    color: #003366;
    position: relative;
    padding-left: 22px;
}
.mou-list li::before {
    content: "\1F4DD";
    position: absolute;
    left: 0;
    color: #00bfff;
    font-size: 1.1em;
}
@media (max-width: 700px) {
    .home-content {
        padding: 18px 4vw 12px 4vw;
    }
    .home-section {
        padding: 12px 4px 10px 4px;
    }
    .home-hero {
        min-height: 80vh;
    }
    .home-content h1 {
        font-size: 1.3rem;
    }
}
.counters-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
    margin-top: 8px;
}
.counter-box {
    background: #eaf3fb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,80,160,0.08);
    padding: 22px 28px 16px 28px;
    text-align: center;
    min-width: 120px;
    transition: transform 0.2s;
}
.counter-box:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 6px 24px rgba(0,80,160,0.13);
}
.counter {
    font-size: 2.2rem;
    font-weight: 800;
    color: #00bfff;
    display: block;
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.counter-label {
    font-size: 1.05rem;
    color: #003366;
    font-weight: 500;
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
    opacity: 1 !important;
    transform: none !important;
}
.mou-list li {
    transition: background 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
}
.mou-list li:hover {
    background: #d0f0ff;
    color: #0077b6;
    transform: translateX(8px) scale(1.03);
}
.scroll-down-arrow {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    z-index: 3;
    cursor: pointer;
}
.scroll-down-arrow::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 22px solid #00bfff;
    animation: bounceDown 1.3s infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}
@media (max-width: 700px) {
    .counters-section {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .counter-box {
        min-width: 80px;
        padding: 14px 10px 10px 10px;
    }
    .counter {
        font-size: 1.3rem;
    }
    .scroll-down-arrow {
        width: 28px;
        height: 28px;
        bottom: 10px;
    }
    .scroll-down-arrow::before {
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        border-top: 14px solid #00bfff;
    }
}
.home-content, .home-content p, .home-content h2, .home-content h1, .home-content ul, .home-content li {
    color: #003366 !important;
}
.home-intro {
    opacity: 1 !important;
    color: #003366 !important;
}
.divisions-flowchart {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2em 0;
}
.division-root {
    background: #2e7d32;
    color: #fff;
    padding: 1em 2em;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom: 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.division-branches {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5em;
}
.division-box {
    background: #e3f2fd;
    color: #1565c0;
    padding: 1em 1.5em;
    border-radius: 8px;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-weight: 500;
}
@media (max-width: 700px) {
    .division-branches {
        flex-direction: column;
        gap: 1em;
    }
}
.deliverables-section {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 28px;
    margin-bottom: 28px;
    justify-content: center;
}
.deliverable-card {
    background: #f0f7ff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,80,160,0.07);
    padding: 28px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 320px;
    position: relative;
    transition: box-shadow 0.2s;
}
.deliverable-card:hover {
    box-shadow: 0 6px 24px rgba(0,80,160,0.13);
}
.deliverable-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #00bfff;
}
.deliverable-card h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #00509e;
}
.deliverable-card ul {
    padding-left: 20px;
    margin: 0;
}
.deliverable-card li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.6;
}
@media (max-width: 900px) {
    .deliverables-section {
        flex-direction: column;
        align-items: center;
    }
    .deliverable-card {
        max-width: 95vw;
        width: 100%;
    }
}
.archive-section {
    margin-top: 36px;
    margin-bottom: 36px;
    background: #f8fbff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,80,160,0.07);
    padding: 32px 24px;
}
.pdf-preview-box {
    background: #eaf3fb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 51, 102, 0.07);
    padding: 12px;
    margin-bottom: 24px;
    overflow-x: auto;
}
.pdf-info-box {
    background: #f0f7ff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,80,160,0.06);
    padding: 20px 18px;
    margin-top: 10px;
}
.pdf-info-box h3 {
    margin-top: 0;
    color: #003366;
    font-size: 1.2rem;
    font-weight: 700;
}
.pdf-info-box p {
    color: #003366;
    font-size: 1.05rem;
    margin-bottom: 10px;
}
@media (max-width: 700px) {
    .archive-section {
        padding: 12px 4px;
    }
    .pdf-preview-box {
        padding: 4px;
    }
    .pdf-info-box {
        padding: 10px 4px;
    }
}

.team-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.team-images figure {
    margin: 0;
    text-align: center;
    flex: 0 0 auto;
}

.team-images img {
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Adjust size as needed */
    object-fit: cover;
    border-radius: 50%; /* Makes images round */
    border: 4px solid #00bfff; /* Add a border */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.team-images figcaption {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #003366;
    font-weight: 600;
    max-width: 150px; /* Optional: limit caption width */
}

@media (max-width: 700px) {
    .team-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .team-images img {
        width: 120px;
        height: 120px;
    }

    .team-images figcaption {
        max-width: 120px;
    }
}

.team-heading-container {
    text-align: center;
    margin-bottom: 20px; /* Add some space below the heading */
}

.research-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.research-list li {
    background: #eaf3fb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 51, 102, 0.07);
    padding: 20px;
    margin-bottom: 20px;
}

.research-list li h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #00509e;
    font-size: 1.1rem;
}

.research-list li p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #222;
}

@media (max-width: 700px) {
    .research-list li {
        padding: 15px;
    }
    .research-list li h3 {
        font-size: 1rem;
    }
    .research-list li p {
        font-size: 0.95rem;
    }
} 