﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f7fc;
    overflow-x: hidden;
}

/* Top Banner */
.top-banner {
    display: flex;
    align-items: center;
   /* background-color: #004080;*/  /*deep blue */
    background-color: #728FCE;
    /*background-color: #3EB489;*/
    /*background-color: #A0D6B4;*/
    color: white;
    padding: 20px;
}

.logo {
    flex: 0 0 20%; /* fixed 17% width */
    text-align: center;
}

    .logo img {
        width: 200px;
        height: 200px;
        /* adjust size as needed */

        border-radius: 8px; /* optional rounded corners */
    }

.banner-text {
    flex: 1; /* remaining space */
    text-align: left;
    padding-left: 20px;
}

    .banner-text h1 {
        font-size: 50px;
        margin: 0;
        font-weight: bold;
    }

    .banner-text h2 {
        font-size: 16px;
        margin-top: 10px;
        font-weight: normal;
    }

/*.top-banner {
    background-color: #004080;*/ /* deep blue */
/*color: white;
    text-align: center;
    padding: 20px;
}

    .top-banner h1 {
        font-size: 32px;
        margin: 0;
        font-weight: bold;
    }

    .top-banner h2 {
        font-size: 18px;
        margin-top: 10px;
        font-weight: normal;
    }*/
/* Glossy Navigation Buttons */
/*.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 15px;
    background-color: #d9eddf;*/ /* same as top banner */
/*}

    .nav-buttons a {
        display: inline-block;
        padding: 12px 22px;
        font-size: 16px;
        font-weight: bold;*/
       /* color: #fff;*/
        /*color: darkblue;
        text-decoration: none;
        border-radius: 8px;*/
        /*background: linear-gradient(to bottom, #4CAF50 0%, #2E7D32 100%);*/
        /*background: linear-gradient(to bottom, #def2ff, #c2d2e7 80%);
        box-shadow: 0 4px #1b5e20;
        transition: all 0.2s ease-in-out;
    }*/

        /* Hover effect */
        /*.nav-buttons a:hover {
            background: linear-gradient(to bottom, #66BB6A 0%, #388E3C 100%);
            box-shadow: 0 6px #1b5e20;
            transform: translateY(-2px);
        }*/

        /* Active (pressed) effect */
        /*.nav-buttons a:active {
            box-shadow: 0 2px #1b5e20;
            transform: translateY(2px);
        }*/
/* BUTTON ROW */
/* Glossy Button Row */
/*.button-row {
    display: flex;
    gap: 18px;
    margin: 6px 0;*/ /* spacing above/below */
    /*justify-content: center;
    background-color: #d9eddf;*/    /* same as top banner */
    /*height:50px;
}*/
/* Glossy Button Row */
/*.button-row {
    display: flex;
    gap: 18px;
    margin: 12px 0;*/ /* spacing above/below */
    /*justify-content: center;
    background-color: #d9eddf;*/ /* strip background */
    /*padding: 10px 0;*/ /* vertical padding inside strip */
    /*border-radius: 8px;*/ /* optional rounded corners */
/*}




.glossy-btn {
    flex: 1;
    max-width: 160px;*/ /* optional: limit width */
    /*height: 50%;
    padding: 13px 0;
    background: linear-gradient(to bottom, #def2ff, #c2d2e7 80%);
    color: darkblue;
    font-size: 1.07em;
    font-weight: bold;
    border: none;
    border-radius: 24px;
    box-shadow: 0 2px 6px rgba(35, 100, 180, 0.12);
    letter-spacing: 1.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

    .glossy-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 45%;
        background: linear-gradient(rgba(255,255,255,0.45), transparent);
        border-radius: 24px 24px 0 0;
        pointer-events: none;
    }

    .glossy-btn:hover {
        background: linear-gradient(to bottom, #357abd 10%, #4a90e2 90%);
        box-shadow: 0 4px 14px rgba(50, 90, 180, 0.16);
        color: white;
    }

    .glossy-btn:focus {
        outline: 2px solid #4a90e2;
        outline-offset: 2px;
    }
    .glossy-btn.active {
        background: linear-gradient(to bottom, #ffcc66 0%, #ff9900 90%);
        color: white;
        box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
    }*/
    /*Caption Banner */

