/* ===== RESET ===== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background: #eef3f8;
}

/* ===== HEADER ===== */
.portal-header {
    width: 100%;
    height: 130px; /* 🔴 FIXED HEIGHT */
    background: linear-gradient(to right, #5f86ad, #0a86d8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-inner {
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

/* ===== COMMON LOGO BOX (FOR EQUAL SIZE) ===== */
.logo-box1 {
    width: 128px;
    height: 95px;
    background-color: #e6f0f5;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.logo-box2 {
    width: 109px;
    height: 100px;
    background-color: #e6f0f5;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Left logo (TGTRANSCO) – make it larger */
.logo-left img {
    max-width: 120px;
    max-height: 150px;
    object-fit: contain;
}

/* Right logo (Telangana Rising) – keep as is */
.logo-right img {
    max-width: 120px;
    max-height: 95px;
    object-fit: contain;
}


/* Header text */
.header-text {
    text-align: center;
    flex: 1;
}

.org-title {
    font-size: 33px;
    font-weight: 800;
    color: #081a5c;
    line-height: 1.2;
}

.portal-title {
    font-size: 30px;
    font-weight: 700;
    color: #eaf3ff;
    margin-top: 6px;
}

/* ===== APPLICATION TILES ===== */
.apps-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
}

/* Tile */
.app-card {
    width: 320px;
    height: 200px;
    background: #93c2e2;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover */
.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* App name */
.app-name {
    font-size: 25px;
    font-weight: 700;
    color: #1f3a5f;
    text-align: center;
    padding: 20px;
}