/* Glossy Button Row */
.button-row {
    display: flex;
    gap: 18px;
    margin: 12px 0; /* spacing above/below */
    justify-content: center;
    background-color: #d9eddf; /* strip background */
    padding: 10px 0; /* vertical padding inside strip */
    border-radius: 8px; /* optional rounded corners */
}

/* Glossy Button Base */
.glossy-btn {
    flex: 1;
    max-width: 160px; /* optional: limit width */
    padding: 13px 0;
    background: linear-gradient(to bottom, #def2ff, #c2d2e7 80%);
    color: darkblue;
    font-size: 1.07em;
    font-weight: bold;
    border: none;
    border-radius: 24px;
    box-shadow: 0 2px 6px rgba(35, 100, 180, 0.12);
    letter-spacing: 1.5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    /* fixes for <a> links */
    display: inline-block; /* makes <a> behave like a button */
    text-decoration: none; /* removes underline */
    text-align: center; /* centers text inside */
}

    /* Shine overlay */
    .glossy-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 45%;
        background: linear-gradient(rgba(255,255,255,0.45), transparent);
        border-radius: 24px 24px 0 0;
        pointer-events: none;
    }

    /* Hover effect */
    .glossy-btn:hover {
        background: linear-gradient(to bottom, #357abd 10%, #4a90e2 90%);
        box-shadow: 0 4px 14px rgba(50, 90, 180, 0.16);
        color: white;
    }

    /* Focus outline */
    .glossy-btn:focus {
        outline: 2px solid #4a90e2;
        outline-offset: 2px;
    }

    /* Active page highlight */
    .glossy-btn.active {
        /*background: linear-gradient(to bottom, #ffcc66 0%, #ff9900 90%);*/
        background: linear-gradient(to bottom, #FFFFE0 0%,#FFE6E8 90%);
        color: burlywood;
        box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
        text-decoration: none; /* ensure no underline */
        text-align: center; /* keep text centered */
    }


/* Image Banner */
.banner {
    display: flex;
    justify-content: space-around; /* equal spacing */
    align-items: center;
    background-color: #f5f5f5; /* light background */
    padding: 20px;
}

.banner-item {
    text-align: center;
    flex: 1; /* equal width for each item */
    margin: 0 10px;
}

    .banner-item img {
        width: 250px; /* adjust size as needed */
        height: auto;
        border-radius: 8px; /* optional rounded corners */
        box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }

    .banner-item .name {
        font-weight: bold;
        margin-top: 10px;
        font-size: 18px;
    }

    .banner-item .designation {
        font-size: 16px;
        color: #555;
    }
/* Scrolling Strip */ .scroll-strip {
    background-color: #e6f7ff; /* light sky-blue background */
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
}

.scroll-text {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 30s linear infinite;
    font-weight: bold;
    font-size: 25px;
    color: #004080; /* deep blue text */
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}
/* WTP Section */
.wtp-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #fafafa;
    padding: 20px;
    margin-top: 20px;
}

.wtp-image {
    flex: 0 0 40%;
    text-align: center;
}

    .wtp-image img {
        max-width: 100%;
        height: auto;
        border: 2px solid #ccc;
        border-radius: 8px;
    }

.wtp-data {
    flex: 0 0 55%;
    padding-left: 20px;
}

    .wtp-data h3 {
        margin-top: 0;
        color: #004080;
    }

    .wtp-data table {
        width: 100%;
        border-collapse: collapse;
    }

    .wtp-data th, .wtp-data td {
        border: 1px solid #ccc;
        padding: 8px;
        text-align: left;
    }

    .wtp-data th {
        background-color: #e6f7ff;
        color: #004080;
    }
/* Footer */ .site-footer {
    background-color: #004080; /* deep blue to match header */
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
    font-size: 16px;
}

    .site-footer p {
        margin: 0;
    }

    .site-footer strong {
        color: #ffcc00; /* highlight important text in yellow */
    }

.footer-strip {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f9f871;
    color: maroon;
    height: 32px;
    display: flex;
    align-items: flex-start;
    padding: 6px 24px 2px 24px;
    box-sizing: border-box;
    z-index: 1000;
    border-top: 1px solid #e0e0e0;
}

    .footer-strip p {
        margin: 0;
        font-size: 1em;
        word-spacing: 15px;
        line-height: 1.2;
    }